@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:               #0A0A0A;
  --bg-2:             #111111;
  --bg-3:             #1a1a1a;
  --text:             #EDEAE3;
  --text-muted:       #8A8A8A;
  --text-subtle:      #6B6B6B;
  --white:            #ffffff;
  --gold:             #C9A227;
  --gold-dim:         #D4AF37;
  --gold-glow:        rgba(201,162,39,0.18);
  --gold-glow-strong: rgba(201,162,39,0.35);
  --border:           #1e1e1e;
  --border-gold:      rgba(201,162,39,0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── CANVAS PARTICLES ─── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── OVERLAYS ─── */
.scanline-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,0) 50%,
    rgba(0,0,0,0.08) 50%,
    rgba(0,0,0,0.08)
  );
  background-size: 100% 4px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.2;
}

.grid-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 12px var(--gold-glow); }
  50%       { box-shadow: 0 0 28px var(--gold-glow-strong); }
}
@keyframes ring-pulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.6); }
}

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.6s !important; }
.delay-3 { animation-delay: 1.0s !important; }
.delay-4 { animation-delay: 1.4s !important; }
.delay-5 { animation-delay: 1.8s !important; }

/* ─── BADGE TOP ─── */
.secure-badge {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
}

/* ─── CORNER FRAMES ─── */
.corner-frame {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.corner-frame.tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.corner-frame.tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.corner-frame.bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.corner-frame.br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ─── INTRO PAGE ─── */
.intro-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.intro-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}
.intro-content {
  max-width: 660px;
  text-align: center;
}
.intro-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fade-up 0.8s ease both;
}
.intro-content .highlight {
  color: var(--gold);
  text-shadow: 0 0 24px var(--gold-glow);
}
.intro-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  animation: fade-up 0.8s 0.1s ease both;
}
.intro-content .subline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  animation: fade-up 0.8s 0.2s ease both;
}
.intro-content .subline strong { color: var(--white); font-weight: 600; }

/* ─── BUTTONS ─── */
.btn-iniciar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 56px;
  background: transparent;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px var(--gold-glow), inset 0 0 16px var(--gold-glow);
  animation: fade-up 0.8s 0.4s ease both;
}
.btn-iniciar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.14), transparent);
  transition: left 0.5s ease;
}
.btn-iniciar:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 32px var(--gold-glow-strong), inset 0 0 24px var(--gold-glow);
  color: var(--white);
}
.btn-iniciar:hover::before { left: 100%; }
.btn-iniciar .icon { font-size: 1rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--gold-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 24px var(--gold-glow-strong);
  color: var(--white);
}

.btn-cta {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 24px var(--gold-glow-strong);
  text-align: center;
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 40px var(--gold-glow-strong);
}

/* ─── EXP LABEL / FOOTER ─── */
.exp-label {
  position: relative;
  z-index: 10;
  padding: 14px 24px;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.footer {
  position: relative;
  z-index: 10;
  padding: 24px;
  border-top: 1px solid var(--border-gold);
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  text-transform: uppercase;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ─── LESSON / PHASE PAGES ─── */
.lesson-wrap {
  min-height: 100vh;
  padding-bottom: 80px;
  position: relative;
}
.lesson-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}
.lesson-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lesson-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.lesson-premise {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.85;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #050505;
  border: 1px solid var(--border-gold);
  margin-bottom: 48px;
  overflow: hidden;
  z-index: 10;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-subtle);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lesson-bridge {
  background: rgba(201,162,39,0.03);
  border: 1px solid var(--border-gold);
  border-left: 2px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.lesson-bridge p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-style: italic;
}
.lesson-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

/* ─── PHONE CALL UI ─── */
.phone-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 56px 24px 52px;
  position: relative;
  z-index: 10;
}
.phone-screen.incoming {
  background: radial-gradient(ellipse at 50% 0%, #150f00 0%, var(--bg) 65%);
}
.phone-screen.active {
  background: radial-gradient(ellipse at 50% 0%, #130d00 0%, var(--bg) 65%);
}
.call-top { text-align: center; display: flex; flex-direction: column; align-items: center; }
.call-status {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 40px;
}
.call-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1200, #0a0700);
  border: 1.5px solid rgba(201,162,39,0.35);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.call-avatar.ringing::before,
.call-avatar.ringing::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: ring-pulse 2s ease-out infinite;
  z-index: -1;
}
.call-avatar.ringing::before {
  top: -18px; left: -18px; right: -18px; bottom: -18px;
  border: 1px solid rgba(201,162,39,0.25);
}
.call-avatar.ringing::after {
  top: -36px; left: -36px; right: -36px; bottom: -36px;
  border: 1px solid rgba(201,162,39,0.12);
  animation-delay: 0.6s;
}
.call-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.call-subtitle {
  font-size: 0.85rem;
  color: var(--text-subtle);
  letter-spacing: 0.05em;
}
.call-timer {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  color: var(--text-subtle);
  letter-spacing: 0.15em;
  margin-top: 12px;
}
.call-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  padding: 0 12px;
  width: 100%;
  max-width: 300px;
}
.call-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.call-action-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.call-bottom-incoming {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 280px;
  padding: 0 12px;
}
.call-btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.btn-answer {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #1a6e30;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 24px rgba(30,160,70,0.4);
  animation: answer-pulse 1.8s ease-in-out infinite;
  transition: background 0.2s;
}
.btn-answer:hover { background: #22a050; }
@keyframes answer-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(30,160,70,0.35); }
  50%       { box-shadow: 0 0 40px rgba(30,160,70,0.6); transform: scale(1.04); }
}
.btn-decline {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(120,30,30,0.8);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: background 0.2s;
}
.btn-decline:hover { background: #a02222; }
.btn-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
}
.call-cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.call-cta-area.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.audio-tap {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: 8px 20px;
  border: 1px solid #222;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.audio-tap:hover { border-color: #444; color: var(--text-muted); }

/* ─── EXIT/REFUSE OVERLAY ─── */
.refuse-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 500;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.4s ease both;
}
.refuse-overlay.active { display: flex; }
.refuse-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ─── CHAT UI ─── */
.chat-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  background: var(--bg-2);
}
.chat-header {
  width: 100%; max-width: 480px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.chat-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  flex-shrink: 0;
}
.chat-avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.chat-header-info { display: flex; flex-direction: column; }
.chat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.chat-status {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.chat-status.typing { animation: pulse-gold 1.5s infinite; }
.chat-container {
  width: 100%; max-width: 480px;
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.message-row {
  display: flex;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.message-row.visible { opacity: 1; transform: translateY(0); }
.message-bubble {
  background: rgba(25,20,10,0.95);
  border: 1px solid var(--border-gold);
  padding: 14px 18px;
  border-radius: 16px 16px 16px 4px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 85%;
}
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(25,20,10,0.95);
  border: 1px solid var(--border-gold);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.typing-indicator.active { opacity: 1; }
.typing-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
  0%, 80%, 100% { transform: scale(0); }
  40%           { transform: scale(1); }
}
.chat-action {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}
.chat-action.visible { opacity: 1; transform: translateY(0); }

/* ─── SALES PAGE ─── */
.sales-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  z-index: 10;
}
.sales-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid var(--border-gold);
}
.sales-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.sales-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.sales-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}
.sales-section:last-of-type { border-bottom: none; }
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.sales-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.sales-highlight {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  line-height: 1.5;
  margin: 40px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-style: italic;
}
.not-list, .for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.not-list li, .for-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.not-list li::before { content: '×'; color: #444; flex-shrink: 0; margin-top: 2px; }
.for-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  text-shadow: 0 0 8px var(--gold-glow);
}
.layers-grid { display: flex; flex-direction: column; gap: 24px; margin: 40px 0; }
.layer {
  padding: 28px 32px;
  background: rgba(201,162,39,0.02);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.layer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--gold);
  opacity: 0.5;
}
.layer-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.layer-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.layer-desc  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ─── PRICE BOX ─── */
.price-box {
  background: rgba(201,162,39,0.03);
  border: 1px solid var(--border-gold);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  box-shadow: 0 0 60px var(--gold-glow);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px var(--gold-glow);
}
.price-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 28px auto 40px;
  max-width: 340px;
}
.price-features li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.price-features li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }
.guarantee {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-style: italic;
}

/* ─── FAQ ─── */
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border-gold);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.sticky-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  border: none;
}
.sticky-btn:hover { opacity: 0.88; }

/* ─── HONEST BLOCK ─── */
.honest-block {
  background: rgba(201,162,39,0.02);
  border: 1px solid var(--border-gold);
  border-left: 2px solid var(--gold);
  padding: 28px 32px;
  margin: 40px 0;
}
.honest-block p { font-size: 1rem; color: var(--text-muted); line-height: 1.9; }
.honest-block p + p { margin-top: 16px; }

/* ─── HERO AUTHOR ─── */
.hero-author {
  font-size: 0.75rem;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ─── QUIZ MULTI-STEP ─── */
.quiz-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  z-index: 10;
}
.quiz-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fade-up 0.5s ease both; }
.quiz-step-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.quiz-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.quiz-progress-dot {
  width: 32px; height: 2px;
  background: var(--border-gold);
  transition: background 0.3s;
}
.quiz-progress-dot.done { background: var(--gold); }
.quiz-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 36px;
  font-style: italic;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-option {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-gold);
  padding: 18px 22px;
  border-radius: 4px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
}
.quiz-option:hover {
  background: rgba(201,162,39,0.07);
  border-color: var(--gold);
  color: var(--white);
}
.quiz-option.selected {
  background: rgba(201,162,39,0.12);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px var(--gold-glow);
}
.quiz-option.disabled { opacity: 0.35; pointer-events: none; }
.progress-bar-container {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  transition: width 1.2s linear;
}
.quiz-micro {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-style: italic;
  line-height: 1.5;
}

/* ─── TRANSICAO PAGE ─── */
.transicao-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
.transicao-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}
.transicao-content {
  max-width: 620px;
  text-align: center;
}

/* ─── OFFER SECTION (aula3) ─── */
.offer-transition {
  padding: 48px 0 56px;
  border-top: 1px solid var(--border);
  margin-top: 56px;
}
.offer-transition h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.offer-transition p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 560px;
}
.offer-cta-wrap {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ─── CALL ENDED BADGE ─── */
.call-ended-badge {
  display: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .intro-body { padding: 48px 20px; }
  .price-box  { padding: 32px 20px; }
  .layer      { padding: 20px 18px; }
  .sticky-cta { flex-direction: column; align-items: stretch; }
  .sticky-price { text-align: center; }
  .call-actions { gap: 16px 20px; }
}
