/* ESTILOS GENERALES DEL CARRUSEL */
.testimonials-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  padding: 0 60px; /* Espacio para los botones */
}

/* CONTENEDOR DE TARJETAS (SCROLL HORIZONTAL) */
.testimonial-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 10px;
  -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
  scrollbar-width: none; /* Ocultar en Firefox */
}

.testimonial-track::-webkit-scrollbar {
  display: none; /* Ocultar en Chrome/Safari */
}

/* TARJETAS INDIVIDUALES */
.testimonial-card {
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(164, 160, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(125, 63, 207, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* CABECERA CON FOTO Y NOMBRE */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #a4a0ff;
  box-shadow: 0 0 25px rgba(164, 160, 255, 0.5);
}

.testimonial-user h3 {
  font-size: 24px;
  margin: 5px 0;
  color: white;
}

.testimonial-user .age {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.stars {
  color: #ffc107;
  font-size: 28px;
  margin: 10px 0;
}

.testimonial-content {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(164, 160, 255, 0.2);
}

/* BOTONES DE NAVEGACIÓN */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(164, 160, 255, 0.3);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(164, 160, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* EFECTO DE DESACTIVACIÓN */
.carousel-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-carousel {
    padding: 0 30px;
  }
  
  .testimonial-card {
    width: 280px;
    padding: 20px;
  }
  
  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}