/* Estilos personalizados para la página de testimonios */

.testimonios-intro {
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.08), rgba(102, 126, 234, 0.05));
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(118, 75, 162, 0.15);
  margin-bottom: 40px;
}

.testimonios-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--acento-secundario);
  margin-bottom: 12px;
}

.testimonios-intro p {
  font-size: 17px;
  color: var(--texto-medio);
  line-height: 1.8;
}

.testimonio-card {
  background: var(--bg-tarjeta);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--borde-sutil);
  margin-bottom: 28px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.testimonio-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  font-family: 'Playfair Display', serif;
  color: rgba(102, 126, 234, 0.08);
  line-height: 1;
}

.testimonio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-elevada);
  border-color: rgba(118, 75, 162, 0.2);
}

.testimonio-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acento-principal), var(--acento-secundario));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.testimonio-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--texto-oscuro);
  margin-bottom: 4px;
}

.testimonio-rol {
  color: var(--acento-principal);
  font-weight: 600;
  font-size: 14px;
}

.testimonio-texto {
  color: var(--texto-medio);
  font-size: 16px;
  line-height: 1.9;
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid rgba(102, 126, 234, 0.3);
}

.testimonio-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--borde-sutil);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonio-fecha {
  color: var(--texto-claro);
  font-size: 14px;
}

.testimonio-rating {
  display: flex;
  gap: 4px;
}

.testimonio-rating span {
  color: #f59e0b;
  font-size: 20px;
}

.testimonios-cta {
  margin-top: 48px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.06));
  border-radius: 24px;
  border: 1px dashed rgba(118, 75, 162, 0.3);
}

.testimonios-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--texto-oscuro);
  margin-bottom: 12px;
}

.testimonios-cta p {
  color: var(--texto-medio);
  font-size: 16px;
  margin-bottom: 24px;
}

/* Responsive para la página de testimonios */
@media screen and (max-width: 1024px) {
  .testimonio-card {
    padding: 28px;
  }
  
  .testimonios-intro {
    padding: 28px;
  }
}

@media screen and (max-width: 768px) {
  .testimonio-card {
    padding: 24px 20px;
  }
  
  .testimonio-avatar {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .testimonios-intro {
    padding: 24px 20px;
  }
  
  .testimonios-cta {
    padding: 32px 20px;
  }
  
  .testimonio-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 640px) {
  .testimonio-card {
    padding: 20px 16px;
  }
  
  .testimonio-card::before {
    font-size: 80px;
    left: 10px;
  }
  
  .testimonio-avatar {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .testimonios-intro {
    padding: 20px 16px;
  }
  
  .testimonios-cta {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 480px) {
  .testimonio-card {
    padding: 18px 14px;
  }
  
  .testimonio-texto {
    font-size: 15px;
  }
}

@media screen and (max-width: 360px) {
  .testimonio-card {
    padding: 16px 12px;
  }
  
  .testimonio-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Media queries para escritorios grandes */
@media screen and (min-width: 1440px) {
  .testimonio-card {
    padding: 36px;
  }
  
  .testimonio-avatar {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
}

@media screen and (min-width: 1920px) {
  .testimonio-card {
    padding: 40px;
  }
}

/* Soporte para modo de alto contraste */
@media (prefers-contrast: high) {
  .testimonio-card {
    border-width: 2px;
  }
  
  .testimonio-texto {
    border-left-width: 4px;
  }
}

/* Soporte para reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  .testimonio-card {
    transition: none;
  }
  
  .testimonio-card:hover {
    transform: none;
  }
}

/* Estilos adicionales para mejorar la experiencia */
.testimonio-card:focus-within {
  border-color: var(--acento-principal);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.testimonio-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--texto-oscuro);
  margin-bottom: 4px;
}
