/**
 * Testimonials V2 Page Styles
 * Estilos específicos para la nueva página de testimonios
 * Basado en design tokens y componentes reutilizables
 */

/* ===== HERO SECTION ===== */
.testimonials-hero {
  position: relative;
  padding: calc(118px + var(--space-3xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.12) 100%);
  overflow: hidden;
}

.testimonials-hero::before,
.testimonials-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-hero::before {
  top: -25%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(59, 130, 246, 0.06) 45%,
    transparent 70%
  );
}

.testimonials-hero::after {
  bottom: -20%;
  left: -15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 60%
  );
}

.testimonials-hero__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-full-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.testimonials-hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.testimonials-hero__title {
  margin: 0 0 var(--space-lg);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
}

.testimonials-hero__highlight {
  color: var(--color-full-primary);
}

.testimonials-hero__subtitle {
  margin: 0 auto var(--space-xl);
  max-width: 720px;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.testimonials-hero__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.testimonials-hero__cta .btn-link {
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.testimonials-hero__cta .btn-link:hover,
.testimonials-hero__cta .btn-link:focus {
  color: var(--color-full-primary);
}

/* ===== REVIEWS WIDGET ===== */
.testimonials-widget {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-primary);
}

.testimonials-widget__card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.testimonials-widget__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials-widget__title {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
}

.testimonials-widget__subtitle {
  margin: 0 auto;
  max-width: 560px;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.testimonials-widget__embed {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.testimonials-widget__disclaimer {
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .testimonials-hero {
    padding: calc(96px + var(--space-2xl)) 0 var(--space-3xl);
  }

  .testimonials-hero__title {
    font-size: var(--text-3xl);
  }

  .testimonials-hero__subtitle {
    font-size: var(--text-base);
  }

  .testimonials-widget__card {
    padding: var(--space-2xl);
  }

  .testimonials-widget__embed {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .testimonials-hero__title {
    font-size: var(--text-2xl);
  }

  .testimonials-hero__eyebrow {
    font-size: var(--text-2xs);
  }

  .testimonials-hero__cta {
    flex-direction: column;
  }
}
