/* =================================================================
   SECTIONS - THE AWAKENING CODE V5.3.5
   Estilos por sección (Navbar, Hero, Stats, CTAs, Footer)
   ================================================================= */

/* ===== NAVBAR PREMIUM ===== */

.navbar-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: var(--color-dark-1);
  border-bottom: 1px solid var(--gold-alpha-20);
  transition: var(--transition-normal);
}

.navbar-premium.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.navbar-logo {
  font-family: var(--font-luxury);
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-on-dark-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-logo span {
  color: var(--gold-primary);
}

/* Navigation */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  color: var(--text-on-dark-secondary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-primary);
}

/* CTA Navbar */
.navbar-cta {
  padding: 12px 28px;
  font-size: 14px;
}

/* Mobile Menu Toggle (oculto en desktop) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-on-dark-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation → X */
.navbar-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Backdrop Overlay */
.navbar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-backdrop.active {
  display: block;
  opacity: 1;
}

/* ===== HERO PREMIUM ===== */

.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-black-heritage) 0%, var(--color-dark-1) 100%);
  overflow: hidden;
}

/* Gradiente sutil de fondo */
.hero-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(184, 148, 31, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  margin-bottom: var(--spacing-lg);
}

.hero-title {
  font-size: var(--font-size-h1);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-tight);
}

.hero-description {
  font-size: var(--font-size-body-large);
  color: var(--text-on-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: var(--spacing-xl);
}

/* Video Hero */
.hero-video-container {
  max-width: 800px;
  margin: var(--spacing-2xl) auto;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-alpha-20);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  border-color: var(--gold-alpha-40);
  box-shadow: 0 24px 72px rgba(184, 148, 31, 0.2);
  transform: translateY(-4px);
}

.video-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 24px;
  border: 1px solid var(--gold-alpha-40);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-on-dark-primary);
  font-weight: var(--font-weight-semibold);
  z-index: 2;
}

.video-badge i {
  color: var(--gold-primary);
  font-size: 18px;
}

/* ===== STATS SECTION ===== */

.stats-section {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: var(--color-dark-1);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  font-size: 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: var(--font-size-body);
  color: var(--text-on-dark-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  hyphens: auto;
}

/* ===== CTA BLOCK RESULTS ===== */

.cta-block-results {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-black-soft) 0%, var(--color-dark-1) 100%);
  position: relative;
}

.cta-block-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-champagne) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.cta-results-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-results-badge {
  margin-bottom: var(--spacing-lg);
}

.cta-results-title {
  font-size: var(--font-size-h2);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--spacing-md);
}

.cta-results-description {
  font-size: var(--font-size-body-large);
  color: var(--text-on-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-3xl);
}

/* Grid de beneficios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
}

.cta-results-cta {
  margin-top: var(--spacing-xl);
}

/* ===== CTA FINAL ===== */

.cta-final {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: #F5F3EE;
}

.cta-final-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-badge {
  margin-bottom: var(--spacing-lg);
}

.cta-final-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0 0 32px 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.cta-final-description {
  font-size: 20px;
  color: #7A6518;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 0 var(--spacing-3xl) 0;
  line-height: 1.6;
}

/* Timeline de proceso */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  position: relative;
}

/* Línea conectora */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-alpha-40) 0%, var(--gold-alpha-70) 50%, var(--gold-alpha-40) 100%);
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
  border: 3px solid var(--color-dark-1);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-1);
  box-shadow: var(--shadow-gold-md);
}

.step-label {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.step-description {
  font-size: 16px;
  color: #7A6518;
  font-weight: 500;
  line-height: 1.6;
}

/* Testimonial */
.cta-testimonial {
  background: var(--color-white-alpha-2);
  border: var(--border-width-normal) solid var(--gold-alpha-20);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.testimonial-quote {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-style: italic;
  color: #4A4A4A;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
  color: #7A6518;
  letter-spacing: 0.3px;
}

/* Garantía */
.cta-guarantee {
  font-size: 16px;
  color: #4A4A4A;
  margin-top: var(--spacing-lg);
  line-height: 1.6;
}

.cta-guarantee strong {
  color: #7A6518;
  font-weight: 600;
}

/* Footer de inversión */
.cta-footer {
  font-size: 16px;
  font-weight: 600;
  color: #7A6518;
  margin-top: var(--spacing-lg);
  line-height: 1.6;
}
}

/* ===== FOOTER PREMIUM ===== */

.footer-premium {
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-xl);
  background: var(--color-black-pure);
  border-top: 1px solid var(--gold-alpha-20);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-2xl);
}

/* Footer Brand */
.footer-brand h3 {
  font-family: var(--font-luxury);
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  color: var(--text-on-dark-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.footer-brand p {
  font-size: var(--font-size-body);
  color: var(--text-on-dark-tertiary);
  line-height: var(--line-height-relaxed);
  max-width: 500px;
}

/* Footer Social */
.footer-social h4 {
  font-family: var(--font-display);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-semibold);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-dark-2);
  border: var(--border-width-normal) solid var(--gold-alpha-30);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 20px;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--color-dark-3);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-md);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  font-size: var(--font-size-small);
  color: var(--text-on-dark-muted);
}

/* ===== PAIN POINTS ELITE SECTION ===== */

.pain-points-elite {
  padding: var(--spacing-xl) var(--spacing-lg); /* 48px top - optimizado */
  background: linear-gradient(135deg, var(--color-dark-1) 0%, var(--color-black-soft) 100%);
  position: relative;
}

.pain-points-elite::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-champagne) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

.pain-points-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pain-points-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.pain-points-label {
  font-family: var(--font-display);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
}

.pain-points-title {
  font-size: var(--font-size-h2);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--spacing-md);
}

.pain-points-intro {
  font-size: var(--font-size-body-large);
  color: var(--text-on-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columnas (antes: 2) */
  gap: var(--spacing-xl);                  /* 32px (antes: 48px) */
  margin-bottom: var(--spacing-3xl);
}

.pain-card {
  background: var(--color-white-alpha-2);
  border: var(--border-width-normal) solid var(--gold-alpha-20);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-xl);              /* 32px (antes: 48px) */
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 148, 31, 0.05), transparent);
  transition: left var(--transition-slow);
}

.pain-card:hover {
  background: var(--color-white-alpha-4);
  border-color: var(--gold-alpha-40);
  box-shadow: var(--shadow-gold-md);
  transform: translateY(-8px);
}

.pain-card:hover::before {
  left: 100%;
}

.pain-card-icon {
  width: 48px;                             /* Antes: 60px */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-3) 100%);
  border: var(--border-width-normal) solid var(--gold-alpha-30);
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);        /* 8px (antes: 16px) */
}

.pain-card-icon i {
  font-size: 20px;                         /* Antes: 24px */
  color: var(--gold-primary);
}

.pain-card-title {
  font-family: var(--font-display);
  font-size: 20px;                         /* Antes: 22-24px */
  font-weight: var(--font-weight-bold);
  color: var(--text-on-dark-primary);
  margin-bottom: 6px;                      /* Antes: 8px */
}

.pain-card-description {
  font-size: 15px;                         /* Antes: 16-18px */
  color: var(--text-on-dark-tertiary);
  line-height: 1.6;                        /* Antes: 1.8 */
}

/* ===== CTA AFTER PAIN ===== */

.cta-after-pain {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-black-heritage) 0%, var(--color-dark-1) 100%);
  position: relative;
}

.cta-after-pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 148, 31, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-after-pain-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-after-pain-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
  border: 3px solid var(--color-dark-1);
  border-radius: 50%;
  box-shadow: var(--shadow-gold-lg);
}

.cta-after-pain-icon i {
  font-size: 36px;
  color: var(--color-dark-1);
}

.cta-after-pain-title {
  font-size: var(--font-size-h2);
  color: var(--text-on-dark-primary);
  margin-bottom: var(--spacing-md);
}

.cta-after-pain-subtitle {
  font-size: var(--font-size-body-large);
  color: var(--gold-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.cta-after-pain-description {
  font-size: var(--font-size-body-large);
  color: var(--text-on-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-after-pain-cta {
  margin-bottom: var(--spacing-lg);
}

.cta-after-pain-footer {
  font-size: var(--font-size-small);
  color: var(--text-on-dark-tertiary);
  line-height: var(--line-height-relaxed);
}

.cta-after-pain-footer strong {
  color: var(--gold-primary);
}

/* ===== BLIND SPOT TEST SECTION ===== */

.blind-spot-test {
  padding: 60px var(--spacing-lg) 60px; /* Reducido de 4xl a 60px */
  background: #FFFFFF;
}

.blind-spot-container {
  max-width: 900px;
  margin: 0 auto;
}

.blind-spot-header {
  text-align: center;
  margin-bottom: 40px; /* Reducido de 3xl a 40px */
}

.blind-spot-badge {
  margin-bottom: 16px; /* Reducido de md a 16px */
}

.blind-spot-title {
  font-size: var(--font-size-h2);
  color: #1A1A1A;
  font-weight: var(--font-weight-normal);
  margin-bottom: 16px; /* Reducido de md a 16px */
}

.blind-spot-subtitle {
  font-size: var(--font-size-body-large);
  color: #1A1A1A;
  line-height: var(--line-height-relaxed);
  margin-bottom: 24px; /* Reducido de lg a 24px */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blind-spot-challenge {
  font-size: var(--font-size-body);
  color: #1A1A1A;
  font-weight: var(--font-weight-medium);
}

/* Progress Bar */
.progress-container {
  margin-bottom: 36px; /* Reducido de 3xl a 36px */
}

.progress-label {
  font-size: 15px;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 12px; /* Reducido de sm a 12px */
  font-weight: var(--font-weight-normal);
}

.progress-bar-wrapper {
  width: 100%;
  height: 8px;
  background: #F0EDE5;
  border-radius: var(--border-radius-pill);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #C2A55A;
  transition: width 0.5s ease;
}

/* Test Items */
.test-items {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reducido de lg a 16px para menos espacio */
  margin-bottom: 36px; /* Reducido de 2xl a 36px */
}

.test-item {
  background: #FFFFFF;
  border: 2px solid #E8E5DD;
  border-radius: var(--border-radius-md);
  padding: 20px; /* Reducido de xl a 20px */
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 16px; /* Reducido de md a 16px */
  cursor: pointer;
}

.test-item:hover {
  border-color: #C2A55A;
  box-shadow: 0 2px 8px rgba(194, 165, 90, 0.12);
}

.test-item.answered-yes {
  border-color: #C2A55A;
  border-width: 3px;
  background: #FFFEF8;
  padding: 19px; /* Ajustado para compensar borde */
}

.test-item-number {
  font-family: var(--font-display);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  color: #C2A55A;
  letter-spacing: 1.5px;
  margin-bottom: 8px; /* Reducido de sm a 8px */
}

.test-item-title {
  font-family: var(--font-display);
  font-size: 22px; /* Reducido ligeramente de h4 */
  font-weight: var(--font-weight-bold);
  color: #C2A55A;
  margin-bottom: 8px; /* Reducido de sm a 8px */
}

.test-item-description {
  font-size: var(--font-size-body);
  color: #1A1A1A;
  line-height: 1.6; /* Reducido ligeramente */
  margin-bottom: 0;
}

/* Wrapper del checkbox */
.test-checkbox-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

/* Checkbox personalizado */
.test-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #E8E5DD;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  flex-shrink: 0;
}

.test-checkbox:hover {
  border-color: #C2A55A;
  transform: scale(1.05);
}

/* Focus state para accesibilidad */
.test-checkbox:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(184, 148, 31, 0.2);
}

.test-checkbox.checked {
  background: #C2A55A;
  border-color: #C2A55A;
}

.test-checkbox.checked::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  display: block;
  line-height: 1;
}

/* Content wrapper */
.test-item-content {
  flex: 1;
}

/* Checkboxes personalizados */
.test-item-checkbox {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #E8E5DD;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.test-item-checkbox:hover {
  border-color: #C2A55A;
}

.test-item-checkbox.checked {
  background: #C2A55A;
  border-color: #C2A55A;
}

.test-item-checkbox.checked::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  display: block;
}

/* Reveal Button */
.reveal-button-container {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.reveal-button {
  padding: 20px 60px;
  transition: all 0.3s ease;
}

.reveal-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none; /* Importante: bloquear clicks cuando está disabled */
}

.reveal-button:not(:disabled) {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.reveal-button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

/* Results */
.test-results {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.test-results.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.result-card {
  background: #FFF9F0;
  border: 3px solid var(--gold-alpha-40);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.result-card.alert {
  background: #FFF5F5;
  border-color: #E53E3E;
}

.result-card.alert .result-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card.alert .result-icon i {
  font-size: 60px;
  color: #E53E3E;
}

.result-card.alert .result-score {
  font-size: var(--font-size-h3);
  color: #E53E3E;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}

.result-card.alert .result-title {
  color: #1A1A1A; /* Negro para legibilidad */
}

.result-card.alert .result-description {
  color: #1A1A1A; /* Negro para legibilidad */
}

.result-emoji {
  font-size: 64px;
  margin-bottom: var(--spacing-md);
  color: var(--gold-primary);
}

.result-emoji i {
  font-size: 64px;
  color: var(--gold-primary);
}

/* =====================================================
   BLIND SPOT TEST - RESULTADOS PREMIUM v5.7.1
   Patek Philippe Black & Gold Style
   Fecha: 23-Feb-2026
   ===================================================== */

/* Círculo de icono - Base */
.result-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

/* Efecto glow en el círculo */
.result-icon-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: inherit;
  filter: blur(8px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.result-icon-circle:hover::before {
  opacity: 0.7;
}

/* Icono Font Awesome dentro del círculo */
.result-icon-circle i {
  font-size: 36px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Variante Success (Score 5/5 - Top 3% Elite) */
.result-icon-success {
  background: var(--result-success-icon-bg);
  color: var(--result-success-icon-color);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.4);
}

.result-icon-success:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(184, 148, 31, 0.6);
}

/* Variante Warning (Score 3-4/5 - Advertencia) */
.result-icon-warning {
  background: var(--result-warning-icon-bg);
  color: var(--result-warning-icon-color);
  border-color: var(--gold-champagne);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.35);
}

.result-icon-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(201, 169, 97, 0.55);
}

/* Variante Danger (Score 0-2/5 - Peligro) */
.result-icon-danger {
  background: var(--result-danger-icon-bg);
  color: var(--result-danger-icon-color);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  animation: pulse-danger 2s ease-in-out infinite;
}

.result-icon-danger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.6);
  animation-play-state: paused;
}

/* Animación de pulso para danger */
@keyframes pulse-danger {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 6px 32px rgba(212, 175, 55, 0.7);
  }
}

/* Títulos de resultados - Premium */
.result-card-title {
  font-family: var(--font-luxury);
  font-size: 32px;
  font-weight: 700;
  color: var(--result-text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-card-subtitle {
  font-size: 18px;
  color: var(--result-text-accent);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.result-card-description {
  font-size: 17px;
  color: var(--result-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cajas de contenido - Premium Style */
.result-card-box {
  background: var(--result-box-bg);
  border-left: 4px solid var(--result-box-border);
  padding: 24px;
  margin: 28px 0;
  border-radius: 8px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.result-card-box:hover {
  background: rgba(184, 148, 31, 0.12);
  border-left-width: 6px;
  transform: translateX(4px);
}

.result-card-box-danger {
  background: var(--result-box-bg-danger);
  border-left-color: var(--gold-light);
  border-left-width: 4px;
}

.result-card-box-danger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.result-card-box-icon {
  font-size: 32px;
  margin-bottom: 12px;
  filter: grayscale(0%);
}

.result-card-box-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--result-text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Listas dentro de cajas */
.result-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.result-card-list li {
  padding: 12px 0 12px 8px;
  color: var(--result-text-secondary);
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid var(--gold-alpha-20);
  transition: all 0.2s ease;
}

.result-card-list li:last-child {
  border-bottom: none;
}

.result-card-list li:hover {
  padding-left: 16px;
  color: var(--result-text-primary);
}

.result-card-list li strong {
  color: var(--result-text-primary);
  font-weight: 600;
}

/* Botón CTA de resultados - Gradiente dorado */
.btn-cta-result {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
  color: var(--color-black-pure);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  margin: 24px 0 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.4);
  border: 1px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.btn-cta-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s ease;
}

.btn-cta-result:hover::before {
  left: 100%;
}

.btn-cta-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 148, 31, 0.6);
  background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--gold-light) 100%);
}

/* Footer de resultados */
.result-card-footer {
  font-size: 14px;
  color: var(--result-text-muted);
  font-style: italic;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

/* Responsive - Tablets */
@media (max-width: 768px) {
  .result-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .result-card-title {
    font-size: 26px;
  }
  
  .result-card-subtitle {
    font-size: 16px;
  }
  
  .result-card-description {
    font-size: 16px;
  }
  
  .result-card-box {
    padding: 20px;
  }
  
  .result-card-box-title {
    font-size: 18px;
  }
  
  .result-card-list li {
    font-size: 15px;
    padding: 10px 0 10px 6px;
  }
  
  .btn-cta-result {
    font-size: 16px;
    padding: 16px 36px;
  }
}

/* Responsive - Móviles */
@media (max-width: 480px) {
  .result-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .result-card-title {
    font-size: 22px;
  }
  
  .result-card-subtitle {
    font-size: 14px;
  }
  
  .result-card-description {
    font-size: 15px;
  }
  
  .result-card-box {
    padding: 18px;
    margin: 20px 0;
  }
  
  .result-card-box-title {
    font-size: 17px;
  }
  
  .result-card-list li {
    font-size: 14px;
    padding: 8px 0 8px 4px;
  }
  
  .btn-cta-result {
    font-size: 15px;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
  }
}

.result-title {
  font-size: var(--font-size-h3);
  color: var(--text-on-light-primary);
  margin-bottom: var(--spacing-md);
}

.result-description {
  font-size: var(--font-size-body-large);
  color: var(--text-on-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.result-highlight {
  background: #FFF9F0;
  border-left: 4px solid var(--gold-primary);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  border-radius: var(--border-radius-sm);
}

.result-highlight h4 {
  color: var(--text-on-light-primary);
  font-size: var(--font-size-h5);
  margin-bottom: var(--spacing-sm);
}

.result-highlight ul {
  list-style: none;
  padding-left: 0;
}

.result-highlight li {
  padding: var(--spacing-xs) 0;
  color: var(--text-on-light-secondary);
  display: flex;
  gap: var(--spacing-sm);
}

/* ===== RESULT CARDS PATEK PHILIPPE STYLE v5.6.0 ===== */
/* Black & Gold Elegance - Alineado con políticas oficiales */

.result-card {
  background: linear-gradient(135deg, var(--color-dark-1) 0%, rgba(26, 26, 26, 0.95) 100%), var(--result-overlay-gold);
  border: 2px solid var(--gold-alpha-40);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 60px rgba(184, 148, 31, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.result-card-success {
  background: linear-gradient(135deg, var(--result-success-bg) 0%, rgba(42, 42, 42, 0.98) 100%), var(--result-overlay-gold);
  border: var(--result-border-success-enhanced);
  box-shadow: 0 8px 24px rgba(184, 148, 31, 0.25), var(--result-glow-success), var(--result-inner-highlight-success);
}

.result-card-warning {
  background: linear-gradient(135deg, var(--result-warning-bg) 0%, rgba(38, 38, 38, 0.98) 100%), var(--result-overlay-gold-secondary);
  border: var(--result-border-warning-enhanced);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.2), var(--result-glow-warning), var(--result-inner-highlight-warning);
}

.result-card-danger {
  background: linear-gradient(135deg, var(--result-danger-bg) 0%, rgba(34, 34, 34, 0.98) 100%), var(--result-overlay-gold);
  border: var(--result-border-danger-enhanced);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3), var(--result-glow-danger), var(--result-inner-highlight-danger);
}

/* Círculo de icono - Patek Style */
.result-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.result-icon-success {
  background: var(--result-success-icon-bg);
  color: var(--result-success-icon-color);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.4);
}

.result-icon-warning {
  background: var(--result-warning-icon-bg);
  color: var(--result-warning-icon-color);
  border-color: var(--gold-champagne);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
}

.result-icon-danger {
  background: var(--result-danger-icon-bg);
  color: var(--result-danger-icon-color);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* Títulos y textos - Super Premium Balance */
.result-card-title {
  font-family: var(--font-luxury);
  font-size: 32px;
  font-weight: 700;
  color: var(--result-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}

.result-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  box-shadow: 0 1px 8px rgba(184, 148, 31, 0.5);
}

.result-card-subtitle {
  font-size: 18px;
  color: var(--result-text-accent);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 16px;
}

.result-card-description {
  font-size: 17px;
  color: var(--result-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cajas de contenido - Super Premium Balance */
.result-card-box {
  background: var(--result-box-bg-enhanced);
  border: var(--result-box-border-enhanced);
  border-left: 4px solid var(--gold-primary);
  padding: 28px;
  margin: 32px 0;
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: var(--result-box-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.result-card-box:hover {
  background: rgba(184, 148, 31, 0.18);
  border-left-width: 6px;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(184, 148, 31, 0.1);
}

.result-card-box-danger {
  background: var(--result-box-bg-danger);
  border: var(--result-box-border-enhanced);
  border-left: 4px solid var(--gold-light);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.result-card-box-danger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-width: 6px;
  transform: translateX(4px);
}

.result-card-box-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(184, 148, 31, 0.15);
  border: 2px solid rgba(184, 148, 31, 0.4);
  color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.result-card-box-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(184, 148, 31, 0.5), 0 0 40px rgba(184, 148, 31, 0.2);
}

.result-card-box-icon i {
  filter: drop-shadow(0 2px 6px rgba(184, 148, 31, 0.4));
}

.result-card-box-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--result-text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.result-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.result-card-list li {
  padding: 12px 0;
  color: var(--result-text-secondary);
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid var(--gold-alpha-20);
  transition: all 0.2s ease;
}

.result-card-list li:hover {
  padding-left: 8px;
  color: var(--result-text-primary);
  border-bottom-color: var(--gold-alpha-40);
}

.result-card-list li:last-child {
  border-bottom: none;
}

.result-card-list li strong {
  color: var(--result-text-primary);
  font-weight: 600;
}

/* Botón CTA - Gradiente dorado premium */
.btn-cta-result {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
  color: var(--color-black-pure);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  margin: 24px 0 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.4);
  border: 1px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.btn-cta-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-cta-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 148, 31, 0.6);
  background: linear-gradient(135deg, var(--gold-champagne) 0%, var(--gold-light) 100%);
}

.btn-cta-result:hover::before {
  left: 100%;
}

/* Footer - Patek Style */
.result-card-footer {
  font-size: 14px;
  color: var(--result-text-muted);
  font-style: italic;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
  .result-card {
    padding: 36px 24px;
  }
  
  .result-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .result-card-title {
    font-size: 26px;
  }
  
  .result-card-subtitle {
    font-size: 15px;
  }
  
  .result-card-description {
    font-size: 16px;
  }
  
  .result-card-box {
    padding: 20px;
    margin: 20px 0;
  }
  
  .result-card-box-title {
    font-size: 18px;
  }
  
  .result-card-list li {
    font-size: 15px;
    padding: 10px 0;
  }
  
  .btn-cta-result {
    font-size: 16px;
    padding: 16px 36px;
    width: 100%;
    max-width: 350px;
  }
}

.result-highlight li::before {
  content: '—';
  color: var(--gold-primary);
  font-weight: bold;
}

.result-cta {
  margin-bottom: var(--spacing-xl);
}

/* Result Stats */
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gold-alpha-20);
}

.result-stat-item {
  text-align: center;
}

.result-stat-text {
  font-size: var(--font-size-small);
  color: var(--text-on-light-tertiary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
}

/* =============================================
   SECTION HEADERS PREMIUM - SHARED STYLES
   ============================================= */

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-premium {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(184, 148, 31, 0.15) 0%,
        rgba(184, 148, 31, 0.25) 100%
    );
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
}

.section-title-premium {
    font-family: var(--font-luxury);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-white-pure);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.title-underline-premium {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle-premium {
    font-size: var(--font-size-body-large);
    color: var(--text-on-dark-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== MÉTODO 5L SECTION - Sistema de Maestría Interior ===== */

/* ===== MÉTODO 5L SECTION - Sistema de Maestría Interior ===== */

.metodo-5l-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F9F7F4 0%, #FFFEF8 100%);
}

.metodo-5l-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.metodo-5l-header {
  text-align: center;
  margin-bottom: 48px;
}

.metodo-5l-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.metodo-5l-title {
  font-family: var(--font-luxury);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.metodo-5l-subtitle {
  font-size: 24px;
  color: var(--gold-primary);
  font-weight: 600;
  margin: 0 0 16px 0;
}

.metodo-5l-description {
  font-size: 18px;
  color: var(--text-dark-tertiary);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
}

.metodo-5l-formula {
  font-size: 20px;
  color: var(--gold-primary);
  font-weight: 700;
  margin: 0 0 32px 0;
}

/* =============================================
   VIDEO TESTIMONIALS SECTION - V4.0.0
   Testimoniales en video con placeholders
   ============================================= */

.video-testimonials-section {
    padding: 100px 20px 120px;
    background: linear-gradient(135deg, var(--color-black-heritage) 0%, var(--color-dark-1) 100%);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil en fondo */
.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(184, 148, 31, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.video-testimonials-section .container {
    position: relative;
    z-index: 1;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.video-testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(184, 148, 31, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.video-testimonial-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 16px 48px rgba(184, 148, 31, 0.25), 0 0 0 1px rgba(184, 148, 31, 0.1);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.video-testimonial-player {
    position: relative;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0F0D 100%);
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.video-placeholder-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(184, 134, 11, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.video-placeholder-content {
    position: relative;
    z-index: 1;
}

.video-placeholder-icon {
    margin-bottom: 16px;
}

.video-placeholder-icon i {
    font-size: 64px;
    color: var(--gold-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover .video-placeholder-icon i {
    opacity: 1;
    transform: scale(1.1);
}

.video-placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.video-placeholder-note {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    margin: 0 0 16px 0;
}

.video-placeholder-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(184, 148, 31, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.video-testimonial-info {
    padding: 32px 28px;
    background: rgba(0, 0, 0, 0.2);
}

.video-testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-on-dark-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold-primary);
}

.video-testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.video-testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.video-testimonial-author span {
    font-size: 14px;
    color: var(--text-on-dark-muted);
}

.video-testimonial-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.result-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(184, 148, 31, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover .result-badge {
    background: rgba(184, 148, 31, 0.25);
    border-color: var(--gold-light);
}

.video-testimonials-footer {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.video-note {
    font-size: 14px;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.video-note i {
    color: var(--gold-primary);
    font-size: 18px;
}

/* CTA Post-Testimoniales */
.testimonials-cta {
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0A0F0D 0%, #1A1A1A 100%);
    border: 2px solid #B8860B;
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(184, 148, 31, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.testimonials-cta-content {
    position: relative;
    z-index: 1;
}

.testimonials-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.testimonials-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.testimonials-cta-subtitle strong {
    color: #B8860B;
    font-weight: 700;
}

.testimonials-cta .btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(184, 148, 31, 0.3);
    margin-bottom: 20px;
}

.testimonials-cta .btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 148, 31, 0.5);
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

.testimonials-cta .btn-primary-cta i {
    transition: transform 0.3s ease;
}

.testimonials-cta .btn-primary-cta:hover i {
    transform: translateX(4px);
}

.testimonials-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.testimonials-cta-note i {
    color: #B8860B;
    font-size: 14px;
}

/* =============================================
   FIN VIDEO TESTIMONIALS SECTION
   ============================================= */

/* =============================================
   TRIPLE GUARANTEE LUXURY SECTION - v5.3.0
   Garantías Premium optimizadas para claridad visual
   Copy reducido 44% | Altura cards -22% | Elegancia 9/10
   ============================================= */

.triple-guarantee-luxury {
    padding: 120px 20px;
    background: var(--color-black-pure);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil en fondo */
.triple-guarantee-luxury::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(184, 148, 31, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ===== SCOPE CLARIFICATION (v5.3.0) ===== */
/* Badge informativo: garantías aplican a programa TAC Premium completo (3-6 meses) */

.guarantees-scope-premium {
    max-width: 850px;
    margin: 40px auto 60px;
    padding: 32px 40px;
    background: linear-gradient(
        135deg,
        rgba(184, 148, 31, 0.08) 0%,
        rgba(184, 148, 31, 0.12) 100%
    );
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.scope-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(184, 148, 31, 0.3),
        0 8px 24px rgba(184, 148, 31, 0.2);
}

.scope-icon i {
    font-size: 28px;
    color: var(--color-black-pure);
}

.scope-title {
    font-family: var(--font-luxury);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--gold-light);
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    text-transform: uppercase; /* Badge estilo premium */
}

.scope-description {
    font-size: 16px;
    color: var(--text-on-dark-primary);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.scope-description strong {
    color: var(--gold-light);
    font-weight: var(--font-weight-bold);
}

.scope-clarification {
    font-size: 14px;
    color: var(--text-on-dark-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.scope-clarification strong {
    color: var(--text-on-dark-primary);
    font-weight: var(--font-weight-semibold);
    font-style: normal;
}

/* ===== GUARANTEES GRID (v5.3.0) ===== */
/* Grid 3 columnas | Gap 48px | Cards optimizadas para claridad */

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

/* ===== GUARANTEE CARD (v5.3.0) ===== */
/* Card premium con hover elevation | Padding 56px | Copy optimizado 35-40 palabras */

.guarantee-card {
    background: linear-gradient(135deg, var(--color-dark-1) 0%, var(--color-dark-2) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 56px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(184, 148, 31, 0.15),
        inset 0 1px 0 rgba(184, 148, 31, 0.1);
}

.guarantee-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 16px 48px rgba(184, 148, 31, 0.4),
        inset 0 1px 0 rgba(184, 148, 31, 0.2);
    border-color: var(--gold-light);
    background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-3) 100%);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border: 3px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(184, 148, 31, 0.3),
        0 8px 24px rgba(184, 148, 31, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

.guarantee-card:hover .guarantee-icon {
    border-color: var(--gold-champagne);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 32px rgba(184, 148, 31, 0.5),
        0 12px 48px rgba(184, 148, 31, 0.3),
        inset 0 2px 12px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-champagne) 100%);
}

.guarantee-icon i {
    font-size: 48px;
    color: var(--color-black-pure);
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon i {
    transform: scale(1.1);
}

.guarantee-title {
    font-family: var(--font-luxury);
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white-pure);
    margin: 0 0 18px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.guarantee-description {
    font-size: var(--font-size-body);
    color: var(--text-on-dark-secondary);
    line-height: 1.7;
    margin: 0 0 28px 0;
    letter-spacing: 0.3px;
}

.guarantee-description strong {
    color: var(--gold-light);
    font-weight: var(--font-weight-bold);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(
        135deg, 
        rgba(184, 148, 31, 0.15) 0%, 
        rgba(184, 148, 31, 0.25) 100%
    );
    border: 1.5px solid var(--gold-primary);
    border-radius: 30px;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    color: var(--color-white-pure);
    box-shadow: 
        0 2px 8px rgba(184, 148, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-badge {
    background: linear-gradient(
        135deg, 
        rgba(184, 148, 31, 0.25) 0%, 
        rgba(184, 148, 31, 0.35) 100%
    );
    border-color: var(--gold-light);
    transform: scale(1.05);
}

.guarantee-badge i {
    color: var(--gold-primary);
    font-size: 16px;
}

/* ===== GUARANTEE FOOTER (v5.3.0) ===== */
/* Social proof con datos cuantitativos + firma personal David */

.guarantee-footer {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 48px 48px 40px;
    background: linear-gradient(
        135deg,
        rgba(184, 148, 31, 0.08) 0%,
        rgba(184, 148, 31, 0.12) 100%
    );
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(184, 148, 31, 0.15);
}

/* Icono award grande circular con gradiente oro */
.footer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border: 3px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(184, 148, 31, 0.3),
        0 8px 24px rgba(184, 148, 31, 0.2);
}

.footer-icon i {
    font-size: 40px;
    color: var(--color-black-pure);
}

/* Texto principal con datos: "8+ años", "150+ líderes" */
.guarantee-footer-text {
    font-size: var(--font-size-body-large);
    color: var(--text-on-dark-primary);
    font-weight: var(--font-weight-medium);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.guarantee-footer-text strong {
    color: var(--gold-light);
    font-weight: var(--font-weight-bold);
}

/* Firma personal "— David Moreno, Fundador The Awakening Code" */
.guarantee-footer-signature {
    font-size: 16px;
    color: var(--gold-light);
    font-weight: var(--font-weight-semibold);
    font-style: italic;
    margin: 0;
    text-align: right;
}

.guarantee-footer-signature strong {
    font-weight: var(--font-weight-bold);
    font-style: normal;
}

/* =============================================
   FIN GUARANTEE SECTION - v5.3.0 OPTIMIZADA
   ============================================= */

/* ===== MÉTODO 5L SECTION - Sistema de Maestría Interior ===== */

.metodo-5l-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F9F7F4 0%, #FFFEF8 100%);
}

.metodo-5l-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.metodo-5l-header {
  text-align: center;
  margin-bottom: 48px;
}

.metodo-5l-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.metodo-5l-title {
  font-family: var(--font-luxury);
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.metodo-5l-subtitle {
  font-size: 24px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.metodo-5l-description {
  font-size: 18px;
  color: #4A4A4A;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 20px;
}

.metodo-5l-formula {
  font-size: 20px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 24px;
}

/* ========================================
   MÉTODO 5L - REDISEÑO PREMIUM v5.4.0
   Resumen ejecutivo + Cards + Measurement
   ======================================== */

/* Resumen ejecutivo (3 líneas) */
.metodo-executive-summary {
  max-width: 900px;
  margin: 32px auto 40px;
  text-align: center;
}

.summary-line {
  font-size: 17px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 0 8px;
}

.summary-line:last-child {
  margin-bottom: 0;
}

/* ========================================
   ACORDEONES 5L - FORMATO VERTICAL OPTIMIZADO
   ======================================== */
.metodo-5l-accordion {
  max-width: 980px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item del acordeón */
.metodo-accordion-item {
  background: #FFFFFF;
  border: 2px solid #E8E5DD;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.metodo-accordion-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.1);
}

.metodo-accordion-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(184, 148, 31, 0.15);
}

/* Header del acordeón (clickeable) */
.metodo-accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.metodo-accordion-header:hover {
  background: #FFFEF8;
}

/* Ícono circular dorado */
.accordion-icon-wrapper {
  flex-shrink: 0;
}

.accordion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C9A847 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.metodo-accordion-item:hover .accordion-icon {
  transform: scale(1.1);
}

/* Título y subtítulo */
.accordion-title-wrapper {
  flex: 1;
}

.accordion-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.accordion-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: #5A5A5A;
  margin: 0;
}

/* Chevron */
.accordion-chevron {
  flex-shrink: 0;
  color: var(--gold-primary);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.metodo-accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
}

/* Contenido del acordeón (colapsable) */
.metodo-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.accordion-body {
  padding: 0 28px 28px 104px; /* 104px = 28px padding + 56px icon + 20px gap */
  border-top: 1px solid #E8E5DD;
  padding-top: 24px;
  margin: 0 28px;
}

.accordion-intro {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 16px;
}

.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.accordion-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #4A4A4A;
}

.accordion-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

.accordion-list li:last-child {
  margin-bottom: 0;
}

.accordion-result {
  background: #FFFEF8;
  border-left: 3px solid var(--gold-primary);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #2A2A2A;
  border-radius: 4px;
}

.accordion-result strong {
  color: var(--gold-primary);
  font-weight: 700;
}

/* ========================================
   BLOQUE "CÓMO MEDIMOS"
   ======================================== */

.metodo-measurement-block {
  max-width: 800px;
  margin: 56px auto;
  padding: 28px 36px;
  background: #FFFEF8;
  border-left: 4px solid var(--gold-primary);
  border-radius: 8px;
}

.measurement-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}

.measurement-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0;
}

/* CTA Final específico */
.metodo-5l-cta-final {
  max-width: 700px;
  margin: 56px auto 0;
  text-align: center;
  padding: 40px 32px;
  background: #F9F7F4;
  border-radius: 16px;
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 24px;
}

.btn-cta-5l {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C9A847 100%);
  color: #1A1A1A;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 4px 12px rgba(184, 148, 31, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-5l:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 148, 31, 0.35);
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

.cta-final-microcopy {
  font-size: 14px;
  color: #666666;
  margin: 16px 0 0;
  font-style: italic;
}

/* Tabs (5 pilares) */
.metodo-5l-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.metodo-tab {
  background: #FFFFFF;
  border: 2px solid #E8E5DD;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
}

.metodo-tab i {
  color: var(--gold-primary);
  margin-right: 8px;
}

.metodo-tab:hover {
  border-color: var(--gold-primary);
  background: #FFFEF8;
  transform: translateY(-2px);
}

/* ========================================
   TIMELINE VISUAL 5L (siempre visible)
   ======================================== */
.metodo-5l-timeline-visual {
  max-width: 1000px;
  margin: 56px auto 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.timeline-visual-item {
  text-align: center;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 2px solid #E8E5DD;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-visual-item:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.12);
  transform: translateY(-3px);
}

.timeline-visual-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C9A847 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #FFFFFF;
}

.timeline-visual-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.timeline-visual-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #5A5A5A;
  margin: 0;
}

/* ========================================
   BOTÓN EXPANDIBLE MÉTODO
   ======================================== */
.metodo-expand-wrapper {
  text-align: center;
  margin: 40px auto 56px;
}

.btn-expand-metodo {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C9A847 100%);
  border: none;
  border-radius: 12px;
  padding: 20px 48px;
  font-family: var(--font-display);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(184, 148, 31, 0.25);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.btn-expand-metodo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(184, 148, 31, 0.35);
  background: linear-gradient(135deg, #C9A847 0%, var(--gold-primary) 100%);
}

.btn-expand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-expand-subtext {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

.btn-expand-icon {
  font-size: 16px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.btn-expand-metodo[aria-expanded="true"] .btn-expand-icon {
  transform: rotate(180deg);
}

/* Contenido expandible (oculto por defecto) */
.metodo-expandable-content {
  display: none; /* Oculto por defecto - JavaScript lo controla */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
}

.metodo-expandable-content.expanded {
  max-height: 10000px;
  opacity: 1;
}

/* Timeline Visual */
.metodo-5l-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  gap: 12px;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.timeline-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  color: var(--gold-primary);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

/* ========================================
   BOTÓN EXPANDIR MÉTODO - PREMIUM DESIGN
   ======================================== */

.metodo-expand-wrapper {
  max-width: 600px;
  margin: 48px auto;
  text-align: center;
}

.btn-expand-metodo {
  /* Layout */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 40px;
  
  /* Visual */
  background: linear-gradient(135deg, var(--gold-primary) 0%, #C9A847 100%);
  color: #1A1A1A;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(184, 148, 31, 0.25);
  
  /* Typography */
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  
  /* Animation */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Efecto hover premium */
.btn-expand-metodo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 148, 31, 0.35);
  border-color: #D4AF37;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
}

.btn-expand-metodo:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(184, 148, 31, 0.3);
}

/* Estado expandido */
.btn-expand-metodo.expanded {
  background: #F9F7F4;
  color: var(--gold-primary);
  border-color: #E8E5DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-expand-metodo.expanded:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

/* Texto principal */
.btn-expand-text {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Subtexto */
.btn-expand-subtext {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* Icono */
.btn-expand-icon {
  font-size: 16px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.btn-expand-metodo.expanded .btn-expand-icon {
  transform: rotate(180deg);
}

/* Focus para accesibilidad */
.btn-expand-metodo:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 4px;
}

/* ========================================
   BOTÓN EXPANDIR TEST - PREMIUM DESIGN
   ======================================== */

.test-expand-wrapper {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.btn-expand-test {
  /* Reusa los estilos del botón del método */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 40px;
  
  /* Visual diferenciado - Tono más oscuro para el test */
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(184, 148, 31, 0.25);
  
  /* Typography */
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  
  /* Animation */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-expand-test:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 148, 31, 0.35);
  border-color: #D4AF37;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.btn-expand-test:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(184, 148, 31, 0.3);
}

.btn-expand-test.expanded {
  background: #F9F7F4;
  color: #1A1A1A;
  border-color: #E8E5DD;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-expand-test.expanded:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

.btn-expand-test:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 4px;
}

/* Contenido expandible */
.test-expandable-content {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.test-expandable-content.expanded {
  opacity: 1;
}

/* Accordion */
.metodo-5l-accordion {
  max-width: 900px;
  margin: 0 auto 48px;
}

.metodo-accordion-item {
  background: #FFFFFF;
  border: 2px solid #E8E5DD;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.metodo-accordion-item:hover {
  border-color: var(--gold-primary);
}

.metodo-accordion-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.15);
}

.metodo-accordion-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.metodo-accordion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F9F7F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.metodo-accordion-item.active .metodo-accordion-icon {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.metodo-accordion-title-wrap {
  flex: 1;
}

.metodo-accordion-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metodo-accordion-subtitle {
  font-size: 15px;
  color: #888888;
  font-weight: 500;
}

.metodo-accordion-arrow {
  font-size: 18px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.metodo-accordion-item.active .metodo-accordion-arrow {
  transform: rotate(180deg);
}

.metodo-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.metodo-accordion-item.active .metodo-accordion-content {
  max-height: 800px;
  padding: 0 24px 24px;
}

.metodo-accordion-intro {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 16px;
  line-height: 1.6;
}

.metodo-accordion-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.metodo-accordion-list li {
  padding: 10px 0;
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.metodo-accordion-list li i {
  color: var(--gold-primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.metodo-accordion-result {
  background: #FFFEF8;
  border-left: 4px solid var(--gold-primary);
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  color: #1A1A1A;
  line-height: 1.6;
}

.metodo-accordion-result strong {
  color: var(--gold-primary);
}

/* Caso Real Específico */
.metodo-accordion-case {
  border-color: #FF9800;
}

.metodo-accordion-case.active {
  border-color: #FF9800;
}

.metodo-accordion-case .metodo-accordion-icon {
  background: #FFF3E0;
  color: #FF9800;
}

.metodo-accordion-case.active .metodo-accordion-icon {
  background: #FF9800;
  color: #FFFFFF;
}

.metodo-case-badge {
  background: #FF9800;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metodo-case-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: #F9F7F4;
  padding: 24px;
  border-radius: 12px;
}

.metodo-case-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metodo-case-col p {
  font-size: 16px;
  color: #1A1A1A;
  font-style: italic;
  line-height: 1.6;
}

.metodo-case-arrow {
  font-size: 28px;
  color: var(--gold-primary);
}

/* CTA de la sección */
.metodo-5l-cta {
  text-align: center;
  padding: 48px 24px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid var(--gold-primary);
}

.metodo-cta-question {
  font-size: 22px;
  color: #1A1A1A;
  font-weight: 600;
  margin-bottom: 24px;
}

.btn-cta-metodo {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(184, 148, 31, 0.3);
}

.btn-cta-metodo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 148, 31, 0.5);
}

.btn-cta-metodo i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.btn-cta-metodo:hover i {
  transform: translateX(5px);
}

.metodo-cta-note {
  font-size: 14px;
  color: #888888;
  font-style: italic;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .metodo-5l-title {
    font-size: 36px;
  }
  
  .metodo-5l-subtitle {
    font-size: 20px;
  }
  
  .metodo-5l-description {
    font-size: 16px;
  }
  
  .metodo-5l-tabs {
    gap: 8px;
    padding: 0 12px;
  }
  
  .metodo-tab {
    padding: 10px 18px;
    font-size: 13px;
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }
  
  .metodo-tab i {
    font-size: 14px;
  }
  
  .metodo-5l-timeline {
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .timeline-item {
    display: block;
    text-align: left;
    padding: 16px 20px;
    background: #FFFFFF;
    border-left: 4px solid var(--gold-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover {
    background: #FFFEF8;
    border-left-width: 6px;
    transform: translateX(2px);
  }
  
  .timeline-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin: 0 12px 0 0;
    vertical-align: middle;
  }
  
  .timeline-icon {
    display: none;
  }
  
  .timeline-title {
    display: inline-block;
    font-size: 16px;
    margin: 0 0 8px 0;
    vertical-align: middle;
  }
  
  .timeline-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-left: 40px;
    color: #666666;
  }
  
  .metodo-accordion-header {
    padding: 16px;
  }
  
  .metodo-accordion-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .metodo-accordion-title {
    font-size: 16px;
  }
  
  .metodo-accordion-subtitle {
    font-size: 13px;
  }
  
  .metodo-case-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .metodo-case-arrow {
    transform: rotate(90deg);
  }
  
  .btn-cta-metodo {
    font-size: 16px;
    padding: 16px 32px;
  }
}

/* =============================================
   EL ORIGEN DEL MÉTODO 5L - PREMIUM SECTION
   =============================================
   
   🎨 DISEÑO: Mockup híbrido VIP con paleta crema
   🎯 OBJETIVO: Storytelling inmersivo + máxima legibilidad
   
   ARQUITECTURA:
   - Header principal (título + subtítulo)
   - Intro visible (siempre mostrado)
   - Botón expandir/colapsar (aria-compliant)
   - Tabs horizontales (5 capítulos navegables)
   - Contenido por tabs (texto + imágenes)
   - CTA final premium (dentro del último tab)
   
   ACCESIBILIDAD:
   - WCAG AAA completo (contraste 7.8:1 mínimo)
   - Navegación teclado (flechas, Home, End)
   - ARIA roles, labels, controls
   - Focus-visible con outline dorado
   
   PALETA DE ORO (v5.3.0):
   - Oro muy oscuro (#5A4A0D) → 9.1:1 ratio (tabs activos)
   - Oro oscuro (#6B5710) → 7.8:1 ratio (títulos, tabs)
   - Oro intenso (#7A6518) → 5.9:1 ratio (textos destacados)
   - Oro estándar (#B8941F) → 3.1:1 (decoraciones)
   - Oro claro (#D4AF37) → hover effects
   
   RESPONSIVE:
   - Desktop: 1920px (tabs horizontal scroll)
   - Tablet: 768px (tabs scroll + padding reducido)
   - Mobile: 375px (tabs scroll + layout vertical)
   
   PERFORMANCE:
   - Animaciones CSS nativas (GPU-accelerated)
   - Lazy loading de imágenes
   - Transiciones 0.3-0.4s (UX fluida)
   
   VERSIÓN: 5.3.0 (2026-02-19)
   AUTOR: The Awakening Code Development Team
   ============================================= */

/* ========== LAYOUT BASE ========== */

/* Section Container */
.origen-metodo-section {
  padding: 120px 20px;
  background: #F5F3EE;
  position: relative;
}

.origen-metodo-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ========== HEADER PRINCIPAL ========== */

.origen-header {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(184, 148, 31, 0.2);
}

.origen-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0 0 32px 0;
  line-height: 1.2;
  letter-spacing: -1px;
}

.origen-subtitle {
  font-size: 20px;
  color: #7A6518;           /* WCAG AA: ratio 5.9:1 */
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.6;
}

/* ========== BLOQUES DE CONTENIDO ========== */
.origen-content-block {
  margin-bottom: 20px;
}

.origen-text {
  font-family: 'Georgia', serif;
  font-size: 19px;
  color: #3A3A3A;
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

.origen-text-em {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #7A6518;
  font-style: normal;
  font-weight: 500;
  margin-top: 32px;
  line-height: 1.8;
}

/* ========== LISTAS ========== */

.origen-list {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #3A3A3A;
  line-height: 1.9;
  margin: 0;
  padding-left: 24px;
  list-style: none;
}

.origen-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 8px;
}

.origen-list li::before {
  content: "•";
  color: #B8941F;
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  left: -16px;
  top: -2px;
}

/* Espaciadores */
.origen-spacer-small {
  height: 24px;
}

.origen-spacer {
  height: 40px;
}

.origen-spacer-large {
  height: 70px;
}

/* HEADER IMAGEN */
.origen-header-image-container {
    margin: 60px auto 0;
    max-width: 450px;
}

.origen-header-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(184, 148, 31, 0.15);
    opacity: 0.95;
}

.origen-image-caption {
    text-align: center;
    font-size: 11px;
    color: rgba(184, 148, 31, 0.7);
    margin-top: 16px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* INTRO EDITORIAL */
.origen-intro-visible {
    margin-bottom: 70px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.origen-intro-block {
    margin-bottom: 20px;
}

/* BOTÓN EXPANDIR */
.origen-expand-trigger {
    text-align: center;
    margin: 70px 0 70px;
}

.origen-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B8941F;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 18px 50px;
    border: 1px solid rgba(184, 148, 31, 0.4);
    border-radius: 2px;
    background: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.origen-expand-btn:hover {
    color: #9A7A19;
    border-color: #B8941F;
    background: rgba(184, 148, 31, 0.08);
}

/* Focus visible para accesibilidad (WCAG AAA) */
.origen-expand-btn:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 4px;
}

.btn-icon {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.origen-expand-btn.active .btn-icon {
    transform: rotate(180deg);
}

/* CONTENIDO EXPANDIBLE */
.origen-expandable-content {
    display: block;
    max-height: 12000px;
    overflow: visible;
    opacity: 1;
    transition: opacity 0.4s ease, max-height 0.6s ease;
}

.origen-expandable-content[hidden] {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ========== TABS HORIZONTALES - VERSION 5.0.0 DEBUG ========== */
.origen-tabs-container {
    margin: 70px 0 70px;
    border-bottom: 1px solid rgba(184, 148, 31, 0.2);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px 2px 0 0;
}

.origen-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 148, 31, 0.2) transparent;
    justify-content: center;
}

.origen-tab {
    flex-shrink: 0;
    padding: 18px 28px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #6B5710 !important;
    cursor: pointer;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
    white-space: nowrap;
    font-weight: 600;
    background: transparent;
}

.origen-tab:hover {
    color: #5A4A0D !important;
    background: rgba(184, 148, 31, 0.08);
    border-bottom-color: #7A6518;
}

/* Focus visible para navegación teclado (WCAG AAA) */
.origen-tab:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
    z-index: 1;
}

.origen-tab.active {
    color: #5A4A0D !important;
    border-bottom-color: #7A6518;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

/* CONTENIDO DE TABS */
.origen-tab-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.origen-tab-content[hidden] {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.origen-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: origenFadeInContent 0.4s ease;
}

@keyframes origenFadeInContent {
    from { 
        opacity: 0; 
        transform: translateY(15px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* CTA Final dentro del último tab */
.origen-cta-final {
    margin-top: 60px;
    padding: 48px 40px;
    background: linear-gradient(135deg, #0A0F0D 0%, #1A1A1A 100%);
    border: 2px solid #B8860B;
    border-radius: 12px;
    text-align: center;
}

.origen-cta-question {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.btn-cta-origen {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 100%);
    color: #000000;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(184, 148, 31, 0.3);
    margin-bottom: 16px;
}

.btn-cta-origen:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(184, 148, 31, 0.5);
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
}

.btn-cta-origen:focus-visible {
    outline: 2px solid #B8860B;
    outline-offset: 4px;
}

.btn-cta-origen i {
    transition: transform 0.3s ease;
}

.btn-cta-origen:hover i {
    transform: translateX(4px);
}

.origen-cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ANCHOR HEADING CON DECORACIÓN - WCAG AAA */
.origen-anchor-heading-decorated {
    font-size: 12px;
    font-weight: 700;
    color: #6B5710;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.origen-anchor-heading-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184, 148, 31, 0.4), transparent);
}

/* NAVEGACIÓN SIGUIENTE */
.origen-next-chapter {
    text-align: center;
    margin: 70px 0 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(184, 148, 31, 0.15);
}

.origen-next-chapter a {
    color: #B8941F;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.origen-next-chapter a:hover {
    color: #9A7A19;
    transform: translateY(-2px);
}

.origen-next-arrow {
    margin-left: 8px;
}

/* IMÁGENES EN CONTENIDO */
.origen-content-with-image {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.origen-content-column {
    flex: 1;
}

.origen-image-column {
    flex-shrink: 0;
}

.origen-story-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(184, 148, 31, 0.15);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

/* Invertir horizontalmente imagen que apunta hacia afuera */
.origen-story-image-flip {
    transform: scaleX(-1);
}

.origen-story-image:hover {
    opacity: 0.95;
}

.origen-image-note {
    font-size: 11px;
    color: rgba(184, 148, 31, 0.7);
    margin-top: 16px;
    font-style: normal;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* IMAGEN CENTRADA */
.origen-centered-image-block {
    margin: 60px auto;
    max-width: 550px;
    text-align: center;
}

.origen-centered-image-block .origen-story-image {
    width: 100%;
}

.origen-centered-image-block .origen-image-note {
    text-align: center;
}

/* IMAGEN FLOTANTE (lado derecho) */
.origen-float-image-right {
    float: right;
    width: 320px;
    margin: 0 0 32px 50px;
}

.origen-float-image-right .origen-story-image {
    width: 100%;
}

/* RESPONSIVE MOCKUP HÍBRIDO */
@media (max-width: 768px) {
    .origen-tabs {
        gap: 0;
        justify-content: flex-start;
        overflow-x: auto; /* Scroll horizontal smooth */
        -webkit-overflow-scrolling: touch; /* Smooth scroll iOS */
    }
    
    .origen-tab {
        padding: 14px 18px;
        font-size: 12px; /* ✅ FIX v5.4.1: 9px → 12px (+33% legibilidad) */
        letter-spacing: 1.5px; /* Reducido para compactar */
        min-height: 44px; /* ✅ Touch target WCAG compliant */
    }
}

/* Mobile Extra Small ≤480px - Tabs más compactas */
@media (max-width: 480px) {
    .origen-tab {
        padding: 12px 14px;
        font-size: 11px; /* ✅ Aceptable en mobile pequeño */
        letter-spacing: 1px;
        min-height: 44px;
    }
    
    .origen-header-image-container {
        max-width: 100%;
    }
    
    /* Grid de imágenes laterales se convierte en columna única */
    .origen-content-with-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* Imágenes flotantes se convierten en centradas */
    .origen-float-image-right {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 32px auto;
        display: block;
    }
    
    .origen-centered-image-block {
        margin: 40px auto;
        max-width: 100%;
    }
}

/* FIN SECTIONS */
