/* ============================================================
   Kit de Acreditação ONA · OPSS 2026 — Valéria Moura
   Design premium: verde-petróleo + ouro champanhe + marfim
   Fontes: Source Serif 4 (display) · Schibsted Grotesk (texto)
   ============================================================ */

/* ---------- fontes self-hosted (subset latin, variáveis) ---------- */
@font-face{ font-family:"Source Serif 4"; font-style:normal; font-weight:400 700; font-display:swap; src:url(/fonts/source-serif4-v2.woff2) format("woff2"); }
@font-face{ font-family:"Schibsted Grotesk"; font-style:normal; font-weight:400 800; font-display:swap; src:url(/fonts/schibsted-grotesk.woff2) format("woff2"); }

:root{
  /* superfícies claras */
  --bg:          oklch(0.984 0.006 95);
  --surface:     oklch(0.969 0.008 92);
  --surface-2:   oklch(0.949 0.010 90);
  --line:        oklch(0.905 0.011 95);
  --line-strong: oklch(0.855 0.014 95);

  /* tinta */
  --ink:    oklch(0.245 0.018 200);
  --ink-2:  oklch(0.345 0.020 198);
  --muted:  oklch(0.470 0.018 198);

  /* verde-petróleo (âncora escura) */
  --petrol:        oklch(0.325 0.046 196);
  --petrol-deep:   oklch(0.225 0.040 197);
  --petrol-deeper: oklch(0.168 0.032 199);
  --petrol-700:    oklch(0.405 0.050 193);
  --petrol-300:    oklch(0.700 0.045 186);

  /* ouro champanhe (excelência) */
  --gold:        oklch(0.770 0.106 86);
  --gold-bright: oklch(0.852 0.094 89);
  --gold-deep:   oklch(0.628 0.102 78);
  --gold-text:   oklch(0.475 0.085 72);  /* ouro escuro p/ TEXTO pequeno sobre fundo claro — contraste ≥4.5 (WCAG AA) */

  /* sobre escuro */
  --on-dark:       oklch(0.957 0.012 95);
  --on-dark-muted: oklch(0.812 0.024 178);
  --on-dark-faint: oklch(0.660 0.028 186);
  --hairline-dark: oklch(0.999 0 0 / 0.12);

  /* tokens */
  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:26px;
  --shadow-sm: 0 1px 2px oklch(0.30 0.04 197 / .06), 0 2px 8px oklch(0.30 0.04 197 / .05);
  --shadow:    0 10px 30px oklch(0.28 0.04 197 / .10), 0 2px 8px oklch(0.28 0.04 197 / .06);
  --shadow-lg: 0 30px 70px oklch(0.22 0.04 197 / .20), 0 8px 24px oklch(0.22 0.04 197 / .10);
  --shadow-gold: 0 14px 38px oklch(0.63 0.10 80 / .34);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(.22,1,.36,1);

  --z-sticky: 100;
  --z-bar: 200;
  --z-consent: 300;
  --z-modal: 400;
}

/* ---------- reset / base ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size:clamp(16px, 1.05vw, 17.5px);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:"Source Serif 4", Georgia, "Times New Roman", serif; font-weight:600; line-height:1.1; margin:0; color:var(--ink); text-wrap:balance; letter-spacing:-0.012em; }
p{ margin:0; }
a{ color:inherit; }
img,svg{ display:block; max-width:100%; }
b,strong{ font-weight:700; }
ul,ol{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; border-radius:6px; }
.skip-link{ position:absolute; left:-999px; top:0; background:var(--petrol-deep); color:var(--on-dark); padding:12px 18px; border-radius:0 0 12px 0; z-index:var(--z-modal); }
.skip-link:focus{ left:0; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }

/* ---------- buttons ---------- */
.btn{
  --bh: 0px;
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:inherit; font-weight:700; font-size:1rem; line-height:1;
  padding:.95em 1.5em; border-radius:999px; border:1px solid transparent;
  cursor:pointer; text-decoration:none; white-space:nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg{ width:1.15em; height:1.15em; flex:none; }
.btn-lg{ padding:1.12em 1.85em; font-size:1.06rem; }
.btn-block{ display:flex; width:100%; }

.btn-gold{
  background:linear-gradient(180deg, var(--gold-bright), var(--gold));
  color:var(--petrol-deeper);
  box-shadow:0 1px 0 oklch(1 0 0 / .35) inset, var(--shadow-sm);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 1px 0 oklch(1 0 0 / .4) inset, var(--shadow-gold); }
.btn-gold:active{ transform:translateY(0); }

.btn-teal{ background:var(--petrol); color:var(--on-dark); box-shadow:var(--shadow-sm); }
.btn-teal:hover{ background:var(--petrol-deep); transform:translateY(-2px); box-shadow:var(--shadow); }

.btn-ghost-light{ background:oklch(1 0 0 / .04); color:var(--on-dark); border-color:var(--hairline-dark); backdrop-filter:blur(4px); }
.btn-ghost-light:hover{ background:oklch(1 0 0 / .1); border-color:oklch(1 0 0 / .28); }

.btn-outline{ background:transparent; color:var(--ink-2); border-color:var(--line-strong); }
.btn-outline:hover{ border-color:var(--ink-2); background:var(--surface); }

/* ---------- header ---------- */
.site-header{ position:sticky; top:0; z-index:var(--z-sticky); background:oklch(0.984 0.006 95 / .82); backdrop-filter:saturate(140%) blur(12px); border-bottom:1px solid transparent; transition:border-color .3s, box-shadow .3s, background .3s; }
.site-header.scrolled{ border-bottom-color:var(--line); box-shadow:0 6px 24px oklch(0.3 0.04 197 / .06); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:70px; }
.brand{ display:inline-flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink); }
.brand-badge{
  display:grid; place-items:center; width:42px; height:42px; flex:none;
  background:linear-gradient(150deg, var(--petrol-700), var(--petrol-deep));
  color:var(--gold-bright); border-radius:12px; font-family:"Source Serif 4",serif; font-weight:700; font-size:1.05rem;
  letter-spacing:.02em; box-shadow:var(--shadow-sm); border:1px solid var(--hairline-dark);
}
.brand-name{ display:flex; flex-direction:column; font-family:"Source Serif 4",serif; font-weight:600; font-size:1.06rem; line-height:1.05; }
.brand-name small{ font-family:"Schibsted Grotesk",sans-serif; font-weight:500; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); margin-top:3px; }
.brand-name.on-dark{ color:var(--on-dark); }
.brand-name.on-dark small{ color:var(--on-dark-faint); }
.nav{ display:flex; align-items:center; gap:30px; }
.nav>a{ text-decoration:none; color:var(--ink-2); font-weight:500; font-size:.96rem; transition:color .2s; }
.nav>a:hover{ color:var(--petrol); }
.header-cta{ font-size:.92rem; padding:.7em 1.15em; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; width:44px; height:44px; border:1px solid var(--line-strong); border-radius:11px; background:var(--surface); cursor:pointer; align-items:center; justify-content:center; }
.nav-toggle span{ width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- sections ---------- */
.section{ padding:clamp(64px, 9vw, 128px) 0; }
.sec-head{ max-width:760px; margin:0 auto clamp(40px,6vw,68px); text-align:center; }
.sec-head-left{ margin-inline:0; text-align:left; }
.kicker{ display:inline-block; font-family:"Schibsted Grotesk",sans-serif; font-weight:600; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-text); margin-bottom:16px; }
.sec-head h2{ font-size:clamp(1.85rem, 3.6vw, 3rem); }
.sec-lead{ margin-top:20px; color:var(--muted); font-size:clamp(1.02rem,1.4vw,1.16rem); max-width:62ch; margin-inline:auto; }
.sec-head-left .sec-lead{ margin-inline:0; }

.eyebrow{ display:inline-flex; align-items:center; gap:9px; font-family:"Schibsted Grotesk",sans-serif; font-weight:600; font-size:.82rem; letter-spacing:.04em; padding:.5em .95em; border-radius:999px; }
.eyebrow svg{ width:1.05em; height:1.05em; }
.eyebrow-gold{ color:var(--gold-bright); background:oklch(0.77 0.106 86 / .12); border:1px solid oklch(0.77 0.106 86 / .34); }

/* ============================================================
   HERO (drenched petróleo)
   ============================================================ */
.hero{ position:relative; isolation:isolate; color:var(--on-dark);
  background:
    radial-gradient(120% 90% at 85% -10%, oklch(0.40 0.06 188 / .55), transparent 60%),
    radial-gradient(90% 80% at 8% 110%, oklch(0.30 0.05 200 / .6), transparent 55%),
    linear-gradient(165deg, var(--petrol-deep), var(--petrol-deeper) 60%, oklch(0.14 0.028 200));
  padding:clamp(48px,7vw,96px) 0 clamp(64px,8vw,116px);
  overflow:hidden;
}
.hero-grain{ position:absolute; inset:0; z-index:-1; opacity:.5; pointer-events:none;
  background-image:radial-gradient(oklch(1 0 0 / .035) 1px, transparent 1.4px);
  background-size:4px 4px;
  mask-image:radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 75%);
}
.hero::after{ content:""; position:absolute; left:0; right:0; bottom:-1px; height:90px; z-index:-1;
  background:linear-gradient(180deg, transparent, var(--bg)); }
.hero-grid{ display:grid; grid-template-columns:1.08fr .92fr; gap:clamp(32px,5vw,64px); align-items:center; }
.hero-title{ font-size:clamp(2.3rem, 5.2vw, 4.05rem); line-height:1.04; margin:22px 0 0; color:var(--on-dark); letter-spacing:-0.02em; }
.hero-title .hl{ color:var(--gold-bright); }
.hero-sub{ margin-top:22px; color:var(--on-dark-muted); font-size:clamp(1.04rem,1.5vw,1.2rem); max-width:54ch; }
.hero-sub b{ color:var(--on-dark); }
.hero-points{ margin-top:26px; display:grid; gap:12px; }
.hero-points li{ display:flex; align-items:center; gap:12px; color:var(--on-dark); font-weight:500; }
.hero-points svg{ width:20px; height:20px; flex:none; color:var(--petrol-deeper); background:var(--gold-bright); border-radius:50%; padding:3.5px; }
.hero-cta{ margin-top:34px; display:flex; flex-wrap:wrap; gap:14px; }
.hero-trust{ margin-top:22px; display:flex; align-items:center; gap:10px; color:var(--on-dark-faint); font-size:.9rem; }
.hero-trust svg{ width:1.15em; height:1.15em; flex:none; color:var(--gold); }

/* selo + docs */
.hero-art{ position:relative; display:grid; place-items:center; min-height:380px; }
.seal{ position:relative; width:min(360px, 78vw); aspect-ratio:1; display:grid; place-items:center; z-index:2;
  filter:drop-shadow(0 24px 50px oklch(0.1 0.02 200 / .55)); }
.seal-svg{ width:100%; height:100%; animation:sealIn .6s var(--ease) both; }
.seal-text{ font-family:"Schibsted Grotesk",sans-serif; font-size:10.5px; font-weight:600; letter-spacing:.22em; fill:var(--gold-bright); text-transform:uppercase; }
.seal-star{ filter:drop-shadow(0 2px 4px oklch(0.1 0.02 200 / .5)); }
.seal-year{ font-family:"Source Serif 4",serif; font-size:21px; font-weight:700; fill:var(--gold-bright); letter-spacing:.04em; }
.seal-ribbon{ position:absolute; bottom:8%; left:50%; transform:translateX(-50%); z-index:3; }
.seal-ribbon span{ display:inline-block; background:linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color:var(--petrol-deeper); font-weight:700; font-size:.78rem; letter-spacing:.05em; padding:.5em 1.1em; border-radius:8px; box-shadow:var(--shadow); }

.hero-docs{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.hdoc{ position:absolute; width:128px; aspect-ratio:.78; background:linear-gradient(180deg, oklch(0.99 0.005 95), oklch(0.95 0.01 92)); border:1px solid oklch(1 0 0 / .6); border-radius:12px; box-shadow:var(--shadow-lg); padding:16px 14px; display:flex; flex-direction:column; gap:9px; }
.hdoc span{ display:block; height:6px; border-radius:4px; background:var(--line-strong); }
.hdoc span.short{ width:60%; }
.hdoc em{ font-family:"Source Serif 4",serif; font-style:normal; font-weight:700; font-size:.78rem; color:var(--petrol); letter-spacing:.08em; }
.hdoc-1{ right:2%; bottom:8%; transform:rotate(7deg); }
.hdoc-2{ left:0%; top:16%; transform:rotate(-9deg); opacity:.85; }
.hdoc-3{ left:10%; bottom:6%; transform:rotate(-3deg); opacity:.65; }
.hdoc-tag{ margin-top:auto; align-self:flex-start; font-style:normal; font-size:.62rem; font-weight:700; letter-spacing:.04em; color:var(--gold-text); background:oklch(0.77 0.106 86 / .18); padding:.3em .6em; border-radius:6px; }

@keyframes sealIn{ from{ opacity:0; transform:scale(.86) rotate(-6deg); } to{ opacity:1; transform:none; } }
@keyframes floatA{ 50%{ transform:rotate(7deg) translateY(-12px); } }
@keyframes floatB{ 50%{ transform:rotate(-9deg) translateY(10px); } }

/* ============================================================
   STATS
   ============================================================ */
.stats{ background:var(--bg); border-bottom:1px solid var(--line); }
.stats-row{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; padding-block:clamp(28px,4vw,44px); }
.stat{ text-align:center; padding:8px 10px; position:relative; }
.stat+.stat::before{ content:""; position:absolute; left:0; top:18%; height:64%; width:1px; background:var(--line); }
.stat b{ display:block; font-family:"Source Serif 4",serif; font-weight:700; font-size:clamp(1.9rem,3.4vw,2.85rem); color:var(--petrol); line-height:1; letter-spacing:-0.01em; }
.stat b i{ display:block; font-style:normal; font-size:.34em; font-family:"Schibsted Grotesk",sans-serif; font-weight:600; color:var(--gold-text); letter-spacing:.06em; margin-top:4px; }
.stat span{ display:block; margin-top:10px; font-size:.82rem; color:var(--muted); line-height:1.3; }

/* ============================================================
   OPSS 2026
   ============================================================ */
.opss{ background:linear-gradient(180deg, var(--bg), var(--surface)); }
.opss-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(16px,2vw,22px); }
.opss-card{ background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,3vw,34px); box-shadow:var(--shadow-sm); position:relative; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.opss-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--line-strong); }
.opss-num{ font-family:"Schibsted Grotesk",sans-serif; font-weight:700; font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-text); }
.opss-card h3{ font-size:1.5rem; margin:10px 0 12px; }
.opss-card p{ color:var(--muted); max-width:52ch; }
.opss-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.opss-tags span{ font-size:.8rem; font-weight:500; color:var(--ink-2); background:var(--surface-2); border:1px solid var(--line); padding:.34em .8em; border-radius:999px; }
.opss-tags .tag-new{ color:var(--petrol-deeper); background:var(--gold-bright); border-color:transparent; font-weight:700; }
.opss-card-feature{ background:linear-gradient(165deg, var(--petrol), var(--petrol-deep)); border-color:transparent; color:var(--on-dark); grid-row:span 1; }
.opss-card-feature .opss-num{ color:var(--gold-bright); }
.opss-card-feature h3{ color:var(--on-dark); }
.opss-card-feature p{ color:var(--on-dark-muted); }
.journey{ display:flex; flex-wrap:wrap; gap:7px; margin-top:18px; }
.journey span{ font-size:.78rem; font-weight:500; color:var(--on-dark); background:oklch(1 0 0 / .08); border:1px solid var(--hairline-dark); padding:.36em .72em; border-radius:8px; }

/* ============================================================
   PAINS
   ============================================================ */
.pains{ background:var(--surface); }
.pain-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,1.8vw,20px); }
.pain{ background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(22px,2.6vw,30px); position:relative; padding-left:clamp(22px,2.6vw,30px); }
.pain::before{ content:""; display:block; width:30px; height:30px; margin-bottom:16px;
  background:
    linear-gradient(currentColor,currentColor) center/16px 2px no-repeat,
    linear-gradient(currentColor,currentColor) center/2px 16px no-repeat;
  color:var(--gold-text); transform:rotate(45deg); border-radius:8px;
  box-shadow:inset 0 0 0 1.5px oklch(0.628 0.102 78 / .35); }
.pain h3{ font-size:1.16rem; margin-bottom:8px; }
.pain p{ color:var(--muted); font-size:.97rem; }

/* ============================================================
   WHO
   ============================================================ */
.who-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(14px,1.6vw,18px); }
.who-card{ display:grid; grid-template-columns:auto 1fr; column-gap:20px; row-gap:7px; align-items:start; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(22px,2.4vw,28px); transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.who-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--line-strong); }
.who-ic{ grid-column:1; grid-row:1 / span 2; align-self:start; width:54px; height:54px; display:grid; place-items:center; border-radius:15px; background:linear-gradient(160deg, var(--petrol-700), var(--petrol-deep)); color:var(--gold-bright); box-shadow:var(--shadow-sm); }
.who-ic svg{ width:27px; height:27px; }
.who-card h3{ grid-column:2; grid-row:1; font-size:1.18rem; margin:3px 0 0; }
.who-card p{ grid-column:2; grid-row:2; color:var(--muted); font-size:.95rem; }

/* ============================================================
   CONTENT / DELIVERABLES
   ============================================================ */
.content{ background:linear-gradient(180deg, var(--surface), var(--bg)); }
.deliver{ background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(26px,3.4vw,46px); box-shadow:var(--shadow-sm); margin-bottom:clamp(18px,2.4vw,26px); }
.deliver-head{ display:flex; align-items:center; gap:20px; margin-bottom:26px; }
.deliver-mark{ flex:none; width:64px; height:64px; display:grid; place-items:center; border-radius:18px; font-family:"Source Serif 4",serif; font-weight:700; font-size:1.7rem; color:var(--gold-bright); background:linear-gradient(160deg, var(--petrol), var(--petrol-deeper)); box-shadow:var(--shadow-sm); border:1px solid var(--hairline-dark); }
.deliver-head h3{ font-size:clamp(1.35rem,2.2vw,1.7rem); }
.deliver-sub{ color:var(--muted); margin-top:6px; max-width:62ch; }

.level-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.level{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-sm); padding:20px; display:flex; flex-direction:column; gap:4px; }
.level-n{ font-family:"Schibsted Grotesk",sans-serif; font-weight:700; font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-text); }
.level b{ font-family:"Source Serif 4",serif; font-weight:600; font-size:1.12rem; margin-top:2px; }
.level small{ color:var(--muted); font-size:.85rem; }
.deliver-feats{ display:grid; gap:10px; margin-top:22px; }
.deliver-feats li{ position:relative; padding-left:30px; color:var(--ink-2); }
.deliver-feats li::before{ content:""; position:absolute; left:0; top:.18em; width:19px; height:19px; border-radius:50%; background:var(--gold-bright);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
  background-color:var(--gold-text); }

/* blocks de POPs */
.blocks{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(14px,1.8vw,20px); }
.block{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(20px,2.4vw,28px); }
.block-head{ display:flex; align-items:baseline; flex-wrap:wrap; gap:8px 12px; padding-bottom:14px; margin-bottom:14px; border-bottom:1px solid var(--line); }
.block-tag{ font-family:"Schibsted Grotesk",sans-serif; font-weight:700; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--petrol-deeper); background:var(--gold-bright); padding:.32em .7em; border-radius:7px; }
.block-head h4{ font-family:"Source Serif 4",serif; font-weight:600; font-size:1.22rem; margin:0; flex:1 1 auto; }
.block-head small{ color:var(--muted); font-size:.82rem; font-weight:500; }
.poplist{ display:grid; gap:11px; }
.poplist li{ display:grid; grid-template-columns:auto 1fr; gap:10px; align-items:start; color:var(--ink-2); font-size:.95rem; line-height:1.4; }
.poplist b{ font-family:"Schibsted Grotesk",sans-serif; font-weight:700; font-size:.72rem; letter-spacing:.02em; color:var(--petrol); background:var(--bg); border:1px solid var(--line-strong); border-radius:6px; padding:.34em .5em; white-space:nowrap; height:fit-content; }

.pop-anatomy{ margin-top:24px; padding:22px clamp(20px,2.4vw,28px); background:linear-gradient(160deg, var(--petrol-deep), var(--petrol-deeper)); border-radius:var(--radius); color:var(--on-dark); }
.pop-anatomy-label{ display:block; font-weight:600; color:var(--gold-bright); margin-bottom:14px; font-size:.92rem; letter-spacing:.02em; }
.pop-anatomy ul{ display:flex; flex-wrap:wrap; gap:8px; }
.pop-anatomy li{ font-size:.84rem; font-weight:500; color:var(--on-dark); background:oklch(1 0 0 / .07); border:1px solid var(--hairline-dark); padding:.4em .8em; border-radius:8px; }

/* dashboard */
.dash-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.dash-feat{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-sm); padding:20px 22px; }
.dash-feat b{ display:block; font-family:"Source Serif 4",serif; font-weight:600; font-size:1.1rem; color:var(--petrol); margin-bottom:4px; }
.dash-feat span{ color:var(--muted); font-size:.92rem; }

/* transparência */
.transparency{ display:flex; gap:16px; align-items:flex-start; margin-top:clamp(18px,2.4vw,26px); padding:clamp(20px,2.6vw,28px); background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius); }
.transparency svg{ width:26px; height:26px; flex:none; color:var(--gold-text); margin-top:2px; }
.transparency p{ color:var(--muted); font-size:.95rem; max-width:none; }
.transparency b{ color:var(--ink); }
.content-cta{ text-align:center; margin-top:clamp(30px,4vw,44px); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff{ background:var(--surface); }
.diff-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,1.8vw,20px); }
.diff-card{ background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,2.8vw,32px); transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
.diff-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.diff-no{ font-family:"Source Serif 4",serif; font-weight:700; font-size:1.5rem; color:var(--gold-text); opacity:.85; }
.diff-card h3{ font-size:1.2rem; margin:12px 0 8px; }
.diff-card p{ color:var(--muted); font-size:.96rem; }

/* ============================================================
   AUTORA
   ============================================================ */
.author{ background:linear-gradient(180deg, var(--surface), var(--bg)); }
.author-grid{ display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(28px,4vw,56px); align-items:center; }
.author-card{ background:linear-gradient(165deg, var(--petrol), var(--petrol-deeper)); border-radius:var(--radius-lg); padding:clamp(30px,4vw,44px); text-align:center; color:var(--on-dark); box-shadow:var(--shadow-lg); border:1px solid var(--hairline-dark); }
.author-photo{ width:104px; height:104px; margin:0 auto 22px; display:grid; place-items:center; border-radius:50%; font-family:"Source Serif 4",serif; font-weight:700; font-size:2.1rem; color:var(--petrol-deeper); background:linear-gradient(160deg, var(--gold-bright), var(--gold-deep)); box-shadow:0 0 0 6px oklch(1 0 0 / .08), var(--shadow); }
.author-card h3{ color:var(--on-dark); font-size:1.5rem; }
.author-role{ color:var(--gold-bright); font-weight:600; margin-top:6px; }
.author-cred{ color:var(--on-dark-faint); font-size:.9rem; margin-top:4px; }
.author-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:26px; padding-top:24px; border-top:1px solid var(--hairline-dark); }
.author-stats b{ display:block; font-family:"Source Serif 4",serif; font-weight:700; font-size:1.5rem; color:var(--gold-bright); }
.author-stats span{ font-size:.74rem; color:var(--on-dark-muted); line-height:1.3; display:block; margin-top:4px; }
.author-copy h2{ font-size:clamp(1.6rem,2.8vw,2.4rem); margin-top:14px; }
.author-copy>p{ color:var(--muted); margin-top:18px; max-width:60ch; }
.author-list{ display:grid; gap:12px; margin-top:24px; }
.author-list li{ display:flex; gap:12px; align-items:flex-start; color:var(--ink-2); font-weight:500; }
.author-list svg{ width:20px; height:20px; flex:none; color:var(--petrol-deeper); background:var(--gold-bright); border-radius:50%; padding:3.5px; margin-top:1px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials{ background:var(--bg); }
.tst-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(14px,1.8vw,20px); }
.tst{ margin:0; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,2.8vw,32px); display:flex; flex-direction:column; gap:16px; }
.tst-stars{ display:flex; gap:3px; color:var(--gold); }
.tst-stars svg{ width:18px; height:18px; }
.tst blockquote{ margin:0; font-family:"Source Serif 4",serif; font-size:1.12rem; line-height:1.5; color:var(--ink); }
.tst-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.tst-av{ width:42px; height:42px; flex:none; display:grid; place-items:center; border-radius:50%; font-weight:700; color:var(--on-dark); background:linear-gradient(160deg, var(--petrol-700), var(--petrol-deep)); }
.tst-who b{ display:block; font-size:.98rem; }
.tst-who small{ display:block; color:var(--muted); font-size:.84rem; }
.tst-disclaimer{ text-align:center; margin-top:24px; color:var(--muted); font-size:.84rem; }

/* ============================================================
   OFERTA
   ============================================================ */
.offer{ background:linear-gradient(180deg, var(--bg), var(--surface)); }
.offer-card{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--hairline-dark); }
.offer-left{ background:linear-gradient(165deg, var(--petrol), var(--petrol-deeper)); color:var(--on-dark); padding:clamp(30px,4vw,52px); }
.offer-left h2{ color:var(--on-dark); font-size:clamp(1.7rem,2.8vw,2.4rem); margin-top:16px; }
.offer-desc{ color:var(--on-dark-muted); margin-top:14px; max-width:46ch; }
.offer-list{ display:grid; gap:13px; margin-top:26px; }
.offer-list li{ display:flex; gap:12px; align-items:flex-start; color:var(--on-dark); font-weight:500; }
.offer-list svg{ width:20px; height:20px; flex:none; color:var(--petrol-deeper); background:var(--gold-bright); border-radius:50%; padding:3.5px; margin-top:1px; }
.offer-right{ background:var(--surface); padding:clamp(26px,3.4vw,44px); display:grid; place-items:center; }
.price-card{ width:100%; text-align:center; }
.price-tag{ display:inline-block; font-size:.78rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--gold-text); background:oklch(0.77 0.106 86 / .14); padding:.4em .9em; border-radius:999px; }
.price{ display:flex; align-items:flex-start; justify-content:center; gap:4px; margin:18px 0 4px; color:var(--petrol); }
.price-cur{ font-family:"Source Serif 4",serif; font-weight:600; font-size:1.7rem; margin-top:14px; }
.price-val{ font-family:"Source Serif 4",serif; font-weight:700; font-size:clamp(4rem,9vw,5.6rem); line-height:.9; letter-spacing:-0.02em; }
.price-note{ color:var(--muted); font-size:.9rem; margin-bottom:24px; }
.price-badges{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:22px; }
.price-badges span{ display:flex; align-items:center; gap:8px; font-size:.84rem; color:var(--ink-2); font-weight:500; }
.price-badges svg{ width:1.1em; height:1.1em; flex:none; color:var(--gold-text); }

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee{ background:var(--surface); }
.guarantee-inner{ display:flex; align-items:center; gap:clamp(22px,3vw,40px); background:var(--bg); border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(28px,3.6vw,44px); box-shadow:var(--shadow-sm); }
.guarantee-seal{ flex:none; width:96px; height:96px; color:var(--gold-text); }
.guarantee h2{ font-size:clamp(1.4rem,2.4vw,1.9rem); }
.guarantee p{ color:var(--muted); margin-top:10px; max-width:64ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background:var(--bg); }
.faq-wrap{ display:grid; grid-template-columns:.78fr 1.22fr; gap:clamp(28px,4vw,56px); align-items:start; }
.faq-wrap .sec-head{ margin:0; position:sticky; top:96px; }
.faq-list{ display:grid; gap:12px; }
.qa{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; transition:border-color .3s, box-shadow .3s; }
.qa[open]{ border-color:var(--line-strong); box-shadow:var(--shadow-sm); }
.qa summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px clamp(18px,2.2vw,26px); font-family:"Source Serif 4",serif; font-weight:600; font-size:1.1rem; color:var(--ink); }
.qa summary::-webkit-details-marker{ display:none; }
.qa-ic{ position:relative; flex:none; width:22px; height:22px; }
.qa-ic::before,.qa-ic::after{ content:""; position:absolute; left:50%; top:50%; width:13px; height:2.4px; border-radius:2px; background:var(--gold-deep); transform:translate(-50%,-50%); transition:transform .35s var(--ease); }
.qa-ic::after{ transform:translate(-50%,-50%) rotate(90deg); }
.qa[open] .qa-ic::after{ transform:translate(-50%,-50%) rotate(0); }
.qa-body{ padding:0 clamp(18px,2.2vw,26px) 22px; }
.qa-body p{ color:var(--muted); max-width:68ch; }

/* ============================================================
   CTA FINAL (drenched)
   ============================================================ */
.final{ position:relative; isolation:isolate; text-align:center; color:var(--on-dark);
  background:
    radial-gradient(80% 120% at 50% -20%, oklch(0.42 0.06 188 / .5), transparent 60%),
    linear-gradient(170deg, var(--petrol-deep), var(--petrol-deeper) 70%, oklch(0.13 0.026 200));
}
.final-inner{ max-width:680px; margin-inline:auto; display:grid; justify-items:center; gap:8px; }
.final h2{ color:var(--on-dark); font-size:clamp(1.9rem,3.6vw,3rem); margin-top:10px; }
.final>.container>.final-inner>p,.final-inner p{ color:var(--on-dark-muted); max-width:56ch; }
.final-inner .btn{ margin-top:24px; }
.final-trust{ margin-top:18px; color:var(--on-dark-faint); font-size:.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--petrol-deeper); color:var(--on-dark-muted); padding:clamp(44px,6vw,72px) 0 36px; }
.footer-grid{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; padding-bottom:32px; border-bottom:1px solid var(--hairline-dark); }
.footer-brand{ max-width:340px; }
.footer-brand .brand-badge{ margin-bottom:14px; }
.footer-note{ margin-top:14px; font-size:.92rem; color:var(--on-dark-faint); }
.footer-links{ display:grid; grid-auto-rows:min-content; gap:12px; align-content:start; }
.footer-links a{ text-decoration:none; color:var(--on-dark-muted); font-size:.94rem; transition:color .2s; }
.footer-links a:hover{ color:var(--gold-bright); }
.footer-base{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; margin-top:28px; font-size:.86rem; color:var(--on-dark-faint); }
.footer-base a{ color:var(--gold-bright); text-decoration:none; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-bar{ position:fixed; left:0; right:0; bottom:0; z-index:var(--z-bar); display:none; align-items:center; justify-content:space-between; gap:14px; padding:12px 16px calc(12px + env(safe-area-inset-bottom)); background:oklch(0.18 0.034 199 / .96); backdrop-filter:blur(10px); border-top:1px solid var(--hairline-dark); transform:translateY(120%); transition:transform .4s var(--ease); }
.mobile-bar.show{ transform:none; }
.mb-price{ display:flex; flex-direction:column; line-height:1.15; color:var(--on-dark); }
.mb-price small{ color:var(--on-dark-faint); font-size:.74rem; }
.mb-price b{ font-size:.96rem; }
.mobile-bar .btn{ padding:.8em 1.4em; }

/* ============================================================
   MODAIS LEGAIS
   ============================================================ */
.legal-modal{ width:min(640px, 92vw); border:none; border-radius:var(--radius-lg); padding:0; background:var(--bg); color:var(--ink); box-shadow:var(--shadow-lg); }
.legal-modal::backdrop{ background:oklch(0.16 0.03 199 / .55); backdrop-filter:blur(3px); }
.legal-inner{ padding:clamp(24px,3vw,36px); max-height:82vh; overflow:auto; }
.legal-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.legal-head h3{ font-size:1.5rem; }
.legal-close{ flex:none; width:38px; height:38px; border-radius:10px; border:1px solid var(--line-strong); background:var(--surface); color:var(--ink-2); font-size:1rem; cursor:pointer; transition:.2s; }
.legal-close:hover{ background:var(--surface-2); }
.legal-body{ display:grid; gap:14px; }
.legal-body p{ color:var(--muted); font-size:.96rem; }
.legal-body b{ color:var(--ink); }

/* ============================================================
   CONSENT BANNER
   ============================================================ */
.consent{ position:fixed; left:50%; bottom:18px; transform:translate(-50%, 140%); width:min(720px, calc(100% - 28px)); z-index:var(--z-consent); background:var(--bg); border:1px solid var(--line-strong); border-radius:var(--radius); box-shadow:var(--shadow-lg); padding:18px 20px; opacity:0; transition:transform .5s var(--ease), opacity .4s; }
.consent.show{ transform:translate(-50%,0); opacity:1; }
.consent-text{ font-size:.92rem; color:var(--ink-2); }
.consent-text a{ color:var(--gold-text); font-weight:600; }
.consent-actions{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:14px; }
.consent-link{ background:none; border:none; cursor:pointer; color:var(--muted); font-family:inherit; font-size:.9rem; font-weight:500; padding:.5em .4em; text-decoration:underline; }
.consent-link:hover{ color:var(--ink); }
.consent-btn{ font-size:.92rem; padding:.7em 1.25em; }
.consent-actions .consent-btn:last-child{ margin-left:auto; }
.cprefs-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.cprefs-head strong{ font-family:"Source Serif 4",serif; font-size:1.1rem; }
.cprefs-list{ display:grid; gap:10px; }
.cpref{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 14px; background:var(--surface); border:1px solid var(--line); border-radius:12px; cursor:pointer; }
.cpref-info b{ display:block; font-size:.94rem; }
.cpref-info small{ color:var(--muted); font-size:.82rem; }
.cpref input{ width:20px; height:20px; accent-color:var(--petrol); flex:none; }
.cprefs-actions{ margin-top:14px; display:flex; justify-content:flex-end; }

/* ============================================================
   MOTION REVEAL
   ============================================================ */
.js [data-reveal]{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in{ opacity:1; transform:none; }
.js [data-reveal][data-delay="1"]{ transition-delay:.08s; }
.js [data-reveal][data-delay="2"]{ transition-delay:.16s; }
.js [data-reveal][data-delay="3"]{ transition-delay:.24s; }

@media (prefers-reduced-motion: reduce){
  .js [data-reveal]{ opacity:1 !important; transform:none !important; }
  .seal-svg,.hdoc-1,.hdoc-2{ animation:none !important; }
  *{ transition-duration:.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1020px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; min-height:300px; }
  .seal{ width:min(300px, 64vw); }
  .author-grid{ grid-template-columns:1fr; }
  .faq-wrap{ grid-template-columns:1fr; }
  .faq-wrap .sec-head{ position:static; }
  .offer-card{ grid-template-columns:1fr; }
}
@media (max-width:920px){
  .nav{ position:fixed; inset:70px 0 auto; flex-direction:column; align-items:stretch; gap:6px; background:var(--bg); border-bottom:1px solid var(--line); padding:16px var(--pad) 24px; box-shadow:var(--shadow); transform:translateY(-12px); opacity:0; pointer-events:none; transition:.3s var(--ease); }
  .nav.open{ transform:none; opacity:1; pointer-events:auto; }
  .nav>a{ padding:12px 6px; border-bottom:1px solid var(--line); }
  .nav>a:last-child{ border:none; }
  .header-cta{ margin-top:8px; justify-content:center; padding:.9em; }
  .nav-toggle{ display:flex; }
  .mobile-bar{ display:flex; }
  .opss-grid{ grid-template-columns:1fr; }
  .pain-grid,.who-grid,.diff-grid{ grid-template-columns:repeat(2,1fr); }
  .blocks,.dash-grid,.tst-grid,.level-row{ grid-template-columns:1fr; }
  .stats-row{ grid-template-columns:repeat(3,1fr); gap:20px 8px; }
  .stat:nth-child(4)::before,.stat:nth-child(1)::before{ display:none; }
}
@media (max-width:560px){
  .pain-grid,.who-grid,.diff-grid{ grid-template-columns:1fr; }
  .stats-row{ grid-template-columns:repeat(2,1fr); }
  .stat::before{ display:none !important; }
  .guarantee-inner{ flex-direction:column; text-align:center; }
  .consent-actions{ flex-direction:column; align-items:stretch; }
  .consent-actions .consent-btn:last-child{ margin-left:0; }
  .footer-grid{ flex-direction:column; gap:24px; }
  .hero-cta .btn{ width:100%; }
}
