/* ============================================
   TESTIMONIALS - SIN FOTOS
   ============================================
   Oculta las fotos pero mantiene texto y estrellas
   ============================================ */

/* Ocultar las imágenes de testimonios */
.testimonial-box img:not(.star) {
  display: none !important;
}

.testimonial-box .change-this-image {
  display: none !important;
}

/* Ajustar el contenedor de testimonios - Disposición en columna */
.flex-testimonial {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
}

/* Ajustar la columna de texto para que ocupe todo el espacio */
.text-column-testimonial {
  width: 100% !important;
  max-width: 1200px !important;
  text-align: center !important;
  padding: 0 60px !important;
}

/* Ajustar la columna de estrellas para que esté debajo */
.testimonial-image-column,
.image-column {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ajustar el testimonial-box para mostrar solo las estrellas */
.testimonial-box {
  background: transparent !important;
  padding: 0 !important;
  height: auto !important;
  min-height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* Asegurar que las estrellas se muestren */
.reviews-stars {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  transform: none !important;
  background-color: transparent !important;
  padding: 20px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

/* Estilo de las estrellas */
.stars {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.star {
  width: 20px !important;
  height: auto !important;
  display: inline-block !important;
}

.mini-text-testimonial {
  margin-left: 12px !important;
  font-size: 14px !important;
  color: var(--font-gray) !important;
}

/* Centrar los elementos del texto */
.max-pixels-450 {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
  max-width: none !important;
  width: 100% !important;
}

.testimonial-text {
  text-align: center !important;
}

.testimonial-name-box {
  text-align: center !important;
}

/* Aumentar tamaño de texto del testimonio */
.testimonial-text {
  text-align: center !important;
  font-size: 1.5rem !important;
  line-height: 1.8 !important;
}

/* Responsive - Tablets */
@media screen and (max-width: 991px) {
  .text-column-testimonial {
    width: 100% !important;
    padding: 0 40px !important;
  }
  
  .flex-testimonial {
    padding: 40px 30px !important;
  }
  
  .testimonial-text {
    font-size: 1.3rem !important;
  }
}

/* Responsive - Móviles */
@media screen and (max-width: 767px) {
  .text-column-testimonial {
    width: 100% !important;
    padding: 0 25px !important;
  }
  
  .flex-testimonial {
    padding: 30px 20px !important;
  }
  
  .testimonial-text {
    font-size: 1.1rem !important;
  }
  
  .reviews-stars {
    padding: 15px !important;
  }
  
  .star {
    width: 18px !important;
  }
}
