/* =========================================================
   Jogue a favor do Brasil · Pelo fim das bets
   Identidade: verde #005f00 · amarelo #fbc900 · azul #004175 · vermelho #9b0e10
   ========================================================= */
:root {
  --green: #005f00;
  --green-dk: #004500;
  --green-xdk: #032b06;
  --yellow: #fbc900;
  --yellow-dk: #b78f00;
  --blue: #004175;
  --blue-dk: #002f55;
  --red: #9b0e10;
  --ink: #181a17;
  --ink-2: #464b43;
  --line: #ddd3b8;
  --paper: #f7f1e1;
  --paper-2: #efe6cd;
  --white: #fff;

  --font-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius: 14px;
  --header-h: 68px;
  --shadow-card: 0 1px 0 rgba(0,0,0,.04), 0 18px 40px -18px rgba(3, 43, 6, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--green); }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select { font: inherit; color: inherit; }
abbr { text-decoration: none; color: var(--red); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2rem, 1180px); margin-inline: auto; }
.container--narrow { width: min(100% - 2rem, 820px); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--yellow); color: var(--ink); padding: .6rem 1rem; border-radius: 8px; font-weight: 700; }
.skip:focus { left: 8px; }

/* ---------- Tipografia ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: .005em;
  color: var(--green);
  text-wrap: balance;
}
.h2--light, .section__head--light .h2 { color: var(--white); }

/* “A FAVOR DO”: etiqueta em amarelo marca-texto, como no logo */
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
  padding: .5rem .7rem;
  border-radius: 6px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  border: 0; cursor: pointer; text-decoration: none;
  font-weight: 800; letter-spacing: .01em; line-height: 1.1;
  padding: .95rem 1.5rem;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn .icon { flex: none; }
.btn--sm { padding: .6rem 1rem; font-size: .95rem; border-radius: 8px; }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1.1rem; }
.btn--block { width: 100%; }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 4px 0 var(--yellow-dk); }
.btn--yellow:hover { color: var(--ink); background: #ffd42a; transform: translateY(-2px); box-shadow: 0 6px 0 var(--yellow-dk); }
.btn--yellow:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-dk); }
.btn--green { background: var(--green); color: var(--white); box-shadow: 0 4px 0 var(--green-xdk); }
.btn--green:hover { color: var(--white); background: #006d00; transform: translateY(-2px); box-shadow: 0 6px 0 var(--green-xdk); }
.btn--green:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--green-xdk); }
.btn--green[disabled] { opacity: .7; cursor: progress; transform: none; }
.btn--whatsapp { background: #128c4a; color: #fff; box-shadow: 0 4px 0 #0a5f31; width: 100%; }
.btn--whatsapp:hover { color: #fff; background: #15a055; }
.btn--ghost { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: #fff; color: var(--green); }

.link-arrow { color: var(--white); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.link-arrow:hover { color: var(--yellow); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0,0,0,.45); }
.header__in { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.header__logo { display: block; flex: none; }
.header__logo img { height: 46px; width: auto; }
.header__nav { display: none; margin-left: auto; gap: 1.6rem; }
.header__nav a { color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem; text-decoration: none; padding: .4rem 0; border-bottom: 2px solid transparent; }
.header__nav a:hover { color: var(--yellow); border-color: var(--yellow); }
.header .btn { margin-left: auto; }
@media (min-width: 980px) {
  :root { --header-h: 76px; }
  .header__logo img { height: 52px; }
  .header__nav { display: flex; }
  .header .btn { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
/* linhas de campo: círculo central + linha do meio-campo */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  width: 1100px; height: 1100px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.07);
  left: -520px; bottom: -560px;
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.07);
}
.hero__copy { padding: 2.6rem 1rem 2.2rem; }
.hero__tag { margin-bottom: 1.2rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.3rem, 13.5vw, 6.6rem);
  line-height: .95; letter-spacing: .005em;
}
.hero__title span { color: var(--yellow); }
.hero__lead { margin-top: 1.4rem; max-width: 34rem; font-size: clamp(1.05rem, 2.6vw, 1.22rem); color: rgba(255,255,255,.92); }
.hero__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; }
.hero__trust { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; font-size: .92rem; color: rgba(255,255,255,.85); }
.hero__trust li { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust .icon { color: var(--yellow); }

.hero__media { position: relative; width: 100%; min-height: 300px; aspect-ratio: 4 / 3.1; }
.hero__photo {
  position: absolute; inset: 0;
  clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
}
.hero__photo picture { display: block; height: 100%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 28%; }
.hero__slash { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero__slash line { stroke: var(--red); stroke-width: 7; }
.hero__stat {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: .9rem;
  background: #202320; color: #fff;
  padding: .9rem 1rem .9rem 2.4rem;
  clip-path: polygon(1.3rem 0, 100% 0, 100% 100%, 0 100%);
  max-width: min(100%, 25rem);
}
.hero__stat strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 6vw, 2.9rem); line-height: 1; color: var(--yellow); white-space: nowrap; }
.hero__stat span { font-size: .8rem; line-height: 1.35; color: rgba(255,255,255,.88); }
.hero__stat em { display: block; font-style: normal; color: rgba(255,255,255,.55); margin-top: .15rem; font-size: .72rem; }

@media (min-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: min(700px, calc(100svh - var(--header-h))); }
  .hero__copy {
    align-self: center;
    padding: 3rem 2.5rem 3rem max(1rem, calc((100vw - 1180px) / 2));
  }
  .hero__title { font-size: clamp(3.6rem, 6.1vw, 5.6rem); }
  .hero__media { aspect-ratio: auto; min-height: 0; }
  .hero__photo { clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%); }
  .hero__photo img { object-position: 45% 30%; }
  .hero__slash { display: block; }
  .hero__stat { padding-left: 2.8rem; }
}

/* ---------- Seções ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section__head { margin-bottom: clamp(2rem, 4vw, 3.2rem); max-width: 46rem; }
.section__head .tag { margin-bottom: 1rem; }
.section__lead { margin-top: 1rem; font-size: 1.15rem; color: var(--ink-2); }
.section__head--light .section__lead { color: rgba(255,255,255,.9); }

/* faixas com corte diagonal (eco do corte do logo) */
.band { position: relative; isolation: isolate; overflow: hidden; padding: clamp(6rem, 11vw, 9rem) 0; color: #fff; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; clip-path: polygon(0 clamp(24px, 3.4vw, 60px), 100% 0, 100% calc(100% - clamp(24px, 3.4vw, 60px)), 0 100%); }
.band--green::before { background: var(--green); }
.band--blue::before { background: var(--blue); }

/* ---------- Assine ---------- */
.signup { padding-top: clamp(3rem, 7vw, 5.5rem); }
.signup__grid { display: grid; gap: 2.6rem; align-items: start; }
.signup__text > * + * { margin-top: 1.15rem; }
.signup__text .tag { margin-bottom: .4rem; }
.signup__text .h2 { margin-bottom: .6rem; }
.signup__text strong { color: var(--green); }
.note { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--paper-2); border-left: 5px solid var(--yellow); border-radius: 0 10px 10px 0; font-size: .95rem; color: var(--ink-2); }
.note .icon { flex: none; color: var(--blue); margin-top: .1rem; }
@media (min-width: 960px) {
  .signup__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 4rem; }
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  border-top: 8px solid var(--yellow);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.3rem 1.5rem;
}
@media (min-width: 520px) { .form-card { padding: 2rem 2rem 1.8rem; } }
.form__head { margin-bottom: 1.3rem; }
.form__head h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 2rem; line-height: 1; color: var(--green); }
.form__head p { margin-top: .35rem; color: var(--ink-2); font-size: .98rem; }
.form__demo { margin-bottom: 1rem; padding: .7rem .9rem; background: #fff6cc; border: 1px dashed var(--yellow-dk); border-radius: 8px; font-size: .85rem; }
.form__demo code { font-size: .8rem; }

.field { margin-bottom: 1rem; }
.field label, .check label { font-size: .9rem; font-weight: 700; }
.field label { display: block; margin-bottom: .35rem; }
.field .opt { font-weight: 500; color: var(--ink-2); }
.field input, .field select {
  width: 100%; height: 3.1rem; padding: 0 .9rem;
  background: #fff; border: 1.5px solid #c9bf9f; border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.field select {
  padding-right: 2.4rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) 1.35rem, calc(100% - .8rem) 1.35rem;
  background-size: .35rem .35rem; background-repeat: no-repeat;
}
.field input::placeholder { color: #9a9682; }
.field input:hover, .field select:hover { border-color: var(--green); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 65, 117, .18); }
.field.has-error input, .field.has-error select { border-color: var(--red); background: #fff8f7; }
.field__error { min-height: 0; margin-top: .3rem; font-size: .84rem; font-weight: 600; color: var(--red); }
.field__error:empty { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 6.2rem; gap: 0 .8rem; }

.check { display: flex; gap: .7rem; align-items: flex-start; margin-top: .4rem; }
.check input { flex: none; width: 1.3rem; height: 1.3rem; margin: .1rem 0 0; accent-color: var(--green); }
.check label { font-weight: 500; font-size: .88rem; color: var(--ink-2); line-height: 1.45; }
.check + .field__error { margin-top: .3rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__error { margin: 1rem 0 0; padding: .7rem .9rem; background: #fff1ef; border-radius: 8px; color: var(--red); font-weight: 600; font-size: .92rem; }
.form__error:empty { display: none; }
#form-submit { margin-top: 1.2rem; }
#form-submit.is-loading .btn__label::after { content: "…"; }
.form__fine { margin-top: .9rem; text-align: center; font-size: .8rem; color: var(--ink-2); }

.success { text-align: center; padding: .5rem 0; }
.success:focus { outline: none; }
.success__badge { width: 4.4rem; height: 4.4rem; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--yellow); box-shadow: 0 0 0 8px rgba(0,95,0,.12); }
.success h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 2.2rem; line-height: 1.05; color: var(--green); }
.success > p { margin: .8rem auto 1.4rem; max-width: 26rem; color: var(--ink-2); }
.share { display: grid; gap: .7rem; }
.share__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.share__status { min-height: 1.2rem; font-size: .88rem; font-weight: 600; color: var(--green); }
.share__status--light { color: var(--yellow); }

/* ---------- Por que (cards) ---------- */
.why { background: var(--paper); }
.cards { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 18px;
  padding: 1.7rem 1.5rem 1.4rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--green); }
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--green); }
.card:nth-child(2)::before { background: var(--yellow); }
.card:nth-child(3)::before { background: var(--blue); }
.card:nth-child(4)::before { background: var(--red); }
.card__n { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--paper-2); -webkit-text-stroke: 1.5px var(--green); }
.card:nth-child(2) .card__n { -webkit-text-stroke-color: var(--yellow-dk); }
.card:nth-child(3) .card__n { -webkit-text-stroke-color: var(--blue); }
.card:nth-child(4) .card__n { -webkit-text-stroke-color: var(--red); }
.card h3 { font-size: 1.3rem; line-height: 1.2; font-weight: 800; }
.card p { color: var(--ink-2); }
.card .card__src { margin-top: auto; padding-top: .4rem; font-size: .8rem; color: #7b7a68; font-style: italic; }

/* ---------- Números ---------- */
.numbers .container { position: relative; }
.numbers::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,.06);
  right: -380px; top: 50%; transform: translateY(-50%);
}
.stats { display: grid; gap: 0; grid-template-columns: 1fr; }
.stats li { padding: 1.5rem 0; border-top: 2px solid rgba(255,255,255,.22); }
.stats strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 8vw, 4.3rem); line-height: 1; color: var(--yellow); letter-spacing: .01em; }
.stats span { display: block; margin-top: .6rem; max-width: 22rem; color: rgba(255,255,255,.95); line-height: 1.4; }
.stats em { display: block; margin-top: .55rem; font-style: normal; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.numbers__note { margin-top: 2.2rem; max-width: 52rem; padding: 1.1rem 1.3rem; border-left: 5px solid var(--yellow); background: rgba(0,0,0,.18); border-radius: 0 10px 10px 0; font-size: .95rem; color: rgba(255,255,255,.92); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); column-gap: 2.5rem; } }
@media (min-width: 980px) { .stats { grid-template-columns: repeat(3, 1fr); column-gap: 3rem; } }

/* ---------- Futebol ---------- */
.football__grid { display: grid; gap: 2.6rem; align-items: center; }
.football__photo { position: relative; }
.football__photo img { width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; object-position: 42% 30%; border-radius: 22px; box-shadow: 12px 12px 0 var(--yellow); }
.football__photo::after { content: ""; position: absolute; inset: 0; border-radius: 22px; box-shadow: inset 0 0 0 4px rgba(255,255,255,.0); }
.football__text > * + * { margin-top: 1.1rem; }
.football__text .h2 { margin-top: 1rem; }
.football__text strong { color: var(--green); }
.facts { display: grid; gap: .8rem; margin-top: 1.4rem !important; }
.facts li { padding: .9rem 1rem; background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; font-size: .98rem; color: var(--ink-2); }
.facts li strong { color: var(--green); font-weight: 800; }
.small { font-size: .82rem; color: #7b7a68; font-style: italic; }
@media (min-width: 900px) {
  .football__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 4.5rem; }
  .football__photo img { aspect-ratio: 1 / 1.05; }
}

/* ---------- Proposta ---------- */
.defend { background: var(--paper-2); }
.pillars { display: grid; gap: 1.2rem; counter-reset: p; }
.pillars li { position: relative; background: var(--white); border-radius: 18px; padding: 4.6rem 1.6rem 1.7rem; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.pillars__n {
  position: absolute; left: 1.4rem; top: 1.2rem;
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--green); color: var(--yellow);
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
}
.pillars li:nth-child(2) .pillars__n { background: var(--blue); }
.pillars li:nth-child(3) .pillars__n { background: var(--red); color: #fff; }
.pillars h3 { font-size: 1.3rem; font-weight: 800; line-height: 1.2; margin-bottom: .6rem; }
.pillars p { color: var(--ink-2); }
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.gov { margin-top: 2rem; padding: 1.7rem 1.6rem; background: var(--ink); color: #fff; border-radius: 18px; border-left: 8px solid var(--yellow); }
.gov h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; color: var(--yellow); margin-bottom: .8rem; }
.gov p + p { margin-top: .9rem; }
.gov p { color: rgba(255,255,255,.9); max-width: 60rem; }
.gov strong { color: #fff; }
.norway { margin-top: 1.8rem; max-width: 60rem; color: var(--ink-2); font-size: .98rem; }
.norway strong { color: var(--green); }
.norway span { color: #7b7a68; font-style: italic; font-size: .85rem; }

/* ---------- Ajuda ---------- */
.help__grid { display: grid; gap: 1.1rem; }
.help__item { background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.22); border-radius: 16px; padding: 1.5rem 1.4rem; }
.help__item h3 { font-size: 1.15rem; font-weight: 800; line-height: 1.25; margin-bottom: .5rem; }
.help__item p { color: rgba(255,255,255,.9); font-size: .98rem; }
.help__item--feature { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.help__item--feature p { color: #2a2612; }
.help__big { display: block; font-family: var(--font-display); font-weight: 400; font-size: 5rem; line-height: .95; color: var(--blue); margin-bottom: .3rem; }
@media (min-width: 720px) {
  .help__grid { grid-template-columns: repeat(3, 1fr); }
  .help__item--feature { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 0 2rem; align-items: center; padding: 1.6rem 2rem; }
  .help__item--feature .help__big { grid-row: 1 / span 2; font-size: 6.5rem; margin: 0; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.accordion { border-top: 2px solid var(--ink); }
.accordion details { border-bottom: 1.5px solid var(--line); }
.accordion summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  font-weight: 800; font-size: 1.1rem; line-height: 1.3;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after, .accordion summary::before {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 1.1rem; height: 3px; background: var(--green); border-radius: 2px;
  transition: transform .2s ease;
}
.accordion summary::after { transform: rotate(90deg); }
.accordion details[open] summary::after { transform: rotate(0); }
.accordion summary:hover { color: var(--green); }
.accordion details p { padding: 0 3rem 1.4rem 0; color: var(--ink-2); max-width: 44rem; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; isolation: isolate; overflow: hidden; background: var(--green); color: #fff; text-align: center; padding: clamp(4rem, 9vw, 7rem) 0; }
.cta-final::before { content: ""; position: absolute; z-index: -1; width: 1000px; height: 1000px; border-radius: 50%; border: 4px solid rgba(255,255,255,.07); left: 50%; top: 50%; transform: translate(-50%, -50%); }
.cta-final::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 50%; height: 4px; background: rgba(255,255,255,.07); }
.cta-final__brush { width: min(100%, 560px); margin: 0 auto 1.4rem; }
.cta-final .h2 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
.cta-final p { margin: 1rem auto 0; max-width: 32rem; font-size: 1.15rem; color: rgba(255,255,255,.92); }
.cta-final__actions { margin-top: 1.8rem; }
.share--inline { margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .6rem; }
.share__label { font-weight: 700; font-size: .95rem; color: rgba(255,255,255,.85); margin-right: .3rem; }
.cta-final .share__status { flex-basis: 100%; max-width: none; margin: 0; font-size: .88rem; }

/* ---------- Fontes ---------- */
.sources { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--paper); }
.sources__box { background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; padding: 0 1.4rem; }
.sources__box summary { cursor: pointer; padding: 1.1rem 0; font-weight: 800; font-size: 1.05rem; }
.sources__box[open] summary { border-bottom: 1.5px solid var(--line); margin-bottom: 1rem; }
.sources__box > p { color: var(--ink-2); font-size: .95rem; margin-bottom: 1rem; }
.sources__box ul { display: grid; gap: .55rem; padding-bottom: 1.3rem; font-size: .9rem; color: var(--ink-2); }
.sources__box li { padding-left: 1rem; position: relative; }
.sources__box li::before { content: ""; position: absolute; left: 0; top: .6em; width: .4rem; height: .4rem; background: var(--yellow); border-radius: 50%; }

/* ---------- Footer ---------- */
.footer { background: var(--green-xdk); color: rgba(255,255,255,.85); padding: 3rem 0 6rem; }
.footer__in { display: grid; gap: 1.4rem; justify-items: start; }
.footer__logo { width: min(100%, 320px); height: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.footer__nav a { color: #fff; font-weight: 600; text-decoration-color: var(--yellow); }
.footer__nav a:hover { color: var(--yellow); }
.footer__help { padding: .8rem 1rem; border-radius: 10px; background: rgba(255,255,255,.08); font-size: .95rem; }
.footer__help strong { color: var(--yellow); }
.footer__legal { font-size: .8rem; color: rgba(255,255,255,.6); max-width: 46rem; }
@media (min-width: 900px) { .footer { padding-bottom: 3rem; } }

/* ---------- CTA fixo (celular) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(3,43,6,.92), rgba(3,43,6,.75));
  backdrop-filter: blur(6px);
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: none; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- Animações de entrada ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease var(--d, 0s), transform .6s ease var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .card, .sticky-cta { transition: none; }
}

/* ---------- Página de privacidade ---------- */
.doc { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.doc h1 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; color: var(--green); margin-bottom: 1rem; }
.doc h2 { font-size: 1.35rem; font-weight: 800; margin: 2.2rem 0 .6rem; color: var(--ink); }
.doc p, .doc li { color: var(--ink-2); }
.doc p + p { margin-top: .8rem; }
.doc ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; }
.doc .updated { color: #7b7a68; font-size: .9rem; margin-bottom: 1.5rem; }
.todo { background: var(--yellow); color: var(--ink); padding: .05rem .35rem; border-radius: 4px; font-weight: 700; }
