/* ===== ESTILOS PARA TESTIMONIOS =====
   Módulo independiente para los estilos de testimonios */

   .testimonials-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
  }
    
  .testimonials-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 40px;
  }
    
  .testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
  }
    
  .testimonial-slide {
    min-width: 100%;
    padding: 10px;
  }
    
  .testimonial-content {
    background-color: rgba(98, 196, 134, 0.15); /* Verde más oscuro pero aún claro */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid rgba(98, 196, 134, 0.6); /* Borde lateral para mayor elegancia */
  }
    
  .testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background-color: rgba(98, 196, 134, 0.18); /* Ligeramente más intenso al hacer hover */
  }
    
  .testimonial-quote {
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
  }
    
  .testimonial-quote p {
    font-style: italic;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    text-align: center;
  }
    
  /* Mejora en las citas para que resalten mejor */
  .testimonial-quote .fa-quote-left,
  .testimonial-quote .fa-quote-right {
    color: rgba(98, 196, 134, 0.6); /* Color que combina con el fondo pero más intenso */
    opacity: 0.8;
    position: absolute;
  }
    
  .testimonial-quote .fa-quote-left {
    top: 0;
    left: 0;
  }
    
  .testimonial-quote .fa-quote-right {
    bottom: 0;
    right: 0;
  }
    
  /* Estilos para el autor del testimonio */
  .testimonial-author {
    display: flex;
    flex-direction: column; /* Cambiado a columna para eliminar la dependencia del avatar */
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }
  
  /* Ocultar completamente el avatar */
  .testimonial-avatar {
    display: none !important;
  }
    
  .testimonial-info h4 {
    margin: 0 0 8px 0;
    color: #9683ec; /* Color primario */
    text-align: center;
  }
    
  .testimonial-stars {
    color: gold;
    display: flex;
    justify-content: center;
  }
    
  /* Controles de navegación */
  .testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
    
  .testimonial-arrow {
    background: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
  }
    
  .testimonial-arrow:hover {
    background: #9683ec; /* Color primario */
    color: #ffffff;
  }
    
  /* Indicadores de posición (dots) */
  .testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
    
  .dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
    
  .dot.active {
    background-color: #9683ec; /* Color primario */
  }
  
  /* Media queries para responsividad */
  @media (max-width: 768px) {
    .testimonials-wrapper {
      margin: 0 20px;
    }
      
    .testimonial-controls {
      top: auto;
      bottom: -50px;
      justify-content: center;
      gap: 20px;
    }
    
    .testimonial-quote {
      padding: 0 15px;
    }
    
    .testimonial-quote p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-content {
      padding: 20px 15px;
    }
    
    .testimonial-dots {
      margin-top: 60px; /* Espacio para los controles de navegación */
    }
  }