/* ============================================================================
   Poty Charge — SISTEMA EDITORIAL (Onda 7 · Fase 2 · protótipo)
   Sistema NOVO, isolado do style.css. Direção: editorial de storytelling.
   Movimentos anti-"cara-de-IA":
     · escala tipográfica de revista (display fluido até ~6rem) + ritmo
     · capítulos full-bleed alternados, numeral gigante como elemento gráfico
     · frases-âncora como pull-quotes oversized (assinatura editorial)
     · zero card-com-sombra genérico; hierarquia por tipografia + fio + espaço
     · ícones SVG art-directed (nunca emoji), data-viz real (nunca card com número)
   Paleta e fontes reaproveitadas da marca; o LAYOUT é novo.
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta da marca (reaproveitada) */
  --petrol:      #0e3a34;
  --petrol-deep: #072320;
  --amber:       #f0a91e;
  --amber-deep:  #c9860a;   /* âmbar escurecido p/ texto sobre fundo claro (contraste AA) */
  --sand:        #efe3c9;
  --sand-deep:   #e4d3ad;
  --ink:         #1c2321;
  --paper:       #f7f8f6;
  --paper-warm:  #f2f0e9;
  --muted:       #56605c;
  --wa:          #1fa855;
  --err:         #b3261e;
  --ok:          #1a7a4a;

  /* Fontes da marca */
  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-text:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Escala tipográfica fluida (revista) — mobile-first, cresce com o viewport */
  --t-kicker: .78rem;
  --t-body:   clamp(1.02rem, .97rem + .35vw, 1.2rem);
  --t-lede:   clamp(1.2rem, 1.05rem + .9vw, 1.65rem);
  --t-h3:     clamp(1.35rem, 1.2rem + .8vw, 1.9rem);
  --t-h2:     clamp(2.1rem, 1.5rem + 3vw, 3.9rem);
  --t-h1:     clamp(2.6rem, 1.6rem + 5.4vw, 6rem);
  --t-anchor: clamp(1.7rem, 1.15rem + 2.9vw, 3.4rem);
  --t-numeral:clamp(5rem, 3rem + 12vw, 13rem);

  /* Ritmo / espaço */
  --chapter-pad: clamp(4.5rem, 3rem + 9vw, 9rem);
  --measure: 40ch;      /* medida de leitura confortável p/ ledes */
  --measure-wide: 62ch;
  --shell: 1180px;
  --radius: 4px;        /* editorial = cantos discretos, quase retos */
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

::selection { background: var(--amber); color: var(--petrol-deep); }

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

/* Foco acessível, visível, na cor da marca */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--petrol); color: #fff; padding: 12px 18px; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
.measure { max-width: var(--measure); }
.measure-wide { max-width: var(--measure-wide); }

/* ---------- HEADER (slim, sticky, minimal) ---------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--petrol) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.masthead .shell {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .8rem; padding-bottom: .8rem;
}
.wordmark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem;
  letter-spacing: -.01em; color: #fff; text-decoration: none; line-height: 1;
  display: inline-flex; align-items: baseline; gap: .12em;
}
.wordmark b { color: var(--amber); font-weight: 800; }
.masthead__cta {
  font-family: var(--font-text); font-weight: 600; font-size: .92rem;
  color: var(--petrol-deep); background: var(--amber);
  text-decoration: none; padding: .5rem .95rem; border-radius: 999px;
  white-space: nowrap; transition: transform .15s ease, background .15s ease;
}
.masthead__cta:hover { background: #ffbf3b; transform: translateY(-1px); }
@media (max-width: 560px) { .masthead__cta { display: none; } }

/* ---------- CHAPTER SYSTEM ---------- */
.chapter {
  --bg: var(--paper); --fg: var(--ink); --fg-soft: var(--muted); --hair: #dfe3df;
  background: var(--bg); color: var(--fg);
  padding-block: var(--chapter-pad);
  position: relative; overflow: hidden;
}
.chapter--paper  { --bg: var(--paper);      --fg: var(--ink); --fg-soft: var(--muted);        --hair: #dbe0db; }
.chapter--sand   { --bg: var(--sand);       --fg: var(--petrol-deep); --fg-soft: #6a5f45;     --hair: #d8c79e; }
.chapter--petrol {
  --bg: var(--petrol); --fg: #ffffff; --fg-soft: rgba(255,255,255,.74); --hair: rgba(255,255,255,.16);
  background: radial-gradient(120% 90% at 85% 0%, #14514a 0%, var(--petrol) 45%, var(--petrol-deep) 100%);
}

/* Numeral gigante do capítulo — elemento gráfico, não decorativo vazio */
.chapter__num {
  font-family: var(--font-display); font-weight: 800; font-size: var(--t-numeral);
  line-height: .8; letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--fg) 26%, transparent);
  text-stroke: 1.5px color-mix(in srgb, var(--fg) 26%, transparent);
  margin-bottom: clamp(.5rem, 2vw, 1.5rem);
  user-select: none;
}
.chapter--petrol .chapter__num { -webkit-text-stroke-color: rgba(240,169,30,.42); }

/* Kicker / eyebrow — fio âmbar + rótulo (contraste garantido) */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-text); font-size: var(--t-kicker); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--fg-soft); margin-bottom: 1.4rem;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--amber); }

/* Títulos de capítulo — display grande, leading apertado */
.chapter__title {
  font-family: var(--font-display); font-weight: 800; font-size: var(--t-h2);
  line-height: 1.03; letter-spacing: -.03em; color: var(--fg);
  max-width: 18ch; text-wrap: balance;
}
.chapter__title--hero { font-size: var(--t-h1); max-width: 15ch; }

.lede {
  font-family: var(--font-text); font-size: var(--t-lede); line-height: 1.5;
  color: var(--fg); font-weight: 400; margin-top: clamp(1.4rem, 3vw, 2.2rem);
  max-width: var(--measure);
}
.lede--wide { max-width: var(--measure-wide); }
.lede b, .lede strong { font-weight: 700; }
.lede + .lede { margin-top: 1.1rem; }

/* Número em destaque dentro do corpo */
.hl { color: var(--amber-deep); font-weight: 700; }
.chapter--petrol .hl { color: var(--amber); }

/* Frase-âncora — pull-quote oversized (assinatura editorial) */
.anchor {
  font-family: var(--font-display); font-weight: 700; font-size: var(--t-anchor);
  line-height: 1.08; letter-spacing: -.025em; color: var(--fg);
  max-width: 20ch; text-wrap: balance;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-left: clamp(1rem, 2.5vw, 1.8rem);
  border-left: 3px solid var(--amber);
}
.anchor em { font-style: italic; color: var(--amber-deep); }
.chapter--petrol .anchor em { color: var(--amber); }

/* ---------- CAPÍTULO (a) — MASTHEAD + DATA-VIZ ---------- */
.hero-grid { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
}

/* Figura de dados real (SVG) — substitui o "card com emoji" */
.figure {
  background: #fff; border: 1px solid #e6e2d6;
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 60px -30px rgba(9,40,36,.35);
}
.figure__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.figure__eyebrow { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.figure__big {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.6rem, 1.8rem + 4vw, 4rem); line-height: .95; color: var(--petrol);
}
.figure__big span { color: var(--amber-deep); }
.figure__label { font-size: .95rem; color: var(--muted); margin-top: .2rem; }
.figure svg { width: 100%; height: auto; margin-top: 1rem; }
.figure__source { font-size: .74rem; color: var(--muted); margin-top: .9rem; line-height: 1.4; }
.figure__source b { color: var(--ink); font-weight: 600; }

.stat-row { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 1.6rem; flex-wrap: wrap; }
.stat { }
.stat__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); color: var(--petrol); line-height: 1; letter-spacing: -.02em; }
.chapter--petrol .stat__n { color: #fff; }
.stat__n span { color: var(--amber-deep); }
.chapter--petrol .stat__n span { color: var(--amber); }
.stat__c { font-size: .88rem; color: var(--fg-soft); margin-top: .35rem; max-width: 22ch; }

/* ---------- CAPÍTULO (b) — texto dramático em petrol ---------- */
.two-col-lede { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
@media (min-width: 820px) { .two-col-lede { grid-template-columns: 1fr 1fr; } }

/* ---------- CAPÍTULO (c) — 3 MODELOS (ícones SVG, não emoji, sem card-sombra) ---------- */
.models { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--hair); }
.model {
  display: grid; gap: 1.2rem; grid-template-columns: auto 1fr;
  padding-block: clamp(1.8rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--hair);
  align-items: start;
}
@media (min-width: 760px) { .model { grid-template-columns: 88px 1fr; gap: 2rem; } }
.model__icon {
  width: 60px; height: 60px; color: var(--petrol);
  border: 1.5px solid var(--hair); border-radius: 50%;
  display: grid; place-items: center;
}
.chapter--sand .model__icon { border-color: #cdb884; color: var(--petrol); background: #fff; }
.model__icon svg { width: 32px; height: 32px; }
.model__ord { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--amber-deep); text-transform: uppercase; }
.model__name { font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3); line-height: 1.1; letter-spacing: -.02em; margin: .35rem 0 .6rem; color: var(--fg); }
.model__desc { color: var(--fg-soft); max-width: 54ch; }
.models__close { margin-top: 1.8rem; font-size: var(--t-lede); font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; max-width: 24ch; }
.models__close em { color: var(--amber-deep); font-style: normal; }

/* ---------- CAPÍTULO (d) — FUNDADOR (tratamento de marca, não caixa cinza) ---------- */
.founder { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 860px) { .founder { grid-template-columns: .82fr 1.18fr; } }

/* Retrato art-directed — frame desenhado, aguardando a foto real */
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 30% 15%, #16564d 0%, var(--petrol) 55%, var(--petrol-deep) 100%);
  border: 1px solid rgba(255,255,255,.14);
}
.portrait svg.portrait__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait__corner { position: absolute; width: 34px; height: 34px; border: 2px solid var(--amber); }
.portrait__corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.portrait__corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }
.portrait__tag {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.85);
  background: rgba(7,35,32,.55); backdrop-filter: blur(3px);
  padding: .55rem .7rem; border-radius: 4px; border: 1px dashed rgba(240,169,30,.6);
  line-height: 1.35;
}
.founder__quote .lede { margin-top: 0; }
.founder__sign { display: flex; align-items: center; gap: .8rem; margin-top: 1.8rem; }
.founder__sign-mark { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--amber); }
.founder__sign-txt { font-size: .92rem; color: var(--fg-soft); }
.founder__sign-txt b { color: var(--fg); font-weight: 700; display: block; }

/* ---------- CAPÍTULO (e) — FORMULÁRIO (clímax) ---------- */
.cta-lede { max-width: 30ch; }
.form-wrap {
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  background: #fff; border: 1px solid #e6e2d6; border-radius: 8px;
  box-shadow: 0 30px 70px -40px rgba(9,40,36,.4);
  overflow: hidden;
}
.form-head {
  background: linear-gradient(180deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: #fff; padding: clamp(1.4rem, 4vw, 2rem) clamp(1.4rem, 4vw, 2.2rem);
}
.form-head h3 { font-family: var(--font-display); font-size: var(--t-h3); font-weight: 700; letter-spacing: -.02em; }
.form-head p { color: rgba(255,255,255,.8); font-size: .95rem; margin-top: .4rem; }
.form-steps { display: flex; gap: .5rem; margin-top: 1.1rem; }
.form-steps span { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.22); }
.form-steps span.on { background: var(--amber); }

.form-body { padding: clamp(1.4rem, 4vw, 2.2rem); }
.step[hidden] { display: none; }

.saved-note {
  display: none; align-items: flex-start; gap: .6rem;
  background: #e8f5ee; color: var(--ok); border: 1px solid #bfe4cf;
  border-radius: 6px; padding: .8rem 1rem; font-size: .9rem; margin-bottom: 1.4rem;
}
.saved-note.show { display: flex; }
.saved-note svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; }

.field { margin-bottom: 1.25rem; }
.field > label, .fieldset > legend {
  display: block; font-family: var(--font-text); font-weight: 600;
  font-size: .9rem; color: var(--ink); margin-bottom: .5rem;
}
.field .hint { font-weight: 400; color: var(--muted); font-size: .82rem; }
.field input[type="text"], .field input[type="tel"], .field input[type="number"], .field select {
  width: 100%; padding: .85rem 1rem; font-family: var(--font-text); font-size: 1rem;
  color: var(--ink); background: #fff;
  border: 0; border-bottom: 2px solid #d5dad3; border-radius: 2px;
  transition: border-color .15s ease, background .15s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e3a34' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem; }
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--petrol); background: #fbfcfb; box-shadow: 0 3px 0 -1px var(--amber); }
.field.error input, .field.error select { border-bottom-color: var(--err); }
.field .err { display: none; color: var(--err); font-size: .82rem; margin-top: .4rem; }
.field.error .err { display: block; }
.field-other { margin-top: .7rem; }
.field-other[hidden] { display: none; }

.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-2 .field { margin-bottom: 0; } .grid-2 { margin-bottom: 1.25rem; } }

/* Checkbox de modelos (#9) — cartões-escolha art-directed */
.fieldset { border: 0; margin-bottom: 1.25rem; }
.choices { display: grid; gap: .7rem; }
.choice {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start;
  padding: .95rem 1rem; border: 1.5px solid #dfe3df; border-radius: 6px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.choice:hover { border-color: #b9c2bc; }
.choice input { margin-top: .15rem; width: 20px; height: 20px; accent-color: var(--petrol); flex: 0 0 auto; }
.choice__t { font-weight: 600; font-size: .96rem; color: var(--ink); }
.choice__d { font-size: .84rem; color: var(--muted); margin-top: .15rem; }
.choice:has(input:checked) { border-color: var(--petrol); background: #f3f7f5; }
.choice:has(input:checked) .choice__t { color: var(--petrol); }

/* Blocos condicionais (#10) — fio âmbar, aparecem inline */
.cond { margin: .2rem 0 1.1rem; padding: 1rem 1.1rem; border-left: 3px solid var(--amber); background: #fbf7ec; border-radius: 0 6px 6px 0; }
.cond[hidden] { display: none; }
.cond > .field:last-child { margin-bottom: 0; }
.cond__lead { font-size: .82rem; font-weight: 600; color: var(--amber-deep); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }

/* LGPD */
.lgpd { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .82rem; color: var(--muted); margin: 1.4rem 0; line-height: 1.5; }
.lgpd input { margin-top: .2rem; width: 20px; height: 20px; accent-color: var(--petrol); flex: 0 0 auto; }
.lgpd a { color: var(--petrol); text-underline-offset: 2px; }
.field.error.lgpd .err { display: block; grid-column: 2; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  width: 100%; padding: 1rem 1.4rem; border: 0; border-radius: 6px; cursor: pointer;
  font-family: var(--font-text); font-size: 1.05rem; font-weight: 700; text-decoration: none;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--amber); color: var(--petrol-deep); box-shadow: 0 10px 24px -10px rgba(240,169,30,.7); }
.btn-primary:hover { background: #ffbf3b; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--petrol); border: 1.5px solid var(--petrol); }
.btn-micro { display: block; text-align: center; font-size: .82rem; color: var(--muted); margin-top: .8rem; }

/* Sucesso / erro global */
.form-status { display: none; padding: clamp(1.6rem, 4vw, 2.4rem); }
.form-status.show { display: block; }
.form-status--ok h3 { font-family: var(--font-display); font-size: var(--t-h3); color: var(--petrol); margin-bottom: .6rem; }
.form-status--ok p { color: var(--ink); margin-bottom: 1rem; }
.wa-inline { display: inline-flex; align-items: center; gap: .5rem; color: var(--wa); font-weight: 700; text-decoration: none; }
.wa-inline svg { width: 18px; height: 18px; }
.form-error-global { display: none; background: #fdecea; color: var(--err); border-radius: 6px; padding: .9rem 1.1rem; font-size: .9rem; margin-bottom: 1.2rem; }
.form-error-global.show { display: block; }

/* ---------- ROTA DO MOTORISTA (discreta, abaixo do form) ---------- */
.driver {
  margin-top: clamp(2rem, 5vw, 3rem); padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px dashed #cbd2cc; border-radius: 8px; background: #fff;
}
.driver summary { cursor: pointer; font-weight: 600; color: var(--petrol); list-style: none; display: flex; align-items: center; gap: .6rem; }
.driver summary::-webkit-details-marker { display: none; }
.driver summary::before { content: ""; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; border: 1.5px solid var(--amber); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 2v8M2 6h8' stroke='%23c9860a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.driver[open] summary::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6h8' stroke='%23c9860a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); }
.driver__body { margin-top: 1.1rem; }
.driver p.driver__intro { font-size: .92rem; color: var(--muted); margin-bottom: 1.1rem; }

/* ---------- FOOTER (institucional · sem geografia) ---------- */
.foot { background: var(--petrol-deep); color: rgba(255,255,255,.8); padding-block: clamp(3rem, 6vw, 4.5rem); }
.foot__top { display: grid; gap: 2rem; }
@media (min-width: 720px) { .foot__top { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.foot .wordmark { font-size: 1.4rem; margin-bottom: .8rem; }
.foot__tag { max-width: 40ch; font-size: .95rem; line-height: 1.6; }
.foot__contact { display: grid; gap: .7rem; font-size: .95rem; }
.foot__contact a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .55rem; }
.foot__contact a:hover { color: var(--amber); }
.foot__contact svg { width: 18px; height: 18px; flex: 0 0 auto; }
.foot__legal { margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .8rem; line-height: 1.6; color: rgba(255,255,255,.6); }
.foot__legal a { color: rgba(255,255,255,.85); }

/* ---------- CTA DOCK (fixo/ancorado — única ação) ---------- */
.cta-dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: .7rem clamp(1rem, 4vw, 2rem) calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--petrol-deep) 94%, transparent);
  backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(120%); transition: transform .28s ease;
}
.cta-dock.show { transform: translateY(0); }
.cta-dock__txt { color: #fff; font-size: .9rem; line-height: 1.25; }
.cta-dock__txt b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.cta-dock__txt span { color: rgba(255,255,255,.7); font-size: .78rem; }
.cta-dock a { flex: 0 0 auto; width: auto; padding: .8rem 1.3rem; font-size: .98rem; }
@media (prefers-reduced-motion: reduce) { .cta-dock { transition: none; } }
@media (max-width: 420px) { .cta-dock__txt span { display: none; } }

/* ---------- MOTION (scroll reveal) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Espaço para o dock não cobrir o rodapé no fim do scroll */
.foot { padding-bottom: calc(clamp(3rem,6vw,4.5rem) + 72px); }
