/* ===================================================================
   Teste + Relatório de Frequência Emocional™ - estilos
   Paleta: azul escuro, roxo, dourado, branco
=================================================================== */

:root {
  --bg:        #0b0a1f;
  --bg-2:      #131036;
  --bg-3:      #1a1547;
  --ink:       #f4f1ff;
  --muted:     #b8b2d8;
  --muted-2:   #8b85b0;
  --purple:    #7c6cff;
  --purple-2:  #9b8cff;
  --indigo:    #4a47b8;
  --gold:      #d9b873;
  --gold-2:    #f0d99a;
  --gold-deep: #b8954f;
  --line:      rgba(255,255,255,.08);
  --card:      rgba(255,255,255,.04);
  --card-hi:   rgba(255,255,255,.07);
  --radius:    20px;
  --radius-sm: 14px;
  --maxw:      1140px;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.7);
  --serif:     "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -5%, rgba(124,108,255,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(74,71,184,.14), transparent 55%),
    radial-gradient(800px 500px at 100% 100%, rgba(217,184,115,.06), transparent 60%);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: .2px; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { background: linear-gradient(180deg, #fff, #cfc8ee); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-lg { padding: 18px 42px; font-size: 1.02rem; }

.btn-gold {
  color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-deep));
  box-shadow: 0 14px 40px -12px rgba(217,184,115,.6), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(217,184,115,.75); }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border-color: var(--line);
  text-transform: none;
  padding: 11px 22px;
  font-size: .9rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,31,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { color: var(--gold-2); font-size: 1.2rem; }
.brand-text { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: .3px; }
.brand-text sup { font-size: .5em; color: var(--gold); }

@media (max-width: 540px) { .header-cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  margin: 6px 0 22px;
  background: linear-gradient(180deg, #ffffff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }

.hero-perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 32px;
  margin-top: 28px;
}
.hero-perks li { color: var(--muted); font-size: .98rem; }
.hero-perks strong { color: var(--gold-2); }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.hero-glow-1 { width: 460px; height: 460px; background: rgba(124,108,255,.28); top: -120px; right: -80px; }
.hero-glow-2 { width: 380px; height: 380px; background: rgba(217,184,115,.16); bottom: -120px; left: -100px; }

/* PDF mockup */
.hero-art { display: flex; justify-content: center; position: relative; z-index: 1; }
.pdf-mock { position: relative; perspective: 1400px; }
.pdf-mock-glow {
  position: absolute; inset: -30px; border-radius: 30px;
  background: radial-gradient(circle at 50% 30%, rgba(217,184,115,.35), transparent 70%);
  filter: blur(40px); z-index: -1;
}
.pdf-page {
  width: min(330px, 78vw);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #fbfaff, #eee9ff);
  border-radius: 16px;
  padding: 38px 30px;
  color: #1c1747;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.5) inset;
  transform: rotateY(-14deg) rotateX(4deg) rotate(1.5deg);
  transition: transform .6s ease;
  display: flex; flex-direction: column;
}
.pdf-mock:hover .pdf-page { transform: rotateY(-6deg) rotateX(2deg); }
.pdf-emblem { font-size: 1.8rem; color: var(--gold-deep); }
.pdf-kicker { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: #8a83b8; margin-top: 14px; }
.pdf-title { font-family: var(--serif); font-size: 1.7rem; color: #2a1f5e; line-height: 1.1; }
.pdf-divider { height: 2px; width: 56px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 16px 0 20px; border-radius: 2px; }
.pdf-lines { display: grid; gap: 9px; margin: 6px 0; }
.pdf-lines .l { height: 8px; border-radius: 4px; background: linear-gradient(90deg, #d9d3f0, #ece8fb); }
.l.w90 { width: 90%; } .l.w85 { width: 85%; } .l.w80 { width: 80%; } .l.w70 { width: 70%; } .l.w60 { width: 60%; }
.pdf-wave { margin: 18px 0; }
.pdf-wave svg { width: 100%; height: 46px; }
.pdf-wave path { fill: none; stroke: url(#g); stroke: var(--purple); stroke-width: 3; opacity: .8; }
.pdf-foot { margin-top: auto; font-size: .72rem; color: #8a83b8; letter-spacing: .04em; }

/* ---------- Você se identifica ---------- */
.identify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.id-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.id-card:hover { transform: translateY(-5px); border-color: rgba(124,108,255,.5); background: var(--card-hi); }
.id-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 12px; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(124,108,255,.25), rgba(217,184,115,.15));
  color: var(--gold-2);
}
.id-card p { color: var(--ink); font-size: 1.02rem; }
.identify-note {
  max-width: 720px; margin: 44px auto 0; text-align: center;
  font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--muted); font-style: italic; line-height: 1.5;
}

/* ---------- O que você recebe ---------- */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(217,184,115,.4); }
.feature-card:hover::before { opacity: 1; }
.feature-ico {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(124,108,255,.3), rgba(217,184,115,.18));
  color: var(--gold-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.feature-card h3 { color: #fff; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* ---------- Como funciona (timeline) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--gold), transparent);
  opacity: .35;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  box-shadow: 0 12px 30px -10px rgba(217,184,115,.6), 0 0 0 6px var(--bg);
  margin-bottom: 20px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; color: #fff; }
.step p { color: var(--muted); font-size: .95rem; }

@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- Exemplo do relatório ---------- */
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.example-copy .eyebrow { margin-bottom: 14px; }
.example-copy > p { color: var(--muted); margin: 16px 0 24px; font-size: 1.05rem; }
.example-list { list-style: none; display: grid; gap: 14px; margin-bottom: 32px; }
.example-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 1.05rem; }
.example-list span { color: var(--gold-2); }

.example-doc { display: flex; justify-content: center; }
.doc-sheet {
  width: min(420px, 92vw);
  background: linear-gradient(165deg, #fbfaff, #efeaff);
  color: #1f1a4a;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.doc-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid #e0daf4; margin-bottom: 20px; }
.doc-emblem {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff;
}
.doc-kicker { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: #2a1f5e; }
.doc-name { font-size: .78rem; color: #8a83b8; }
.doc-block { margin-bottom: 22px; }
.doc-block h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #7a72ad; margin-bottom: 12px; }
.bar { position: relative; height: 26px; background: #e7e2f7; border-radius: 8px; margin-bottom: 10px; overflow: hidden; display: flex; align-items: center; }
.bar span { position: absolute; inset: 0 auto 0 0; border-radius: 8px; background: linear-gradient(90deg, var(--indigo), var(--purple)); }
.bar em { position: relative; z-index: 1; font-style: normal; font-size: .78rem; color: #fff; padding-left: 12px; font-weight: 500; }
.freq-wave svg { width: 100%; height: 56px; }
.freq-wave path { fill: none; stroke: var(--purple); stroke-width: 3; opacity: .85; }
.doc-cap { font-size: .82rem; color: #6f68a0; margin-top: 6px; font-style: italic; }
.chip {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  background: linear-gradient(135deg, rgba(124,108,255,.18), rgba(217,184,115,.18));
  color: #4a3f8e; border: 1px solid rgba(124,108,255,.25);
}

@media (max-width: 860px) { .example-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Para quem é ---------- */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.who-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 26px;
  font-size: 1.05rem; color: var(--ink);
  transition: transform .3s ease, border-color .3s ease;
}
.who-card:hover { transform: translateY(-4px); border-color: rgba(217,184,115,.4); }
.who-card span {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}

/* ---------- Depoimentos ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.test-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease;
}
.test-card:hover { transform: translateY(-5px); border-color: rgba(124,108,255,.4); }
.stars { color: var(--gold-2); letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
.test-card blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: #eee9ff; font-style: italic; }
.test-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--a), var(--b));
}

/* ---------- Garantia ---------- */
.guarantee-card {
  display: flex; align-items: center; gap: 36px;
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(217,184,115,.12), rgba(124,108,255,.1));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.seal { flex: none; }
.seal-ico {
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: #2a2208;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold-deep));
  box-shadow: 0 0 0 8px rgba(217,184,115,.15), 0 18px 40px -12px rgba(217,184,115,.6);
}
.guarantee-copy h2 { margin-bottom: 12px; }
.guarantee-copy p { color: var(--muted); font-size: 1.08rem; }
@media (max-width: 620px) { .guarantee-card { flex-direction: column; text-align: center; padding: 38px 28px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 26px;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] { border-color: rgba(124,108,255,.45); background: var(--card-hi); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 600; font-size: 1.08rem; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: none; font-size: 1.5rem; color: var(--gold-2); transition: transform .3s ease; line-height: 1; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 22px; font-size: 1.02rem; }

/* ---------- CTA final ---------- */
.cta { text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; width: 700px; height: 500px; left: 50%; top: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(124,108,255,.25), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, #d8d0f5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-price { color: var(--muted); font-size: 1.15rem; margin-bottom: 32px; }
.cta-price strong { color: var(--gold-2); }
.cta-perks { justify-content: center; grid-template-columns: repeat(3, max-content); margin: 32px auto 0; }
@media (max-width: 560px) { .cta-perks { grid-template-columns: 1fr; justify-items: center; } }

/* ---------- Rodapé ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 40px; text-align: center; background: rgba(0,0,0,.2); }
.footer-brand { justify-content: center; margin-bottom: 24px; }
.footer-disclaimer { max-width: 680px; margin: 0 auto 20px; color: var(--muted-2); font-size: .92rem; line-height: 1.7; }
.footer-copy { color: var(--muted-2); font-size: .85rem; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo Hero ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-perks { justify-content: center; grid-template-columns: repeat(2, max-content); }
  .hero-art { order: -1; }
}
@media (max-width: 420px) {
  .hero-perks { grid-template-columns: 1fr; justify-items: center; }
  .btn-lg { width: 100%; }
}

/* ===================================================================
   QUIZ
=================================================================== */
.quiz {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 70px;
  overflow: hidden;
}
.quiz-glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.quiz-glow-1 { width: 520px; height: 520px; background: rgba(124,108,255,.26); top: -140px; right: -120px; }
.quiz-glow-2 { width: 420px; height: 420px; background: rgba(217,184,115,.14); bottom: -140px; left: -120px; }

/* progresso */
.quiz-progress {
  position: relative; z-index: 2;
  width: 100%; max-width: 520px; margin: 0 auto 36px;
  text-align: center;
}
.quiz-progress-track {
  height: 7px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.quiz-progress-track span {
  display: block; height: 100%; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-progress-label { display: inline-block; margin-top: 12px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }

/* palco e telas */
.quiz-stage { position: relative; z-index: 2; width: 100%; max-width: 720px; }
.screen { display: none; }
.screen.is-active { display: block; animation: screenIn .5s ease both; }
@keyframes screenIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.screen-inner { text-align: center; }
.screen-inner h1 {
  margin: 8px auto 20px; max-width: 700px;
  background: linear-gradient(180deg, #fff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.screen-sub { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto 30px; }
.screen-micro { margin-top: 22px; font-size: .88rem; color: var(--muted-2); letter-spacing: .02em; }

/* perguntas */
.q-counter { display: inline-block; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.q-title { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: 0 auto 12px; max-width: 640px; color: #fff; }
.q-help { color: var(--muted); margin: 0 auto 34px; max-width: 520px; font-size: 1.02rem; }

.q-options { display: grid; gap: 14px; max-width: 520px; margin: 0 auto; }

.q-option {
  display: flex; align-items: center; gap: 16px;
  text-align: left;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 24px;
  color: var(--ink); font-family: var(--sans); font-size: 1.08rem; font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  animation: optIn .5s ease both; animation-delay: var(--d, 0s);
}
@keyframes optIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.q-option:hover { transform: translateY(-3px); border-color: rgba(124,108,255,.55); background: var(--card-hi); }
.q-radio {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25); position: relative; transition: border-color .2s ease;
}
.q-option:hover .q-radio { border-color: var(--gold-2); }
.q-option.selected { border-color: var(--gold-2); background: rgba(217,184,115,.1); }
.q-option.selected .q-radio { border-color: var(--gold-2); }
.q-option.selected .q-radio::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}

/* pergunta visual (gênero) */
.q-options-visual {
  grid-template-columns: 1fr 1fr;
  gap: 18px; max-width: 480px;
}
.q-visual {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 20px 24px;
  cursor: pointer; color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  animation: optIn .5s ease both; animation-delay: var(--d, 0s);
}
.q-visual:hover { transform: translateY(-5px); border-color: rgba(217,184,115,.6); background: var(--card-hi); }
.q-visual.selected { border-color: var(--gold-2); background: rgba(217,184,115,.12); }
.q-visual-art {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 130px;
}
.silhouette { width: 100%; height: 100%; }
.silhouette path { fill: url(#none); fill: var(--muted); transition: fill .25s ease; }
.q-visual:hover .silhouette path,
.q-visual.selected .silhouette path { fill: var(--gold-2); }
.q-visual-label { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; }

/* tela de loading */
.loading-inner { padding: 20px 0; }
.orb { position: relative; width: 90px; height: 90px; margin: 0 auto 30px; }
.orb span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--gold-2);
  animation: spin 1.1s linear infinite;
}
.orb span:nth-child(2) { inset: 12px; border-top-color: var(--purple-2); animation-duration: 1.5s; animation-direction: reverse; }
.orb span:nth-child(3) { inset: 24px; border-top-color: var(--gold); animation-duration: .9s; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-steps { list-style: none; max-width: 360px; margin: 30px auto 0; display: grid; gap: 12px; text-align: left; }
.loading-steps li {
  color: var(--muted-2); font-size: .98rem; padding-left: 30px; position: relative;
  opacity: .5; transition: color .4s ease, opacity .4s ease;
}
.loading-steps li::before {
  content: "○"; position: absolute; left: 0; color: var(--muted-2); transition: all .4s ease;
}
.loading-steps li.done { color: var(--ink); opacity: 1; }
.loading-steps li.done::before { content: "✓"; color: var(--gold-2); }

/* tela de resultado */
.result-inner { max-width: 620px; margin: 0 auto; }
.result-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, rgba(124,108,255,.14), rgba(217,184,115,.12));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius); padding: 18px 28px; margin: 6px auto 24px;
  text-align: left;
}
.result-emoji { font-size: 2.6rem; line-height: 1; }
.result-kicker { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.result-name { font-size: clamp(1.3rem, 2.8vw, 1.8rem); color: #fff; line-height: 1.1; }
.result-text { color: var(--muted); font-size: .98rem; line-height: 1.6; margin-bottom: 26px; }

.result-meter { max-width: 460px; margin: 0 auto 30px; }
.result-meter-bar {
  height: 12px; border-radius: 999px; overflow: hidden; position: relative;
  background: linear-gradient(90deg, #2a2350, #3a2e6e, #c9a14a);
}
.result-meter-bar span {
  position: absolute; top: -4px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2), 0 6px 16px rgba(0,0,0,.4);
  transform: translateX(-50%); left: 0;
  transition: left .9s cubic-bezier(.4,0,.2,1);
}
.result-meter-tags { display: flex; justify-content: space-between; margin-top: 10px; font-size: .76rem; color: var(--muted-2); }
.result-cta-bridge { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink); margin: 0 auto 26px; max-width: 480px; }

@media (max-width: 480px) {
  .result-badge { flex-direction: column; text-align: center; gap: 10px; }
}

/* ===================================================================
   PÁGINA DE VENDA - extras
=================================================================== */
.lead { color: var(--muted); font-size: 1.12rem; max-width: 680px; margin: 18px auto 0; line-height: 1.7; }
.lead strong { color: var(--gold-2); }
.sales-hook { padding-top: clamp(80px, 10vw, 120px); }

.header-trust { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 600px) { .header-trust { display: none; } }

/* card de oferta */
.offer-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius); padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow); position: relative; z-index: 1;
}
.offer-card h2 { margin-bottom: 12px; }
.offer-desc { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.offer-list { list-style: none; display: inline-grid; gap: 12px; text-align: left; margin: 0 auto 30px; }
.offer-list li { color: var(--ink); font-size: 1.02rem; }
.price-box {
  background: rgba(0,0,0,.25); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px; margin-bottom: 28px;
}
.price-old { color: var(--muted-2); font-size: 1rem; }
.price-now { font-family: var(--serif); font-size: 2.4rem; color: #fff; line-height: 1.1; margin: 4px 0; }
.price-now strong { color: var(--gold-2); }
.price-cond { color: var(--muted); font-size: .92rem; }
.offer-perks { justify-content: center; grid-template-columns: repeat(3, max-content); margin: 26px auto 0; }
@media (max-width: 560px) { .offer-perks { grid-template-columns: 1fr; justify-items: center; } }
.close { text-align: center; overflow: hidden; position: relative; padding-top: clamp(50px, 6vw, 70px); }

/* ----- Virada de chave (agitação) ----- */
.turn { padding-bottom: clamp(40px, 5vw, 60px); }
.turn-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  border-left: 3px solid var(--gold); border-right: 3px solid var(--gold);
  padding: 8px 32px;
}
.turn-card h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin-bottom: 22px;
  background: linear-gradient(180deg, #fff, #e7c98f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.turn-card p { color: var(--muted); font-size: 1.12rem; line-height: 1.75; max-width: 640px; margin: 0 auto 16px; }
.turn-card strong { color: var(--ink); }
.turn-line { font-family: var(--serif); font-style: italic; font-size: 1.3rem !important; color: var(--gold-2) !important; margin-top: 8px !important; }
.turn-line em { color: #fff; font-style: italic; }

/* ----- Escassez ----- */
.scarcity {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
  background: rgba(217,90,90,.1); border: 1px solid rgba(217,120,90,.35);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 0 auto 24px;
  max-width: 480px; font-size: .96rem; color: #f3dcc8; line-height: 1.55;
}
.scarcity-text { flex: 1; }
.scarcity strong { color: #ffd9b0; }
.scarcity-dot {
  flex: none; width: 11px; height: 11px; border-radius: 50%;
  background: #ff8a5c; box-shadow: 0 0 0 0 rgba(255,138,92,.6);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,138,92,.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,138,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,92,0); }
}

/* ----- Botão pulsante ----- */
.btn-pulse { animation: btnPulse 2.2s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 40px -12px rgba(217,184,115,.6), inset 0 1px 0 rgba(255,255,255,.4); }
  50% { transform: translateY(-2px); box-shadow: 0 22px 54px -10px rgba(217,184,115,.85), inset 0 1px 0 rgba(255,255,255,.5); }
}
.btn-pulse:hover { animation: none; }

/* ----- Garantia compacta dentro da oferta ----- */
.offer-guarantee {
  display: flex; align-items: center; gap: 14px; text-align: left;
  max-width: 480px; margin: 22px auto 0;
  background: rgba(74,201,161,.08); border: 1px solid rgba(74,201,161,.28);
  border-radius: var(--radius-sm); padding: 16px 20px;
}
.offer-guarantee p { color: var(--muted); font-size: .95rem; line-height: 1.55; margin: 0; }
.offer-guarantee strong { color: #aef0d6; }
.seal-ico-sm {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #0b2a1f; font-weight: 700;
  background: radial-gradient(circle at 35% 30%, #86e9c8, #34a07a);
}
.offer-ps {
  max-width: 500px; margin: 26px auto 0; font-size: .98rem; color: var(--muted-2);
  font-style: italic; line-height: 1.6;
}
.offer-ps::first-letter { color: var(--gold-2); }

.example-foot { color: var(--muted); font-size: 1rem; margin-top: 4px; }
.example-foot strong { color: var(--gold-2); }

/* ===================================================================
   PÁGINA DE OBRIGADO
=================================================================== */
.thanks {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.thanks-glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.thanks-glow-1 { width: 520px; height: 520px; background: rgba(124,108,255,.24); top: -140px; right: -120px; }
.thanks-glow-2 { width: 420px; height: 420px; background: rgba(217,184,115,.16); bottom: -140px; left: -120px; }

.thanks-inner { position: relative; z-index: 1; max-width: 640px; text-align: center; }

.thanks-check {
  width: 86px; height: 86px; margin: 0 auto 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #0b2a1f; font-weight: 700;
  background: radial-gradient(circle at 35% 30%, #86e9c8, #34a07a);
  box-shadow: 0 0 0 8px rgba(74,201,161,.14), 0 18px 40px -12px rgba(74,201,161,.6);
  animation: popIn .6s cubic-bezier(.2,.8,.3,1.2) both;
}
@keyframes popIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }

.thanks-inner h1 {
  margin: 8px 0 18px;
  background: linear-gradient(180deg, #fff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.thanks-lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.thanks-lead strong { color: var(--gold-2); }
.thanks-after { margin-top: 22px; color: var(--muted); font-size: 1rem; }
.thanks-after strong { color: var(--gold-2); }

.thanks-card {
  margin: 40px auto 0; max-width: 460px; text-align: left;
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid rgba(217,184,115,.28);
  border-radius: var(--radius); padding: 30px 34px;
}
.thanks-card h2 { font-size: 1.4rem; color: #fff; margin-bottom: 18px; text-align: center; }
.thanks-list { list-style: none; display: grid; gap: 14px; }
.thanks-list li { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 1.05rem; }
.thanks-list span { font-size: 1.3rem; flex: none; }

.thanks-note {
  margin: 32px auto 0; max-width: 480px; font-size: .92rem; color: var(--muted-2);
  line-height: 1.6;
}

/* ----- Divisor entre seções (linha + ✦) ----- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 720px; margin: 0 auto;
  padding: 0 24px;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,184,115,.45), transparent);
}
.divider span {
  flex: none; color: var(--gold-2); font-size: 1.1rem; line-height: 1;
  opacity: .85;
}

/* exemplo sem o card - conteúdo centralizado */
.example-center { max-width: 560px; margin: 0 auto; text-align: center; }
.example-center .example-list { display: inline-grid; text-align: left; }

/* ----- 2 depoimentos centralizados ----- */
.test-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px; margin-left: auto; margin-right: auto;
}
@media (max-width: 640px) { .test-grid-2 { grid-template-columns: 1fr; } }

/* ----- CTA no meio (após depoimentos) ----- */
.mid-cta {
  text-align: center; margin-top: clamp(40px, 6vw, 60px);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.mid-cta p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem); color: var(--ink);
  max-width: 540px;
}
.mid-cta-section { padding: clamp(50px, 6vw, 72px) 0; }
