/* =====================================================================
   joaoaso.com — Folha de estilo
   Identidade: navy profundo + off-white, tipografia serif/sans, minimalista.
   ===================================================================== */

:root {
    /* Paleta REAL do tema (extraída do código-fonte do site) */
    --navy:        #091214;   /* fundo escuro das bandas de vídeo (home/CTA) */
    --navy-800:    #0b1518;
    --navy-700:    #14252a;
    --ink:         #332222;   /* texto principal — castanho quente escuro */
    --heading:     #0a0a0a;   /* títulos — quase preto */
    --muted:       #6f635c;   /* texto secundário — cinza quente */
    --line:        #e7e0d8;   /* linhas / bordas quentes */
    --paper:       #ffffff;
    --paper-2:     #ebe6da;   /* creme quente (secções alt / footer-subscribe) */
    --gold:        #b2998f;   /* ACENTO real: taupe quente (botões, links, hover) */
    --accent-ink:  #b2998f;   /* castanho/taupe da marca (igual a --gold) */
    --lime:        #c4e290;   /* acento verde-lima APENAS sobre bandas escuras */
    --accent-hover:#0a0707;   /* hover dos botões (quase preto) */
    --white:       #ffffff;

    --maxw: 1280px;
    --radius: 4px;
    --ease: cubic-bezier(.16,.84,.44,1);

    /* Tipografia REAL do tema Consultify:
       logo = Syncopate · títulos display = Hepta Slab · H1 = Plus Jakarta · corpo/headings = Jost */
    --font-serif: "Hepta Slab", Georgia, serif;      /* títulos display (heros) */
    --font-sans:  "Jost", system-ui, sans-serif;     /* corpo + h3/h4 */
    --font-h1:    "Plus Jakarta Sans", sans-serif;   /* H1 de página */
    --font-logo:  "Syncopate", sans-serif;           /* logótipo */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2 { font-family: var(--font-serif); font-weight: 300; line-height: 1.08; color: var(--heading); letter-spacing: -0.03em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 200; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3, h4 { font-family: var(--font-sans); color: var(--heading); font-weight: 400; line-height: 1.2; }
h3 { font-size: 1.3rem; }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

.eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .74rem;
    font-weight: 600;
    color: var(--accent-ink);
    margin-bottom: 1rem;
    display: inline-block;
}

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--font-sans);
    font-size: .92rem; font-weight: 500;
    padding: .85em 1.6em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
    white-space: nowrap;
}
.btn { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 500; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #fff; }
.btn-light { background: var(--gold); color: #fff; }
.btn-light:hover { background: var(--accent-hover); color: #fff; }
.btn:focus-visible { outline: 2px solid var(--accent-hover); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--font-logo); font-size: 1.25rem; font-weight: 700; color: var(--heading); letter-spacing: .01em; text-transform: uppercase; }
.brand-dot { color: var(--gold); }
.brand--footer { font-size: 1rem; color: var(--heading); }

.main-nav { display: flex; gap: 2rem; }
.main-nav a { font-size: .93rem; font-weight: 500; color: var(--ink); position: relative; }
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
    background: var(--gold); transition: width .28s var(--ease);
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-switch { display: flex; gap: .35rem; font-size: .78rem; font-weight: 600; color: var(--muted); }
.lang-switch a { padding: .15rem .3rem; letter-spacing: .04em; }
.lang-switch a.is-active { color: var(--navy); }
.lang-switch a:not(.is-active):hover { color: var(--gold); }
.btn-cta { padding: .6em 1.25em; font-size: .86rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .3s var(--ease); }

.mobile-nav { display: none; flex-direction: column; gap: .3rem; padding: 1rem 28px 1.6rem; border-bottom: 1px solid var(--line); background: var(--white); }
.mobile-nav a { padding: .7rem 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 1rem; justify-content: center; }
.mobile-nav.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: clamp(5rem, 12vh, 9rem) 0 clamp(4.5rem, 10vh, 8rem);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(60% 80% at 85% 10%, rgba(185,150,83,.12), transparent 60%),
        radial-gradient(50% 60% at 10% 100%, rgba(29,55,96,.6), transparent 70%);
    pointer-events: none;
}
.hero .container { position: relative; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .eyebrow { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.78); font-size: 1.2rem; max-width: 52ch; margin-top: 1.6rem; }
.hero-actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { margin-top: 3.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.6); font-size: .9rem; letter-spacing: .02em; }

/* ---------- Secções ---------- */
.section { padding: clamp(4rem, 9vh, 7rem) 0; }
.section--alt { background: var(--paper-2); }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head p { margin-top: 1rem; font-size: 1.1rem; }

/* ---------- Grelha de serviços / cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.9rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -28px rgba(14,31,58,.4); border-color: transparent; }
.card .num { font-family: var(--font-serif); font-size: 1rem; color: var(--gold); font-weight: 600; }
.card h3 { margin: .6rem 0 .7rem; color: var(--navy); }
.card p { font-size: .97rem; }

/* ---------- Processo ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.process .step { padding: 1.8rem 0 0; border-top: 2px solid var(--navy); }
.process .step .idx { font-family: var(--font-serif); color: var(--gold); font-size: 1.1rem; font-weight: 600; }
.process .step h3 { margin-top: .5rem; font-size: 1.15rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: clamp(3rem, 7vh, 5rem); text-align: center; }
.cta-band h2 { color: var(--white); max-width: 24ch; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,.75); margin: 1.2rem auto 2.2rem; max-width: 46ch; }

/* ---------- Página / prosa ---------- */
.page-hero { background: var(--paper-2); padding: clamp(4rem, 9vh, 6.5rem) 0 clamp(3rem, 6vh, 4.5rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { font-size: 1.2rem; max-width: 60ch; margin-top: 1.3rem; }
.prose { max-width: 68ch; }
.prose p { font-size: 1.08rem; margin-bottom: 1.3rem; color: var(--ink); }
.prose h2 { margin: 2.4rem 0 1rem; }

/* ---------- Insights list ---------- */
.post-list { display: grid; gap: 1.6rem; }
.post-item { padding: 1.8rem 0; border-bottom: 1px solid var(--line); display: grid; gap: .5rem; }
.post-item time { font-size: .82rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }
.post-item h3 { font-size: 1.4rem; }
.post-item:hover h3 { color: var(--navy-700); }

/* ---------- Formulário de contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info .info-line { display: block; margin: .5rem 0; color: var(--ink); font-weight: 500; }
.contact-info .muted { color: var(--muted); font-weight: 400; }

.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.field input, .field select, .field textarea {
    font-family: var(--font-sans); font-size: .97rem; color: var(--ink);
    padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--white); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,31,58,.08);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error { color: #b3261e; font-size: .8rem; }
.hp { position: absolute; left: -9999px; }
.alert-success {
    background: #edf7ee; border: 1px solid #cde9d0; color: #1f6b2b;
    padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .96rem;
}

/* ---------- Footer (minimal, como o original) ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 2.2rem 0; margin-top: 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-copy { font-family: var(--font-sans); font-size: .78rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: #353535; }
.footer-langs { display: flex; gap: 1.2rem; font-size: .82rem; }
.footer-langs a { color: var(--muted); }
.footer-langs a.is-active, .footer-langs a:hover { color: var(--heading); }

/* ---------- Hero com vídeo ---------- */
.hero--video { position: relative; display: flex; align-items: center; min-height: 88vh; padding: 0; }
/* Heros de página interior: mais respiração (topo e fundo) */
.hero--page { min-height: auto; align-items: center; padding: clamp(6rem, 13vh, 10rem) 0 clamp(5rem, 10vh, 8rem); }
.hero--page .hero-sub { margin-top: 2rem; }
.hero--page .hero-actions { margin-top: 3rem; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(9,18,20,.52), rgba(9,18,20,.40) 45%, rgba(9,18,20,.74)); }
.hero-content { position: relative; z-index: 2; }
.hero--video h1 { color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- Section heads ---------- */
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-actions { text-align: center; margin-top: 2.6rem; }

/* ---------- Focus grid (áreas com imagem) ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.focus-card { display: block; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--navy); }
.focus-img { height: 340px; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.focus-card:hover .focus-img { transform: scale(1.06); }
.focus-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,20,40,.85)); }
.focus-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.3rem;
    display: flex; justify-content: space-between; align-items: flex-end; gap: .5rem;
    color: #fff; font-family: var(--font-serif); font-size: 1.18rem; font-weight: 500; line-height: 1.2; }
.focus-arrow { color: var(--gold); font-size: 1rem; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.focus-card:hover .focus-arrow { opacity: 1; transform: none; }

/* ---------- Split (texto + media) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split--reverse .split-media, .split--reverse .about-gallery { order: -1; }
.split-text .eyebrow { display: block; }
.split-text h2 { margin-bottom: 1.1rem; }
.split-media img { width: 100%; border-radius: var(--radius); display: block; }
.chip-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.6rem 0 2rem; }
.chip { font-size: .82rem; font-weight: 500; color: var(--navy); background: #fff; border: 1px solid var(--line);
    padding: .45em .95em; border-radius: 100px; }

/* ---------- About gallery ---------- */
.about-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-gallery .ag-0 { grid-row: span 2; height: 100%; }

/* ---------- Tabs ---------- */
.tabs { margin: 1.4rem 0 2rem; }
.tab-btns { display: flex; gap: 1.6rem; border-bottom: 1px solid var(--line); margin-bottom: 1.3rem; }
.tab-btn { background: none; border: none; padding: .2rem 0 .9rem; font-family: var(--font-sans); font-size: .92rem;
    font-weight: 500; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.is-active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel p { font-size: 1.12rem; color: var(--ink); font-family: var(--font-serif); font-style: italic; line-height: 1.5; }

/* ---------- CTA vídeo ---------- */
.cta-video { position: relative; display: flex; align-items: center; min-height: 62vh; overflow: hidden; background: var(--navy); }
.cta-video-content { position: relative; z-index: 2; text-align: center; max-width: 60ch; margin: 0 auto; padding: 4rem 0; }
.cta-video-content .eyebrow { color: var(--gold); }
.cta-video-content h2 { color: #fff; }
.cta-video-content p { color: rgba(255,255,255,.8); margin: 1.3rem auto 2rem; }

/* ---------- Advisory list (página) ---------- */
.pillar-block { padding: 2.5rem 0 .5rem; }
.pillar-block:first-child { padding-top: 0; }
.pillar-eyebrow { display: block; color: var(--gold); font-family: var(--font-sans); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; padding-bottom: 1rem; border-bottom: 2px solid var(--gold); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
.svc-row:nth-of-type(even) .svc-media { order: -1; }
.svc-media img { width: 100%; border-radius: var(--radius); display: block; aspect-ratio: 4/3; object-fit: cover; }
.svc-text .eyebrow { display: block; }
.svc-text .svc-sub { color: var(--gold); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.svc-text h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.svc-text .svc-lead { font-size: 1.1rem; color: var(--navy); font-weight: 500; margin-bottom: .8rem; }
.svc-text p { font-size: 1rem; }
.svc-text .btn { margin-top: 1.4rem; }

/* ---------- Hero de página com foto ---------- */
.hero--page { min-height: 62vh; }
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero--page .hero-overlay { background: linear-gradient(180deg, rgba(10,20,40,.78), rgba(10,20,40,.66)); }
.hero--page .eyebrow { color: var(--gold); display: inline-block; }

/* ---------- Diagnóstico / programas ---------- */
.diag { max-width: 70ch; }
.diag-text { font-size: 1.25rem; font-family: var(--font-serif); color: var(--navy); line-height: 1.45; }
.card--program .num { display: block; margin-bottom: .4rem; }
.cta-video--solid { background: var(--navy); min-height: auto; }
.cta-video--solid .cta-video-content { padding: clamp(3rem,7vh,5rem) 0; }

/* ---------- Insights grid ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.insight-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -28px rgba(14,31,58,.4); }
.insight-img { height: 190px; background-size: cover; background-position: center; background-color: var(--navy); }
.insight-body { padding: 1.5rem; }
.insight-body time { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; }
.insight-body h3 { font-size: 1.3rem; margin: .5rem 0 .6rem; }
.insight-body p { font-size: .95rem; }

/* ---------- Animações de entrada (progressive enhancement) ---------- */
/* Sem JS o conteúdo é sempre visível; a animação só existe com .js no <html>. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Acentos: verde-lima sobre escuro, verde-escuro sobre claro ---------- */
.card .num, .svc-text .svc-sub, .post-item time, .insight-body time,
.process .step .idx, .diag .eyebrow { color: var(--accent-ink); }
.lang-switch a:not(.is-active):hover { color: var(--accent-ink); }
.brand-dot { color: var(--accent-ink); }
.brand--footer .brand-dot { color: var(--gold); }
.main-nav a::after { background: var(--accent-ink); }
/* contextos escuros mantêm o verde-lima */
.footer-nav a:hover, .footer-contact a:hover,
.hero .eyebrow, .hero--page .eyebrow, .cta-video-content .eyebrow,
.focus-arrow { color: var(--gold); }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
    .main-nav, .btn-cta { display: none; }
    .nav-toggle { display: flex; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.8rem; }
    .form .row { grid-template-columns: 1fr; }
    .focus-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split--reverse .split-media, .split--reverse .about-gallery { order: 0; }
    .svc-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.4rem 0; }
    .svc-row:nth-of-type(even) .svc-media { order: 0; }
    .insight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .process { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
}

/* ============ Cross-Border ============ */
.cb-caps { margin-top: 1rem; }
.cb-caps-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
.cb-cap { display: inline-block; padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-sans); font-size: .82rem; color: var(--ink); background: var(--paper); }
.cb-desks { gap: 2.2rem; }
.cb-desk { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.cb-desk-media { height: 190px; background-size: cover; background-position: center; }
.cb-desk-body { padding: 1.6rem 1.7rem 1.9rem; }
.cb-corridor { display: inline-block; font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--accent-ink); text-transform: uppercase; margin-bottom: .5rem; }
.cb-desk-body h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.cb-desk-body .cb-lead { font-weight: 500; color: var(--heading); margin-bottom: .7rem; }
.cb-desk-body p { color: var(--muted); }


@media (max-width: 860px) {
    .cb-desks { grid-template-columns: 1fr; }
}

/* ============ Business Scale ============ */
.bs-kicker { font-family: var(--font-serif); font-size: 1.35rem; color: var(--heading); line-height: 1.3; margin-bottom: 1.6rem; }
.bs-lead { font-size: 1.35rem; color: var(--heading); font-family: var(--font-serif); line-height: 1.3; margin-bottom: 1.2rem; }
.bs-list-label { font-weight: 600; color: var(--heading); margin: 1.2rem 0 .6rem; }
.bs-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.bs-list li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; color: var(--ink); }
.bs-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.bs-list--light li { color: rgba(255,255,255,.82); }

/* Processo numerado vertical */
.proc-steps { list-style: none; margin: 0; padding: 0; }
.proc-step { display: flex; gap: 1.4rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.proc-step:last-child { border-bottom: 0; }
.proc-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--gold); min-width: 2.6rem; line-height: 1; }
.proc-body h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.proc-body p { color: var(--muted); }
.bs-diag-split { align-items: start; }

/* Bandas escuras */
.section--dark { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
.section--dark::before { content: ""; position: absolute; inset: 0; background: var(--bs-bg) center/cover no-repeat; z-index: 0; }
.bs-dark-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9,18,20,.82), rgba(9,18,20,.9)); }
.bs-dark-inner { position: relative; z-index: 2; }
.section--dark h2 { color: #fff; }
.section--dark .eyebrow { color: var(--gold); }
.bs-final-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.bs-final-kicker { color: var(--gold); font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.bs-final-text { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 1.2rem 0 2rem; }

/* Banda typeout */
.typeout-band { background: var(--paper-2); padding: clamp(3rem, 7vh, 5rem) 0; text-align: center; }
.typeout-title { font-family: var(--font-serif); font-weight: 300; color: var(--heading); font-size: clamp(1.8rem, 4vw, 3rem); }
.typeout { color: var(--gold); }
.typeout-cursor { color: var(--gold); font-weight: 300; animation: bs-blink 1s step-end infinite; }
@keyframes bs-blink { 50% { opacity: 0; } }

/* ============ Advisory (rico) ============ */
.adv-caps-band { background: var(--navy); color: #fff; padding: 0; }
.adv-caps { display: grid; grid-template-columns: repeat(4, 1fr); }
.adv-cap { padding: 2.4rem 1.6rem; border-right: 1px solid rgba(255,255,255,.1); }
.adv-cap:last-child { border-right: 0; }
.adv-cap-num { font-family: var(--font-serif); font-size: 1rem; color: var(--gold); }
.adv-cap h4 { color: #fff; margin: .6rem 0 .5rem; font-size: 1.05rem; }
.adv-cap p { color: rgba(255,255,255,.6); font-size: .9rem; }

.pillar-head { max-width: 60ch; margin-bottom: 2.5rem; }
.pillar-head h2 { margin: .8rem 0 .8rem; }
.pillar-head p { font-size: 1.1rem; }

.svc-service { display: block; font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: .7rem; }
.svc-text .svc-lead { font-size: 1.2rem; color: var(--heading); font-family: var(--font-serif); line-height: 1.35; margin: .3rem 0 1rem; }
.svc-explore { display: inline-flex; align-items: center; gap: .5em; margin-top: 1.2rem; font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--heading); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.svc-explore:hover { color: var(--gold); }

/* Cartões de Insights */
.adv-insights-head { align-items: end; margin-bottom: 2.5rem; }
.adv-insights-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.insight-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -28px rgba(14,31,58,.4); }
.insight-card-media { height: 170px; background-size: cover; background-position: center; }
.insight-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.insight-card-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.insight-card-body p { color: var(--muted); font-size: .92rem; }

@media (max-width: 860px) {
    .adv-caps { grid-template-columns: 1fr 1fr; }
    .adv-cap { border-bottom: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 520px) {
    .adv-caps { grid-template-columns: 1fr; }
}

/* ============ Acessibilidade ============ */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--heading); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--radius) 0; font-size: .85rem; }
.skip-link:focus { left: 0; }
.main-nav a:focus-visible, .lang-switch a:focus-visible, .footer-langs a:focus-visible, .svc-explore:focus-visible, a.insight-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
