/* ===================================================================
   MÉTODO CHAMP — Sales Page
   Paleta: roxo profundo (transe/mente) + dourado (autoridade/valor)
   =================================================================== */

:root {
  --bg:        #0a0712;
  --bg-soft:   #120c20;
  --bg-card:   #1a1230;
  --ink:       #f4f1fb;
  --ink-soft:  #b9b1cf;
  --muted:     #8b8298;
  --gold:      #e9c46a;
  --gold-2:    #f6d98a;
  --purple:    #7c3aed;
  --purple-2:  #a855f7;
  --pink:      #d946a6;
  --line:      rgba(255,255,255,.08);
  --radius:    18px;
  --shadow:    0 30px 80px -30px rgba(124,58,237,.55);
  --maxw:      1080px;
  --font:      'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif:     'Playfair Display', Georgia, serif;
}

/* ---------- Reset / proteção de cópia ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

img, a { -webkit-user-drag: none; user-drag: none; }

::selection { background: transparent; color: inherit; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.hl {
  color: var(--gold-2);
  background: linear-gradient(180deg, transparent 62%, rgba(233,196,106,.18) 0);
}

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 20;
}
.topbar__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 46px 0 60px;
  text-align: center;
  overflow: hidden;
  scroll-margin-top: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% -5%, rgba(124,58,237,.45), transparent 70%),
    radial-gradient(45% 40% at 85% 20%, rgba(217,70,166,.28), transparent 70%),
    radial-gradient(40% 40% at 10% 30%, rgba(168,85,247,.25), transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero__brand {
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero__brand span { color: var(--gold); }

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(233,196,106,.4);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 5.2vw, 52px);
  line-height: 1.12;
  max-width: 900px;
  margin: 0 auto 20px;
  letter-spacing: -.5px;
}

.hero__sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 34px;
}

/* ---------- VSL Player ---------- */
.vsl {
  max-width: 880px;
  margin: 0 auto 26px;
}
.vsl__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.06);
  border: 1px solid rgba(233,196,106,.18);
}
.vsl__frame iframe,
.vsl__frame video,
.vsl__frame #player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* placeholder antes de inserir o vídeo */
.vsl__frame #player:empty::before {
  content: "Coloque o arquivo de vídeo (video.mp4) na pasta do site";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  background: repeating-linear-gradient(45deg,#0d0a17,#0d0a17 14px,#120d20 14px,#120d20 28px);
}

.vsl__sound {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  border: 0;
  color: #fff;
  font-family: var(--font);
  background: rgba(10,7,18,.55);
  backdrop-filter: blur(2px);
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 3;
}
.vsl__sound.is-hidden { opacity: 0; visibility: hidden; }
.vsl__sound-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 12px 40px -8px rgba(217,70,166,.7);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
.vsl__sound-text { font-size: 16px; line-height: 1.4; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.vsl__sound-text strong { color: var(--gold-2); font-size: 18px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
  cursor: pointer;
  border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1d04;
  box-shadow: 0 16px 40px -12px rgba(233,196,106,.7);
  font-size: 18px;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(233,196,106,.85); }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  padding: 12px 24px;
}
.btn--ghost:hover { color: var(--ink); border-color: rgba(255,255,255,.25); }
.hero__scroll { margin-top: 6px; }
.btn--lg { font-size: 19px; padding: 19px 44px; }

/* pulso sutil para chamar atenção ao botão de compra */
.btn--primary {
  animation: cta-pulse 2.6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 16px 40px -12px rgba(233,196,106,.7); }
  50%      { box-shadow: 0 16px 50px -8px rgba(233,196,106,.95); }
}

/* Bloco de CTA reutilizável (abaixo do vídeo e seções) */
.cta-block {
  text-align: center;
  margin: 40px auto 0;
}
.cta-block__note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.cta__secondary {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cta__secondary:hover { color: var(--ink); }

/* ---------- Strip / quote ---------- */
.strip {
  background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(217,70,166,.18));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.strip__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.4;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--dark { background: var(--bg-soft); }
.section--cta {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(124,58,237,.4), transparent 70%),
    var(--bg-soft);
  text-align: center;
}
.section__eyebrow {
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.18;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 18px;
  letter-spacing: -.4px;
}
.section__lead {
  text-align: center;
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 720px;
  margin: 0 auto 48px;
}

/* ---------- Dor ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.pain {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain__num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 26px;
  color: var(--pink);
  line-height: 1;
  flex: none;
}
.pain p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Three cards ---------- */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: linear-gradient(180deg, var(--bg-card), rgba(26,18,48,.4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(233,196,106,.35); }
.card__icon { font-size: 38px; margin-bottom: 14px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Ética ---------- */
.ethics {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.ethics .section__eyebrow,
.ethics .section__title,
.ethics .section__lead { text-align: left; margin-left: 0; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-size: 16px;
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 13px;
  display: grid; place-items: center;
  font-weight: 800;
}
.checklist li strong { color: var(--ink); }
.ethics__card {
  background: linear-gradient(160deg, rgba(124,58,237,.25), rgba(217,70,166,.12));
  border: 1px solid rgba(233,196,106,.25);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.ethics__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ethics__card p { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; }

/* ---------- Currículo / módulos ---------- */
.modules { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.module {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.module[open] { border-color: rgba(233,196,106,.35); }
.module__head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}
.module__head::-webkit-details-marker { display: none; }
.module__tag {
  flex: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a1d04;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 6px 12px;
  border-radius: 8px;
}
.module__name { font-weight: 700; font-size: 17px; flex: 1; }
.module__chev { font-size: 22px; color: var(--gold); transition: transform .25s ease; flex: none; }
.module[open] .module__chev { transform: rotate(45deg); }
.module__list {
  list-style: none;
  padding: 0 22px 22px 22px;
  display: grid;
  gap: 10px;
}
.module__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.module__list li::before {
  content: "▸";
  position: absolute; left: 4px; top: 0;
  color: var(--purple-2);
  font-weight: 700;
}

/* ---------- Para quem é ---------- */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.audience__col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.audience__col h3 { font-size: 20px; margin-bottom: 18px; }
.audience__col ul { list-style: none; display: grid; gap: 12px; }
.audience__col li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 15.5px; }
.audience__col--yes { border-color: rgba(124,58,237,.4); }
.audience__col--yes h3 { color: var(--gold-2); }
.audience__col--yes li::before { content:"✓"; color: var(--purple-2); }
.audience__col--no h3 { color: var(--muted); }
.audience__col--no li::before { content:"✕"; color: #c75; }
.audience__col li::before { position: absolute; left: 4px; top: 0; font-weight: 800; }

/* ---------- CTA ---------- */
.cta__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.cta__sub { color: var(--ink-soft); max-width: 600px; margin: 0 auto 32px; font-size: 17px; }
.cta__note { margin-top: 16px; color: var(--gold); font-size: 14px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "＋"; color: var(--gold); font-size: 20px; transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-soft); padding-bottom: 20px; font-size: 15.5px; }

/* ---------- Rodapé ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
  text-align: center;
}
.footer__brand { font-weight: 900; letter-spacing: 3px; font-size: 18px; }
.footer__brand span { color: var(--gold); }
.footer__tag { color: var(--ink-soft); font-size: 14px; margin: 8px 0 20px; }
.footer__legal { color: var(--muted); font-size: 12.5px; max-width: 620px; margin: 0 auto; }

/* ---------- Toast de proteção ---------- */
.guard-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(40px);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 16px 40px -12px rgba(217,70,166,.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}
.guard-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 820px) {
  .three { grid-template-columns: 1fr; }
  .ethics { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
@media (max-width: 480px) {
  .module__head { gap: 10px; padding: 16px; }
  .module__name { font-size: 15px; }
  .hero { padding: 32px 0 44px; }
}

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
