/* =========================================================================
   Kit Mapeamento de Processos Premium — Valéria Moura · Gestão da Qualidade
   Design system "Âmbar & Grafite Quente": creme/areia + dourado-âmbar +
   terracota + café-espresso, com display serif (Fraunces). Paleta nova,
   deliberadamente distinta do azul-marinho+verde das outras landings.
   ========================================================================= */

/* Display serif auto-hospedada (subset latin variável cobre todos os acentos PT-BR) */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 680;
  font-display: swap;
  src: url("/fonts/fraunces.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Neutros quentes (creme / areia) */
  --paper: #fbf6ee;
  --surface: #ffffff;
  --surface-2: #fcf8f0;
  --cream: #f6eddf;
  --sand: #efe3d1;
  --line: #e9ddc9;
  --line-strong: #dccbae;

  /* Tinta — grafite-café (sem azul) */
  --ink: #2b2219;
  --ink-soft: #5d5245;
  --ink-faint: #8b7d6a;

  /* Escuros — café/espresso para seções escuras */
  --espresso-950: #1d160e;
  --espresso-900: #271f14;
  --espresso-800: #352a1a;
  --espresso-700: #443721;

  /* Dourado / âmbar — destaque e realce */
  --gold-700: #95670f;
  --gold-600: #b9831b;
  --gold-500: #d89a2b;
  --gold-400: #ecb44b;
  --gold-100: #f6e5c2;
  --gold-050: #fbf2db;

  /* Terracota — CTA e acentos quentes */
  --terra-700: #a23d1d;
  --terra-600: #bd4e28;
  --terra-500: #d25d31;
  --terra-100: #f5ddce;
  --terra-050: #fbeee3;

  /* Petróleo — apoio frio, usado com parcimônia */
  --teal-900: #103f3e;
  --teal-700: #165a57;
  --teal-100: #cbe1de;

  /* Sobre escuro */
  --on-dark: #f8f0e3;
  --on-dark-soft: #ddccb0;
  --on-dark-faint: #b6a486;

  /* Tipografia */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Escala fluida */
  --step--1: clamp(0.84rem, 0.80rem + 0.18vw, 0.94rem);
  --step-0: clamp(1rem, 0.95rem + 0.24vw, 1.14rem);
  --step-1: clamp(1.2rem, 1.10rem + 0.45vw, 1.45rem);
  --step-2: clamp(1.45rem, 1.28rem + 0.8vw, 1.95rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.4vw, 2.7rem);
  --step-4: clamp(2.15rem, 1.7rem + 2.3vw, 3.6rem);
  --step-5: clamp(2.6rem, 1.95rem + 3.2vw, 4.5rem);

  --gap: clamp(1rem, 0.7rem + 1.5vw, 2rem);
  --section-y: clamp(3.6rem, 2.4rem + 5vw, 7rem);
  --container: 1180px;
  --container-narrow: 760px;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(60, 40, 18, 0.06), 0 2px 6px rgba(60, 40, 18, 0.05);
  --shadow: 0 12px 32px -14px rgba(60, 40, 18, 0.26), 0 4px 12px -6px rgba(60, 40, 18, 0.13);
  --shadow-lg: 0 34px 72px -30px rgba(40, 25, 10, 0.44), 0 14px 30px -16px rgba(40, 25, 10, 0.22);
  --shadow-gold: 0 16px 34px -14px rgba(186, 124, 22, 0.42);
  --shadow-terra: 0 16px 34px -14px rgba(188, 78, 40, 0.45);

  --z-base: 1;
  --z-sticky: 100;
  --z-header: 200;
  --z-mobilebar: 300;
  --z-overlay: 400;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 86px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--terra-600); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--step--1); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-050);
  border: 1px solid var(--gold-100);
  padding: 0.42em 0.9em; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.kicker.on-dark { color: var(--gold-400); background: rgba(236, 180, 75, 0.12); border-color: rgba(236, 180, 75, 0.22); }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra-500); }

/* Títulos em serif display */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.07; font-weight: 600; letter-spacing: -0.015em; text-wrap: balance; color: var(--ink); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); letter-spacing: -0.01em; }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); text-wrap: pretty; }
p { text-wrap: pretty; }
strong { font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--terra-600);
  --fg-btn: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font); font-weight: 700; font-size: var(--step-0);
  line-height: 1; text-align: center;
  padding: 1.05em 1.7em; border-radius: 999px;
  background: var(--bg-btn); color: var(--fg-btn);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-terra { --bg-btn: var(--terra-600); --fg-btn: #fff; box-shadow: var(--shadow-terra); font-weight: 800; }
.btn-terra:hover { --bg-btn: var(--terra-700); }
.btn-gold { --bg-btn: var(--gold-500); --fg-btn: #3a2708; box-shadow: var(--shadow-gold); font-weight: 800; }
.btn-gold:hover { --bg-btn: var(--gold-400); }
.btn-dark { --bg-btn: var(--espresso-900); --fg-btn: var(--on-dark); }
.btn-dark:hover { --bg-btn: var(--espresso-950); }
.btn-light { --bg-btn: #fff; --fg-btn: var(--terra-700); }
.btn-ghost { --bg-btn: transparent; --fg-btn: var(--on-dark); box-shadow: inset 0 0 0 1.5px rgba(248, 240, 227, 0.4); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(248, 240, 227, 0.85); }
.btn-outline { --bg-btn: transparent; --fg-btn: var(--terra-700); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--terra-600); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.2em 2.1em; font-size: var(--step-1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1.4rem; height: 70px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-badge {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--terra-500), var(--terra-700)); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
}
.footer-brand .brand-badge { box-shadow: none; }
.brand .brand-name { font-size: 1.02rem; line-height: 1.05; font-family: var(--font); }
.brand .brand-name small { display: block; font-size: 0.7rem; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.01em; }
.nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s; }
.nav a:hover { color: var(--terra-700); }
.header-cta { display: inline-flex; }
.nav > .header-cta { display: none; }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0.5rem 1.2rem 1.2rem; margin: 0; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease-out); }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav > .header-cta { display: inline-flex; margin-top: 0.9rem; }
  .nav a.header-cta { border-bottom: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; }
  .nav-toggle span { width: 24px; height: 2.5px; background: var(--terra-700); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-cta.desktop-only { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background:
    radial-gradient(120% 120% at 88% -10%, rgba(210, 93, 49, 0.42), transparent 52%),
    radial-gradient(90% 90% at 2% 108%, rgba(216, 154, 43, 0.26), transparent 50%),
    linear-gradient(158deg, var(--espresso-800) 0%, var(--espresso-950) 100%);
  color: var(--on-dark);
  padding-block: clamp(2.4rem, 1.5rem + 6vw, 5rem) clamp(3.5rem, 2rem + 7vw, 6.5rem);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: radial-gradient(rgba(248, 240, 227, 0.10) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(120% 90% at 70% 0%, #000, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6em; font-weight: 700; font-size: var(--step--1);
  color: var(--on-dark); background: rgba(248, 240, 227, 0.1);
  border: 1px solid rgba(248, 240, 227, 0.18);
  padding: 0.5em 1em; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(236, 180, 75, 0.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(236,180,75,0.55);} 70%{box-shadow:0 0 0 10px rgba(236,180,75,0);} 100%{box-shadow:0 0 0 0 rgba(236,180,75,0);} }
.hero h1 { font-size: var(--step-5); font-weight: 600; color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--gold-400); font-style: italic; }
.hero-sub { font-size: var(--step-1); color: var(--on-dark-soft); line-height: 1.5; margin-top: 1.3rem; max-width: 50ch; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2rem; font-size: var(--step--1); color: var(--on-dark-soft); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-trust svg { color: var(--gold-400); flex-shrink: 0; }

/* Hero offer card */
.offer-card {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); color: var(--ink);
  border: 1px solid var(--line);
}
.offer-card .oc-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--gold-500); color: #3a2708; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 0.45em 1.1em; border-radius: 999px; box-shadow: var(--shadow-gold); display: inline-flex; gap: 0.4em; align-items: center;
}
.offer-card .oc-title { font-family: var(--font); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terra-700); margin-top: 0.4rem; }
.offer-card .oc-sub { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.12; margin-top: 0.25rem; }
.offer-card .oc-list { display: grid; gap: 0.55rem; margin: 1.1rem 0; padding: 1.1rem 0; border-block: 1px solid var(--line); }
.offer-card .oc-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }
.offer-card .oc-list .ck { flex-shrink: 0; color: var(--gold-600); margin-top: 2px; }
.offer-price { display: flex; align-items: baseline; gap: 0.5rem; }
.offer-price .from { font-size: 0.95rem; color: var(--ink-faint); }
.offer-price .from s { text-decoration-thickness: 1.5px; }
.offer-price .cur { font-size: 1.2rem; font-weight: 700; color: var(--ink); align-self: flex-start; margin-top: 0.55rem; }
.offer-price .amt { font-family: var(--font-display); font-size: clamp(3rem, 2.4rem + 2.4vw, 4.1rem); font-weight: 600; color: var(--ink); line-height: 0.85; letter-spacing: -0.02em; }
.offer-price .cents { font-size: 1.3rem; font-weight: 700; color: var(--ink); align-self: flex-start; margin-top: 0.45rem; }
.offer-meta { font-size: 0.86rem; color: var(--ink-soft); margin: 0.5rem 0 1.2rem; }
.offer-meta b { color: var(--terra-700); }
.offer-card .btn { width: 100%; }
.offer-note { text-align: center; font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.85rem; display: flex; gap: 0.4em; align-items: center; justify-content: center; }
.offer-save {
  position: absolute; top: -22px; right: -14px; width: 76px; height: 76px; border-radius: 50%;
  background: var(--terra-600); color: #fff; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-terra); transform: rotate(8deg); border: 3px solid var(--surface);
}
.offer-save b { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 0.9; }
.offer-save small { font-size: 0.56rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

/* wave divider */
.wave { display: block; width: 100%; height: auto; color: var(--paper); margin-top: -1px; }
.wave.to-surface { color: var(--surface); }

/* ---------- Stats strip ---------- */
.stats { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: var(--step-3); font-weight: 600; color: var(--terra-600); line-height: 1; letter-spacing: -0.02em; }
.stat small { display: block; margin-top: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
}

/* ---------- Pain (cards) ---------- */
.pain { background: var(--paper); }
.pain-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(1rem, 2.5vw, 1.5rem); }
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 1.9rem); transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--terra-100); }
.pcard .p-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--terra-050); color: var(--terra-600); border: 1px solid var(--terra-100); font-size: 1.4rem; }
.pcard h3 { font-size: 1.16rem; margin-bottom: 0.45rem; }
.pcard p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Tools / "o que você recebe" ---------- */
.tools { background: var(--surface); border-block: 1px solid var(--line); }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 2.5vw, 1.4rem); }
.tool {
  position: relative; display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem; transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.tool .t-num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.tool.excel .t-num { background: var(--teal-100); color: var(--teal-900); }
.tool.word .t-num { background: rgba(22, 90, 87, 0.1); color: var(--teal-700); }
.tool.bonus .t-num { background: var(--gold-100); color: var(--gold-700); }
.tool .t-type { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.2em 0.65em; border-radius: 999px; margin-bottom: 0.45rem; }
.tool.excel .t-type { background: var(--teal-100); color: var(--teal-900); }
.tool.word .t-type { background: rgba(22, 90, 87, 0.1); color: var(--teal-700); }
.tool.bonus .t-type { background: var(--gold-050); color: var(--gold-700); border: 1px solid var(--gold-100); }
.tool h3 { font-size: 1.16rem; line-height: 1.22; }
.tool p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.3rem; }
.tool .t-flag { position: absolute; top: 1rem; right: 1rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--terra-600); }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
.benefit {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 2.6vw, 2rem);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.benefit .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--espresso-900); color: var(--gold-400); margin-bottom: 1.1rem; box-shadow: var(--shadow-sm); }
.benefit:nth-child(2) .ic { background: var(--terra-600); color: #fff; box-shadow: var(--shadow-terra); }
.benefit:nth-child(3) .ic { background: var(--gold-500); color: #3a2708; box-shadow: var(--shadow-gold); }
.benefit:nth-child(4) .ic { background: var(--teal-700); color: #fff; }
.benefit:nth-child(5) .ic { background: var(--terra-500); color: #fff; }
.benefit:nth-child(6) .ic { background: var(--espresso-800); color: var(--gold-400); }
.benefit h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.benefit p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- "Não é um curso" band ---------- */
.notcourse { background: var(--cream); }
.notcourse-inner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); align-items: center;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.notcourse .nc-ic { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center;
  background: var(--terra-050); color: var(--terra-600); border: 1px solid var(--terra-100); }
.notcourse h3 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.notcourse p { color: var(--ink-soft); }
.notcourse p strong { color: var(--ink); }
@media (max-width: 620px) { .notcourse-inner { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Detail (conteúdo de cada arquivo 01-06) ---------- */
.detail { position: relative; background: linear-gradient(168deg, var(--espresso-900), var(--espresso-950)); color: var(--on-dark); isolation: isolate; }
.detail::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.4;
  background-image: linear-gradient(rgba(248,240,227,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(248,240,227,0.05) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(120% 80% at 50% 0%, #000, transparent 80%); }
.detail h2 { color: #fff; }
.detail .lead { color: var(--on-dark-soft); }
.detail-grid { margin-top: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1rem; }
.dcard {
  background: rgba(248, 240, 227, 0.045); border: 1px solid rgba(248, 240, 227, 0.1);
  border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease-out);
}
.dcard:hover { background: rgba(248, 240, 227, 0.07); border-color: rgba(236, 180, 75, 0.3); transform: translateY(-3px); }
.dcard-top { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.dcard .d-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(236, 180, 75, 0.14); color: var(--gold-400); font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; border: 1px solid rgba(236, 180, 75, 0.26); }
.dcard .d-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-400); }
.dcard h3 { color: #fff; font-size: 1.2rem; line-height: 1.2; margin-top: 0.15rem; }
.dcard ul { display: grid; gap: 0.6rem; }
.dcard li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--on-dark-soft); line-height: 1.4; }
.dcard li .ck { flex-shrink: 0; color: var(--gold-400); margin-top: 3px; }

/* ---------- Compare (antes / depois) ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 1.6rem); }
.col-before, .col-after { border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); }
.col-before { background: var(--surface); border: 1px solid var(--line); }
.col-after { background: linear-gradient(165deg, var(--espresso-800), var(--espresso-950)); color: var(--on-dark); box-shadow: var(--shadow-lg); }
.compare h3 { display: flex; align-items: center; gap: 0.6rem; font-size: var(--step-1); margin-bottom: 1.2rem; }
.col-before h3 { color: var(--ink); }
.col-after h3 { color: #fff; }
.compare h3 .badge { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.col-before h3 .badge { background: var(--terra-050); color: var(--terra-600); border: 1px solid var(--terra-100); }
.col-after h3 .badge { background: rgba(236, 180, 75, 0.16); color: var(--gold-400); }
.compare ul { display: grid; gap: 0.85rem; }
.compare li { display: flex; gap: 0.7rem; align-items: flex-start; line-height: 1.4; }
.col-before li { color: var(--ink-soft); }
.col-after li { color: var(--on-dark-soft); font-weight: 500; }
.compare li .ic { flex-shrink: 0; margin-top: 3px; }
.col-before li .ic { color: var(--terra-500); }
.col-after li .ic { color: var(--gold-400); }
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---------- Audience ---------- */
.audience { background: var(--surface); border-block: 1px solid var(--line); }
.aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(0.9rem, 2.2vw, 1.3rem); }
.aud {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.aud:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.aud .a-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-050); color: var(--gold-700); border: 1px solid var(--gold-100); }
.aud h3 { font-size: 1.06rem; line-height: 1.2; margin-bottom: 0.25rem; }
.aud p { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Norms ---------- */
.norms { background: var(--paper); }
.norms-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; max-width: 880px; margin: 0 auto; }
.norm {
  display: inline-flex; align-items: center; gap: 0.5em; background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.6em 1.15em;
  font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, color 0.25s;
}
.norm:hover { transform: translateY(-2px); border-color: var(--gold-400); color: var(--ink); }
.norm .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }

/* ---------- Steps (como funciona) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 2.4vw, 1.5rem); counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem 1.5rem; transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.step .s-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--espresso-900); color: var(--gold-400); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.9rem; }
.step h3 { font-size: 1.14rem; line-height: 1.22; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Author ---------- */
.author { background: var(--cream); border-block: 1px solid var(--line); }
.author-grid { display: grid; grid-template-columns: 0.42fr 0.58fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.author-card { position: relative; background: linear-gradient(160deg, var(--espresso-800), var(--espresso-950)); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 2.8rem); color: var(--on-dark); text-align: center; box-shadow: var(--shadow-lg); overflow: hidden; }
.author-card::before { content: ""; position: absolute; inset: 0; opacity: 0.55; background: radial-gradient(80% 60% at 50% 0%, rgba(210, 93, 49, 0.32), transparent 70%); }
.author-mono { position: relative; width: 120px; height: 120px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--terra-700); font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; letter-spacing: -0.02em; box-shadow: var(--shadow); }
.author-card .a-name { font-size: var(--step-2); color: #fff; font-weight: 600; }
.author-card .a-role { color: var(--gold-400); font-weight: 700; margin-top: 0.2rem; font-family: var(--font); font-size: 0.95rem; }
.author-stats { display: flex; justify-content: center; gap: 1.6rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(248, 240, 227, 0.15); }
.author-stats .n { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; color: #fff; line-height: 1; }
.author-stats small { color: var(--on-dark-soft); font-size: 0.78rem; }
.author-body h2 { font-size: var(--step-3); }
.author-body p { color: var(--ink-soft); margin-top: 1.1rem; }
.author-body p strong { color: var(--ink); }

/* ---------- Prova social ---------- */
.proof { background: var(--surface); border-block: 1px solid var(--line); }
.proof-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.4rem, 5vw, 4rem); margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.proof-stat { text-align: center; }
.proof-stat .n { font-family: var(--font-display); font-size: var(--step-3); font-weight: 600; color: var(--terra-600); line-height: 1; letter-spacing: -0.02em; }
.proof-stat .n .star { color: var(--gold-500); }
.proof-stat small { display: block; margin-top: 0.4rem; font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.proof-wall { columns: 3 300px; column-gap: 1.1rem; }
.tcard {
  break-inside: avoid; margin-bottom: 1.1rem; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-100); }
.tcard .stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: 0.8rem; }
.tcard .quote { color: var(--ink); font-size: 1rem; line-height: 1.55; }
.tcard .quote b { color: var(--terra-700); }
.tcard .who { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.tcard .avatar { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: #fff; letter-spacing: 0.01em; }
.tcard:nth-child(4n+1) .avatar { background: linear-gradient(145deg, var(--terra-500), var(--terra-700)); }
.tcard:nth-child(4n+2) .avatar { background: linear-gradient(145deg, var(--gold-500), var(--gold-700)); }
.tcard:nth-child(4n+3) .avatar { background: linear-gradient(145deg, var(--teal-700), var(--espresso-900)); }
.tcard:nth-child(4n+4) .avatar { background: linear-gradient(145deg, var(--espresso-700), var(--terra-700)); }
.tcard .who .name { font-weight: 800; font-size: 0.94rem; color: var(--ink); line-height: 1.1; }
.tcard .who .role { font-size: 0.8rem; color: var(--ink-faint); font-weight: 600; }
.tcard .verified { margin-left: auto; display: inline-flex; align-items: center; gap: 0.3em; font-size: 0.72rem; font-weight: 700; color: var(--gold-700); }
.proof-note { text-align: center; margin-top: clamp(1.8rem, 4vw, 2.6rem); font-size: 0.86rem; color: var(--ink-faint); }
@media (max-width: 560px) { .proof-wall { columns: 1; } }

/* ---------- Offer (investimento) ---------- */
.pricing { background: var(--paper); }
.offer-final {
  position: relative; max-width: 640px; margin-inline: auto; background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg); text-align: center; isolation: isolate; overflow: hidden;
}
.offer-final::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.6;
  background: radial-gradient(80% 60% at 50% -10%, var(--gold-050), transparent 60%); }
.offer-final .of-flag { display: inline-flex; align-items: center; gap: 0.4em; background: var(--gold-050);
  border: 1px solid var(--gold-100); color: var(--gold-700); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.03em;
  padding: 0.4em 1em; border-radius: 999px; margin-bottom: 1.2rem; }
.offer-final h3 { font-size: var(--step-2); }
.offer-final .of-desc { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.96rem; }
.offer-final .of-price { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; margin: 1.6rem 0 0.3rem; }
.offer-final .of-price .from { font-size: 1rem; color: var(--ink-faint); margin-right: 0.3rem; }
.offer-final .of-price .cur { font-size: 1.4rem; font-weight: 700; align-self: flex-start; margin-top: 0.7rem; }
.offer-final .of-price .amt { font-family: var(--font-display); font-size: clamp(3.6rem, 2.8rem + 4vw, 5.4rem); font-weight: 600; line-height: 0.82; letter-spacing: -0.03em; color: var(--ink); }
.offer-final .of-price .cents { font-size: 1.6rem; font-weight: 700; align-self: flex-start; margin-top: 0.6rem; }
.offer-final .of-pay { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.6rem; }
.offer-final .of-pay b { color: var(--terra-700); }
.offer-final .btn { width: 100%; max-width: 420px; margin-inline: auto; }
.offer-final .of-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.4rem; margin-top: 1.3rem; font-size: 0.84rem; color: var(--ink-soft); }
.offer-final .of-trust span { display: inline-flex; align-items: center; gap: 0.4em; }
.offer-final .of-trust svg { color: var(--gold-600); }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 2rem; }
.ogi { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 0.6rem; text-align: center; }
.ogi .i { color: var(--terra-600); display: grid; place-items: center; margin-bottom: 0.35rem; }
.ogi small { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); line-height: 1.2; }
@media (max-width: 560px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Guarantee ---------- */
.guarantee { background: linear-gradient(160deg, var(--teal-700), var(--teal-900)); color: #fff; }
.guarantee-grid { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.seal { position: relative; width: min(220px, 60vw); aspect-ratio: 1; margin-inline: auto; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px dashed rgba(255,255,255,0.5); display: grid; place-items: center; text-align: center; }
.seal .big { font-family: var(--font-display); font-size: 3.8rem; font-weight: 600; line-height: 0.85; }
.seal small { font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }
.guarantee h2 { color: #fff; font-size: var(--step-3); }
.guarantee p { color: rgba(255,255,255,0.92); margin-top: 1rem; }
.guarantee p strong { color: #fff; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item[open] { border-color: var(--gold-100); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--gold-050); color: var(--gold-700); display: grid; place-items: center; transition: transform 0.3s var(--ease-out), background 0.25s; }
.faq-item[open] summary .pm { transform: rotate(45deg); background: var(--terra-600); color: #fff; }
.faq-answer { padding: 0 1.3rem 1.3rem; color: var(--ink-soft); }
.faq-answer a { color: var(--terra-700); font-weight: 700; text-decoration: underline; }

/* ---------- Final CTA ---------- */
.final { position: relative; background: linear-gradient(150deg, var(--espresso-800), var(--espresso-950)); color: var(--on-dark); text-align: center; isolation: isolate; overflow: hidden; }
.final::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.55; background: radial-gradient(70% 60% at 50% 120%, rgba(210, 93, 49, 0.32), transparent 60%); }
.final h2 { color: #fff; font-size: var(--step-4); max-width: 20ch; margin-inline: auto; }
.final h2 .hl { color: var(--gold-400); font-style: italic; }
.final p { color: var(--on-dark-soft); margin: 1.2rem auto 0; max-width: 54ch; font-size: var(--step-1); }
.final .hero-actions { justify-content: center; }
.final .hero-trust { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso-950); color: var(--on-dark-soft); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; font-size: 0.92rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(248,240,227,0.1); }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.site-footer h4 { font-family: var(--font); color: #fff; font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.site-footer a { color: var(--on-dark-soft); transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-note { padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between; font-size: 0.82rem; color: var(--on-dark-faint); }
.footer-legal { margin-top: 1.4rem; }
.footer-legal details { border-top: 1px solid rgba(248,240,227,0.08); }
.footer-legal summary { cursor: pointer; padding: 0.9rem 0; font-weight: 700; color: #fff; list-style: none; display: flex; justify-content: space-between; }
.footer-legal summary::-webkit-details-marker { display: none; }
.footer-legal .legal-body { padding-bottom: 1.2rem; font-size: 0.84rem; line-height: 1.6; color: var(--on-dark-faint); max-width: 75ch; }
.footer-legal .legal-body h4 { color: var(--on-dark-soft); margin: 0.9rem 0 0.2rem; font-size: 0.92rem; font-family: var(--font); }
.footer-legal .legal-body strong { color: var(--on-dark-soft); }
.warn { margin-top: 1.4rem; background: rgba(216,154,43,0.12); border: 1px solid rgba(216,154,43,0.3); color: var(--gold-100); border-radius: 10px; padding: 0.8rem 1rem; font-size: 0.82rem; font-weight: 600; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-mobilebar);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(251, 246, 238, 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 0.7rem 1rem; box-shadow: 0 -6px 20px -8px rgba(40,25,10,0.2);
  transform: translateY(120%); transition: transform 0.35s var(--ease-out);
}
.mobile-bar.show { transform: none; }
.mobile-bar .mb-price { line-height: 1.1; }
.mobile-bar .mb-price small { display: block; color: var(--ink-faint); font-size: 0.72rem; font-weight: 600; }
.mobile-bar .mb-price b { font-family: var(--font-display); font-size: 1.25rem; color: var(--terra-700); }
.mobile-bar .mb-price b s { font-family: var(--font); font-size: 0.78rem; color: var(--ink-faint); font-weight: 600; }
@media (max-width: 620px) { .mobile-bar { display: flex; } body { padding-bottom: 76px; } }

/* ---------- Banner de consentimento (LGPD) ---------- */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-overlay);
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  background: rgba(37, 31, 20, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(248,240,227,0.14);
  box-shadow: 0 -8px 24px -10px rgba(40,25,10,0.5);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.consent.show { transform: none; }
.consent-inner { max-width: var(--container); margin-inline: auto; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.consent-text { color: var(--on-dark-soft); font-size: 0.88rem; line-height: 1.45; flex: 1 1 320px; margin: 0; }
.consent-text a { color: #fff; font-weight: 700; text-decoration: underline; }
.consent-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.consent-btn { padding: 0.65em 1.25em; font-size: 0.9rem; }
.consent .btn-outline { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(248,240,227,0.45); }
.consent .btn-outline:hover { box-shadow: inset 0 0 0 1.5px rgba(248,240,227,0.9); }
.consent-link { background: none; border: none; color: var(--on-dark-soft); font: inherit; font-size: 0.85rem; text-decoration: underline; cursor: pointer; padding: 0.5em 0.6em; border-radius: var(--radius-sm); }
.consent-link:hover { color: #fff; }
.consent-prefs { max-width: var(--container); margin-inline: auto; max-height: 80vh; overflow-y: auto; }
.cprefs-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.7rem; }
.cprefs-head strong { color: #fff; font-size: 1rem; }
.cprefs-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.8rem; }
.cpref { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(248,240,227,0.06); border: 1px solid rgba(248,240,227,0.12); border-radius: var(--radius-sm); padding: 0.6rem 0.85rem; cursor: pointer; }
.cpref-info { display: flex; flex-direction: column; gap: 2px; }
.cpref-info b { color: #fff; font-size: 0.88rem; }
.cpref-info small { color: var(--on-dark-soft); font-size: 0.76rem; line-height: 1.35; }
.cprefs-actions { display: flex; justify-content: flex-end; }
.cpref input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 42px; height: 24px; border-radius: 999px; background: rgba(248,240,227,0.25); position: relative; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.cpref input[type="checkbox"]::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.2s; }
.cpref input[type="checkbox"]:checked { background: var(--gold-500); }
.cpref input[type="checkbox"]:checked::after { transform: translateX(18px); }
.cpref input[type="checkbox"]:disabled { opacity: 0.55; cursor: default; }
.cpref input[type="checkbox"]:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 620px) {
  .consent { padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom)); }
  .consent-inner { flex-direction: column; align-items: stretch; gap: 0.55rem; }
  .consent-text { flex: 0 0 auto; font-size: 0.8rem; line-height: 1.4; }
  .consent-actions { flex-direction: column; align-items: stretch; gap: 0.45rem; }
  .consent-btn { flex: 1; padding: 0.65em 1em; font-size: 0.9rem; }
  .consent-link { order: 3; padding-top: 0.2em; }
  .consent-prefs { max-height: 70vh; }
  .cpref-info small { font-size: 0.74rem; }
}
@media (prefers-reduced-motion: reduce) { .consent { transition: none; } }

/* ---------- Motion ---------- */
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroPop { from { opacity: 0; transform: translateY(26px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  /* H1/sub SEM animação (são o LCP) — pintam instantâneo */
  .hero-actions { animation: heroUp 0.8s 0.2s var(--ease-out) both; }
  .hero-trust { animation: heroUp 0.8s 0.3s var(--ease-out) both; }
  .hero-badge { animation: heroUp 0.7s var(--ease-out) both; }
  .offer-card { animation: heroPop 1s 0.12s var(--ease-out) both; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge .pulse { animation: none; }
  .btn, .benefit, .pcard, .tool, .dcard, .step, .aud, .tcard, .norm { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 22ch; }
  .offer-card { max-width: 460px; margin-inline: auto; }
  .author-grid, .guarantee-grid { grid-template-columns: 1fr; }
  .author-card { max-width: 420px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .author-stats { gap: 1rem; }
  .offer-save { width: 64px; height: 64px; top: -18px; right: -8px; }
}
