/* ===========================================================================
   Consultoria — sistema de design "premium sóbrio"
   Azul-marinho e dourado sobre marfim, títulos com serifa, só tema claro.
   As cores de gráfico (--series-*) são a paleta validada para daltonismo;
   não trocar sem revalidar.
   =========================================================================== */

:root {
    color-scheme: light;

    --surface-0: #faf8f4;   /* marfim — fundo da página */
    --surface-1: #ffffff;   /* cartão */
    --surface-2: #f3efe7;
    --surface-3: #e9e3d7;

    --ink-1: #16202e;
    --ink-2: #4f5663;
    --ink-3: #7d828c;

    --line: #e7e1d5;
    --line-strong: #d6cebe;

    --navy: #13294b;
    --navy-2: #0c1d38;
    --gold: #b8975f;        /* dourado decorativo: filetes, números, detalhes */
    --gold-ink: #8a6d3b;    /* dourado para texto sobre claro (contraste 4,6:1) */

    --accent: #1d3a64;
    --accent-hover: #13294b;
    --accent-ink: #ffffff;
    --accent-soft: #eaeef5;

    --good: #0f7a4d;
    --good-soft: #e6f4ed;
    --warn: #9a6a00;
    --warn-soft: #fbf1dc;
    --bad: #b03232;
    --bad-soft: #fbeaea;

    /* categóricas dos gráficos — ordem fixa, cor segue a entidade */
    --series-1: #2a78d6;
    --series-2: #eb6834;
    --series-3: #1baf7a;
    --series-4: #eda100;
    --series-5: #e87ba4;

    --grid: #eeebe4;

    --serif: "Playfair Display", Georgia, "Times New Roman", serif;

    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
    --shadow-1: 0 1px 2px rgba(19, 41, 75, .05);
    --shadow-2: 0 12px 34px rgba(19, 41, 75, .10);

    --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--surface-0);
    color: var(--ink-1);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: min(var(--maxw), 92vw); margin: 0 auto; }
.narrow { width: min(760px, 92vw); margin: 0 auto; }

.skip {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--accent); color: var(--accent-ink); padding: 10px 16px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------------- tipografia ---------------- */

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 620; letter-spacing: -.015em; line-height: 1.2; color: var(--ink-1); }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.15; }
h3 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: .74rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-ink); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); flex: none; }
.lead { font-size: 1.14rem; color: var(--ink-2); max-width: 64ch; }
.sub { color: var(--ink-2); max-width: 72ch; margin: 0 0 32px; }
.muted { color: var(--ink-3); }
.num { font-variant-numeric: tabular-nums; }

/* ---------------- topo ---------------- */

.topbar {
    position: sticky; top: 0; z-index: 60;
    background: color-mix(in srgb, var(--surface-0) 88%, transparent);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; gap: 10px; height: 66px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink-1); }
.brand:hover { text-decoration: none; }
/* Logo DC (monograma dourado no círculo preto, PNG com fundo transparente). */
.brand .mark { width: 44px; height: 44px; border-radius: 50%; display: block; flex: none; }
.brand .nome { display: flex; flex-direction: column; line-height: 1.15; }
.brand .nome strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.brand .nome small { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }

.navlinks { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.navlinks a {
    color: var(--ink-2); font-size: .9rem; font-weight: 520;
    padding: 8px 12px;
}
.navlinks a:hover { color: var(--ink-1); text-decoration: none; box-shadow: inset 0 -1px 0 var(--gold); }
.navlinks a.on { color: var(--ink-1); font-weight: 600; box-shadow: inset 0 -2px 0 var(--gold); }

.nav-cta { margin-left: 14px; }

/* Menu do celular (☰). Sem JavaScript (sem .js-menu no <html>) o menu fica aberto, como antes. */
.menu-btn { display: none; }
.so-menu-celular { display: none; }
@media (max-width: 860px) {
    .topbar .container { height: auto; padding-top: 12px; padding-bottom: 8px; flex-wrap: wrap; }
    .navlinks { width: 100%; margin-left: 0; overflow-x: auto; order: 3; }
    .nav-cta { margin-left: auto; }

    .js-menu .topbar .container { flex-wrap: wrap; min-height: 64px; }
    .js-menu .nav-cta { display: none; }              /* o WhatsApp flutuante e o item do menu já cumprem o papel */
    .js-menu .ig { order: 1; margin-left: auto; }     /* Instagram e ☰ no canto direito, ☰ por último */
    .js-menu .menu-btn {
        order: 2;
        display: grid; gap: 5px; place-content: center; width: 42px; height: 42px; margin-left: 8px;
        border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: transparent; cursor: pointer;
    }
    .js-menu .menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink-1); transition: transform .2s, opacity .2s; }
    .js-menu .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .js-menu .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .js-menu .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .js-menu .navlinks { display: none; flex-direction: column; align-items: stretch; gap: 0; overflow: visible; padding: 6px 0 10px; }
    .js-menu .navlinks.aberto { display: flex; }
    .js-menu .navlinks a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .js-menu .navlinks a.on { box-shadow: inset 3px 0 0 var(--gold); padding-left: 12px; }
    .js-menu .navlinks .so-menu-celular { display: block; text-align: center; margin-top: 12px; border-bottom: 0; color: #fff; }
}

/* ---------------- botões ---------------- */

.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 14px 26px; border-radius: var(--r-sm); border: 1px solid transparent;
    background: var(--navy); color: #fff;
    font: inherit; font-weight: 600; font-size: .93rem; letter-spacing: .02em; cursor: pointer;
    transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--navy-2); text-decoration: none; box-shadow: var(--shadow-1); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink-1); border-color: var(--line-strong); }
.btn.ghost:hover { border-color: var(--navy); background: var(--surface-1); }
.btn.gold { background: var(--gold); color: var(--navy-2); }
.btn.gold:hover { background: #c6a770; }
.btn.claro { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn.claro:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn.sm { padding: 8px 14px; font-size: .88rem; border-radius: var(--r-sm); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------- seções ---------------- */

section { padding: 72px 0; }
section.tight { padding: 48px 0; }
section + section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 36px; }

/* ---------------- hero ---------------- */

.hero {
    padding: 84px 0 104px;
    background: var(--surface-0);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero h1 { max-width: 14ch; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-ink); }
.hero .lead { margin-bottom: 36px; max-width: 46ch; }
.hero-contato { margin-top: 26px; font-size: .9rem; color: var(--ink-3); }
.hero-contato a { color: var(--ink-1); font-weight: 600; }

/* retrato do topo, com o filete dourado deslocado atrás */
.hero-retrato { justify-self: center; width: min(380px, 84%); }
/* o filete fica preso só à foto, para não atravessar a legenda embaixo */
.hero-retrato .moldura { position: relative; }
.hero-retrato .moldura::before {
    content: ""; position: absolute; inset: 20px -20px -20px 20px;
    border: 1px solid var(--gold); z-index: 0;
}
.hero-retrato .retrato {
    position: relative; z-index: 1; max-width: none; width: 100%;
    aspect-ratio: 4 / 5; border-radius: 0; box-shadow: var(--shadow-2);
}
.hero-legenda { margin-top: 40px; padding-left: 4px; }
.hero-legenda strong { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.hero-legenda span { font-size: .84rem; color: var(--ink-3); }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-stats div { min-width: 140px; }
.hero-stats .v { font-size: 1.7rem; font-weight: 680; letter-spacing: -.03em; display: block; }
.hero-stats .k { font-size: .86rem; color: var(--ink-2); }

/* ---------------- figuras ---------------- */

figure { margin: 0; }

.figura {
    background: var(--surface-1); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 26px 28px; box-shadow: var(--shadow-1);
    color: var(--ink-2);
}
.figura svg { width: 100%; height: auto; display: block; overflow: visible; }
.figura svg text { font-family: inherit; }
.figura figcaption {
    margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line);
    font-size: .875rem; color: var(--ink-3); line-height: 1.55;
}

.figura-nua { color: var(--ink-2); }
.figura-nua svg { width: 100%; height: auto; display: block; overflow: visible; }

/* ---------------- retrato ---------------- */

.retrato {
    position: relative; width: 100%; max-width: 300px; aspect-ratio: 1;
    border-radius: var(--r-md); overflow: hidden;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    box-shadow: var(--shadow-2); display: grid; place-items: center;
}
/* o rosto fica no terço de cima da foto: o recorte segura essa faixa */
.retrato img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.retrato-g { max-width: 360px; }

/* enquanto não há foto: iniciais em dourado, com serifa, sobre o marinho */
.monograma {
    font-family: var(--serif); font-size: clamp(3.2rem, 10vw, 5.5rem); font-weight: 500;
    letter-spacing: .06em; color: var(--gold); user-select: none;
}

.perfil { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
@media (max-width: 760px) { .perfil { grid-template-columns: 1fr; gap: 28px; } }

.perfil-nome { font-size: 1.7rem; letter-spacing: -.035em; margin: 0 0 4px; }
.perfil-cargo { color: var(--ink-2); font-size: 1rem; margin: 0 0 22px; }
.perfil p { color: var(--ink-2); max-width: 66ch; }

.principios { list-style: none; margin: 0; padding: 0; }
.principios li {
    position: relative; padding-left: 26px; margin-bottom: 11px;
    color: var(--ink-2); font-size: .95rem;
}
.principios li::before {
    content: ""; position: absolute; left: 4px; top: .48em;
    width: 7px; height: 7px; transform: rotate(45deg);
    background: var(--gold);
}

.contatos { display: grid; gap: 2px; margin-top: 4px; }
.contatos div { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.contatos div:last-child { border-bottom: 0; }
.contatos dt, .contatos .rot { color: var(--ink-3); min-width: 92px; }

/* ---------------- ícones ---------------- */

.card-ico {
    width: 44px; height: 44px; border-radius: 0; display: grid; place-items: center;
    background: var(--navy); color: var(--gold); margin-bottom: 20px;
}
.card-ico svg { width: 22px; height: 22px; }

.ico-inline { width: 18px; height: 18px; vertical-align: -3px; }

.card-num .i svg { width: 18px; height: 18px; }

/* ---------------- cartões ---------------- */

.grid { display: grid; gap: 18px; }
.grid.c2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
/* Cinco cartões: 3 em cima e 2 largos embaixo; 2 por linha no tablet (o último ocupa a linha); 1 no celular. */
.grid.c5 { grid-template-columns: repeat(6, 1fr); gap: 20px; }
.grid.c5 > * { grid-column: span 2; }
.grid.c5 > :nth-child(n+4) { grid-column: span 3; }
@media (max-width: 900px) {
    .grid.c5 { grid-template-columns: repeat(2, 1fr); }
    .grid.c5 > *, .grid.c5 > :nth-child(n+4) { grid-column: span 1; }
    .grid.c5 > :nth-child(5) { grid-column: span 2; }
}
@media (max-width: 560px) {
    .grid.c5 { grid-template-columns: 1fr; }
    .grid.c5 > :nth-child(5) { grid-column: span 1; }
}

.card {
    background: var(--surface-1); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-1);
}
.card.area { border-top: 3px solid var(--gold); border-radius: 0 0 var(--r-md) var(--r-md); transition: box-shadow .2s, transform .2s; }
.card.area:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.card.area h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.card .mais { display: inline-block; margin-top: 16px; font-size: .86rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-ink); }
.card > p { color: var(--ink-2); font-size: .95rem; }
.card h3 { margin-bottom: 10px; }

.card-num { display: flex; gap: 16px; align-items: flex-start; }
.card-num .i {
    flex: none; width: 36px; height: 36px; border-radius: 0; display: grid; place-items: center;
    background: var(--navy); color: var(--gold); font-weight: 700; font-size: .9rem;
}

.pill {
    display: inline-block; font-size: .68rem; font-weight: 680; letter-spacing: .1em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
    background: var(--accent-soft); color: var(--accent);
}
.pill.good { background: var(--good-soft); color: var(--good); }
.pill.warn { background: var(--warn-soft); color: var(--warn); }
.pill.bad  { background: var(--bad-soft);  color: var(--bad); }

/* ---------------- formulário ---------------- */

.wizard { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px) { .wizard { grid-template-columns: 1fr; gap: 22px; } }

.steps { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 2px; }
@media (max-width: 880px) { .steps { position: static; flex-direction: row; overflow-x: auto; gap: 8px; } }
.steps button {
    display: flex; align-items: center; gap: 11px; text-align: left; white-space: nowrap;
    background: none; border: 0; font: inherit; color: var(--ink-2);
    padding: 10px 12px; border-radius: var(--r-sm); cursor: pointer; font-size: .92rem;
}
.steps button:hover { background: var(--surface-2); color: var(--ink-1); }
.steps button[aria-current="step"] { background: var(--accent-soft); color: var(--accent); font-weight: 620; }
.steps button .n {
    flex: none; width: 22px; height: 22px; border-radius: 99px; display: grid; place-items: center;
    background: var(--surface-3); color: var(--ink-2); font-size: .74rem; font-weight: 700;
}
.steps button[aria-current="step"] .n { background: var(--accent); color: var(--accent-ink); }

fieldset {
    border: 1px solid var(--line); border-radius: var(--r-md);
    padding: 26px; margin: 0 0 18px; background: var(--surface-1); box-shadow: var(--shadow-1);
}
fieldset[hidden] { display: none; }
legend { padding: 0; font-weight: 650; font-size: 1.05rem; letter-spacing: -.02em; }
legend + .legend-sub { color: var(--ink-2); font-size: .92rem; margin: -2px 0 20px; }

.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); }
.field label { display: block; font-size: .88rem; font-weight: 560; color: var(--ink-1); margin-bottom: 6px; }
.field .hint { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 400; margin-top: 3px; line-height: 1.45; }

input[type=text], input[type=number], select, textarea {
    width: 100%; padding: 11px 13px; border-radius: var(--r-sm);
    border: 1px solid var(--line-strong); background: var(--surface-1); color: var(--ink-1);
    font: inherit; font-size: .96rem; transition: border-color .15s, box-shadow .15s;
}
input[type=text].money, input[type=number] { font-variant-numeric: tabular-nums; }
input:hover, select:hover, textarea:hover { border-color: var(--ink-3); }
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }

.switch { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.switch input { width: auto; margin: 0; accent-color: var(--accent); width: 18px; height: 18px; }
.switch label { margin: 0; font-size: .92rem; font-weight: 500; }

.form-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.form-nav .spacer { flex: 1; }

/* ---------------- resultado ---------------- */

.hero-figure {
    background: var(--surface-1); border: 1px solid var(--line); border-left: 3px solid var(--accent);
    border-radius: var(--r-md); padding: 30px 32px; box-shadow: var(--shadow-2); margin-bottom: 30px;
}
.hero-figure .k { font-size: .84rem; color: var(--ink-2); font-weight: 560; margin-bottom: 6px; }
.hero-figure .v { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; color: var(--accent); }
.hero-figure .v small { font-size: .32em; font-weight: 620; letter-spacing: 0; color: var(--ink-2); margin-left: 10px; }
.hero-figure p { margin: 12px 0 0; color: var(--ink-2); font-size: .96rem; max-width: 70ch; }
.hero-figure.neutro { border-left-color: var(--warn); }
.hero-figure.neutro .v { color: var(--warn); font-size: clamp(1.4rem, 3vw, 1.8rem); }

.tiles { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.tile { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; box-shadow: var(--shadow-1); }
.tile .k { font-size: .82rem; color: var(--ink-2); margin-bottom: 6px; }
.tile .v { font-size: 1.6rem; font-weight: 680; letter-spacing: -.03em; }
.tile .d { font-size: .84rem; color: var(--ink-3); margin-top: 4px; }
.tile.on { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-1); }
.tile .v.good { color: var(--good); }
.tile .v.bad  { color: var(--bad); }

/* ---------------- gráficos ---------------- */

.chart-card {
    background: var(--surface-1); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-1);
}
.chart-head { margin-bottom: 20px; }
.chart-head h3 { margin-bottom: 4px; }
.chart-head p { font-size: .9rem; color: var(--ink-2); margin: 0; }
.chart { width: 100%; display: block; overflow: visible; }
.chart text { font-family: inherit; }
.chart .grid-line { stroke: var(--grid); stroke-width: 1; }
.chart .axis-text { fill: var(--ink-3); font-size: 11px; font-variant-numeric: tabular-nums; }
.chart .cat-text { fill: var(--ink-2); font-size: 12.5px; }
.chart .cat-text.on { fill: var(--ink-1); font-weight: 620; }
.chart .val-text { fill: var(--ink-1); font-size: 12.5px; font-weight: 620; font-variant-numeric: tabular-nums; }
.chart .bar { transition: opacity .12s; }
.chart .bar:hover { opacity: .82; }

.legend { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.legend span { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--ink-2); }
.legend i { width: 11px; height: 11px; border-radius: 3px; flex: none; }

.tooltip {
    position: fixed; z-index: 100; pointer-events: none; opacity: 0;
    background: var(--surface-1); border: 1px solid var(--line-strong);
    border-radius: var(--r-sm); padding: 10px 13px; box-shadow: var(--shadow-2);
    font-size: .86rem; max-width: 260px; transition: opacity .1s;
}
.tooltip.on { opacity: 1; }
.tooltip .t { font-weight: 650; margin-bottom: 4px; }
.tooltip .r { display: flex; justify-content: space-between; gap: 18px; color: var(--ink-2); }
.tooltip .r b { color: var(--ink-1); font-variant-numeric: tabular-nums; font-weight: 600; }

/* ---------------- tabelas ---------------- */

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
caption { text-align: left; font-size: .86rem; color: var(--ink-3); padding-bottom: 10px; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
thead th { color: var(--ink-3); font-weight: 620; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; border-bottom-color: var(--line-strong); }
td.r, th.r { text-align: right; font-variant-numeric: tabular-nums; }
tbody tr:last-child td { border-bottom: 0; }
tfoot td { font-weight: 680; border-top: 2px solid var(--line-strong); border-bottom: 0; }
.sw { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 8px; vertical-align: baseline; }

/* ---------------- oportunidades ---------------- */

.opp {
    background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
    margin-bottom: 12px; box-shadow: var(--shadow-1); overflow: hidden;
}
.opp > summary {
    display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none;
}
.opp > summary::-webkit-details-marker { display: none; }
.opp > summary:hover { background: var(--surface-2); }
.opp .t { flex: 1; min-width: 0; }
.opp .t h3 { margin: 0 0 5px; font-size: 1rem; }
.opp .eco { text-align: right; flex: none; }
.opp .eco b { display: block; font-size: 1.22rem; font-weight: 700; letter-spacing: -.025em; color: var(--good); font-variant-numeric: tabular-nums; }
.opp .eco small { font-size: .74rem; color: var(--ink-3); }
.opp .chev { flex: none; color: var(--ink-3); transition: transform .18s; font-size: .8rem; }
.opp[open] .chev { transform: rotate(90deg); }
.opp .body { padding: 0 24px 24px; border-top: 1px solid var(--line); margin-top: -1px; padding-top: 20px; }
.opp .body p { color: var(--ink-2); font-size: .95rem; }
.opp .conta { font-size: .88rem; color: var(--ink-3); background: var(--surface-2); padding: 11px 14px; border-radius: var(--r-sm); }
.opp .req { margin: 16px 0 0; padding: 0; list-style: none; }
.opp .req li { position: relative; padding-left: 22px; margin-bottom: 7px; font-size: .92rem; color: var(--ink-2); }
.opp .req li::before { content: ""; position: absolute; left: 6px; top: .62em; width: 5px; height: 5px; border-radius: 99px; background: var(--ink-3); }

.callout {
    border-radius: var(--r-md); padding: 20px 24px; margin: 26px 0;
    background: var(--warn-soft); border: 1px solid color-mix(in srgb, var(--warn) 35%, transparent);
    font-size: .94rem; color: var(--ink-1);
}
.callout strong { color: var(--warn); }
.callout.info { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.callout.info strong { color: var(--accent); }
.callout p:last-child { margin-bottom: 0; }

/* ---------------- conteúdo ---------------- */

.toc { position: sticky; top: 92px; }
.toc a { display: block; padding: 7px 12px; font-size: .9rem; color: var(--ink-2); border-left: 2px solid var(--line); }
.toc a:hover { color: var(--ink-1); border-left-color: var(--accent); text-decoration: none; }
.artigo { max-width: 68ch; }
.artigo article { padding: 34px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.artigo article:last-child { border-bottom: 0; }
.artigo h3 { font-size: 1.32rem; letter-spacing: -.025em; margin-bottom: 10px; }
.artigo .resumo { font-size: 1.02rem; color: var(--ink-1); font-weight: 520; margin-bottom: 12px; }
.artigo p { color: var(--ink-2); }

/* ---------------- chat ---------------- */

.chat-wrap { display: grid; grid-template-columns: 1fr 290px; gap: 24px; align-items: start; }
@media (max-width: 900px) { .chat-wrap { grid-template-columns: 1fr; } }

.chat {
    background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
    display: flex; flex-direction: column; height: min(66vh, 620px); min-height: 400px;
    box-shadow: var(--shadow-1); overflow: hidden;
}
.chat-log { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.msg { max-width: 86%; font-size: .95rem; }
.msg .who { font-size: .74rem; font-weight: 680; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.msg .bubble { padding: 13px 17px; border-radius: var(--r-md); }
.msg.user { align-self: flex-end; }
.msg.user .who { text-align: right; }
.msg.user .bubble { background: var(--accent); color: var(--accent-ink); border-bottom-right-radius: 4px; }
.msg.bot .bubble { background: var(--surface-2); border-bottom-left-radius: 4px; }
.msg.bot .bubble p { margin: 0 0 .7em; }
.msg.bot .bubble p:last-child { margin: 0; }
.msg.bot .bubble ul { margin: .4em 0; padding-left: 20px; }
.msg.bot .bubble li { margin-bottom: .3em; }
.msg.bot .bubble strong { font-weight: 660; }
.msg.bot .bubble code { background: var(--surface-3); padding: 1px 5px; border-radius: 4px; font-size: .9em; }
.msg.erro { align-self: stretch; max-width: 100%; }
.msg.erro .bubble { background: var(--bad-soft); border: 1px solid color-mix(in srgb, var(--bad) 40%, transparent); color: var(--ink-1); }

.dots { display: inline-flex; gap: 4px; align-items: center; height: 1.4em; }
.dots i { width: 6px; height: 6px; border-radius: 99px; background: var(--ink-3); animation: blink 1.3s infinite; }
.dots i:nth-child(2) { animation-delay: .18s; }
.dots i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.chat-form { display: flex; gap: 10px; padding: 16px; border-top: 1px solid var(--line); background: var(--surface-1); }
.chat-form textarea { resize: none; height: 46px; max-height: 140px; line-height: 1.4; padding-top: 12px; }

.sug { display: flex; flex-direction: column; gap: 8px; }
.sug button {
    text-align: left; background: var(--surface-1); border: 1px solid var(--line); color: var(--ink-2);
    padding: 12px 15px; border-radius: var(--r-sm); font: inherit; font-size: .88rem; cursor: pointer;
    transition: border-color .15s, color .15s;
}
.sug button:hover { border-color: var(--accent); color: var(--ink-1); }

/* ---------------- chamada de contato ---------------- */

.cta-bloco {
    display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
    background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: var(--r-md); padding: 28px 30px; margin-top: 30px;
}
.cta-bloco h3 { margin: 0 0 6px; font-size: 1.2rem; }
.cta-bloco p { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* botão flutuante de WhatsApp */
.zap {
    position: fixed; right: 20px; bottom: 20px; z-index: 70;
    width: 54px; height: 54px; border-radius: 99px; display: grid; place-items: center;
    background: #1fa855; color: #fff; box-shadow: var(--shadow-2);
    transition: transform .15s ease, box-shadow .15s ease;
}
.zap:hover { transform: translateY(-2px) scale(1.04); text-decoration: none; }
.zap svg { width: 29px; height: 29px; }
@media (max-width: 520px) { .zap { right: 14px; bottom: 14px; width: 50px; height: 50px; } }

/* ---------------- rodapé ---------------- */

footer { padding: 56px 0 44px; background: var(--navy-2); color: #c9d1de; }
footer p { color: #9aa6b8; font-size: .85rem; max-width: 80ch; }
footer strong { color: #e6ebf2; }
footer a { color: #e3cfa6; }
footer .btn { background: var(--gold); color: var(--navy-2); }
footer .btn:hover { background: #c6a770; }
footer .btn.ghost { color: #fff; border-color: rgba(255, 255, 255, .3); background: transparent; }
footer .btn.ghost:hover { border-color: #fff; }

.rodape-topo {
    display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
    padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.rodape-nome { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: #fff; margin: 0 0 4px; }

/* ---------------- animação de entrada ---------------- */

/* O conteúdo é visível por padrão. A animação só existe depois que o JS
   marca a página com .js-anim — assim uma falha de script nunca esconde texto. */
.js-anim .reveal:not(.in) { opacity: 0; transform: translateY(12px); }
.js-anim .reveal { transition: opacity .5s ease, transform .5s ease; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .js-anim .reveal:not(.in) { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------------- impressão ---------------- */

@media print {
    :root { --surface-0: #fff; --surface-1: #fff; --surface-2: #fff; --ink-1: #000; --ink-2: #333; --line: #ccc; }
    .topbar, .sug, .chat-form, .no-print, .steps, .form-nav { display: none !important; }
    body { background: #fff; font-size: 11pt; }
    section { padding: 18px 0; border: 0; }
    .card, .chart-card, .opp, .tile, .hero-figure { box-shadow: none; break-inside: avoid; border: 1px solid #ccc; }
    .opp .body { display: block !important; }
    a { color: #000; text-decoration: none; }
}

/* ---------------- página inicial: peças do estilo premium ---------------- */

section.alt { background: var(--surface-1); }

/* passos numerados com algarismo dourado em serifa */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .passos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .passos { grid-template-columns: 1fr; } }
.passo { padding: 30px 28px 6px 0; }
.passo .n {
    display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1;
    color: var(--gold); margin-bottom: 16px;
}
.passo h3 { margin-bottom: 8px; }
.passo p { color: var(--ink-2); font-size: .94rem; }

/* ferramentas em lista enxuta */
.ferr { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ferr:hover { text-decoration: none; }
.ferr:hover h3 { color: var(--gold-ink); }
.ferr .card-ico { margin: 0; flex: none; }
.ferr h3 { margin: 2px 0 4px; transition: color .15s; }
.ferr p { color: var(--ink-2); font-size: .93rem; margin: 0; }
.ferr .seta { margin-left: auto; align-self: center; color: var(--gold); font-size: 1.2rem; }

/* faixa final de contato */
.faixa { background: var(--navy); color: #fff; padding: 80px 0; }
.faixa .container { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.faixa h2 { color: #fff; margin: 0 0 10px; max-width: 20ch; }
.faixa p { color: #c3cbd8; margin: 0; max-width: 52ch; }
.faixa .eyebrow { color: var(--gold); }

/* ---------------- Instagram ---------------- */

.ig {
    margin-left: 14px; width: 38px; height: 38px; display: grid; place-items: center;
    border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--ink-1);
    transition: border-color .15s, color .15s;
}
.ig:hover { border-color: var(--gold); color: var(--gold-ink); text-decoration: none; }
.ig svg { width: 19px; height: 19px; }
.ig + .nav-cta { margin-left: 8px; }
@media (max-width: 860px) { .ig { margin-left: auto; } .ig + .nav-cta { margin-left: 8px; } }

.ico-inline { display: inline-block; width: 16px; height: 16px; vertical-align: -3px; }
.ico-inline svg { width: 100%; height: 100%; display: block; }

/* ---------------- ponte com a Planejar Bem ---------------- */

.planejar { display: grid; grid-template-columns: 1.4fr .6fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .planejar { grid-template-columns: 1fr; gap: 32px; } }
.planejar-marca {
    display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 34px 32px; background: var(--navy); color: #fff;
    border-left: 3px solid var(--gold); box-shadow: var(--shadow-2);
    transition: transform .2s, box-shadow .2s;
}
.planejar-marca:hover { text-decoration: none; transform: translateY(-2px); }
.planejar-marca svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 10px; }
.planejar-marca strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.planejar-marca span { color: #c3cbd8; font-size: .9rem; letter-spacing: .04em; }

/* ---------------- conversas (perguntas que chegam no WhatsApp) ---------------- */

.conversas { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
@media (max-width: 420px) { .conversas { grid-template-columns: 1fr; } }

.conversa {
    background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-1); display: flex; flex-direction: column; overflow: hidden;
}
.conversa-topo { padding: 16px 20px 0; }
.conversa-corpo {
    padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1;
    background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-0) 100%);
}
.conversa-pe { padding: 14px 20px; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 600; }
.conversa-pe a { color: var(--gold-ink); letter-spacing: .02em; }

.fala { display: flex; gap: 10px; align-items: flex-end; }
.fala-eu { justify-content: flex-end; }
.balao { max-width: 82%; padding: 11px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.5; }
.balao p { margin: 0; }
.fala-cliente .balao { background: var(--surface-2); color: var(--ink-1); border-bottom-left-radius: 3px; }
.fala-eu .balao { background: var(--navy); color: #fff; border-bottom-right-radius: 3px; }

.avatar {
    flex: none; width: 32px; height: 32px; border-radius: 99px; overflow: hidden;
    display: grid; place-items: center; background: var(--navy); color: var(--gold);
    font-family: var(--serif); font-size: .72rem; font-weight: 600;
    box-shadow: 0 0 0 2px var(--surface-1), 0 0 0 3px var(--gold);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.avatar-cliente { background: var(--surface-3); color: var(--ink-3); box-shadow: none; }
.avatar-cliente svg { width: 16px; height: 16px; }

.nota-conversas { font-size: .82rem; color: var(--ink-3); margin-top: 18px; }

/* ---------------- fotos das áreas (aparecem só se o arquivo existir) ---------------- */

.card.area .area-foto { margin: -28px -28px 22px; aspect-ratio: 3 / 2; overflow: hidden; }
.card.area .area-foto img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card.area:hover .area-foto img { transform: scale(1.03); }
.card.area .area-foto + .card-ico { margin-top: -44px; position: relative; box-shadow: 0 0 0 4px var(--surface-1); }

.secao-foto { aspect-ratio: 21 / 8; overflow: hidden; border-radius: var(--r-md); margin-bottom: 26px; box-shadow: var(--shadow-1); }
.secao-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================================================================
   Cores por área de atuação.
   Tons fechados que conversam com o marinho e o dourado. Todos passam 4,5:1
   como texto sobre branco, então servem para rótulo, ícone e filete.
   =========================================================================== */

:root {
    --cor-clinica:     #1f6b63;   /* verde-petróleo */
    --cor-empresarial: #2b5a9e;   /* azul royal */
    --cor-auditoria:   #7a2e3a;   /* vinho */
    --cor-industrial:  #9c5427;   /* cobre — escurecido para passar 4,5:1 na etiqueta clara */
    --cor-sistemas:    #4b3f8f;   /* índigo */
}
.cor-clinica     { --area: var(--cor-clinica); }
.cor-empresarial { --area: var(--cor-empresarial); }
.cor-auditoria   { --area: var(--cor-auditoria); }
.cor-industrial  { --area: var(--cor-industrial); }
.cor-sistemas    { --area: var(--cor-sistemas); }

/* cartões da home */
.card.area[class*="cor-"] { border-top-color: var(--area); }
.card.area[class*="cor-"] .card-ico { background: var(--area); color: #fff; }
.card.area[class*="cor-"] .mais { color: var(--area); }
.card.area[class*="cor-"]:hover { box-shadow: 0 14px 34px color-mix(in srgb, var(--area) 22%, transparent); }

/* seções da página Consultorias */
article[class*="cor-"] .card-ico { background: var(--area); color: #fff; }
article[class*="cor-"] > .pill,
.conversa[class*="cor-"] .pill {
    background: color-mix(in srgb, var(--area) 12%, #fff); color: var(--area);
}
article[class*="cor-"] .card { border-top: 3px solid var(--area); }

/* conversas: filete da cor da área no topo */
.conversa[class*="cor-"] { border-top: 3px solid var(--area); }

/* ---------------- mais cor nas superfícies grandes ---------------- */

/* topo: duas manchas suaves, verde-petróleo e dourado, atrás do texto e da foto */
.hero {
    background:
        radial-gradient(620px 420px at 92% 8%, color-mix(in srgb, var(--cor-clinica) 13%, transparent), transparent 70%),
        radial-gradient(560px 380px at 0% 100%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 70%),
        var(--surface-0);
}

/* faixa de contato: marinho que escorre para o verde-petróleo */
.faixa { background: linear-gradient(120deg, var(--navy) 0%, #173a52 55%, #1b4f55 100%); }

/* cartão da Planejar Bem: marinho para índigo */
.planejar-marca { background: linear-gradient(145deg, var(--navy) 0%, var(--cor-sistemas) 100%); }

/* passos: cada número com a cor de uma etapa */
.passo:nth-child(1) .n { color: var(--cor-empresarial); }
.passo:nth-child(2) .n { color: var(--cor-clinica); }
.passo:nth-child(3) .n { color: var(--cor-industrial); }
.passo:nth-child(4) .n { color: var(--gold); }

/* ---------------- formação enxuta (página Sobre) ---------------- */

.credenciais {
    margin: -6px 0 26px; padding: 14px 18px; border-left: 3px solid var(--gold);
    background: color-mix(in srgb, var(--gold) 7%, var(--surface-1));
    display: grid; gap: 6px;
}
/* rótulo numa coluna fixa, cursos na outra: as duas linhas ficam alinhadas */
.credenciais div { display: grid; grid-template-columns: 132px 1fr; gap: 4px 12px; align-items: baseline; }
@media (max-width: 460px) { .credenciais div { grid-template-columns: 1fr; gap: 2px; } }
.credenciais dt {
    font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold-ink); white-space: nowrap;
}
.credenciais dd { margin: 0; font-size: .93rem; color: var(--ink-1); }

/* ---------------- tempo de estrada (home e Sobre) ---------------- */

.trajetoria { display: flex; flex-wrap: wrap; gap: 20px 40px; margin: 34px 0 0; padding-top: 26px; border-top: 1px solid var(--line); }
.trajetoria div { display: flex; flex-direction: column; }
.trajetoria dt { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--gold-ink); font-weight: 600; }
.trajetoria dd { margin: 8px 0 0; font-size: .88rem; color: var(--ink-2); max-width: 18ch; }
.perfil .trajetoria { margin: 4px 0 24px; padding-top: 0; border-top: 0; }

/* ---------------- palestras e cursos ---------------- */

.palestras {
    display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: start;
    padding: 40px; background: var(--surface-1); border: 1px solid var(--line);
    border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; box-shadow: var(--shadow-1);
}
@media (max-width: 620px) { .palestras { grid-template-columns: 1fr; padding: 28px; gap: 18px; } }
.palestras-ico {
    width: 64px; height: 64px; display: grid; place-items: center;
    background: var(--navy); color: var(--gold);
}
.palestras-ico svg { width: 32px; height: 32px; }

.palestras-nota {
    display: flex; gap: 14px; align-items: center; margin-top: 22px; padding: 16px 18px;
    background: color-mix(in srgb, var(--gold) 7%, var(--surface-1)); border-left: 3px solid var(--gold);
}
.palestras-nota .palestras-ico { width: 40px; height: 40px; flex: none; }
.palestras-nota .palestras-ico svg { width: 20px; height: 20px; }
.palestras-nota p { margin: 0; font-size: .95rem; color: var(--ink-1); }
.palestras-nota a { color: var(--gold-ink); font-weight: 600; white-space: nowrap; }

/* ---------------- rodapé em colunas ---------------- */

.rodape-colunas {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
    padding-bottom: 34px; margin-bottom: 26px; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (max-width: 820px) { .rodape-colunas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .rodape-colunas { grid-template-columns: 1fr; } }
.rodape-colunas h4 {
    font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
    margin: 4px 0 14px; font-weight: 700;
}
.rodape-colunas nav a, .rodape-colunas > div:not(.rodape-marca) a {
    display: block; color: #c9d1de; font-size: .9rem; padding: 4px 0;
}
.rodape-colunas a:hover { color: #fff; text-decoration: none; }
.rodape-marca .mark { width: 56px; height: 56px; border-radius: 50%; display: block; margin-bottom: 14px; }
.rodape-marca p { margin: 0 0 4px; }
.rodape-base p { font-size: .8rem; max-width: 90ch; }

/* ---------------- caixa de sugestões ---------------- */

/* tipo da mensagem como botões de escolha */
.form-sugestao .tipos { border: 0; padding: 0; margin: 0 0 18px; background: none; box-shadow: none; display: flex; flex-wrap: wrap; gap: 8px; }
.tipo { cursor: pointer; }
.tipo input { position: absolute; opacity: 0; pointer-events: none; }
.tipo span {
    display: inline-block; padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 99px;
    font-size: .86rem; color: var(--ink-2); transition: all .15s;
}
.tipo input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.tipo input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-sugestao textarea { min-height: 130px; resize: vertical; }
.form-sugestao .form-nav { gap: 16px; }

/* campo-armadilha para robôs: fora da tela para pessoas e leitores de tela */
.armadilha { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.aviso-erro {
    background: var(--bad-soft); color: var(--bad); border-left: 3px solid var(--bad);
    padding: 10px 14px; font-size: .9rem; margin: 0 0 16px;
}

.obrigado {
    display: flex; gap: 20px; align-items: flex-start; padding: 30px;
    background: var(--surface-1); border: 1px solid var(--line); border-left: 3px solid var(--good);
    box-shadow: var(--shadow-1);
}
.obrigado-ico { flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--good); color: #fff; }
.obrigado-ico svg { width: 24px; height: 24px; }
.obrigado h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 6px; }
.obrigado p { color: var(--ink-2); margin: 0; }

/* bloco da home com o formulário ao lado do texto */
.sugestao-home { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .sugestao-home { grid-template-columns: 1fr; gap: 24px; } }

/* lista na área restrita */
.lista-sugestoes { display: grid; gap: 14px; margin-top: 10px; }
.sug { background: var(--surface-1); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; }
.sug.nova { border-left: 3px solid var(--gold); }
.sug header { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 10px; }
.sug header time { margin-left: auto; font-size: .84rem; }
.sug-msg { font-size: .98rem; color: var(--ink-1); margin-bottom: 10px; white-space: normal; }
.sug-quem { font-size: .88rem; color: var(--ink-2); }
.sug-acoes { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
