/* ==========================================================================
   AD — Atualização de Dados (Sales Intelligence)
   Arquitetura: Hybrid Scrollytelling + Editorial Document
   Paleta: navy + lima + paper + kraft + carbon
   Tipografia: Bricolage Grotesque (variable display/body) + Geist Mono
   ========================================================================== */

/* ─── Tokens ─── */
:root {
    --navy: #14141c;
    --navy-soft: #1a1a2e;
    --navy-deep: #0a0a14;
    --carbon: #08080e;
    --lima: #a5cf3b;
    --lima-deep: #5d781e;
    --lima-soft: rgba(165, 207, 59, 0.16);
    --paper: #f5f4ed;
    --paper-soft: #efede4;
    --kraft: #e8e2cc;
    --white: #ffffff;
    --ink: #14141c;
    --ink-soft: rgba(20, 20, 28, 0.65);
    --ink-mute: rgba(20, 20, 28, 0.4);
    --rule: rgba(20, 20, 28, 0.12);
    --rule-strong: rgba(20, 20, 28, 0.25);

    --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
    --font-body: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

/* ─── Self-hosted fonts ─── */
@font-face {
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/assets/fonts/bricolage-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Geist Mono';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/assets/fonts/geistmono-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15.5px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Focus visível (a11y) ─── */
a:focus, button:focus, summary:focus, input:focus, textarea:focus, [tabindex]:focus { outline: none; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--lima);
    outline-offset: 3px;
    border-radius: 2px;
}
body.is-doc-mode a:focus-visible, body.is-doc-mode button:focus-visible, body.is-doc-mode summary:focus-visible {
    outline-color: var(--lima-deep);
}

/* ─── Skip link ─── */
.skip-link {
    position: absolute;
    top: -100px; left: 12px;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    z-index: 1000;
    border-radius: 0;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--lima); outline-offset: 2px; }

/* ─── Disabled visual nos botões ─── */
.btn-primary:disabled, .btn-quiet:disabled, button:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
    pointer-events: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── HEADER · 2 modos (cinema = mínimo / doc = nav com ícones) ─── */
.hdr {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(8, 8, 14, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 244, 237, 0.08);
    transition: background 0.5s ease, border-color 0.5s ease;
}
/* Em modo doc: backdrop cream */
body.is-doc-mode .hdr {
    background: rgba(245, 244, 237, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--rule);
}
.hdr-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hdr-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.hdr-mark:hover { opacity: 0.75; }
.hdr-mark img {
    height: 26px;
    width: auto;
    max-width: none;
    display: block;
}
.hdr-mark .logo-dark { display: none; }
body.is-doc-mode .hdr-mark .logo-light { display: none; }
body.is-doc-mode .hdr-mark .logo-dark { display: block; }

.hdr-nav {
    display: flex;
    gap: 2px;
    align-items: center;
}

/* Links de seção: visíveis sempre, mudam cor conforme contexto */
.hdr-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13.5px;
    color: var(--paper);
    padding: 8px 14px;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    opacity: 0.78;
    transition: opacity 0.18s ease, color 0.18s ease, background 0.18s ease;
}
body.is-doc-mode .hdr-link { color: var(--ink); }
.hdr-link:hover {
    opacity: 1;
    background: rgba(165, 207, 59, 0.15);
}
.hdr-link:hover .hdr-icon { color: var(--lima); }
body.is-doc-mode .hdr-link:hover .hdr-icon { color: var(--lima-deep); }

/* CTA: visível sempre, muda conforme o fundo */
.hdr-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 18px;
    margin-left: 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--lima);
    color: var(--ink);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hdr-cta:hover { background: var(--paper); color: var(--ink); transform: translateY(-1px); }
body.is-doc-mode .hdr-cta { background: var(--ink); color: var(--paper); }
body.is-doc-mode .hdr-cta:hover { background: var(--lima-deep); color: var(--paper); }

/* Ícones SVG */
.hdr-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.hdr-link .hdr-icon { color: rgba(245, 244, 237, 0.55); }
body.is-doc-mode .hdr-link .hdr-icon { color: var(--ink-mute); }


/* ============================================================
   PARTE 1 · CINEMA — Scrollytelling
   ============================================================ */
.cinema {
    background: var(--carbon);
    color: var(--paper);
    position: relative;
    transition: background 1.0s cubic-bezier(0.65, 0, 0.35, 1);
}

.cinema-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--lima);
    width: 0%;
    z-index: 200;
    transition: width 0.1s linear;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(165, 207, 59, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(165, 207, 59, 0.08); }
}

.scene {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    text-align: center;
    position: relative;
    transition: background 0.9s cubic-bezier(0.65, 0, 0.35, 1), color 0.9s ease;
}
.scene-inner {
    max-width: 880px;
    width: 100%;
}
.scene-eyebrow {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima);
    font-weight: 600;
    margin-bottom: 36px;
    transition: opacity 0.7s ease, transform 0.7s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.has-js .scene-eyebrow { opacity: 0; transform: translateY(16px); }
.scene-dot {
    width: 8px; height: 8px;
    background: var(--lima);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(165, 207, 59, 0.22);
    animation: scene-dot-pulse 1.6s ease-in-out infinite;
}
@keyframes scene-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(165, 207, 59, 0.22); }
    50% { box-shadow: 0 0 0 9px rgba(165, 207, 59, 0.05); }
}
/* Cena 3 (lima cheio) — dot fica navy pra contraste */
.scene-3 .scene-dot {
    background: var(--navy);
    box-shadow: 0 0 0 4px rgba(20, 20, 28, 0.22);
    animation-name: scene-dot-pulse-dark;
}
@keyframes scene-dot-pulse-dark {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20, 20, 28, 0.22); }
    50% { box-shadow: 0 0 0 9px rgba(20, 20, 28, 0.06); }
}
/* Cena 5 (paper) — dot lima funciona, deixa lima-deep pra mais contraste */
.scene-5 .scene-dot {
    background: var(--lima-deep);
    box-shadow: 0 0 0 4px rgba(93, 120, 30, 0.22);
    animation-name: scene-dot-pulse-deep;
}
@keyframes scene-dot-pulse-deep {
    0%, 100% { box-shadow: 0 0 0 4px rgba(93, 120, 30, 0.22); }
    50% { box-shadow: 0 0 0 9px rgba(93, 120, 30, 0.06); }
}
.scene-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(44px, 7.5vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.has-js .scene-title { opacity: 0; transform: translateY(24px); }
.scene-title em {
    font-style: normal;
    background: linear-gradient(180deg, transparent 62%, var(--lima) 62%);
    padding: 0 8px;
    color: inherit;
}
.scene-lede {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.45;
    color: rgba(245, 244, 237, 0.78);
    max-width: 48ch;
    margin: 0 auto;
    transition: opacity 0.8s ease 0.25s, transform 0.8s ease 0.25s;
}
.has-js .scene-lede { opacity: 0; transform: translateY(16px); }

/* Scene active state */
.scene.is-active .scene-eyebrow,
.scene.is-active .scene-title,
.scene.is-active .scene-lede {
    opacity: 1;
    transform: translateY(0);
}

/* Scene backgrounds */
.scene-1 { background: var(--carbon); color: var(--paper); }
.scene-2 { background: var(--navy); color: var(--paper); }
.scene-3 {
    background: var(--lima);
    color: #1f2d10;
}
.scene-3 .scene-title { color: #1f2d10; }
.scene-3 .scene-eyebrow { color: #1f2d10; }
.scene-3 .scene-title em { background: linear-gradient(180deg, transparent 62%, var(--navy) 62%); color: var(--paper); }
.scene-3 .scene-lede { color: rgba(31, 45, 16, 0.78); }
.scene-4 { background: var(--navy-deep); color: var(--paper); }
.scene-5 { background: var(--paper); color: var(--ink); }
.scene-5 .scene-eyebrow { color: var(--lima-deep); }
.scene-5 .scene-lede { color: var(--ink-soft); }
.scene-5 .scene-title {
    font-size: clamp(34px, 5.2vw, 72px);
    max-width: 22ch;
}

/* Constellation (scene 3) */
.constellation {
    margin: 48px auto 0;
    max-width: 460px;
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.has-js .constellation { opacity: 0; transform: scale(0.92); }
.scene.is-active .constellation { opacity: 1; transform: scale(1); }
.constellation svg { width: 100%; height: auto; overflow: visible; }
.constellation .orbit-satellites text {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
}
.constellation .cnpj-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Pulse sequencial nos satélites — sinal "viajando" pela órbita */
.sat circle {
    transition: fill 0.6s ease;
    animation: sat-pulse 6s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.sat-1 circle { animation-delay: 0s; }
.sat-2 circle { animation-delay: 1s; }
.sat-3 circle { animation-delay: 2s; }
.sat-4 circle { animation-delay: 3s; }
.sat-5 circle { animation-delay: 4s; }
.sat-6 circle { animation-delay: 5s; }
@keyframes sat-pulse {
    0%, 85%, 100% { fill: #f5f4ed; }
    8%, 16% { fill: #a5cf3b; }
}

/* Pulse das linhas conectoras em sync com satélites */
.orbit-lines {
    animation: lines-pulse 6s ease-in-out infinite;
}
@keyframes lines-pulse {
    0%, 100% { opacity: 0.28; }
    50% { opacity: 0.42; }
}

/* Respeitar preferência de reduced motion */
@media (prefers-reduced-motion: reduce) {
    .orbit-satellites, .sat circle, .orbit-lines, .scene-dot { animation: none; }
}

/* Scene 5 — payoff ficha */
.payoff-ficha {
    background: var(--paper);
    border: 1px solid var(--ink);
    box-shadow: 10px 10px 0 var(--lima);
    max-width: 520px;
    margin: 48px auto 40px;
    text-align: left;
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.has-js .payoff-ficha { opacity: 0; transform: scale(0.94) translateY(20px); }
.scene-5.is-active .payoff-ficha { opacity: 1; transform: scale(1) translateY(0); }
.payoff-ficha-head {
    background: var(--ink);
    color: var(--paper);
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payoff-ficha-head .lbl {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lima);
    font-weight: 600;
}
.payoff-ficha-head .id {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--paper);
}
.payoff-ficha-body { padding: 4px 22px; }
.payoff-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 12px 0;
    border-bottom: 1px dashed var(--rule);
    align-items: baseline;
    gap: 16px;
}
.payoff-row:last-child { border-bottom: 0; }
.payoff-row .k {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
}
.payoff-row .v {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    text-align: right;
}
.payoff-row.hl {
    background: var(--lima-soft);
    margin: 0 -22px;
    padding: 14px 22px;
    border-bottom: 0;
}
.payoff-row.hl .v {
    font-size: 22px;
    color: var(--lima-deep);
    font-weight: 700;
}
.payoff-row .v.status {
    color: var(--lima-deep);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
}
.payoff-ficha-foot {
    padding: 12px 22px;
    border-top: 1px solid var(--rule);
    background: var(--paper-soft);
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.payoff-ficha-foot span:first-child { color: var(--lima-deep); font-weight: 600; }

.payoff-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 28px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--lima-deep); border-color: var(--lima-deep); transform: translateY(-1px); }
.btn-primary .arrow {
    font-family: var(--font-mono);
    font-size: 13px;
    transform: translateY(-0.5px);
}

.btn-quiet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    padding: 16px 22px;
    border-bottom: 2px solid var(--lima);
    text-decoration: none;
    border-radius: 0;
    transition: color 0.2s ease;
}
.btn-quiet:hover { color: var(--lima-deep); }


/* ============================================================
   SUBPAGES · /campos, /comparativo, /faq, /contato
   ============================================================ */
.subpage { background: var(--paper); }

/* Intro block — title + lede, com padding pra clear o header fixed */
.subpage-intro {
    padding: 144px 0 72px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
}
.subpage-intro .section-head { margin-bottom: 0; max-width: 760px; }
.subpage-intro .section-head h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 5.4vw, 68px);
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    max-width: 24ch;
}
.subpage-intro .section-head h1 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 10px;
    color: var(--navy);
}
.subpage-intro .section-lede {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 62ch;
}

/* Subpage content sections (re-uses doc-section paddings) */
.subpage-content { padding: 72px 0; }

/* Next-step strip antes do footer (em todas as subpages exceto /contato) */
.next-step {
    background: var(--navy);
    color: var(--paper);
    padding: 72px 0;
}
.next-step-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}
.next-step .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima);
    font-weight: 500;
    margin-bottom: 14px;
    display: inline-block;
}
.next-step h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 22ch;
}
.next-step h2 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 8px;
    color: var(--navy);
}
.next-step .btn-primary {
    background: var(--lima);
    color: var(--navy);
    border-color: var(--lima);
}
.next-step .btn-primary:hover {
    background: var(--paper);
    border-color: var(--paper);
}

/* ===== /sobre/ — hero LIMPA (Locatelli) + bento assimétrico ===== */

/* Hero clean: stat gigante esquerda + prose direita */
.sobre-intro { padding: 144px 0 88px; background: var(--paper); }
.sobre-clean {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 88px;
    align-items: start;
}
.sobre-clean-stat {
    position: relative;
    padding-top: 104px;
}
.sobre-clean-corner {
    position: absolute;
    top: 0; left: -12px;
    width: 72px; height: 72px;
    border-top: 9px solid var(--lima);
    border-left: 9px solid var(--lima);
}
.sobre-clean-eyebrow {
    position: absolute;
    top: 12px; left: 36px;
}
.sobre-clean-stat-prefix {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    margin-left: 36px;
}
.sobre-clean-stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 7.5vw, 112px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    color: var(--lima-deep);
    max-width: 6ch;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-left: 36px;
}
.sobre-clean-prose {
    padding-top: 12px;
    max-width: 56ch;
}
.sobre-clean-prose p {
    font-size: 17.5px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 20px;
}
.sobre-clean-prose p:last-child { margin-bottom: 0; }
.sobre-clean-prose strong { color: var(--navy); font-weight: 700; }


/* Pilares — 4 círculos em cascata orgânica (inspirado em fluxo de processo) */
.section-pilares {
    background: var(--paper-soft);
    border-top: 1px solid var(--rule);
    overflow: hidden;
}
.pilares-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    min-height: 380px;
    padding: 32px 0;
}

/* SVG line conectando os 4 círculos */
.pilares-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pilar-circle {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 240px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    justify-self: center;
}
.pilar-circle:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 14px 28px -10px rgba(20, 20, 28, 0.25);
}

/* Cascata orgânica — cada círculo numa altura diferente */
.pilar-c1 {
    background: var(--paper);
    transform: translateY(-30px);
}
.pilar-c1:hover { transform: translateY(-36px) scale(1.04); }

.pilar-c2 {
    background: var(--kraft);
    transform: translateY(40px);
}
.pilar-c2:hover { transform: translateY(34px) scale(1.04); }

.pilar-c3 {
    background: var(--lima);
    border-color: var(--lima);
    transform: translateY(-20px);
}
.pilar-c3:hover { transform: translateY(-26px) scale(1.04); }

.pilar-c4 {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--paper);
    transform: translateY(30px);
}
.pilar-c4:hover {
    transform: translateY(24px) scale(1.04);
    border-color: var(--lima);
}

/* Conteúdo interno */
.pilar-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 700;
}
.pilar-c3 .pilar-num { color: var(--navy); opacity: 0.7; }
.pilar-c4 .pilar-num { color: var(--lima); }

.pilar-c-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.022em;
}
.pilar-c4 .pilar-c-title { color: var(--paper); }

.pilar-c-desc {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--ink-soft);
    max-width: 22ch;
}
.pilar-c3 .pilar-c-desc { color: rgba(20, 20, 28, 0.75); }
.pilar-c4 .pilar-c-desc { color: rgba(245, 244, 237, 0.78); }

/* Stats section (3 cards horizontal) */
.section-stats { background: var(--paper); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.stat-card {
    background: var(--paper-soft);
    border: 1px solid var(--rule-strong);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.stat-card-highlight {
    background: var(--lima);
    border-color: var(--lima);
}
.stat-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 600;
}
.stat-card-highlight .stat-tag { color: var(--navy); opacity: 0.7; }
.stat-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: -0.035em;
}
.stat-value span {
    font-size: 0.55em;
    color: var(--ink-soft);
    font-weight: 600;
}
.stat-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-top: auto;
}
.stat-card-highlight .stat-desc { color: rgba(20, 20, 28, 0.7); }

/* Trust mosaic (2x2) */
.section-trust { background: var(--paper-soft); }
.trust-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--ink);
    border: 1px solid var(--ink);
}
.trust-card {
    background: var(--paper);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s ease;
}
.trust-card:hover { background: var(--lima-soft); }
.trust-card-b { background: var(--kraft); }
.trust-card-c { background: var(--navy); color: var(--paper); }
.trust-card-c:hover { background: var(--navy-deep); }
.trust-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 600;
}
.trust-card-c .trust-tag { color: var(--lima); }
.trust-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.025em;
}
.trust-card-c .trust-title { color: var(--paper); }
.trust-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 38ch;
}
.trust-card-c .trust-desc { color: rgba(245, 244, 237, 0.75); }

/* Saiba mais — texto-left + carousel-right */
.section-saibamais {
    background: var(--paper-soft);
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}
.saibamais-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: var(--navy);
    opacity: 0.14;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}
.saibamais-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Texto esquerda */
.saibamais-text {
    position: sticky;
    top: 96px;
}
.saibamais-text h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.028em;
    margin: 20px 0 18px;
    max-width: 18ch;
}
.saibamais-text h2 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 8px;
    color: var(--navy);
}
.saibamais-text .section-lede {
    max-width: 40ch;
    margin-bottom: 28px;
}

/* Dots de navegação */
.saibamais-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.saibamais-btn {
    width: 30px;
    height: 4px;
    border: 0;
    background: rgba(20, 20, 28, 0.18);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}
.saibamais-btn[aria-current="true"] {
    background: var(--lima-deep);
    width: 48px;
}
.saibamais-btn:hover { background: var(--lima-deep); }

/* Setas + contador */
.saibamais-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.saibamais-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.saibamais-arrow:hover { background: var(--ink); color: var(--paper); }
.saibamais-counter {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
}
.saibamais-counter span { color: var(--lima-deep); }

/* Stage / carousel */
.saibamais-stage {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.saibamais-card {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 28, 0.92);
    color: var(--paper);
    border: 1px solid var(--lima);
    padding: 56px 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}
.saibamais-card.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
/* Alternativos com cores diferentes pra variar a vibe */
.saibamais-card[data-slide="0"] { background: rgba(20, 20, 28, 0.92); }
.saibamais-card[data-slide="1"] { background: rgba(165, 207, 59, 0.96); color: var(--navy); border-color: var(--navy); }
.saibamais-card[data-slide="2"] { background: rgba(232, 226, 204, 0.96); color: var(--navy); border-color: var(--navy); }
.saibamais-card[data-slide="3"] { background: rgba(20, 20, 28, 0.96); }

.saibamais-card-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima);
    font-weight: 600;
}
.saibamais-card[data-slide="1"] .saibamais-card-tag { color: var(--navy); opacity: 0.7; }
.saibamais-card[data-slide="2"] .saibamais-card-tag { color: var(--lima-deep); }
.saibamais-card[data-slide="3"] .saibamais-card-tag { color: var(--lima); }

.saibamais-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}
.saibamais-card-desc {
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 50ch;
    opacity: 0.88;
}
.saibamais-card[data-slide="1"] .saibamais-card-desc,
.saibamais-card[data-slide="2"] .saibamais-card-desc { opacity: 0.78; }

.saibamais-card-footer {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lima);
    padding-top: 18px;
    border-top: 1px dashed rgba(245, 244, 237, 0.25);
}
.saibamais-card[data-slide="1"] .saibamais-card-footer { color: var(--navy); border-top-color: rgba(20, 20, 28, 0.25); }
.saibamais-card[data-slide="2"] .saibamais-card-footer { color: var(--lima-deep); border-top-color: rgba(20, 20, 28, 0.18); }

@media (max-width: 880px) {
    .sobre-intro { padding: 112px 0 56px; }
    .sobre-clean { grid-template-columns: 1fr; gap: 36px; }
    .sobre-clean-stat-num { font-size: 64px; }
    .pilares-flow {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        min-height: auto;
        padding: 24px 0;
    }
    .pilares-line { display: none; }
    .pilar-circle,
    .pilar-c1, .pilar-c2, .pilar-c3, .pilar-c4 {
        transform: none;
        max-width: 220px;
    }
    .pilar-c1:hover, .pilar-c2:hover, .pilar-c3:hover, .pilar-c4:hover {
        transform: translateY(-4px);
    }
}
@media (max-width: 480px) {
    .pilares-flow { grid-template-columns: 1fr; gap: 16px; }
    .pilar-circle { max-width: 240px; }
}
/* ===== fim /sobre/ ===== */


/* ===== /contato/ — form-forward page ===== */
.subpage-contato { background: var(--paper); }
.container-narrow { max-width: 740px; margin: 0 auto; padding: 0 32px; }

.contato-form-wrap {
    padding: 88px 0 56px;
}

.contato-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contato-side {
    padding-right: 56px;
    border-right: 1px solid var(--rule);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-head {
    margin-bottom: 48px;
    text-align: left;
}
.contato-head h1,
.contato-side h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.02;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin: 20px 0 20px;
    max-width: 16ch;
}
.contato-head h1 em,
.contato-side h1 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 10px;
    color: var(--navy);
}
.contato-lede {
    font-size: 17px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 44ch;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--ink);
    box-shadow: 10px 10px 0 var(--lima);
    padding: 32px 32px;
    border-radius: 0;
}
.contato-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contato-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contato-field-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
}
.contato-field-label small {
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--ink-mute);
    font-weight: 400;
    margin-left: 6px;
    font-size: 10px;
}
.contato-field input,
.contato-field textarea {
    background: var(--paper);
    border: 1px solid var(--rule-strong);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 0;
    transition: border-color 0.18s ease, background 0.18s ease;
    width: 100%;
}
.contato-field input::placeholder,
.contato-field textarea::placeholder {
    color: var(--ink-mute);
    font-family: var(--font-body);
}
.contato-field input:focus,
.contato-field textarea:focus {
    outline: none;
    border-color: var(--lima-deep);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(165, 207, 59, 0.18);
}
.contato-field input[aria-invalid="true"],
.contato-field textarea[aria-invalid="true"] {
    border-color: #c84545;
    background: rgba(200, 69, 69, 0.04);
}
.contato-field input[aria-invalid="true"]:focus,
.contato-field textarea[aria-invalid="true"]:focus {
    border-color: #c84545;
    box-shadow: 0 0 0 3px rgba(200, 69, 69, 0.18);
}
.contato-field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.5;
    font-family: var(--font-body);
}
.contato-submit {
    align-self: flex-start;
    margin-top: 6px;
    padding: 14px 28px;
    font-size: 14.5px;
    border-radius: 0;
}
.contato-status {
    margin-top: 6px;
    padding: 12px 14px;
    font-size: 13.5px;
    line-height: 1.45;
    border: 1px solid var(--rule);
    color: var(--ink);
    display: none;
}
.contato-status.is-success { display: block; border-color: var(--lima-deep); color: var(--lima-deep); background: var(--lima-soft); }
.contato-status.is-error { display: block; border-color: #c44a48; color: #c44a48; background: rgba(196, 74, 72, 0.06); }
.contato-fineprint {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.55;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px dashed var(--rule);
}
.contato-fineprint a { color: var(--lima-deep); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 880px) {
    .contato-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contato-side {
        padding-right: 0;
        padding-bottom: 28px;
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }
}
@media (max-width: 720px) {
    .contato-form-wrap { padding: 88px 0 56px; }
    .contato-head h1,
    .contato-side h1 { font-size: clamp(30px, 7vw, 44px); }
    .contato-form { padding: 24px 20px; box-shadow: 6px 6px 0 var(--lima); }
    .contato-form-row { grid-template-columns: 1fr; }
    .contato-submit { width: 100%; align-self: stretch; text-align: center; justify-content: center; }
}
/* ===== fim /contato/ ===== */


/* Active state no header nav (aria-current) */
.hdr-link[aria-current="page"] {
    opacity: 1;
    color: var(--lima-deep);
    font-weight: 600;
}
.hdr-link[aria-current="page"] .hdr-icon { color: var(--lima-deep); }
.hdr-link[aria-current="page"]::after {
    content: "";
    display: inline-block;
    width: 5px; height: 5px;
    background: var(--lima);
    border-radius: 50%;
    margin-left: 6px;
}

@media (max-width: 880px) {
    .subpage-intro { padding: 112px 0 48px; }
    .subpage-content { padding: 48px 0; }
    .next-step { padding: 56px 0; }
    .next-step-inner { grid-template-columns: 1fr; gap: 24px; }
}


/* ============================================================
   PARTE 2 · DOCUMENTO TÉCNICO
   ============================================================ */
.doc { background: var(--paper); }
.doc-section {
    padding: 88px 0;
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
}
.doc-section:last-of-type { border-bottom: 0; }

.section-head {
    margin-bottom: 56px;
    max-width: 720px;
}
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--lima-deep);
}
.section-eyebrow.on-dark { color: var(--lima); }
.section-eyebrow.on-dark::before { background: var(--lima); }
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.028em;
    margin-bottom: 20px;
    max-width: 32ch;
}
.section-head h2 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 8px;
    color: var(--navy);
}
.section-lede {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    font-weight: 400;
}
.section-lede.on-dark { color: rgba(245, 244, 237, 0.7); }




/* ===== SEÇÃO · Fluxo (1+2 com rede de fundo blurred) ===== */
.section-fluxo {
    background: var(--paper-soft);
    padding: 88px 0 96px;
    border-top: 1px solid var(--rule);
    overflow: hidden;
    position: relative;
}

/* Background SVG de rede de nodes (blurred + transparency) */
.fluxo-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: var(--navy);
    opacity: 0.16;
    filter: blur(2.5px);
    pointer-events: none;
    z-index: 0;
}

/* Layout 1+2: card grande à esquerda + 2 cards stacked à direita */
.fluxo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    min-height: 540px;
    max-width: 1080px;
    margin: 0 auto;
}

.fluxo-card {
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 36px 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Top stripe lima que entra no hover */
.fluxo-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 4px;
    background: var(--lima);
    transition: width 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 3;
}
.fluxo-card:hover::before { width: 100%; }
.fluxo-card { transition: border-top-color 0.3s ease; }
.fluxo-card:hover { border-top-color: var(--lima); }

/* Card grande (esquerda) */
.fluxo-card-big {
    background: var(--paper);
}
.fluxo-card-big .fluxo-title {
    font-size: 26px;
    line-height: 1.18;
    max-width: 16ch;
}
.fluxo-card-big .fluxo-desc {
    font-size: 16px;
    max-width: 38ch;
}

/* Stack à direita (2 cards) — INVADE o card 01 em ~52px */
.fluxo-stack {
    display: flex;
    flex-direction: column;
    margin-left: -52px;
    margin-top: 36px;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    box-shadow: -8px 0 24px -10px rgba(20, 20, 28, 0.18);
}
.fluxo-card-stack-1,
.fluxo-card-stack-2 {
    flex: 1;
    border-left: 1px solid var(--ink);
    padding: 28px 32px 22px;
}
.fluxo-card-stack-2 { border-left-color: var(--navy); }
.fluxo-card-stack-1 {
    background: var(--kraft);
}
.fluxo-card-stack-2 {
    background: var(--navy);
    color: var(--paper);
    border-color: var(--navy);
    border-top: 0;
    margin-left: -96px;
    margin-right: 56px;
}
.fluxo-card-stack-2 .fluxo-title { color: var(--paper); }
.fluxo-card-stack-2 .fluxo-desc { color: rgba(245, 244, 237, 0.78); }
.fluxo-card-stack-2 .fluxo-time {
    color: rgba(245, 244, 237, 0.6);
    border-top-color: rgba(245, 244, 237, 0.18);
}
.fluxo-card-stack-2 .fluxo-num { color: var(--paper); }
.fluxo-card-stack-2 .fluxo-label { color: var(--lima); }

/* Hover: subtle border + lima top stripe (sem mexer no bg pra evitar vazamento) */
.fluxo-card-big:hover { border-color: var(--ink); }
.fluxo-card-stack-1:hover { border-color: var(--ink); }
.fluxo-card-stack-2:hover { border-color: var(--lima); }

/* Internal pieces */
.fluxo-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}
.fluxo-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 64px;
    line-height: 0.86;
    letter-spacing: -0.045em;
    color: var(--navy);
}
.fluxo-card-3 .fluxo-num { color: var(--paper); }

.fluxo-arrow {
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--lima-deep);
    align-self: center;
    transform: translateY(6px);
    transition: transform 0.32s ease;
}
.fluxo-card:hover .fluxo-arrow { transform: translate(6px, 6px); }

.fluxo-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lima-deep);
    font-weight: 600;
}
.fluxo-card-3 .fluxo-label { color: var(--lima); }

.fluxo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.18;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 2px 0 4px;
}
.fluxo-card-3 .fluxo-title { color: var(--paper); }
.fluxo-title em {
    font-style: normal;
    background: var(--lima);
    color: var(--navy);
    padding: 0 6px;
}

.fluxo-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    flex: 1;
}
.fluxo-card-3 .fluxo-desc { color: rgba(245, 244, 237, 0.78); }

.fluxo-time {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding-top: 14px;
    border-top: 1px dashed var(--rule);
    margin-top: 16px;
}
.fluxo-card-3 .fluxo-time {
    color: rgba(245, 244, 237, 0.6);
    border-top-color: rgba(245, 244, 237, 0.18);
}

@media (max-width: 880px) {
    .section-fluxo { padding: 56px 0 64px; }
    .fluxo-bg { display: none; }
    .fluxo-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .fluxo-arrow { display: none; }
    .fluxo-num { font-size: 48px; }
    .fluxo-card { padding: 24px 22px 20px; }
    .fluxo-card-stack-1, .fluxo-card-stack-2 {
        border-left: 1px solid var(--ink);
    }
    .fluxo-card-stack-2 { border-left-color: var(--navy); }
    .fluxo-card-big .fluxo-title { font-size: 22px; }
}
/* ===== fim Fluxo ===== */


/* SEÇÃO · Mecânica (color block lima) — legado */
.section-mecanica {
    background: var(--lima);
    color: var(--navy);
    position: relative;
}
.section-mecanica::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(20, 20, 28, 0.12) 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: 0.5;
}
.section-mecanica .container { position: relative; z-index: 1; }
.section-mecanica .section-eyebrow { color: var(--navy); }
.section-mecanica .section-eyebrow::before { background: var(--navy); }
.section-mecanica .section-head h2 { color: var(--navy); }
.section-mecanica .section-lede { color: rgba(20, 20, 28, 0.78); }
.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    border-top: 1px solid var(--navy);
}
.step {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    padding: 40px 0;
    border-bottom: 1px solid var(--navy);
    align-items: start;
}
.step-marker {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
}
.step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 56px;
    line-height: 0.9;
    color: var(--navy);
    letter-spacing: -0.04em;
}
.step-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 600;
}
.step-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.018em;
    margin-bottom: 12px;
    max-width: 28ch;
}
.step-content h3 em {
    font-style: normal;
    background: var(--navy);
    padding: 1px 8px;
    color: var(--lima);
}
.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(20, 20, 28, 0.75);
    max-width: 56ch;
}


/* SEÇÃO · Comparativo (dark) */
.section-comparativo {
    background: var(--navy);
    color: var(--paper);
}
.section-comparativo .section-head h2 { color: var(--paper); }
.section-comparativo .section-head h2 em {
    background: var(--lima);
    color: var(--navy);
}
.compare-table {
    border-top: 1px solid var(--lima);
    border-bottom: 1px solid rgba(245, 244, 237, 0.15);
}
.compare-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    border-bottom: 1px solid rgba(245, 244, 237, 0.12);
}
.compare-row:last-child { border-bottom: 0; }
.compare-cell {
    padding: 24px 28px;
    font-size: 15.5px;
    line-height: 1.5;
}
.compare-cell-axis {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 244, 237, 0.55);
    font-weight: 500;
    padding-top: 28px;
    background: rgba(245, 244, 237, 0.03);
    border-right: 1px solid rgba(245, 244, 237, 0.1);
}
.compare-cell-left {
    color: rgba(245, 244, 237, 0.55);
    border-right: 1px solid rgba(245, 244, 237, 0.1);
    font-style: italic;
}
.compare-cell-right {
    color: var(--paper);
    background: rgba(165, 207, 59, 0.04);
}
.compare-row:hover .compare-cell-right { background: rgba(165, 207, 59, 0.09); }
.compare-row-head .compare-cell {
    padding: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--paper);
    font-style: normal;
}
.compare-row-head .compare-cell-axis { background: transparent; }
.compare-row-head .compare-cell-left { color: rgba(245, 244, 237, 0.7); }
.compare-row-head .compare-cell-right {
    color: var(--lima);
    background: transparent;
}
.compare-head-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(245, 244, 237, 0.55);
    font-weight: 500;
    margin-bottom: 10px;
}
.compare-row-head .compare-cell-right .compare-head-eyebrow { color: var(--lima); }




/* SEÇÃO · FAQ */
.section-faq { background: var(--paper); }
.faq-list { border-top: 1px solid var(--navy); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 56px 1fr 32px;
    gap: 18px;
    align-items: center;
    transition: padding-left 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { padding-left: 12px; padding-right: 12px; }
.faq-num {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--lima-deep);
    letter-spacing: 0.04em;
    font-weight: 600;
}
.faq-q {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.faq-toggle {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 300;
    color: var(--navy);
    text-align: right;
    transition: transform 0.25s ease;
    line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); color: var(--lima-deep); }
.faq-item[open] summary { background: var(--lima-soft); padding-left: 12px; padding-right: 12px; }
.faq-a {
    padding: 0 12px 28px 86px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 76ch;
}


/* SEÇÃO · CTA Final */
.section-cta {
    background: var(--navy-deep);
    color: var(--paper);
    border-bottom: 0;
}
.cta-final-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.section-cta .section-eyebrow { color: var(--lima); }
.section-cta .section-eyebrow::before { background: var(--lima); }
.section-cta h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.1;
    color: var(--paper);
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    max-width: 14ch;
}
.section-cta h2 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 8px;
    color: var(--navy);
}
.section-cta p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(245, 244, 237, 0.75);
    max-width: 46ch;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--carbon);
    border: 1px solid var(--lima);
    padding: 32px 28px 28px;
    border-radius: 16px;
}
.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cta-form input, .cta-form textarea {
    background: transparent;
    border: 1px solid rgba(245, 244, 237, 0.25);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 13px 14px;
    border-radius: 8px;
    transition: border-color 0.18s ease;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
    color: rgba(245, 244, 237, 0.45);
}
.cta-form input:focus, .cta-form textarea:focus {
    outline: none;
    border-color: var(--lima);
}
.cta-form textarea {
    resize: vertical;
    min-height: 80px;
}
.cta-form-submit {
    background: var(--lima);
    color: var(--navy);
    border-color: var(--lima);
    justify-content: center;
    margin-top: 4px;
    font-weight: 700;
}
.cta-form-submit:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--navy);
}
.cta-status {
    margin-top: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    line-height: 1.45;
    border: 1px solid rgba(245, 244, 237, 0.2);
    background: rgba(245, 244, 237, 0.05);
    color: var(--paper);
    display: none;
    border-radius: 8px;
}
.cta-status.is-success { display: block; border-color: var(--lima); color: var(--lima); }
.cta-status.is-error { display: block; border-color: #d9605c; color: #f7a09e; }


/* ============================================================
   FOOTER
   ============================================================ */
.ftr {
    background: var(--carbon);
    color: var(--paper);
    padding: 52px 0 22px;
}
.ftr-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.6fr 0.85fr 1.2fr;
    gap: 48px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 244, 237, 0.12);
}
.ftr-logo {
    height: 30px;
    width: auto;
    max-width: none;
    display: block;
    margin-bottom: 16px;
}
.ftr-tag {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(245, 244, 237, 0.65);
    max-width: 38ch;
}
.ftr-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--lima);
    margin-bottom: 14px;
    font-weight: 600;
}
.ftr-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ftr-col a {
    font-size: 12.5px;
    color: rgba(245, 244, 237, 0.78);
    transition: color 0.18s ease;
}
.ftr-col a:hover { color: var(--lima); }
.ftr-col:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.ftr-col:nth-child(2) .ftr-col-title {
    text-align: center;
    width: 100%;
}
.ftr-col:nth-child(2) ul {
    display: block;
    column-count: 2;
    column-gap: 24px;
    width: 100%;
}
.ftr-col:nth-child(2) ul li {
    margin-bottom: 8px;
    break-inside: avoid;
}
.ftr-addr {
    font-size: 11.5px;
    line-height: 1.5;
    color: rgba(245, 244, 237, 0.65);
}
.ftr-bottom {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(245, 244, 237, 0.5);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ftr-bottom-sep { color: var(--lima); }


/* ============================================================
   HAMBURGER (visível em mobile, drawer)
   ============================================================ */
.hdr-burger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--paper);
    border-radius: 999px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    position: relative;
    z-index: 100;
}
.hdr-burger svg { display: block; width: 18px; height: 18px; }
.hdr-burger:hover { background: var(--paper); color: var(--ink); }
body.is-doc-mode .hdr-burger { border-color: var(--ink); color: var(--ink); }
body.is-doc-mode .hdr-burger:hover { background: var(--ink); color: var(--paper); }
.hdr-burger .icon-close { display: none; }
.hdr-burger[aria-expanded="true"] .icon-open { display: none; }
.hdr-burger[aria-expanded="true"] .icon-close { display: block; }
.hdr-burger[aria-expanded="true"] {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}
body.is-doc-mode .hdr-burger[aria-expanded="true"] {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hdr-inner { padding: 12px 24px; }
    .hdr-burger { display: inline-flex; }

    /* Remove backdrop-filter em mobile pra o drawer fixed conseguir escapar do header */
    .hdr {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(8, 8, 14, 0.96);
    }
    body.is-doc-mode .hdr {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(245, 244, 237, 0.97);
    }

    /* Nav vira drawer overlay full-screen em mobile */
    .hdr-nav {
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 88px 28px 40px;
        z-index: 90;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        pointer-events: none;
        overflow-y: auto;
    }
    .hdr-nav.is-open { transform: translateY(0); pointer-events: auto; }
    .hdr-nav a.hdr-link,
    body.is-doc-mode .hdr-nav a.hdr-link {
        display: flex;
        font-family: var(--font-display);
        font-size: 22px;
        font-weight: 600;
        color: var(--paper);
        text-decoration: none;
        padding: 22px 8px;
        border-bottom: 1px solid rgba(245, 244, 237, 0.12);
        background: transparent;
        align-items: center;
        gap: 18px;
        letter-spacing: -0.015em;
        opacity: 1;
        border-radius: 0;
    }
    .hdr-nav a.hdr-link .hdr-icon,
    body.is-doc-mode .hdr-nav a.hdr-link .hdr-icon { width: 18px; height: 18px; color: var(--lima); flex-shrink: 0; }
    .hdr-nav a.hdr-link[aria-current="page"],
    body.is-doc-mode .hdr-nav a.hdr-link[aria-current="page"] { color: var(--lima); }
    body .hdr-nav a.hdr-cta {
        margin-top: 32px;
        background: var(--lima);
        color: var(--ink);
        border: 1px solid var(--lima);
        border-radius: 999px;
        font-family: var(--font-body);
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
    body .hdr-nav a.hdr-cta .hdr-icon { color: var(--ink); }

    body.has-drawer-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .cinema-tag { top: 64px; left: 20px; font-size: 10px; }
    .scene { padding: 64px 24px; }
    .scene-title { font-size: clamp(36px, 8vw, 64px); max-width: 22ch; }

    .doc-section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }

    .data-row { grid-template-columns: 40px 1fr 1fr; gap: 16px; padding: 20px 4px; }
    .data-row .data-cell-use { grid-column: 2 / span 2; padding-top: 0; }
    .data-row-head .data-cell-use { display: none; }

    .step { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
    .step-marker { flex-direction: row; align-items: baseline; gap: 14px; }
    .step-num { font-size: 38px; }

    .compare-row { grid-template-columns: 120px 1fr 1fr; }
    .compare-cell { padding: 18px 18px; font-size: 14.5px; }
    .compare-cell-axis { padding: 22px 14px; font-size: 10px; }
    .compare-row-head .compare-cell { padding: 22px 18px; }

    .persona-block { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
    .persona-block-tag { padding-top: 0; }
    .persona-block p { font-size: 16px; }

    .cta-final-inner { grid-template-columns: 1fr; gap: 36px; }
    .section-cta h2 { max-width: 20ch; }
    .ftr-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .scene { padding: 56px 20px; }
    .scene-title { font-size: clamp(32px, 9vw, 48px); }
    .scene-lede { font-size: 15.5px; }
    .payoff-ficha { box-shadow: 6px 6px 0 var(--lima); }
    .payoff-ctas { flex-direction: column; }
    .payoff-ctas .btn-primary, .payoff-ctas .btn-quiet { width: 100%; justify-content: center; }

    .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-item summary { grid-template-columns: 38px 1fr 24px; gap: 10px; padding: 18px 0; }
    .faq-q { font-size: 16px; }
    .faq-a { padding-left: 48px; }
    .cta-form-row { grid-template-columns: 1fr; }
    .ftr-bottom { font-size: 9.5px; gap: 8px; }

    /* Data sheet — stacked */
    .data-row { grid-template-columns: 40px 1fr; gap: 12px; padding: 18px 4px; }
    .data-row .data-cell-origin,
    .data-row .data-cell-use { grid-column: 2; padding-top: 0; }
    .data-row-head { display: none; }
    .data-cell-field strong { font-size: 17px; }

    /* Compare — stacked */
    .compare-row { grid-template-columns: 1fr; border-bottom-width: 0; padding-bottom: 8px; }
    .compare-row + .compare-row { border-top: 1px solid rgba(245, 244, 237, 0.12); padding-top: 16px; }
    .compare-cell { border-right: 0 !important; padding: 10px 8px; }
    .compare-cell-axis {
        background: transparent;
        padding: 8px 8px 0;
        font-size: 10.5px;
        color: var(--lima);
    }
    .compare-cell-left, .compare-cell-right {
        position: relative;
        padding-left: 30px;
    }
    .compare-cell-right { background: rgba(165, 207, 59, 0.06); }
    .compare-cell-left::before {
        content: "A"; position: absolute; left: 8px; top: 12px;
        font-family: var(--font-mono); font-size: 11px;
        color: rgba(245, 244, 237, 0.4); font-weight: 600;
    }
    .compare-cell-right::before {
        content: "B"; position: absolute; left: 8px; top: 12px;
        font-family: var(--font-mono); font-size: 11px;
        color: var(--lima); font-weight: 600;
    }
    .compare-row-head { display: none; }
}


/* ============================================================
   PÁGINAS LEGAIS (mantém compat)
   ============================================================ */
.legal-hero {
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--rule);
}
.legal-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin: 18px 0 28px;
    max-width: 18ch;
}
.legal-hero h1 em {
    font-style: normal;
    background: var(--lima);
    padding: 0 8px;
}
.legal-meta {
    display: flex; flex-wrap: wrap; gap: 28px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    max-width: 900px;
}
.legal-meta strong {
    color: var(--lima-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10.5px;
    margin-right: 6px;
}
.legal-body { padding: 56px 0 96px; background: var(--paper); }
.legal-body .container { max-width: 780px; }
.legal-body p { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 16px; }
.legal-body a { color: var(--lima-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.legal-body a:hover { color: var(--navy); }
.legal-rule { border: 0; height: 1px; background: var(--rule); margin: 36px 0; }
.legal-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin: 44px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
}
.legal-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--navy);
    margin: 28px 0 10px;
    letter-spacing: -0.01em;
}
.legal-body strong { color: var(--navy); font-weight: 600; }

/* ─── Cena 5 — animação ficha (typing → reveal cascade → pulse situação → hover check) ─── */

/* Estado inicial das linhas (só quando JS está ligado) */
.has-js .payoff-ficha-body .payoff-row {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.payoff-ficha-body.is-revealed .payoff-row {
    opacity: 1;
    transform: translateY(0);
}
.payoff-ficha-body.is-revealed .payoff-row:nth-child(1) { transition-delay: 0ms; }
.payoff-ficha-body.is-revealed .payoff-row:nth-child(2) { transition-delay: 350ms; }
.payoff-ficha-body.is-revealed .payoff-row:nth-child(3) { transition-delay: 700ms; }
.payoff-ficha-body.is-revealed .payoff-row:nth-child(4) { transition-delay: 1050ms; }
.payoff-ficha-body.is-revealed .payoff-row:nth-child(5) { transition-delay: 1400ms; }

/* Pulso na Situação cadastral depois do reveal */
.payoff-ficha-body.is-revealed .payoff-row.hl .v.status {
    animation: payoff-pulse 1.8s ease-in-out 2100ms infinite;
}
@keyframes payoff-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hover row */
.payoff-row {
    position: relative;
    cursor: default;
    transition: background-color 0.2s ease;
}
.payoff-row:not(.hl):hover {
    background-color: rgba(165, 207, 59, 0.10);
}

/* Check que desliza ao hover (só linhas não-hl) */
.payoff-check {
    position: absolute;
    right: -22px;
    top: 50%;
    color: var(--lima-deep);
    font-size: 15px;
    font-weight: 800;
    opacity: 0;
    transform: translate(8px, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    line-height: 1;
}
.payoff-row:hover .payoff-check {
    opacity: 1;
    transform: translate(0, -50%);
}

/* Caret no CNPJ enquanto digita */
#payoff-cnpj-id.is-typing::after {
    content: '▎';
    display: inline-block;
    margin-left: 2px;
    color: var(--lima);
    animation: payoff-caret 0.75s steps(2) infinite;
    transform: translateY(-1px);
}
@keyframes payoff-caret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Inline links sutis dentro do cinema scrollytelling */
.scene a.scene-inline {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    opacity: 0.72;
    padding-bottom: 1px;
    transition: opacity 0.2s ease, border-bottom-style 0.2s ease;
}
.scene a.scene-inline:hover,
.scene a.scene-inline:focus-visible {
    opacity: 1;
    border-bottom-style: solid;
}

/* ============================================================
   /campos/ — Catálogo de endpoints (documento-tipográfico)
   ============================================================ */
.catalog-hero {
    padding: 96px 0 56px;
    background: var(--paper);
}
.catalog-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 22ch;
}
.catalog-hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, transparent 62%, var(--lima) 62%);
    padding: 0 8px;
    color: inherit;
}
.catalog-hero .section-lede {
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 60ch;
}
.catalog-hero .section-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lima-deep);
    display: inline-block;
    margin-bottom: 16px;
}

/* Índice */
.catalog-index {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper-soft);
}
.catalog-index ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.catalog-index li {
    border-bottom: 1px dashed var(--rule);
}
.catalog-index li:last-child {
    border-bottom: 0;
}
.catalog-index li a {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 24px;
    padding: 18px 0;
    text-decoration: none;
    color: var(--ink);
    align-items: center;
    transition: background 0.18s ease, padding 0.18s ease;
}
.catalog-index li a:hover {
    background: rgba(165, 207, 59, 0.10);
    padding-left: 12px;
    padding-right: 12px;
}
.idx-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--lima-deep);
    letter-spacing: 0.04em;
}
.idx-q {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.25;
    color: var(--ink);
}
.idx-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.3;
}
.idx-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lima-deep);
    padding: 3px 8px;
    border: 1px solid var(--lima-deep);
}

/* Endpoint entries */
.catalog-entry {
    padding: 96px 0;
    border-bottom: 1px solid var(--rule-strong);
    background: var(--paper);
}
.catalog-entry:last-of-type {
    border-bottom: 0;
}
.catalog-entry--differential {
    background: var(--paper-soft);
}
.catalog-entry-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.catalog-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(80px, 10vw, 140px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--lima-deep);
    position: sticky;
    top: 100px;
}
.catalog-entry-head {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.catalog-question-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.35;
    color: var(--ink-soft);
    margin: 6px 0 0;
}
.catalog-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--lima-deep);
    padding: 4px 10px;
    border: 1px solid var(--lima-deep);
    border-radius: 2px;
    display: inline-block;
}
.catalog-question {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 8px 0 0;
}
.catalog-narrative {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    max-width: 62ch;
    margin: 0 0 40px;
    color: var(--ink);
}
.catalog-fields {
    margin-bottom: 32px;
}
.catalog-fields h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 0 0 16px;
}
.catalog-fields ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.catalog-fields li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.catalog-fields li:last-child {
    border-bottom: 0;
}
.catalog-fields strong {
    font-weight: 700;
    color: var(--ink);
    margin-right: 10px;
}
.catalog-usecase {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    padding: 18px 0 0;
    border-top: 1px solid var(--rule);
    margin: 0;
}
.catalog-usecase-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lima-deep);
    margin-right: 14px;
    display: inline-block;
}

/* Blocos narrativos longos (comparativo, como-funciona, etc.) */
.section-narrativa-comparativo {
    background: var(--paper-soft);
    padding: 88px 0 96px;
}
.narrativa-bloco {
    max-width: 68ch;
    margin: 0 auto 56px;
}
.narrativa-bloco:last-child {
    margin-bottom: 0;
}
.narrativa-bloco h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
}
.narrativa-bloco p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 18px;
}
.narrativa-bloco p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .catalog-entry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .catalog-num {
        position: static;
        font-size: 64px;
        line-height: 1;
    }
    .catalog-index li a {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }
    .catalog-index .idx-sub,
    .catalog-index .idx-tag {
        grid-column: 2;
        justify-self: start;
    }
    .catalog-entry { padding: 64px 0; }
    .catalog-hero { padding: 64px 0 32px; }
}

