@import url("./assets/fonts/fonts.css");

/* =========================================================================
   MÉTODO DIAMOND 2.0 — Landing Page
   Faithful reproduction of the Figma "DIAMOND / VENDAS 2" design (1440 canvas)
   ========================================================================= */

:root {
  --lime: #d7eb2d;          /* VERDE PRINCIPAL - OCR */
  --btn: #c8d84c;           /* CTA button fill */
  --btn-text: #1a1a1a;
  --btn-border: #dedddf;
  --dark: #222121;          /* main dark bg */
  --black: #0c0c0c;         /* deep black bg */
  --gray: #d6d6d4;
  --white: #f1f1f1;
  --green-dark: #434d36;
  --muted: #b0b0b0;

  --font-display: "Tusker Grotesk", "Anton", "Arial Narrow", sans-serif;
  --font-body: "SF Pro Display", "Inter", -apple-system, "Segoe UI", sans-serif;

  --page: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

/* Display headline helper: Anton is narrower than Tusker Grotesk, so widen slightly */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.14;
}

/* The 1440 design canvas, centered */
.page {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  position: relative;
}

/* ---- Shared pill CTA button ---------------------------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.232px solid var(--btn-border);
  background: var(--btn);
  color: var(--btn-text);
  border-radius: 999px;
  padding: 3.7px;               /* outer ring padding */
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.cta > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57.98px;
  padding: 9px 25.75px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 22.9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cta:hover { transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 10px 30px rgba(215,235,45,.25); }
.cta:active { transform: translateY(0); }

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}

/* Utility */
.lime { color: var(--lime); }
.center { text-align: center; }

/* Section base — sections are stacked full-width bands */
section { position: relative; }

/* Reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* =========================================================================
   SECTIONS
   ========================================================================= */

.page { background: var(--black); }

/* ---- Top banner ---- */
.topbar {
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  margin-inline: calc(50% - 50vw); /* sangra de ponta a ponta */
}
.topbar p {
  color: #000;
  font-weight: 600;
  font-size: clamp(12px, 1.42vw, 21px);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .01em;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, var(--black) 0%, rgba(12,12,12,.82) 26%, rgba(12,12,12,.15) 46%, rgba(12,12,12,0) 60%),
    url("assets/img/hero-bg.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center top;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 44px 150px 70px;
  max-width: 800px;
}
.hero-logo { width: 235px; height: auto; margin-bottom: 53px; }
.hero-h1 {
  font-size: 50px; line-height: 1.1; color: var(--white);
  margin: 0 0 28px; max-width: 600px;
}
.hero-sub { font-size: 26px; line-height: 1.22; color: var(--white); max-width: 600px; margin: 0 0 20px; font-weight: 400; }
.hero-sub b { font-weight: 700; }
.hero-sub2 { font-size: 24.5px; line-height: 1.22; color: var(--white); font-weight: 700; max-width: 640px; margin: 0 0 28px; }
.hero-cta { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 28px; }
.hero-ticket { display: flex; align-items: center; gap: 10px; font-size: 20px; color: var(--white); }
.hero-ticket svg { flex: none; }

/* ---- Countdown box (shared) ---- */
.countdown-sec { display: flex; flex-direction: column; align-items: center; padding: 40px 150px 24px; }
.countdown-box {
  width: 100%; max-width: 1132px;
  border: 1px solid var(--lime);
  border-radius: 10px;
  background: linear-gradient(180deg, #000 0%, #1f1f1f 100%);
  padding: 34px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cd-label { color: var(--white); font-size: 18px; text-align: center; }
.cd-row { display: flex; align-items: flex-start; justify-content: center; gap: 20px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; }
.cd-num { font-family: var(--font-display); font-weight: 700; font-size: 60px; line-height: .95; color: var(--lime); }
.cd-lbl { font-size: 15px; color: var(--white); text-transform: uppercase; letter-spacing: .02em; margin-top: 2px; }
.cd-colon { font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--lime); margin-top: 4px; }
.cd-foot { color: var(--white); font-size: 18px; text-align: center; margin-top: 12px; }
.badges { width: 100%; max-width: 560px; height: auto; margin-top: 30px; }

/* ---- Problem ---- */
.problem {
  position: relative;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, var(--black) 0%, rgba(12,12,12,.86) 34%, rgba(12,12,12,.35) 55%, rgba(12,12,12,.1) 74%),
    linear-gradient(180deg, rgba(12,12,12,0) 82%, var(--black) 100%),
    url("assets/img/17-194_bgimg274__src1.jpg");
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, right center;
}
.problem-inner { padding: 90px 150px; max-width: 900px; }
.problem-h2 { margin: 0 0 30px; line-height: 1.12; }
.problem-h2 span { display: block; }
.problem-h2 .pl1 { font-size: 50px; color: var(--white); }
.problem-h2 .pl2 { font-size: 73px; }
.problem-h2 .pl3 { font-size: 75px; color: var(--white); }
.problem-body { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.problem-body p { font-size: 26px; line-height: 1.22; color: var(--white); }
.problem-body b { font-weight: 700; }
.problem-body hr { width: 510px; max-width: 100%; height: 1px; border: 0; background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,0)); margin: 0; }
.callout {
  margin-top: 28px; max-width: 620px;
  border: 1px solid var(--lime); border-radius: 10px;
  background: linear-gradient(180deg, #000 0%, #1f1f1f 100%);
  padding: 34px 28px;
}
.callout-top { font-size: 30px; line-height: 1.3; color: var(--white); }
.callout-top b { font-weight: 700; }
.callout-hl { font-size: 40px; line-height: 1.1; margin-top: 6px; }

/* ---- Grupo ---- */
.grupo {
  position: relative;
  display: flex; justify-content: flex-end;
  background-color: #060606;
  background-image:
    linear-gradient(90deg, rgba(6,6,6,.1) 0%, rgba(6,6,6,.55) 42%, rgba(6,6,6,.92) 66%, #060606 100%),
    url("assets/img/17-433_grupo-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, left center;
  padding: 76px 150px;
}
.grupo-inner { max-width: 690px; }
.grupo-h2 { font-size: 61px; line-height: 1.1; color: var(--white); margin: 0 0 24px; }
.grupo-list { display: flex; flex-direction: column; gap: 20px; }
.grupo-row { display: flex; align-items: center; gap: 18px; }
.grupo-row .ic { flex: none; width: 72px; display: flex; justify-content: center; align-items: center; }
.grupo-row p { font-size: 26px; line-height: 1.22; color: var(--white); }
.grupo-row b { font-weight: 700; }

/* ---- Impacto ---- */
.impacto { padding: 60px 0 70px; text-align: center; overflow: hidden; }
.impacto-h2 { font-size: 50px; color: var(--white); margin: 0 auto 40px; max-width: 960px; line-height: 1.1; }
.impacto-row { display: flex; gap: 40px; justify-content: center; }
.tcard { width: 408px; flex: none; margin: 0; background: #f6f6f6; overflow: hidden; border-bottom: 10px solid var(--lime); text-align: left; }
.tphoto { position: relative; width: 376px; height: 263px; margin: 16px auto 0; background: #f5ec62; overflow: hidden; }
.tphoto img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; }
.play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(40,40,40,.55); border: 2px solid #fff; cursor: pointer;
}
.play::before { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%); border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; }
.ttag {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.92);
  padding: 8px 15px; font-weight: 700; font-size: 16.7px; color: #030000;
  text-transform: uppercase; text-align: center; white-space: nowrap; line-height: 1.1;
}
.tcard figcaption { padding: 22px 31px 28px; }
.tname { display: block; font-weight: 600; font-size: 25px; color: #515151; }
.tcard figcaption hr { border: 0; height: 1px; background: #cfcfcf; width: 335px; max-width: 100%; margin: 12px 0; }
.trole { display: block; font-size: 18px; color: #515151; }

/* ---- Impacto: carrossel de depoimentos em vídeo (Shorts 9:16) ---- */
.vcarousel { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 54px; }
.vtrack {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 8px 2px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  width: fit-content; max-width: 100%; margin-inline: auto; /* centraliza os cards quando cabem; rola quando não cabem */
}
.vtrack::-webkit-scrollbar { display: none; }
.vcard { flex: 0 0 auto; width: 264px; margin: 0; scroll-snap-align: center; text-align: left; }
.vthumb {
  position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden;
  background: #111; cursor: pointer; border: 1px solid rgba(255,255,255,.12);
}
.vthumb img { width: 100%; height: 100%; object-fit: cover; }
.vthumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.vthumb .play { width: 66px; height: 66px; z-index: 1; }
.vcard figcaption { padding: 14px 6px 0; }
.vname { display: block; font-weight: 600; font-size: 19px; color: #fff; }
.vrole { display: block; font-size: 14px; color: var(--muted); margin-top: 3px; }
.vnav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(20,20,20,.82); border: 1px solid var(--lime); color: var(--lime);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.vnav:hover { background: var(--lime); color: #12140a; transform: translateY(-50%) scale(1.06); }
.vnav-prev { left: 0; }
.vnav-next { right: 0; }

/* ---- Efeitos & animações do carrossel de vídeos ---- */
/* Hover: card sobe, ganha borda/brilho lime e o play vira lime */
.vcard .vthumb { transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, border-color .32s ease; }
.vcard:hover .vthumb, .vthumb:focus-visible {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: 0 22px 46px -14px rgba(0,0,0,.7), 0 0 34px rgba(215,235,45,.30);
}
.vthumb:focus-visible { outline: none; }
.vthumb .play { transition: transform .25s ease, background .25s ease; }
.vcard:hover .play { transform: translate(-50%,-50%) scale(1.12); background: rgba(215,235,45,.96); }
.vcard:hover .play::before { border-color: transparent transparent transparent #12140a; }

/* Pulso suave no botão play (chama atenção que é vídeo) */
@keyframes vplay-pulse { 0% { box-shadow: 0 0 0 0 rgba(215,235,45,.38); } 70%, 100% { box-shadow: 0 0 0 15px rgba(215,235,45,0); } }
.vthumb .play { animation: vplay-pulse 2.6s ease-out infinite; }
.vcard:hover .play { animation: none; }

/* Entrada em cascata quando a seção aparece (stagger via JS) */
.impacto.reveal-ready .vcard { opacity: 0; transform: translateY(28px); }
.impacto.reveal-ready .vcard.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .55s cubic-bezier(.2,.7,.2,1); }

/* =========================================================================
   SCROLL-REVEAL GERAL — mesma linguagem do carrossel (fade + subida)
   Aplicado via JS (classe .rv nos elementos, .rv-in quando entram na tela).
   Só ativa se o JS adicionar html.has-reveal (degrada mostrando tudo).
   ========================================================================= */
html.has-reveal .rv { opacity: 0; transform: translateY(26px); }
html.has-reveal .rv.rv-in {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
/* Cascata nos grupos lado a lado */
html.has-reveal .jcard:nth-child(2),
html.has-reveal .ecard:nth-child(2),
html.has-reveal .pq-col:nth-child(2) { transition-delay: .12s; }
html.has-reveal .jcard:nth-child(3),
html.has-reveal .ecard:nth-child(3) { transition-delay: .24s; }
/* Acessibilidade: sem animação = conteúdo sempre visível */
@media (prefers-reduced-motion: reduce) {
  html.has-reveal .rv,
  html.has-reveal .impacto.reveal-ready .vcard { opacity: 1 !important; transform: none !important; }
}

/* ---- What is ---- */
.whatis {
  position: relative;
  background-color: var(--black);
  background-image:
    linear-gradient(90deg, var(--black) 0%, rgba(12,12,12,.82) 36%, rgba(12,12,12,.3) 58%, rgba(12,12,12,.05) 78%),
    url("assets/img/29-866_bgimg285__src1.jpg");
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center, right center;
}
.whatis-inner { padding: 90px 150px; max-width: 700px; }
.whatis-h2 { font-size: 50px; line-height: 1.12; color: var(--white); margin: 0 0 20px; max-width: 520px; }
.whatis-body { display: flex; flex-direction: column; gap: 20px; max-width: 510px; }
.whatis-body p { font-size: 26px; line-height: 1.22; color: var(--white); }

/* ---- Jornada ---- */
.jornada { padding: 70px 0; text-align: center; }
.jornada-h2 { font-size: 50px; color: var(--lime); margin: 0 0 40px; }
.jornada-row { display: flex; gap: 20px; justify-content: center; align-items: stretch; max-width: 1262px; margin: 0 auto; padding: 0 90px; }
.jcard {
  flex: 1 1 0; min-width: 0; text-align: left;
  background: rgba(16,16,16,.8);
  border: 1px solid #333; border-radius: 12px; padding: 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.jbadge { align-self: flex-start; font-family: var(--font-mono, "Fira Mono", monospace); font-size: 16px; color: var(--lime); text-transform: uppercase; border: 1px solid #626262; border-radius: 4px; padding: 11px 20px; }
.jtitle { font-size: 30px; font-weight: 400; line-height: 1.2; color: #fff; margin: 0; }
.jtitle b { font-weight: 700; }
.jtake { display: flex; gap: 10px; align-items: flex-start; }
.jtake .ic { flex: none; margin-top: 2px; }
.jtake p { font-weight: 600; font-size: 18px; line-height: 1.25; color: var(--lime); letter-spacing: .3px; }
/* "Você recebe": o material que sai pronto em cada noite. Caixa discreta para
   não competir com o .jtake (a promessa da noite, em lime). */
.jmat {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: auto; padding: 12px 14px;
  border: 1px solid rgba(215, 235, 45, .3);
  border-radius: 10px;
  background: rgba(215, 235, 45, .06);
}
.jmat .ic { flex: none; margin-top: 1px; line-height: 0; }
.jmat p { margin: 0; font-size: 16px; line-height: 1.35; color: var(--white); letter-spacing: .2px; }
.jmat b { color: var(--lime); }

/* Certificado, fechando a jornada (3 noites -> 6 horas) */
.jornada-cert {
  text-align: center; margin: 34px auto 0; max-width: 720px;
  font-size: 19px; line-height: 1.4; color: #d9d9d9;
}
.jornada-cert b { color: var(--lime); font-weight: 700; }

.jlist { margin: 0; padding-left: 20px; list-style: disc; }
.jlist li { font-size: 18px; line-height: 1.5; color: #d9d9d9; letter-spacing: .3px; margin-bottom: 6px; padding-left: 7px; }
.jlist li::marker { color: #d9d9d9; }

/* CTA block (shared) */
.cta-block { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 40px; }
.cta-note.plain { color: var(--white); }
.cta-note.plain.muted { color: var(--muted); }

/* ---- Entregáveis ---- */
.entregaveis { padding: 60px 0 64px; text-align: center; }
.entreg-h2 { font-size: 50px; color: var(--lime); margin: 0 0 18px; padding: 0 40px; }
.entreg-sub { font-size: 26px; color: var(--white); max-width: 660px; margin: 0 auto 40px; }
.entreg-sub b { font-weight: 700; }
.entreg-row { display: flex; gap: 19px; justify-content: center; align-items: stretch; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.ecard {
  position: relative; flex: 1 1 0; min-width: 0; text-align: left; overflow: hidden;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 19px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.ecard::after { content: ""; position: absolute; top: -10px; right: -10px; width: 95px; height: 95px; border-radius: 50%; background: rgba(215,235,45,.5); filter: blur(24px); pointer-events: none; }
.echeck { position: relative; z-index: 1; width: fit-content; background: rgba(255,255,255,.2); padding: 5px; border-radius: 7.6px; display: inline-flex; }
.etitle { position: relative; z-index: 1; font-weight: 700; font-size: 21px; color: #fff; margin: 0; }
.ecard img { position: relative; z-index: 1; width: 100%; border-radius: 20px; aspect-ratio: 1.5; object-fit: cover; }

/* ---- Pontua (carrossel duplo — padrão Protocolo 45) ---- */
.pontua { padding: 60px 0; text-align: center; overflow: hidden; }
.pontua-h2 { font-size: 50px; margin: 0 0 40px; padding: 0 20px; }
.wall {
  width: 100%; display: flex; flex-direction: column; gap: 14px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.wall-row { overflow: hidden; width: 100%; }
.row-a { --rh: clamp(220px, 26vw, 320px); }
.row-b { --rh: clamp(160px, 20vw, 250px); }
.row-track { display: flex; gap: 14px; width: max-content; height: var(--rh); will-change: transform; }
.row-a .row-track { animation: pontua-left 60s linear infinite; }
.row-b .row-track { animation: pontua-right 60s linear infinite; }
.wall:hover .row-track { animation-play-state: paused; }
@keyframes pontua-left  { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes pontua-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.g-card { flex: 0 0 auto; height: 100%; margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 14px 34px -16px rgba(0,0,0,.65); }
.g-card img { height: 100%; width: auto; display: block; }
@media (prefers-reduced-motion: reduce) {
  .row-track { animation: none; }
  .wall-row { overflow-x: auto; }
  .wall { -webkit-mask: none; mask: none; }
}

/* ---- Lead capture modal ---- */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); }
.modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
  border: 1px solid var(--lime); border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6), 0 0 90px rgba(215,235,45,.18);
  padding: 34px 30px 30px; text-align: center;
  animation: modal-in .22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-x { position: absolute; top: 12px; right: 16px; background: none; border: 0; color: #b0b0b0; font-size: 30px; line-height: 1; cursor: pointer; }
.modal-x:hover { color: #fff; }
.modal-diamond { width: 54px; height: auto; margin: 0 auto 10px; }
.modal-title { font-family: var(--font-body); font-weight: 700; font-size: 24px; color: #fff; margin: 0 0 6px; }
.modal-sub { font-size: 15px; color: var(--muted); margin: 0 0 22px; }
#lead-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 13px; color: #d9d9d9; font-weight: 600; }
.field input {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: #fff;
  background: #1c1c1c; border: 1px solid #3a3a3a; border-radius: 10px; padding: 13px 14px;
}
.field input::placeholder { color: #6f6f6f; }
.field input:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(215,235,45,.18); }
.modal-err { color: #ff6b5e; font-size: 13px; margin: -4px 0 0; }
.modal-submit {
  margin-top: 4px; width: 100%; cursor: pointer;
  background: var(--btn); color: var(--btn-text); border: 1.232px solid var(--btn-border);
  border-radius: 999px; padding: 15px 20px; font-family: var(--font-body);
  font-weight: 700; font-size: 17px; text-transform: uppercase;
  transition: filter .15s ease, transform .15s ease;
}
.modal-submit:hover { filter: brightness(1.04); transform: translateY(-1px); }
.modal-submit:disabled { opacity: .7; cursor: default; transform: none; }
.modal-note { font-size: 12px; color: var(--muted); text-align: center; margin: 12px 0 0; }
body.modal-open { overflow: hidden; }

/* ---- Para quem ---- */
.paraquem { padding: 60px 0; text-align: center; }
.pq-intro { max-width: 1090px; margin: 0 auto 44px; padding: 0 20px; }
.pq-h2 { font-size: 50px; margin: 0 0 20px; }
.pq-lead { font-size: 26px; color: var(--white); max-width: 1002px; margin: 0 auto; line-height: 1.25; }
.pq-cols { display: flex; gap: 20px; justify-content: center; align-items: stretch; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.pq-col { width: 560px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.pq-head { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pq-mark { display: block; width: 62px; height: 62px; }
.pq-title { font-size: 50px; color: var(--white); white-space: nowrap; }
.pq-card { width: 100%; flex: 1 1 auto; list-style: none; margin: 0; text-align: left; border: .8px solid #b4b4b4; border-radius: 24px; padding: 60px 30px; display: flex; flex-direction: column; }
.pq-card.gray { background: #d6d6d4; gap: 25px; }
.pq-card.limebg { background: var(--lime); gap: 35px; }
.pq-card li { display: flex; gap: 20px; align-items: flex-start; font-size: 20px; line-height: 1.47; }
.pq-card.gray li { color: #222121; }
.pq-card.limebg li { color: #000; }
.chk { flex: none; width: 29px; height: 29px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.chk svg { width: 64%; height: 64%; }
.chk svg path { stroke-width: 3.4; }
.chk.yes { background: #468b12; box-shadow: 0 0 9px rgba(70,139,18,.5); }
.chk.no { background: #c62a2a; box-shadow: 0 0 9px rgba(198,42,42,.5); }

/* ---- Conduz ---- */
.conduz { display: flex; align-items: stretch; background: #fff; color: #1f1f1f; overflow: hidden; min-height: 660px; margin-inline: calc(50% - 50vw); padding-inline: max(0px, calc(50vw - 720px)); }
.conduz-text { flex: 1 1 50%; padding: 60px 20px 60px 95px; display: flex; flex-direction: column; justify-content: center; }
.conduz-badge { align-self: flex-start; display: inline-block; background: var(--lime); border: 1px solid #f1f1f1; border-radius: 12px; padding: 14px 30px; font-weight: 700; font-size: 21px; color: #000; text-transform: uppercase; }
.conduz-name { font-family: "Playfair Display", serif; font-weight: 400; font-style: normal; font-size: 74px; color: var(--green-dark); margin: 30px 0 36px; white-space: nowrap; }
.conduz-name i { font-style: italic; font-weight: 700; }
.conduz-list { margin: 0; padding-left: 22px; list-style: disc; max-width: 474px; }
.conduz-list li { font-size: 24px; line-height: 1.4; color: #1f1f1f; margin-bottom: 20px; padding-left: 6px; }
.conduz-list b { font-weight: 700; }
.conduz-photo { flex: 1 1 50%; align-self: stretch; position: relative; overflow: hidden; }
.conduz-photo img { position: absolute; left: 0; bottom: 0; height: 92%; width: auto; max-width: none; }

/* ---- Glow band (recebe + oferta) ---- */
.glowband {
  position: relative; overflow: hidden; background: var(--black);
  background-image:
    radial-gradient(circle at 50% 20%, rgba(215,235,45,.30), rgba(215,235,45,0) 34%),
    radial-gradient(circle at 50% 76%, rgba(215,235,45,.42), rgba(215,235,45,0) 40%);
  padding: 70px 0 90px;
}

/* Recebe */
.recebe { display: flex; justify-content: center; padding: 20px 20px 70px; }
.recebe-card {
  width: 501px; max-width: 100%; border-radius: 20px;
  background: rgba(96,106,14,.85); border: 1px solid #fff;
  padding: 58px 24px; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.recebe-h2 { font-size: 58px; line-height: 1.12; color: #f1f1f1; margin: 0; }
.recebe-div { width: 389px; max-width: 90%; height: 1px; border: 0; background: rgba(255,255,255,.45); margin: 24px 0 27px; }
.recebe-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 30px; text-align: left; max-width: 357px; }
.recebe-list li { display: flex; gap: 20px; align-items: flex-start; font-size: 25px; line-height: 1.2; color: #fff; }
.rchk { flex: none; margin-top: 2px; }

/* Oferta */
.oferta { display: flex; justify-content: center; padding: 30px 20px; }
.oferta-card {
  position: relative; width: 559px; max-width: 100%; border-radius: 20px;
  border: 1px solid #1a1a1a; overflow: hidden;
  background: linear-gradient(180deg, rgba(1,0,2,.92) 6%, rgba(60,66,12,.9) 78%, rgba(215,235,45,.78) 130%);
  box-shadow: 0 4px 160px 0 rgba(215,235,45,.5);
  padding: 40px 38px;
}
.oferta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.oferta-brand { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.oferta-diamond { width: 84px; height: auto; }
.oferta-metodo { font-weight: 500; font-size: 12px; letter-spacing: 5.7px; color: #e6e6e6; text-transform: uppercase; }
.oferta-word { font-weight: 700; font-size: 28px; letter-spacing: 1px; text-transform: uppercase; color: #e6e6e6; text-shadow: 0 1.5px 18px rgba(0,0,0,.74); }
.oferta-headwrap { width: 100%; text-align: center; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.25); }
.oferta-head { font-weight: 400; font-size: 46px; line-height: 1.15; color: #fff; margin: 0; }
.oferta-head b { font-weight: 700; }
.oferta-price { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.oferta-lote { font-weight: 500; font-size: 25px; color: #f2f2f2; letter-spacing: -.5px; }
.oferta-value { display: flex; align-items: baseline; justify-content: center; letter-spacing: -2px; }
.oferta-value .cur { font-weight: 400; font-size: 44px; color: #f2f2f2; }
.oferta-value .big { font-weight: 700; font-size: 110px; line-height: .86; }
.oferta-value .cents { font-weight: 700; font-size: 54px; }
.oferta-until { font-size: 22px; color: #f2f2f2; }
.oferta-features { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.feat-pill { display: inline-flex; align-items: center; gap: 10px; background: #000; border: 1px solid #585858; border-radius: 60px; padding: 10px 20px; font-weight: 500; font-size: 16px; color: #fff; }
.feat-pill svg { flex: none; }
.feat-row { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #f2f2f2; }
.feat-row svg { flex: none; }

/* ---- Garantia ---- */
.garantia { display: flex; align-items: center; justify-content: center; gap: 39px; padding: 60px 150px; background: var(--black); }
.seal { width: 365px; height: 365px; flex: none; }
.garantia-text { max-width: 447px; }
.garantia-h2 {
  font-size: 44px; font-weight: 700; margin: 0 0 19px; text-transform: uppercase;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.garantia-text p { font-size: 18px; line-height: 1.4; color: #edf1f7; max-width: 411px; }

/* ---- FAQ ---- */
.faq { padding: 60px 20px; text-align: center; }
.faq-h2 { font-size: 40px; font-weight: 700; color: var(--white); margin: 0 0 39px; }
.faq-list { max-width: 685px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; text-align: left; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; background: var(--lime); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 15px 14px 15px 40px; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: #000; text-align: left;
}
.faq-ic { position: relative; flex: none; width: 19px; height: 19px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: #2b2b2b; border-radius: 1px; }
.faq-ic::before { top: 8px; left: 0; width: 19px; height: 3px; }
.faq-ic::after { left: 8px; top: 0; width: 3px; height: 19px; transition: transform .2s ease; }
.faq-item.open .faq-ic::after { transform: scaleY(0); }
.faq-a { background: #707a1c; color: #fff; padding: 0 43px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.faq-item.open .faq-a { padding: 16px 43px; max-height: 400px; }
.faq-a p { font-size: 14px; line-height: 1.4; }

/* ---- Final ---- */
.final { display: flex; flex-direction: column; align-items: center; gap: 40px; padding: 70px 20px; text-align: center; max-width: 860px; margin: 0 auto; }
.final-h2 { font-size: 50px; line-height: 1.1; color: var(--white); max-width: 600px; margin: 0; }
.final-body { display: flex; flex-direction: column; gap: 20px; }
.final-body p { font-size: 26px; line-height: 1.22; color: var(--white); }
.final-cd { max-width: 786px; }

/* ---- Footer ---- */
.footer { background: #1c1c1c; border-top: 1px solid #cbdb46; padding: 30px 200px; text-align: center; margin-inline: calc(50% - 50vw); }
.footer-top { display: flex; align-items: center; justify-content: center; gap: 111px; margin-bottom: 18px; }
.footer-logo { width: 116px; height: auto; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a, .footer-cnpj { font-size: 13px; color: #949494; }
.footer-links a { text-decoration: underline; text-underline-offset: 2px; }
.footer-fine { max-width: 960px; margin: 0 auto; }
.footer-fine p { font-size: 8px; line-height: 15px; color: #949494; text-transform: uppercase; }

/* =========================================================================
   RESPONSIVE — the Figma design is a fixed 1440 desktop canvas.
   Below that we let it scale/stack so nothing breaks.
   ========================================================================= */
/* =========================================================================
   VSL — só existe na VARIANTE B do teste A/B (index-b.html).
   Player YouTube sem controles + barra de progresso própria (sem seek) +
   CTA que só aparece no minuto configurado. Ver script.js -> "VSL".
   ========================================================================= */
.vsl { padding: 54px 0 60px; text-align: center; }
.vsl-inner { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.vsl-kicker {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 14px;
}
.vsl-h2 { font-size: 44px; color: var(--white); margin: 0 auto 26px; max-width: 820px; line-height: 1.1; }

.vsl-stage { position: relative; }

/* Moldura 16:9 com glow lime discreto (mesma linguagem dos cards de vídeo) */
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(215, 235, 45, .22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04);
}
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Capa (facade): só carrega o embed no clique. Sem JS, o link abre o YouTube. */
.vsl-cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  border: 0; padding: 0; margin: 0; cursor: pointer;
  background: transparent; color: var(--white);
  font-family: var(--font-body);
}
.vsl-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vsl-cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 45%, rgba(0,0,0,.25), rgba(0,0,0,.72));
}
.vsl-play {
  position: relative; z-index: 1;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--lime); color: #0c0c0c;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(215, 235, 45, .38);
  animation: vsl-pulse 2.4s ease-in-out infinite;
}
.vsl-play::before {
  content: ""; display: block;
  width: 0; height: 0; margin-left: 7px;
  border-style: solid; border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #0c0c0c;
}
.vsl-cover-txt {
  position: relative; z-index: 1;
  font-size: 15px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}
.vsl-cover:hover .vsl-play { transform: scale(1.06); box-shadow: 0 14px 42px rgba(215, 235, 45, .5); }
@keyframes vsl-pulse {
  0%, 100% { box-shadow: 0 10px 34px rgba(215, 235, 45, .38); }
  50%      { box-shadow: 0 10px 34px rgba(215, 235, 45, .38), 0 0 0 16px rgba(215, 235, 45, .07); }
}

/* Escudo transparente: mata o clique no player (sem seek, sem ir pro YouTube).
   O play/pause continua funcionando porque o JS trata o clique no escudo.

   ⚠️ Começa com pointer-events: none e só liga quando o vídeo ESTÁ tocando
   (classe .vsl-tocando, posta pelo script no estado PLAYING). Motivo: se o
   navegador recusar o autoplay — navegador interno do Instagram, por exemplo —
   o YouTube mostra o play DELE, e o toque precisa chegar no iframe. Gesto no
   documento pai NÃO atravessa iframe de outra origem, então mandar playVideo()
   pela API não resolve: o YouTube trata como chamada programática e recusa. */
.vsl-shield { position: absolute; inset: 0; cursor: pointer; pointer-events: none; }
.vsl-stage.vsl-tocando .vsl-shield { pointer-events: auto; }

/* Dica que aparece se o vídeo não começou sozinho */
.vsl-dica {
  display: block; margin-top: 12px;
  font-size: 14px; font-weight: 700; color: var(--lime);
}

/* Barra de progresso própria — anda com o tempo real de reprodução */
.vsl-bar {
  position: relative;
  height: 7px; margin: 14px 0 0;
  border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, .13);
}
.vsl-bar-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #a9bf1f, var(--lime));
  box-shadow: 0 0 14px rgba(215, 235, 45, .45);
  transition: width .25s linear;
}
/* Saída de emergência: só aparece se a API do YouTube não carregar (ex.: navegador
   com bloqueador). Criada pelo script.js em semAPI(). */
.vsl-fallback {
  display: block; margin-top: 14px;
  font-size: 14px; color: var(--muted); text-decoration: underline;
}
.vsl-fallback:hover { color: var(--lime); }

/* CTA da VSL: visível por padrão (à prova de JS off) e escondido pelo JS
   enquanto o vídeo não chega no minuto de liberação. */
.vsl-cta { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vsl-stage.vsl-locked .vsl-cta { display: none; }
.vsl-cta.vsl-reveal { animation: vsl-in .5s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes vsl-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .vsl-play { animation: none; }
  .vsl-bar-fill { transition: none; }
  .vsl-cta.vsl-reveal { animation: none; }
}

/* Cantos arredondados nos blocos com imagem: as 4 seções com background-image
   (hero / problema / grupo / o-que-é) + a foto do Rafael.
   Sem media query DE PROPÓSITO: a 1ª versão só arredondava acima de 1480px
   (largura em que o .page de 1440 passa a ter folga lateral) e o Felipe não viu
   efeito nenhum — não dá pra depender da largura de tela de quem olha. Quando o
   bloco encosta na borda da tela, o arco só revela o preto do body atrás, que é
   a mesma cor — imperceptível. */
.hero, .problem, .grupo, .whatis { border-radius: 18px; }

/* A foto do Rafael ocupa a altura INTEIRA da faixa branca, então os cantos de
   cima/baixo caem na fronteira com as seções escuras. Se ficar estranho no ar,
   é só apagar esta linha. */
.conduz-photo { border-radius: 18px; }

@media (max-width: 1200px) {
  .hero-inner, .problem-inner, .whatis-inner { padding-left: 6vw; padding-right: 6vw; }
  .grupo { padding-left: 6vw; padding-right: 6vw; }
  .countdown-sec { padding-left: 6vw; padding-right: 6vw; } /* era 150px fixo -> esmagava a caixa */
  .impacto-row, .pontua-row { flex-wrap: wrap; }
  .jornada-row { flex-wrap: wrap; padding: 0 6vw; }
  .jcard { flex-basis: 320px; }
  .garantia { flex-direction: column; text-align: center; padding: 60px 6vw; }
  .garantia-text { text-align: center; }
  .footer { padding: 30px 6vw; }
}
@media (max-width: 900px) {
  .hero-h1, .problem-h2 .pl1, .problem-h2 .pl3, .grupo-h2, .impacto-h2,
  .whatis-h2, .jornada-h2, .entreg-h2, .pontua-h2, .pq-h2, .final-h2, .vsl-h2 { font-size: 8vw; }
  .vsl-inner { padding: 0 6vw; }
  .problem-h2 .pl2 { font-size: 10vw; }
  .conduz { flex-direction: column; }
  .conduz-text { padding: 50px 6vw; }
  .conduz-photo { width: 100%; min-height: 420px; }
  .conduz-name { white-space: normal; font-size: 12vw; }
  .pq-cols, .entreg-row { flex-direction: column; align-items: center; }
  /* Em coluna, flex:1 1 0 colapsava a altura do card (e overflow:hidden cortava título+img) */
  .ecard { flex: 0 0 auto; width: 100%; max-width: 440px; }
  .pq-title { white-space: normal; }
  .hero-h1, .hero-sub, .hero-sub2 { max-width: 100%; }
  .cd-num { font-size: 44px; }
  .cd-colon { font-size: 34px; }
  /* CTA: escala e QUEBRA a linha p/ o rótulo longo nunca ser cortado */
  .cta { max-width: 100%; }
  .cta > span { font-size: clamp(14px, 3.6vw, 20px); white-space: normal; text-align: center; height: auto; min-height: 54px; padding: 12px 22px; line-height: 1.16; }
  .hero-cta { width: 100%; }
  .cta-note, .hero-ticket { flex-wrap: wrap; }
}

/* =========================================================================
   PHONES — the Figma sizes are desktop-only; scale type + fit boxes to width
   ========================================================================= */
@media (max-width: 600px) {
  /* Corpo de texto (Figma = 24-26px) -> legível no celular */
  .hero-sub, .hero-sub2, .problem-body p, .grupo-row p, .whatis-body p,
  .entreg-sub, .pq-lead, .final-body p, .callout-top { font-size: 17px; line-height: 1.42; }
  .hero-sub2 { font-weight: 700; }
  .hero-ticket { font-size: 15px; }
  .hero-logo { width: 180px; margin-bottom: 36px; }
  .hero-inner { padding-top: 32px; padding-bottom: 54px; }

  /* Títulos que NÃO entram na regra 8vw */
  .callout-hl { font-size: 26px; }
  .jtitle { font-size: 22px; }
  .jlist li, .jtake p { font-size: 16px; }
  .jmat p { font-size: 15px; }
  .jornada-cert { font-size: 17px; padding: 0 16px; }
  .recebe-h2 { font-size: 34px; }
  .recebe-list li { font-size: 18px; }
  .oferta-head { font-size: 28px; }
  .oferta-value .big { font-size: 76px; }
  .oferta-value .cur { font-size: 32px; }
  .oferta-value .cents { font-size: 38px; }
  .oferta-lote { font-size: 20px; }
  .oferta-until { font-size: 18px; }
  .oferta-word { font-size: 22px; }
  .pq-title { font-size: 30px; }
  .pq-card li { font-size: 17px; }
  .garantia-h2 { font-size: 30px; }
  .garantia-text p { font-size: 16px; }
  .faq-h2 { font-size: 28px; }
  .faq-q { font-size: 15px; padding-left: 22px; }
  .faq-a { padding-left: 24px; padding-right: 24px; }
  .faq-item.open .faq-a { padding-left: 24px; padding-right: 24px; }
  .conduz-name { font-size: 44px; }
  .conduz-badge { font-size: 16px; padding: 11px 22px; }
  .conduz-list li { font-size: 18px; }
  .tname { font-size: 22px; }

  /* Títulos de seção centrada sem padding horizontal encostavam na borda */
  .impacto-h2 { padding: 0 20px; }
  .jornada-h2 { padding: 0 16px; }

  /* VSL (variante B): moldura menor, play e textos proporcionais */
  .vsl { padding: 34px 0 40px; }
  .vsl-inner { padding: 0 16px; }
  .vsl-kicker { font-size: 11px; letter-spacing: .14em; }
  .vsl-frame { border-radius: 12px; }
  .vsl-play { width: 64px; height: 64px; }
  .vsl-play::before { border-width: 11px 0 11px 18px; margin-left: 5px; }
  .vsl-cover-txt { font-size: 12px; letter-spacing: .1em; }
  .vsl-cover { gap: 12px; }
  .vsl-bar { height: 6px; }

  /* Carrossel de vídeos: 1 card por vez com espia, swipe nativo, setas ocultas */
  .vcarousel { padding: 0 12px; }
  .vnav { display: none; }
  .vcard { width: 78vw; max-width: 300px; }

  /* Ritmo vertical mais compacto */
  .problem-inner, .whatis-inner { padding-top: 56px; padding-bottom: 56px; }
  .grupo { padding-top: 56px; padding-bottom: 56px; }
  .callout { padding: 24px 20px; }
  .jcard { padding: 28px 24px; }
  .pq-card { padding: 36px 22px; }
  .recebe-card { padding: 44px 22px; }
  .oferta-card { padding: 32px 22px; }

  /* Contador: cabe de verdade */
  .countdown-box { padding: 24px 14px; }
  .cd-row { gap: 6px; }
  .cd-num { font-size: 30px; }
  .cd-colon { font-size: 22px; margin-top: 2px; }
  .cd-lbl { font-size: 10px; letter-spacing: 0; }
  .cd-label, .cd-foot { font-size: 15px; }
  .badges { max-width: 300px; }

  /* Cards de depoimento -> 1 coluna, largura total */
  .impacto-row { flex-direction: column; align-items: center; gap: 28px; }
  .tcard { width: 100%; max-width: 360px; }
  .tphoto { width: auto; height: auto; aspect-ratio: 376 / 263; margin: 16px; }

  /* Selo de garantia */
  .seal { width: 200px; height: 200px; }

  /* Rodapé */
  .footer { padding: 28px 6vw; }
  .footer-top { flex-direction: column; gap: 20px; }
  .footer-fine p { font-size: 9px; line-height: 1.7; }

  /* Modal */
  .modal-card { padding: 30px 22px 26px; }
}
