/* ============================================================
   Sulco Gestão — Site institucional
   Estilos derivados de tokens.css + app-referencia.css (produção).
   Nada de cor/fonte solta: tudo vem das variáveis dos tokens.
   ============================================================ */

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

html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--txt);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- container ---- */
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 18px; } }

/* ---- tipografia base ---- */
h1, h2, h3, h4 { font-family: var(--font-brand); color: var(--txt); line-height: 1.15; letter-spacing: -.01em; }
.eyebrow {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent-strong);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.lead { color: var(--muted); font-size: 18px; }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm); color: var(--muted);
  font-size: 14px; font-weight: 500; transition: background .12s, color .12s;
}
.nav-links a:hover { color: var(--txt); background: var(--surface); }
.nav-links a.active { color: var(--accent-strong); background: color-mix(in srgb, var(--accent) 14%, transparent); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  background: var(--surface); border: 1px solid var(--line-2); color: var(--muted);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center; transition: color .15s, border-color .15s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

.menu-btn {
  display: none; background: var(--surface); border: 1px solid var(--line-2); color: var(--txt);
  width: 40px; height: 40px; border-radius: var(--radius-sm); cursor: pointer; font-size: 20px;
  align-items: center; justify-content: center;
}

/* ---- botões ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border: 0; cursor: pointer;
  background: var(--accent); color: var(--on-accent); border-radius: var(--radius-sm);
  font-family: var(--font-brand); font-weight: 700; font-size: 14px; letter-spacing: .3px;
  transition: filter .15s, transform .05s, border-color .15s; white-space: nowrap;
}
.btn:hover { filter: brightness(1.06); }
.btn:active { transform: scale(.99); }
.btn.sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn.lg { height: 52px; padding: 0 28px; font-size: 15px; }
.btn.ghost { background: transparent; color: var(--txt); border: 1px solid var(--line-2); }
.btn.ghost:hover { color: var(--accent-strong); border-color: var(--accent); filter: none; }
.btn.on-green { background: #fff; color: var(--accent-strong); }
[data-theme="dark"] .btn.on-green { background: var(--surface); color: var(--accent-strong); }

.link-arrow { color: var(--accent-strong); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow .a { transition: transform .15s; }
.link-arrow:hover .a { transform: translateX(3px); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 76px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin: 14px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- HERO ---- */
.hero { padding: 74px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -30%; right: -12%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 62%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .45; z-index: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 76% 24%, #000, transparent 60%);
  mask-image: radial-gradient(circle at 76% 24%, #000, transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(32px, 5.2vw, 52px); font-weight: 800; margin: 18px 0 18px; letter-spacing: -.02em; }
.hero h1 .hl { color: var(--accent-strong); }
.hero .lead { font-size: clamp(17px, 2.2vw, 20px); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--dim); display: flex; align-items: center; gap: 8px; }

.badge-origin {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 99px;
  font-size: 13px; color: var(--muted);
}
.badge-origin b { color: var(--txt); font-weight: 600; }
.badge-origin .pin { width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 18%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 18px; }
.grid.g2 { grid-template-columns: repeat(2, 1fr); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }

/* card de módulo */
.mod-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.mod-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.mod-ic {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent-strong);
}
.mod-ic.purple { background: color-mix(in srgb, var(--accent-2) 16%, transparent); color: var(--accent-2); }
.mod-card h3 { font-size: 18px; font-weight: 700; }
.mod-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.mod-card .kicker { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--dim); font-weight: 600; }

/* card destaque (carro-chefe) */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.feature.rev .feature-body { order: 2; }
.feature-body { padding: 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.feature-body h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; }
.feature-art { background: var(--surface-2); border-left: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 32px; min-height: 320px; }
.feature.rev .feature-art { border-left: 0; border-right: 1px solid var(--line); }

/* lista de bullets com check */
.checks { display: flex; flex-direction: column; gap: 10px; }
.checks li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--txt); }
.checks li .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--ok) 16%, transparent); color: var(--accent-strong); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 1px; }

/* KPI / prova */
.kpi-hero { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px;
}
.kpi span { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.kpi b { display: block; font-family: var(--font-brand); font-size: 30px; font-weight: 800; color: var(--txt); margin-top: 6px; line-height: 1.1; }
.kpi small { display: block; font-size: 12.5px; color: var(--dim); margin-top: 4px; }
.kpi.good b { color: var(--ok); }
.kpi.warn b { color: var(--warn); }
.kpi.bad b { color: var(--danger); }
.kpi.purple b { color: var(--accent-2); }

/* chips e badges */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--surface); border: 1px solid var(--line-2); color: var(--muted);
  border-radius: 99px; padding: 7px 14px; font-size: 13px;
}
.chip.on { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-strong); border-color: var(--accent-strong); }
.bdg { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; display: inline-block; }
.b-ok { background: color-mix(in srgb, var(--ok) 16%, transparent); color: var(--accent-strong); }
.b-warn { background: color-mix(in srgb, var(--warn) 18%, transparent); color: var(--warn); }
.b-red { background: color-mix(in srgb, var(--danger) 16%, transparent); color: var(--danger); }
.b-purple { background: color-mix(in srgb, var(--accent-2) 16%, transparent); color: var(--accent-2); }

/* ---- bloco problema -> solução -> ganho ---- */
.mod-section { padding: 68px 0; border-bottom: 1px solid var(--line); }
.mod-section:last-of-type { border-bottom: 0; }
.mod-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.mod-head .n { font-family: var(--font-brand); font-size: 13px; font-weight: 800; color: var(--accent-strong); background: color-mix(in srgb, var(--accent) 14%, transparent); border-radius: 8px; padding: 4px 10px; }
.mod-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.mod-layout .art { position: sticky; top: 92px; }
.psg { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.psg-item { display: grid; grid-template-columns: 108px 1fr; gap: 16px; align-items: start; }
.psg-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 6px 0; }
.psg-tag.prob { color: var(--danger); }
.psg-tag.sol { color: var(--info); }
.psg-tag.gain { color: var(--accent-strong); }
.psg-item p { color: var(--txt); font-size: 15px; }
.psg-item p b { font-weight: 600; }
.psg-sep { height: 1px; background: var(--line); }

/* ---- faixa CTA verde ---- */
.cta-band {
  background: linear-gradient(135deg, var(--accent-strong), color-mix(in srgb, var(--accent-strong) 78%, #000));
  border-radius: var(--radius-lg); padding: 48px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
[data-theme="dark"] .cta-band { background: linear-gradient(135deg, var(--sulco-green), #0a2c1f); border: 1px solid var(--line); }
.cta-band::after {
  content: ''; position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 40px 40px; -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 4vw, 34px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 17px; margin: 12px auto 26px; max-width: 560px; }
.cta-band .btn.on-green { background: #fff; color: var(--accent-strong); }
.cta-band .btn.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn.ghost:hover { border-color: #fff; color: #fff; }

/* ---- pendência [DEFINIR] ---- */
.todo {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-brand); font-weight: 700;
  font-size: 12px; color: var(--warn); background: color-mix(in srgb, var(--warn) 16%, transparent);
  border: 1px dashed var(--warn); border-radius: 6px; padding: 2px 8px; letter-spacing: .02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 56px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); margin-bottom: 14px; font-weight: 700; }
.foot-grid a, .foot-grid p { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; }
.foot-grid a:hover { color: var(--accent-strong); }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 300px; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { color: var(--dim); font-size: 13px; }
.foot-bottom .foot-dom { display: flex; gap: 16px; }
.foot-bottom .foot-dom a { color: var(--muted); font-size: 13px; }

/* ============================================================
   MOCKUP / ILUSTRAÇÕES (mini-telas no estilo do produto)
   ============================================================ */
.mock {
  width: 100%; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.mock-bar .mt { margin-left: 8px; font-size: 11px; color: var(--dim); font-family: var(--font-brand); }
.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mrow { display: flex; align-items: center; gap: 10px; }
.mrow .mav { width: 30px; height: 30px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 18%, transparent); flex: none; }
.mrow .ml { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mrow .ml span { height: 8px; border-radius: 4px; background: var(--surface-2); }
.mrow .ml span.w1 { width: 60%; } .mrow .ml span.w2 { width: 38%; background: var(--line); }
.mmini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mmini .mk { background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.mmini .mk small { font-size: 9px; color: var(--dim); text-transform: uppercase; letter-spacing: .4px; display: block; }
.mmini .mk b { font-family: var(--font-brand); font-size: 16px; color: var(--txt); }
.mmini .mk.g b { color: var(--ok); } .mmini .mk.w b { color: var(--warn); } .mmini .mk.r b { color: var(--danger); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .feature, .feature.rev { grid-template-columns: 1fr; }
  .feature.rev .feature-body { order: 0; }
  .feature-art, .feature.rev .feature-art { border-left: 0; border-right: 0; border-top: 1px solid var(--line); min-height: 240px; }
  .mod-layout { grid-template-columns: 1fr; gap: 24px; }
  .mod-layout .art { position: static; order: -1; }
  .grid.g4 { grid-template-columns: repeat(2, 1fr); }
  .grid.g3 { grid-template-columns: repeat(2, 1fr); }
  .kpi-hero { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .hero { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 12px 24px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-links.open a { width: 100%; }
  .menu-btn { display: flex; }
  .grid.g2, .grid.g3, .grid.g4 { grid-template-columns: 1fr; }
  .kpi-hero { grid-template-columns: 1fr 1fr; }
  .kpi b { font-size: 24px; }
  .psg-item { grid-template-columns: 1fr; gap: 6px; }
  .feature-body, .cta-band, .panel { padding: 26px; }
  .foot-grid { grid-template-columns: 1fr; gap: 22px; }
  .hide-mobile { display: none; }
}

/* foco acessível */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); outline-offset: 2px; border-radius: var(--radius-sm);
}
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--on-accent); padding: 10px 16px; border-radius: var(--radius-sm); z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; }

/* ============================================================
   V2 — LINGUAGEM EDITORIAL / ASSINATURA DE MARCA
   Fio condutor: o medidor de sulco do pneu = o semáforo da carteira.
   ============================================================ */

/* ---- tipografia display (headlines grandes de agência) ---- */
.display {
  font-family: var(--font-brand); font-weight: 800; letter-spacing: -.035em;
  line-height: .96; font-size: clamp(38px, 7.4vw, 84px);
}
.display .rule { display: block; }

/* marca-texto com ranhuras de pneu (assinatura sutil) */
.hl-sulco { color: var(--accent-strong); position: relative; white-space: nowrap; z-index: 0; }
.hl-sulco::after {
  content: ''; position: absolute; left: -.04em; right: -.04em; bottom: .04em; height: .30em; z-index: -1;
  background: repeating-linear-gradient(-102deg, var(--accent) 0 4px, transparent 4px 9px);
  opacity: .45; border-radius: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  .hl-sulco::after { animation: sulco-slide 3.2s linear infinite; }
}
@keyframes sulco-slide { to { background-position: 26px 0; } }

/* palavra com o semáforo (verde/amarelo/vermelho) inline */
.sf-lead { display: inline-flex; gap: 7px; align-items: center; vertical-align: middle; }
.sf-lead i { width: 13px; height: 13px; border-radius: 50%; display: inline-block; }
.sf-lead i.g { background: var(--accent); } .sf-lead i.y { background: var(--sulco-yellow); } .sf-lead i.r { background: var(--danger); }

/* ---- faixa de setores em movimento (marquee) ---- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 16px 0; }
.strip-track { display: flex; gap: 44px; width: max-content; align-items: center; will-change: transform; }
@media (prefers-reduced-motion: no-preference) { .strip-track { animation: strip-move 34s linear infinite; } }
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes strip-move { to { transform: translateX(-50%); } }
.strip-item { display: inline-flex; align-items: center; gap: 44px; font-family: var(--font-brand); font-weight: 700; font-size: 16px; color: var(--muted); letter-spacing: -.01em; white-space: nowrap; }
.strip-item span { display: inline-flex; align-items: center; gap: 44px; }
.strip-item b { color: var(--txt); font-weight: 700; }
.strip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---- número de índice gigante (contorno) ---- */
.idx-big {
  font-family: var(--font-brand); font-weight: 800; font-size: clamp(56px, 11vw, 128px); line-height: .78;
  color: transparent; -webkit-text-stroke: 1.6px var(--line-2); letter-spacing: -.04em; pointer-events: none;
}
[data-theme="dark"] .idx-big { -webkit-text-stroke-color: var(--line-2); }

/* ---- seção CONCEITO: o semáforo do sulco = o da carteira ---- */
.concept {
  background: linear-gradient(160deg, var(--accent-strong), color-mix(in srgb, var(--accent-strong) 62%, #06140d));
  color: #fff; border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
}
[data-theme="dark"] .concept { background: linear-gradient(160deg, #123a2a, #0a2118); border: 1px solid var(--line); }
.concept::after {
  content: ''; position: absolute; inset: 0; opacity: .10; pointer-events: none;
  background: repeating-linear-gradient(-102deg, #fff 0 6px, transparent 6px 22px);
  -webkit-mask-image: radial-gradient(circle at 85% 15%, #000, transparent 70%); mask-image: radial-gradient(circle at 85% 15%, #000, transparent 70%);
}
.concept > * { position: relative; z-index: 1; }
.concept h2 { color: #fff; font-size: clamp(24px, 3.6vw, 36px); font-weight: 800; letter-spacing: -.02em; max-width: 640px; }
.concept .sub { color: rgba(255,255,255,.82); font-size: 17px; margin-top: 12px; max-width: 560px; }
.sf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.sf-card { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(2px); }
.sf-card .lamp { width: 34px; height: 34px; border-radius: 50%; margin-bottom: 14px; box-shadow: 0 0 0 6px rgba(255,255,255,.08); }
.sf-card.g .lamp { background: #17d488; } .sf-card.y .lamp { background: var(--sulco-yellow); } .sf-card.r .lamp { background: #ff6b5f; }
.sf-card h3 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sf-card .tire { font-size: 12.5px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; font-weight: 600; }
.sf-card p { color: rgba(255,255,255,.9); font-size: 14.5px; }

/* ---- DASHBOARD mock com DADOS REAIS (adeus barrinha cinza) ---- */
.dash { width: 100%; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.dash-bar { display: flex; align-items: center; gap: 6px; padding: 11px 15px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.dash-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.dash-bar i.live { background: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.dash-bar .mt { margin-left: 8px; font-size: 11.5px; color: var(--muted); font-family: var(--font-brand); font-weight: 600; letter-spacing: .01em; }
.dash-bar .mt b { color: var(--txt); }
.dash-body { padding: 15px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 14px; }
.dash-kpis .k { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 10px 11px; }
.dash-kpis .k small { font-size: 9.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .5px; display: block; }
.dash-kpis .k b { font-family: var(--font-brand); font-size: 18px; font-weight: 800; color: var(--txt); display: block; margin-top: 2px; font-variant-numeric: tabular-nums; }
.dash-kpis .k.g b { color: var(--ok); } .dash-kpis .k.y b { color: var(--warn); } .dash-kpis .k.r b { color: var(--danger); } .dash-kpis .k.p b { color: var(--accent-2); }
.dl-row { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; padding: 9px 0; border-top: 1px solid var(--line); }
.dl-row:first-child { border-top: 0; }
.dl-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dl-dot.g { background: var(--accent); } .dl-dot.y { background: var(--sulco-yellow); } .dl-dot.r { background: var(--danger); } .dl-dot.p { background: var(--accent-2); }
.dl-main { min-width: 0; }
.dl-name { font-size: 13.5px; font-weight: 600; color: var(--txt); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-sub { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dl-right { text-align: right; flex: none; }
.dl-val { font-family: var(--font-brand); font-weight: 700; font-size: 13.5px; color: var(--txt); font-variant-numeric: tabular-nums; display: block; }
.dl-tag { font-size: 10.5px; font-weight: 600; }
.dl-tag.g { color: var(--accent-strong); } .dl-tag.y { color: var(--warn); } .dl-tag.r { color: var(--danger); } .dl-tag.p { color: var(--accent-2); }
.dash-chat { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; margin-bottom: 9px; font-size: 12.5px; }
.dash-chat.me { border-bottom-right-radius: 3px; }
.dash-chat.ai { background: color-mix(in srgb, var(--accent-2) 10%, var(--surface)); border-color: color-mix(in srgb, var(--accent-2) 26%, transparent); border-bottom-left-radius: 3px; }
.dash-chat .who { font-size: 10px; text-transform: uppercase; letter-spacing: .5px; color: var(--dim); font-weight: 700; display: block; margin-bottom: 3px; }
.dash-chat.ai .who { color: var(--accent-2); }

/* ---- barras de progresso (curva, potencial) ---- */
.bar { height: 8px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 99px; }
.bar > i.g { background: var(--accent); } .bar > i.y { background: var(--sulco-yellow); } .bar > i.r { background: var(--danger); } .bar > i.p { background: var(--accent-2); }

/* ---- módulo: cabeçalho editorial com índice ---- */
.mod-top { display: flex; align-items: flex-end; gap: 18px; margin-bottom: 4px; }
.mod-top .idx-big { margin-bottom: -6px; }
.mod-kick { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-strong); }

/* refinos de card */
.mod-card { position: relative; }
.mod-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px 0 0 3px;
  background: repeating-linear-gradient(180deg, var(--accent) 0 5px, transparent 5px 11px); opacity: 0; transition: opacity .15s;
}
.mod-card:hover::before { opacity: .8; }

/* ---- pull-quote / frase forte ---- */
.pull { font-family: var(--font-brand); font-weight: 800; letter-spacing: -.02em; font-size: clamp(22px, 3.4vw, 34px); line-height: 1.12; color: var(--txt); }
.pull .hl-sulco { font-weight: 800; }

/* selo "no ar / ao vivo" */
.live-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--accent-strong); background: color-mix(in srgb, var(--accent) 13%, transparent); border-radius: 99px; padding: 5px 12px; }
.live-pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@media (prefers-reduced-motion: no-preference) { .live-pill .d { animation: pulse 1.8s ease-in-out infinite; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); } 50% { box-shadow: 0 0 0 5px transparent; } }

@media (max-width: 640px) {
  .sf-grid { grid-template-columns: 1fr; }
  .concept { padding: 28px; }
  .mod-top { gap: 12px; }
  .dash-kpis { grid-template-columns: repeat(3, 1fr); }
}

/* ---- FUNDADOR / "pai da Sulco Gestão" ---- */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; }
.founder-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2); box-shadow: var(--shadow); aspect-ratio: 1 / 1;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: repeating-linear-gradient(-102deg, var(--accent) 0 6px, transparent 6px 13px);
}
.founder-body h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 12px; }
.founder-quote {
  margin-top: 18px; padding: 4px 0 4px 18px; border-left: 3px solid var(--accent);
  font-family: var(--font-brand); font-weight: 700; letter-spacing: -.01em;
  font-size: clamp(17px, 2.4vw, 21px); line-height: 1.3; color: var(--txt);
}
.founder-sign { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.founder-sign b { color: var(--txt); font-weight: 600; }
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; gap: 24px; }
  .founder-photo { max-width: 260px; }
}
