/* ============================================
   QUIZ FUNNEL — "La Ventana de Reconexión"
   Design System & Complete Styles
   Mobile-first | Dark Mode Only
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0A1628;
  --bg-secondary: #101E36;
  --surface: #152238;
  --text-primary: #F5F0EB;
  --text-secondary: #8B9BB4;
  --accent: #D4A849;
  --accent-hover: #E8C36A;
  --accent-urgent: #C23B3B;
  --accent-positive: #2ECC71;
  --success: #2ECC71;
  --danger: #C23B3B;
  --progress-bg: #1A2D4A;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 20px;
  --shadow-accent: 0 4px 20px rgba(212, 168, 73, 0.3);
  --shadow-accent-hover: 0 6px 30px rgba(212, 168, 73, 0.45);
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease-out;
  --transition-slow: 600ms ease-out;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar */
body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Social Proof Notification --- */
.social-notif {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #2A3D5C 0%, #243552 100%);
  border: 1px solid rgba(212, 168, 73, 0.45);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 24px rgba(212, 168, 73, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-10px) translateZ(0);
  transform: translateY(-10px) translateZ(0);
  -webkit-transition: opacity 350ms ease, visibility 350ms ease, -webkit-transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 350ms ease, visibility 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-notif.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
}

.social-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.social-notif-icon.sale {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.social-notif-icon.sale::after {
  content: '\2713';
  color: #2ECC71;
  font-weight: 700;
}

.social-notif-icon.urgency {
  background: rgba(212, 168, 73, 0.12);
  border: 1px solid rgba(212, 168, 73, 0.25);
}

.social-notif-icon.urgency::after {
  content: '\26A0';
  color: #D4A849;
  font-size: 14px;
}

.social-notif-text {
  flex: 1;
  min-width: 0;
}

.social-notif-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.social-notif-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 2px 0 0;
  line-height: 1.3;
}

.social-notif-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 18px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 200ms;
}

.social-notif-close:hover {
  opacity: 1;
}

@media (max-width: 400px) {
  .social-notif {
    left: 8px;
    right: 8px;
    max-width: none;
    top: 10px;
  }
}

/* --- Progress Bar --- */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--progress-bg);
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0);
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transition: width var(--transition-slow);
  border-radius: 0 2px 2px 0;
}

/* --- Quiz Screens --- */
.quiz-screen {
  display: none;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top, 20px) 20px calc(env(safe-area-inset-bottom, 20px) + 16px);
  padding-top: calc(env(safe-area-inset-top, 20px) + 12px);
  will-change: opacity, transform;
  -webkit-will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.quiz-screen.active {
  display: flex;
  -webkit-animation: slideIn 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slideIn 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.quiz-screen.active.is-reveal {
  -webkit-animation: revealIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation: revealIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes slideIn {
  0%   { opacity: 0; -webkit-transform: translate3d(24px, 0, 0); transform: translate3d(24px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@keyframes slideIn {
  0%   { opacity: 0; -webkit-transform: translate3d(24px, 0, 0); transform: translate3d(24px, 0, 0); }
  100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

@-webkit-keyframes revealIn {
  0%   { opacity: 0; -webkit-transform: scale(0.94); transform: scale(0.94); }
  55%  { opacity: 1; }
  100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}
@keyframes revealIn {
  0%   { opacity: 0; -webkit-transform: scale(0.94); transform: scale(0.94); }
  55%  { opacity: 1; }
  100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

@-webkit-keyframes slideUp {
  from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

.screen-content {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* Scrollable screens */
.resultado-content,
.offer-content {
  overflow-y: auto;
  max-height: 100dvh;
  padding-bottom: 40px;
  justify-content: flex-start;
  padding-top: 24px;
}

.resultado-content::-webkit-scrollbar,
.offer-content::-webkit-scrollbar { display: none; }
.resultado-content,
.offer-content { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Typography --- */
.headline {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  max-width: 320px;
}

.headline-sm {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.headline-md {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.sub-headline {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 300px;
}

.support-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: center;
}

.question-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 45, 74, 0.6);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.badge svg {
  flex-shrink: 0;
}

/* --- Section Labels --- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label.accent {
  color: var(--accent);
}

.section-label.danger {
  color: var(--accent-urgent);
}

/* --- Connection Illustration (Tela 1) --- */
.connection-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 140px;
  height: 80px;
  margin: 8px auto;
  position: relative;
}

.circle-him {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(212, 168, 73, 0.3);
  z-index: 1;
}

.circle-her {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px dashed var(--text-secondary);
  background: transparent;
  z-index: 1;
}

.pulse-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--text-secondary));
  position: relative;
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* --- Proof Social --- */
.proof-social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-positive);
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* --- Option Buttons --- */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--progress-bg);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.option-btn:hover {
  border-color: rgba(212, 168, 73, 0.3);
  background: rgba(21, 34, 56, 0.8);
}

.option-btn:active {
  transform: scale(0.98);
}

.option-btn.selected {
  border-color: var(--accent);
  background: rgba(212, 168, 73, 0.08);
  box-shadow: 0 0 0 1px var(--accent);
}

.option-btn.selected::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.option-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.option-label {
  font-style: italic;
  display: block;
  margin-bottom: 4px;
}

.option-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: block;
}

.multi-hint {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
}

/* --- CTA Buttons --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-fast);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  animation: ctaPulse 3s ease-in-out infinite;
  outline: none;
}

.cta-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-accent-hover);
}

.cta-btn:active {
  transform: scale(0.98);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 73, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 73, 0.5); }
}

.cta-btn.pulse-urgent {
  animation: ctaPulseUrgent 2s ease-in-out infinite;
}

@keyframes ctaPulseUrgent {
  0%, 100% { box-shadow: 0 4px 20px rgba(194, 59, 59, 0.3); }
  50% { box-shadow: 0 4px 35px rgba(194, 59, 59, 0.5); }
}

.submit-multi {
  margin-top: 8px;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.submit-multi.enabled {
  opacity: 1;
  pointer-events: all;
}

/* --- Disclaimer / Micro-copy --- */
.disclaimer {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
}

.micro-copy {
  font-size: 12px;
  color: var(--text-secondary);
}

/* --- Loading Overlay --- */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: #0A1628;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 30px;
  z-index: 900;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-transform: translateZ(0);
}

#loading-overlay.visible {
  display: flex;
  opacity: 1;
}

#loading-spinner {
  display: flex;
  align-items: center;
  gap: 8px;
}

#loading-spinner span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  animation: loadingDot 1.2s ease-in-out infinite;
}

#loading-spinner span:nth-child(2) {
  animation-delay: 200ms;
}

#loading-spinner span:nth-child(3) {
  animation-delay: 400ms;
}

@-webkit-keyframes loadingDot {
  0%, 80%, 100% { -webkit-transform: scale(0.6); transform: scale(0.6); opacity: 0.4; }
  40% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}
@keyframes loadingDot {
  0%, 80%, 100% { -webkit-transform: scale(0.6); transform: scale(0.6); opacity: 0.4; }
  40% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

#loading-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  max-width: 300px;
  min-height: 1.4em;
  line-height: 1.4;
  -webkit-transform: translateZ(0);
  -webkit-will-change: opacity;
  will-change: opacity;
}

#loading-subtext {
  font-size: 12px;
  color: var(--accent);
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
}

/* --- Reveal Cards --- */
.reveal-content {
  text-align: left;
}

.reveal-content .section-label,
.reveal-content .headline-sm {
  text-align: center;
  align-self: center;
}

.reveal-headline {
  text-align: center;
}

.reveal-intro {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.reveal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
  width: 100%;
  -webkit-animation: fadeStagger 500ms ease-out forwards;
  animation: fadeStagger 500ms ease-out forwards;
}

.reveal-card.visible {
  display: block;
}

.reveal-card-accent {
  width: 100%;
  height: 3px;
}

.reveal-card-body {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

.reveal-card-body p {
  margin-bottom: 8px;
}

.reveal-card-body p:last-child {
  margin-bottom: 0;
}

.reveal-zona {
  font-size: 15px;
  font-weight: 600;
}

.reveal-bridge {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

@-webkit-keyframes fadeStagger {
  from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes fadeStagger {
  from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
  to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* --- Zona Colors --- */
.zona-verde { background: var(--accent-positive); }
.zona-amarilla { background: #E8C36A; }
.zona-naranja { background: #E67E22; }
.zona-roja { background: var(--accent-urgent); }

.zona-verde-text { color: var(--accent-positive); }
.zona-amarilla-text { color: #E8C36A; }
.zona-naranja-text { color: #E67E22; }
.zona-roja-text { color: var(--accent-urgent); }

.zona-verde-card { border-left: 3px solid var(--accent-positive); }
.zona-naranja-card { border-left: 3px solid #E67E22; }
.zona-roja-card { border-left: 3px solid var(--accent-urgent); }

.zona-message {
  display: none;
  width: 100%;
}

.zona-message.visible {
  display: block;
}

.zona-message .reveal-card {
  display: block;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}

/* --- Diagnostico Cards (Tela 14) --- */
.codigo-apego-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.reveal-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.diagnostico-card {
  padding: 24px;
  text-align: left;
  line-height: 1.6;
  font-size: 15px;
}

.diagnostico-card p {
  margin-bottom: 10px;
}

.diagnostico-card p:last-child {
  margin-bottom: 0;
}

.diagnostico-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.insight-card {
  background: rgba(212, 168, 73, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
  text-align: left;
  width: 100%;
}

/* --- Micro-transformation Cards (Tela 15 & 16) --- */
.micro-card {
  display: none;
  width: 100%;
}

.micro-card.visible {
  display: block;
}

.micro-card-positive {
  display: flex;
  gap: 12px;
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}

.micro-card-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.micro-card-icon.green {
  color: var(--accent-positive);
  background: rgba(46, 204, 113, 0.15);
}

.alert-card {
  background: rgba(194, 59, 59, 0.06);
  border: 1px solid rgba(194, 59, 59, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-primary);
}

.x-icon {
  color: var(--accent-urgent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

.positive-card {
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
}

.positive-headline {
  font-weight: 700;
  color: var(--accent-positive);
  margin-bottom: 8px;
}

/* --- Gauge (Tela 17) --- */
.gauge-container {
  position: relative;
  width: 200px;
  height: 110px;
  margin: 0 auto;
  overflow: hidden;
}

.gauge-bg {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 14px solid var(--progress-bg);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.gauge-fill {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 14px solid var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  transform: rotate(-90deg);
  transform-origin: center center;
  transition: transform 2s ease-out, border-color 1s ease;
}

.gauge-center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.gauge-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.gauge-symbol {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.gauge-subtitle {
  font-size: 14px;
  color: var(--accent-urgent);
  text-align: center;
}

.urgency-data {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
}

.urgency-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.urgency-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.urgency-value {
  font-size: 14px;
  font-weight: 700;
}

/* --- Resultado Card (Tela 18) --- */
#resultado-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  text-align: center;
}

.resultado-hero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.resultado-percent {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.resultado-percent-symbol {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.resultado-decay {
  font-size: 14px;
  color: var(--accent-urgent);
  margin-bottom: 20px;
}

.resultado-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

.resultado-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resultado-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.resultado-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.accent-text { color: var(--accent); }
.text-danger { color: var(--accent-urgent); }
.text-success { color: var(--accent-positive); }

/* --- Timeline (Tela 18) --- */
.timeline-visual {
  width: 100%;
  padding: 0 4px;
}

.timeline-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--progress-bg);
}

.timeline-remaining {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  width: 60%;
  transition: width 1.5s ease-out;
}

.timeline-gone {
  height: 100%;
  background: var(--accent-urgent);
  flex: 1;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.timeline-now {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.timeline-end {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-urgent);
}

/* --- Urgency Block --- */
.urgency-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(194, 59, 59, 0.08);
  border: 1px solid rgba(194, 59, 59, 0.3);
  border-radius: var(--radius-md);
  width: 100%;
  text-align: left;
}

.urgency-block svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.urgency-block p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
}

/* --- Plan Preview (Tela 19) --- */
.plan-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.plan-step {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  text-align: left;
  position: relative;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 168, 73, 0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

.lock-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.5;
}

.blurred-light {
  opacity: 0.7;
}

.blurred-light .step-content p {
  filter: blur(2px);
}

.blurred-heavy {
  opacity: 0.5;
}

.blurred-heavy .step-content p {
  filter: blur(4px);
}

.bridge-text {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* --- Testimonials (Tela 19) --- */
.testimonials-carousel {
  display: flex;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonials-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.testimonial-card {
  min-width: 260px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  scroll-snap-align: start;
  text-align: left;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: visible;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 12px rgba(212, 168, 73, 0.25);
  position: relative;
}

.testimonial-verified {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 16px;
  height: 16px;
  display: flex;
  background: #0A1628;
  border-radius: 50%;
  padding: 1px;
}

.testimonial-verified svg {
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.testimonial-text {
  font-size: 13px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.testimonial-author {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- Urgency Banner (Tela 20) --- */
.urgency-banner {
  position: sticky;
  top: 0;
  background: var(--accent-urgent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  width: 100%;
  z-index: 10;
}

.offer-subtitle {
  font-size: 15px;
  color: var(--accent);
}

/* --- Mockup Hero (Tela 21) --- */
.mockup-hero {
  width: 100%;
  margin: 16px 0 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 73, 0.1);
}

.mockup-hero img {
  width: 100%;
  height: auto;
  min-height: 200px;
  display: block;
  border-radius: var(--radius-lg);
  -webkit-transform: translateZ(0);
}

/* --- Modules (Tela 20) --- */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.module-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  border: 1px solid var(--progress-bg);
}

.module-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.module-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.module-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bonus-card {
  border-color: var(--accent);
  background: rgba(212, 168, 73, 0.04);
}

.module-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}

/* --- Stack de Valor (Tela 21) --- */
.stack-list {
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--progress-bg);
}

.stack-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.stack-name {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
  text-align: left;
}

.stack-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  flex-shrink: 0;
}

.stack-total .stack-name {
  font-weight: 700;
}

.stack-total .stack-price.old {
  font-size: 18px;
  color: var(--text-secondary);
}

/* --- Price Block --- */
.price-block {
  text-align: center;
  padding: 20px 0;
}

.price-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.price-hero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}

.price-old {
  font-size: 20px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.price-final {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.price-final small {
  font-size: 20px;
}

.price-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Order Bump --- */
.order-bump {
  width: 100%;
  border: 2px dashed var(--accent);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
}

.bump-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.order-bump h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.order-bump p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bump-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.bump-old {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.bump-now {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.bump-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
}

.bump-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 26px;
  height: 26px;
  border: 2px solid var(--progress-bg);
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition-fast);
  background: var(--surface);
}

.checkmark::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid #FFFFFF;
  border-width: 0 3.5px 3.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.bump-checkbox input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.bump-checkbox input:checked + .checkmark::after {
  transform: rotate(45deg) scale(1);
}

/* --- Expert Credit (Tela 1) --- */
.expert-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 0 auto;
  padding: 12px 18px 12px 12px;
  background: rgba(21, 34, 56, 0.6);
  border: 1px solid rgba(212, 168, 73, 0.2);
  border-radius: var(--radius-pill);
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.expert-credit-photo {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.expert-credit-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 10px rgba(212, 168, 73, 0.3);
  display: block;
}

.verified-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A1628;
  border-radius: 50%;
  padding: 1px;
  box-shadow: 0 2px 6px rgba(29, 161, 242, 0.4);
}

.verified-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.expert-credit-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.expert-credit-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.2px;
}

.expert-credit-title {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- Expert Screen (Tela 20) --- */
.expert-content {
  padding-top: 20px;
  padding-bottom: 32px;
}

.expert-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  background: linear-gradient(180deg, rgba(21, 34, 56, 0.95) 0%, rgba(16, 30, 54, 0.85) 100%);
  border: 1px solid rgba(212, 168, 73, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.expert-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 6px 24px rgba(212, 168, 73, 0.35), 0 0 0 6px rgba(212, 168, 73, 0.08);
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #152238, #101E36);
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expert-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numeric);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  background: linear-gradient(135deg, #152238, #101E36);
}

.expert-info {
  text-align: center;
}

.expert-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}

.expert-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 2px 0;
  letter-spacing: 0.3px;
}

.expert-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.expert-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(212, 168, 73, 0.15);
  border-bottom: 1px solid rgba(212, 168, 73, 0.15);
  gap: 8px;
}

.expert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.expert-stat-num {
  font-family: var(--font-numeric);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.expert-stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.expert-bio {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-bio p {
  font-size: 13px;
  color: #C8D2E2;
  line-height: 1.6;
  margin: 0;
}

.expert-bio strong {
  color: var(--text-primary);
  font-weight: 600;
}

.expert-bio em {
  color: var(--accent);
  font-style: italic;
}

.expert-message {
  width: 100%;
  position: relative;
  padding: 20px 18px 18px 18px;
  background: rgba(212, 168, 73, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
}

.expert-quote-icon {
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: Georgia, serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  font-weight: 700;
}

.expert-message p {
  font-size: 13px;
  color: #DDE4F0;
  line-height: 1.65;
  margin: 0 0 10px 0;
  font-style: italic;
}

.expert-message p:last-of-type {
  margin-bottom: 0;
}

.expert-message strong {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 600;
}

.expert-signature {
  margin-top: 12px !important;
  padding-top: 10px;
  border-top: 1px dashed rgba(212, 168, 73, 0.25);
  font-style: normal !important;
  font-weight: 600;
  color: var(--accent) !important;
  text-align: right;
  font-size: 13px !important;
}

/* --- Voice Message Player (estilo Instagram) --- */
.voice-message-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0 8px;
}

.voice-message-prompt {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  margin: 0;
  letter-spacing: 0.2px;
  animation: voicePromptPulse 2.5s ease-in-out infinite;
}

@keyframes voicePromptPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.voice-message-hint {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: 0.3px;
}

.ig-voice-player {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  padding: 12px 16px 12px 12px;
  background: linear-gradient(135deg, #1a2642 0%, #111d33 100%);
  border: 1px solid rgba(212, 168, 73, 0.3);
  border-radius: 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ig-voice-player.playing {
  border-color: rgba(212, 168, 73, 0.5);
  box-shadow: 0 6px 28px rgba(212, 168, 73, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Play button */
.ig-play-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0A1628;
  padding: 0;
  box-shadow: 0 2px 10px rgba(212, 168, 73, 0.4);
  transition: transform 120ms ease;
}

.ig-play-btn:active {
  transform: scale(0.92);
}

.ig-play-btn .ig-icon-pause {
  display: none;
}

.ig-voice-player.playing .ig-play-btn .ig-icon-play {
  display: none;
}

.ig-voice-player.playing .ig-play-btn .ig-icon-pause {
  display: block;
}

/* Waveform container */
.ig-waveform {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ig-bars,
.ig-progress-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 100%;
}

.ig-bars {
  z-index: 1;
}

.ig-progress-bars {
  z-index: 2;
  overflow: hidden;
  width: 0%;
  transition: width 100ms linear;
}

.ig-bars span,
.ig-progress-bars span {
  display: block;
  flex: 1;
  min-width: 2px;
  background: rgba(139, 155, 180, 0.55);
  border-radius: 2px;
  height: var(--h);
  min-height: 15%;
}

.ig-progress-bars span {
  background: var(--accent);
  box-shadow: 0 0 4px rgba(212, 168, 73, 0.5);
}

/* Animation when playing - subtle wave pulse on background bars */
.ig-voice-player.playing .ig-bars span {
  animation: barPulse 1.2s ease-in-out infinite;
}

.ig-voice-player.playing .ig-bars span:nth-child(3n)  { animation-delay: 0.1s; }
.ig-voice-player.playing .ig-bars span:nth-child(3n+1){ animation-delay: 0.25s; }
.ig-voice-player.playing .ig-bars span:nth-child(3n+2){ animation-delay: 0.4s; }
.ig-voice-player.playing .ig-bars span:nth-child(5n)  { animation-delay: 0.15s; }
.ig-voice-player.playing .ig-bars span:nth-child(7n)  { animation-delay: 0.3s; }

@-webkit-keyframes barPulse {
  0%, 100% { -webkit-transform: scaleY(1); transform: scaleY(1); }
  50%      { -webkit-transform: scaleY(0.6); transform: scaleY(0.6); }
}
@keyframes barPulse {
  0%, 100% { -webkit-transform: scaleY(1); transform: scaleY(1); }
  50%      { -webkit-transform: scaleY(0.6); transform: scaleY(0.6); }
}

/* Time */
.ig-time {
  flex-shrink: 0;
  font-family: var(--font-numeric);
  font-size: 11px;
  color: var(--text-secondary);
  width: 42px;
  min-width: 42px;
  text-align: right;
  letter-spacing: 0.3px;
}

.ig-voice-player.playing .ig-time {
  color: var(--accent);
}

/* Avatar */
.ig-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(212, 168, 73, 0.3);
  position: relative;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-voice-player.playing .ig-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: avatarRing 1.5s ease-out infinite;
  pointer-events: none;
}

@keyframes avatarRing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Hide native audio element */
.ig-voice-player audio {
  display: none;
}

.expert-credentials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(21, 34, 56, 0.7);
  border: 1px solid rgba(212, 168, 73, 0.18);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: #C8D2E2;
  font-weight: 500;
}

.credential-badge svg {
  flex-shrink: 0;
}

/* --- Bonos Gratuitos Section --- */
.bonos-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.08) 0%, rgba(46, 204, 113, 0.02) 100%);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: var(--radius-lg);
  margin: 8px 0;
}

.bonos-header {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(46, 204, 113, 0.2);
}

.bonos-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.bonos-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.bonos-subtext {
  font-size: 13px;
  color: #B8C4D9;
  line-height: 1.5;
}

/* Override cores dos textos dentro dos bonos para maior contraste */
.bono-gratis p {
  color: #C8D2E2;
}

.bono-gratis .bump-checkbox {
  color: var(--text-primary);
  font-weight: 500;
  padding: 10px 12px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.bono-gratis .bump-value-crossed {
  color: #8B9BB4;
}

.bono-gratis {
  border: 2px solid var(--success);
  background: rgba(21, 34, 56, 0.8);
  position: relative;
  overflow: hidden;
}

.bono-gratis::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.15), transparent 70%);
  pointer-events: none;
}

.bump-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.bump-badge-free {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: transparent;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bump-badge-free .bono-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--success);
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}

.bump-value-crossed {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.bump-price-free {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--success);
}

.bump-free-tag {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.bump-free-tag strong {
  font-family: var(--font-numeric);
  font-size: 32px;
  color: var(--success);
  font-weight: 800;
  margin-left: 6px;
  text-shadow: 0 0 16px rgba(46, 204, 113, 0.5);
  letter-spacing: -1px;
}

.bono-gratis .bump-checkbox {
  transition: all 200ms ease;
}

.bono-gratis .bump-checkbox input:checked + .checkmark {
  background: var(--success);
  border-color: var(--success);
  box-shadow: 0 0 16px rgba(46, 204, 113, 0.5), 0 0 0 4px rgba(46, 204, 113, 0.15);
}

.bono-gratis .bump-checkbox input:checked + .checkmark::after {
  border-color: #FFFFFF;
  border-width: 0 3.5px 3.5px 0;
}

/* Checked state via JS class (fallback for Safari < 17.4) */
.bono-gratis .bump-checkbox.is-checked {
  background: rgba(46, 204, 113, 0.18);
  border-color: var(--success);
  color: var(--success);
  font-weight: 600;
}

.bonos-footer {
  text-align: center;
  font-size: 12px;
  color: #B8C4D9;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed rgba(46, 204, 113, 0.2);
}

/* --- Garantia --- */
.garantia {
  display: flex;
  gap: 14px;
  width: 100%;
  background: rgba(46, 204, 113, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
}

.garantia-icon {
  flex-shrink: 0;
}

.garantia h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-positive);
  margin-bottom: 6px;
}

.garantia p {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}

/* --- Social Proof Final --- */
.final-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 0;
}

.stacked-avatars {
  display: flex;
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--bg-primary);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.social-text {
  text-align: left;
}

.stars {
  color: var(--accent);
  font-size: 14px;
}

.stars span {
  font-weight: 700;
  color: var(--text-primary);
  margin-left: 4px;
}

.social-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* --- Checkout Testimonials --- */
.checkout-testimonials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 20px;
}

.checkout-testimonial {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  -webkit-border-radius: var(--radius-md);
  padding: 16px;
  -webkit-transform: translateZ(0);
}

.ct-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ct-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  overflow: visible;
  position: relative;
  flex-shrink: 0;
  -webkit-transform: translateZ(0);
}

.ct-avatar img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid var(--accent);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.ct-avatar .testimonial-verified {
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: 0px;
  right: -2px;
  z-index: 2;
  background: #0A1628;
  border-radius: 50%;
  padding: 1px;
}

.ct-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.ct-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.ct-meta {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.ct-stars {
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  letter-spacing: 1px;
}

.ct-text {
  font-size: 13px;
  color: #C8D2E2;
  line-height: 1.55;
  font-style: italic;
}

/* --- Security Seals --- */
.security-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
  padding: 8px 0;
}

/* --- FAQ --- */
.faq-section {
  width: 100%;
  margin-top: 16px;
}

.faq-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--progress-bg);
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 28px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 20px;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-bottom: 14px;
}

/* --- Final Screen (Tela 22) --- */
.final-urgency {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.final-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-symbol {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--progress-bg);
}

.final-reminder {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 300px;
}

.final-micro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.final-micro p {
  font-size: 12px;
  color: var(--text-secondary);
}

.final-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* --- Utility for dynamic text colors --- */
[data-result="zona-color"] { font-weight: 700; }

/* --- Desktop Adjustments --- */
@media (min-width: 640px) {
  .screen-content {
    max-width: 480px;
  }

  .headline {
    font-size: 30px;
  }

  .headline-md {
    font-size: 28px;
  }

  .cta-btn {
    max-width: 400px;
  }

  .options-list {
    max-width: 440px;
    margin: 0 auto;
  }
}

/* --- Print disable --- */
@media print {
  body { display: none; }
}
