/*---------------------------------------
  tecnologia              
-----------------------------------------*/

.herramienta-section {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 50px;
  }
  
  .herramienta-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* Tamaño de la fuente */
    color: var(--secondary-color); /* Color del texto (verde) */
    position: relative;
    margin: 20px 0; /* Espaciado vertical */
  }
  
  .herramienta-section-title::before,
  .herramienta-section-title::after {
    content: '';
    flex: 1;
    height: 0.5px; /* Grosor de la línea */
    background-color: var(--secondary-color); /* Color de la línea */
    margin: 0 10px; /* Espaciado entre la línea y el texto */
  }
  
  .herramienta-card {
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
  }
  
  .herramienta-image-container {
    display: inline-block;
    padding: 10px;
    border: 5px solid #008000; /* Color verde */
    border-radius: 50%; /* Hacerlo circular */
  }
  
  .rounded-image {
    width: 100px; /* Ajusta el tamaño según sea necesario */
    height: 100px;
    border-radius: 50%; /* Imagen circular */
  }
  
  .toggle-button {
    background-color: #008000; /* Color verde */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
  }
  
  .toggle-button .arrow {
    transition: transform 0.3s ease;
  }
  
  .hidden-text {
    display: none;
    margin-top: 10px;
    text-align: justify;
    font-size: 0.9rem;
  }
  
  .hidden-text.visible {
    display: block;
  }
  
  