/* ============================================================
   LOGFIN — design system (fonte: LogFin_Brandbook.pptx)
   Navy sustenta; o lime acelera. 60% claro · 25% navy · 10% lime.
   Sora = display/títulos · Inter = texto · IBM Plex Mono = dados
   ============================================================ */
:root {
  --ink-950: #06131F;
  --ink-900: #081B2C;
  --ink-800: #0E2A40;
  --ink-700: #17435E;
  --lime-700: #5FAE0E;
  --lime-600: #82D11D;
  --lime-500: #A2E62D;
  --lime-400: #B7F34A;
  --lime-100: #EFFDD7;
  --n-900: #27313B;
  --n-700: #465565;
  --n-500: #6B7C8F;
  --n-300: #B6C1CB;
  --n-100: #E8EDF2;
  --n-050: #F7FAFC;
  --success: #1D9A67;
  --danger: #D94D5C;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(6, 19, 31, .06);
  --shadow-md: 0 14px 34px -14px rgba(6, 19, 31, .22);
  --shadow-lg: 0 28px 64px -24px rgba(6, 19, 31, .34);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1120px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.02em; }

.mono { font-family: var(--font-mono); font-weight: 500; }

/* Marcador diagonal da marca (base do símbolo LF) */
.tick {
  display: inline-block; width: 22px; height: 10px;
  background: var(--lime-400);
  transform: skewX(-24deg);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 9px;
  padding: 14px 26px;
  font-size: 15px; font-weight: 700; letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-lime { background: var(--lime-400); color: var(--ink-900); }
.btn-lime:hover { background: var(--lime-500); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-navy { background: var(--ink-900); color: #fff; }
.btn-navy:hover { background: var(--ink-800); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.32); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

:focus-visible { outline: 3px solid var(--lime-600); outline-offset: 2px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--n-100);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav .brand img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--n-700); transition: color .15s; }
.nav-links a:hover { color: var(--ink-900); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none;
  width: 40px; height: 40px; border-radius: 9px;
  align-items: center; justify-content: center;
  color: var(--ink-900);
}
.hamburger svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 4% 20px; border-top: 1px solid var(--n-100);
  background: #fff;
}
.mobile-menu a { padding: 12px 8px; font-weight: 600; color: var(--n-700); border-radius: 9px; }
.mobile-menu a:hover { background: var(--n-050); color: var(--ink-900); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ---------- Hero (navy) ---------- */
.hero {
  background: var(--ink-900); color: #fff;
  position: relative; overflow: hidden;
  padding: 84px 0 92px;
}
.hero::before { /* trilho diagonal ink-800, linguagem gráfica da marca */
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 46%; width: 34%;
  background: var(--ink-800);
  transform: skewX(-14deg);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 56px; align-items: center;
}
.eyebrow-mono {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime-400);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .lime { color: var(--lime-400); }
.hero-sub {
  font-size: 17.5px; color: var(--n-300); max-width: 50ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: grid; gap: 10px; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--n-300);
}
.trust-item .tick { width: 16px; height: 8px; flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-photo {
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 460px; object-fit: cover; }
.hero-visual::after { /* faixa lime de rota */
  content: ""; position: absolute; top: -18px; right: -14px;
  width: 120px; height: 26px;
  background: var(--lime-400);
  transform: skewX(-24deg);
}
/* Atalho flutuante do hero para o simulador */
.hero-sim-cta {
  position: absolute; left: -14px; bottom: -24px;
  display: inline-flex; align-items: center; gap: 13px;
  background: #fff; color: var(--ink-900);
  border-radius: 12px;
  padding: 15px 22px 15px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 16px; font-weight: 700;
  transition: transform .16s ease, box-shadow .16s ease;
}
.hero-sim-cta:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -22px rgba(6, 19, 31, .5); }
.hero-sim-cta:active { transform: translateY(-1px); }
.hero-sim-icon {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--lime-400); color: var(--ink-900);
  flex-shrink: 0;
}
.hero-sim-icon svg { width: 20px; height: 20px; }
.hero-sim-arrow { width: 18px; height: 18px; transition: transform .16s ease; }
.hero-sim-cta:hover .hero-sim-arrow { transform: translateX(4px); }

/* ---------- Seções ---------- */
section { padding: 92px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow-mono { color: var(--lime-700); }
h2 { font-size: clamp(27px, 3.4vw, 38px); font-weight: 800; line-height: 1.16; margin-bottom: 14px; }
.section-sub { font-size: 16.5px; color: var(--n-700); }
.alt { background: var(--n-050); }

/* ---------- Segmentos (Para quem) ---------- */
.segments { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.segment {
  background: #fff; border: 1px solid var(--n-100); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.segment:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.segment-photo { position: relative; }
.segment-photo img {
  width: 100%; height: 240px; object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.segment-body { padding: 8px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.segment-tag {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--lime-700);
  margin-bottom: 10px;
}
.segment h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.segment p { font-size: 15px; color: var(--n-700); margin-bottom: 18px; }
.segment ul { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.segment li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px; color: var(--n-700); font-weight: 500;
}
.segment li .tick { width: 14px; height: 7px; flex-shrink: 0; }
.segment .btn { margin-top: auto; align-self: flex-start; }
.segments-note {
  margin-top: 26px;
  background: #fff; border: 1px dashed var(--n-300); border-radius: var(--radius);
  padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 15px; color: var(--n-700);
}
.segments-note strong { color: var(--ink-900); }
.link-lime {
  font-weight: 700; color: var(--ink-900);
  border-bottom: 2px solid var(--lime-400);
  padding-bottom: 1px;
  background: none; border-top: none; border-left: none; border-right: none;
  font-size: 15px;
}
.link-lime:hover { border-bottom-color: var(--lime-600); }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--n-100); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-mono); font-weight: 600; font-size: 15px;
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lime-400);
  width: 46px; height: 34px;
  transform: skewX(-14deg);
  margin-bottom: 22px;
}
.step-num span { transform: skewX(14deg); }
.step h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--n-700); }
.steps-cta { text-align: center; margin-top: 46px; }

/* ---------- Vantagens ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: #fff; border: 1px solid var(--n-100); border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--ink-900); color: var(--lime-400);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; color: var(--n-700); }

/* ---------- Números ---------- */
.stats { background: var(--ink-900); color: #fff; padding: 70px 0; position: relative; overflow: hidden; }
.stats::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -60px; width: 180px;
  background: var(--ink-800); transform: skewX(-14deg);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; position: relative; z-index: 1; }
.stat-value {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(30px, 3.8vw, 42px); letter-spacing: -.02em;
}
.stat-value .lime { color: var(--lime-400); }
.stat-label { font-size: 14px; color: var(--n-300); font-weight: 500; margin-top: 8px; }

/* ---------- Simulador ---------- */
.sim-panel {
  background: #fff; border: 1px solid var(--n-100); border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 980px; margin-inline: auto;
  overflow: hidden;
}
.sim-tabs { display: flex; border-bottom: 1px solid var(--n-100); }
.sim-tab {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 19px 12px;
  background: none; border: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  color: var(--n-500);
  border-bottom: 3px solid transparent;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.sim-tab svg { width: 20px; height: 20px; flex-shrink: 0; }
.sim-tab:hover { color: var(--ink-900); background: var(--n-050); }
.sim-tab.active { color: var(--ink-900); border-bottom-color: var(--lime-400); }

.sim-pane { display: none; }
.sim-pane.active { display: grid; grid-template-columns: 1.05fr .95fr; }
.sim-controls { padding: 36px 38px; }
.sim-field { margin-bottom: 28px; }
.sim-field:last-child { margin-bottom: 0; }
.sim-field > label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 10px; }

.currency-wrap {
  display: flex; align-items: center;
  border: 1.5px solid var(--n-100); border-radius: 12px;
  padding: 0 16px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.currency-wrap:focus-within { border-color: var(--lime-600); box-shadow: 0 0 0 4px var(--lime-100); }
.currency-wrap .prefix { font-family: var(--font-mono); font-weight: 600; font-size: 15px; color: var(--n-500); }
.currency-wrap input {
  flex: 1; width: 100%;
  border: none; outline: none; background: transparent;
  padding: 15px 10px;
  font-family: var(--font-mono); font-weight: 600; font-size: 21px;
  color: var(--ink-900);
}

.sim-row { display: flex; align-items: center; gap: 16px; }
.sim-num {
  width: 92px; text-align: center;
  border: 1.5px solid var(--n-100); border-radius: 10px;
  background: var(--n-050);
  padding: 11px 8px;
  font-family: var(--font-mono); font-weight: 600; font-size: 16px;
  color: var(--ink-900);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  -moz-appearance: textfield;
}
.sim-num::-webkit-outer-spin-button, .sim-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sim-num:focus { border-color: var(--lime-600); box-shadow: 0 0 0 4px var(--lime-100); }
.sim-unit { font-size: 13.5px; font-weight: 600; color: var(--n-500); }

.sim-chips { display: flex; gap: 10px; }
.sim-chip-btn {
  font-family: var(--font-mono); font-weight: 600; font-size: 12.5px;
  color: var(--n-700);
  background: #fff; border: 1.5px solid var(--n-100);
  padding: 8px 15px;
  transform: skewX(-14deg);
  transition: background .15s, border-color .15s, color .15s;
}
.sim-chip-btn span { display: inline-block; transform: skewX(14deg); }
.sim-chip-btn:hover { border-color: var(--n-300); }
.sim-chip-btn.active { background: var(--lime-400); border-color: var(--lime-400); color: var(--ink-900); }

.sim-range {
  flex: 1; appearance: none; -webkit-appearance: none;
  height: 8px; border-radius: 99px;
  background: linear-gradient(90deg, var(--lime-400) var(--fill, 33%), var(--n-100) var(--fill, 33%));
  outline: none; cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--ink-900);
  border: 3.5px solid var(--lime-400);
  cursor: grab;
  transition: transform .12s ease;
}
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.sim-range::-webkit-slider-thumb:active { cursor: grabbing; }
.sim-range::-moz-range-thumb {
  width: 17px; height: 17px; border-radius: 6px;
  background: var(--ink-900); border: 3.5px solid var(--lime-400);
  cursor: grab;
}
.sim-range:focus-visible { outline: 3px solid var(--lime-600); outline-offset: 4px; }

/* Painel de resultado: navy com trilho diagonal, valor em lime */
.sim-result {
  background: var(--ink-900); color: #fff;
  padding: 38px 36px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.sim-result::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: -46px; width: 130px;
  background: var(--ink-800); transform: skewX(-14deg);
}
.sim-result::after {
  content: ""; position: absolute; top: -13px; right: 34px;
  width: 88px; height: 20px;
  background: var(--lime-400); transform: skewX(-24deg);
}
.sim-result > * { position: relative; z-index: 1; }
.sim-status {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--n-300);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 5px 12px; border-radius: 6px;
  margin-bottom: 22px;
}
.sim-result-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--n-300);
  margin-bottom: 8px;
}
.sim-result-value {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(34px, 3.6vw, 44px); letter-spacing: -.02em;
  color: var(--lime-400);
  line-height: 1.1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.sim-result-sub { font-size: 13.5px; color: var(--n-300); margin-bottom: 26px; }
.sim-result .btn { align-self: flex-start; }
.sim-disclaimer { font-size: 11.5px; color: var(--n-500); margin-top: 18px; max-width: 40ch; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--n-100);
  border-radius: 12px; overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 15.5px; font-weight: 700; text-align: left; color: var(--ink-900);
}
.faq-q .icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px;
  background: var(--n-050); color: var(--ink-900);
  display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-q .icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--lime-400); color: var(--ink-900); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--n-700); }

/* ---------- CTA final ---------- */
.cta-band {
  position: relative; border-radius: 20px; overflow: hidden;
  padding: 76px 8%; text-align: center; color: #fff;
  background: var(--ink-900);
}
.cta-band .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .30;
}
.cta-band::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -70px; width: 150px;
  background: var(--lime-400); transform: skewX(-14deg);
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: var(--n-300); font-size: 16.5px; max-width: 54ch; margin: 0 auto 32px; }

/* ---------- Blog (página separada) ---------- */
.page-hero {
  background: var(--ink-900); color: #fff;
  padding: 72px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -70px; width: 170px;
  background: var(--ink-800); transform: skewX(-14deg);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--n-300); font-size: 17px; max-width: 56ch; }
/* Duas colunas: com poucos artigos, dá mais peso à foto e ao título */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post {
  background: #fff; border: 1px solid var(--n-100); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  background: linear-gradient(120deg, var(--ink-900) 55%, var(--ink-800) 55.2%);
  position: relative; overflow: hidden;
}
.post-thumb::after {
  content: ""; position: absolute; right: -30px; top: 0; bottom: 0; width: 54px;
  background: var(--lime-400); transform: skewX(-14deg); opacity: .9;
}
.post-thumb img { height: 34px; width: auto; opacity: .92; }
/* Card com foto real: a imagem preenche a área toda */
.post-thumb.photo { background: var(--n-100); display: block; }
.post-thumb.photo::after { display: none; }
.post-thumb.photo img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.post.soon { opacity: .78; }
.post.soon .post-tag { color: var(--n-500); }
a.post h3 { transition: color .15s ease; }
a.post:hover h3 { color: var(--lime-700); }
a.post:hover .post-link { color: var(--ink-900); }
.post-body { padding: 22px 24px 26px; }
.post-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--lime-700);
}
.post h3 { font-size: 16.5px; font-weight: 800; margin: 10px 0 8px; }
.post p { font-size: 14px; color: var(--n-700); }
.post-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--n-500);
}

/* ---------- Artigo do blog ---------- */
.article-hero {
  background: var(--ink-900); color: #fff;
  padding: 60px 0 0; position: relative; overflow: hidden;
}
.article-hero::after {
  content: ""; position: absolute; top: 0; right: -70px; width: 170px; height: 280px;
  background: var(--ink-800); transform: skewX(-14deg);
}
.article-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--n-500);
  display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.breadcrumb a { color: var(--n-300); }
.breadcrumb a:hover { color: var(--lime-400); }
.article-hero h1 {
  font-size: clamp(29px, 3.9vw, 44px); font-weight: 800; line-height: 1.14;
  max-width: 20ch; margin-bottom: 18px;
}
.article-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--n-500); letter-spacing: .06em;
  padding-bottom: 52px;
}
.article-meta .tag {
  background: var(--lime-400); color: var(--ink-900);
  padding: 4px 11px; border-radius: 6px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 11px;
}
.article-cover {
  width: min(1120px, 92%); margin: -46px auto 0; position: relative; z-index: 2;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.article-cover img { width: 100%; height: clamp(200px, 30vw, 340px); object-fit: cover; }

.article-body { padding: 62px 0 84px; }
/* Coluna estreita de propósito: ~75 caracteres por linha */
.article-body .container { max-width: 590px; }
.article-body .lead {
  font-size: 20px; line-height: 1.6; color: var(--ink-900); font-weight: 500;
  margin-bottom: 26px;
}
.article-body p { font-size: 17.5px; line-height: 1.75; color: var(--n-700); margin-bottom: 20px; }
.article-body h2 {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; color: var(--ink-900);
  margin: 46px 0 16px; line-height: 1.25;
}
.article-body h3 {
  font-size: 18px; font-weight: 800; color: var(--ink-900);
  margin: 30px 0 10px;
}
.article-body ul { list-style: none; display: grid; gap: 12px; margin: 0 0 24px; }
.article-body ul li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 17.5px; line-height: 1.65; color: var(--n-700);
}
.article-body ul li .tick { width: 14px; height: 7px; flex-shrink: 0; }
.article-body strong { color: var(--ink-900); font-weight: 700; }

/* Passo numerado dentro do artigo */
.article-steps { display: grid; gap: 14px; margin: 26px 0 30px; }
.article-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--n-050); border: 1px solid var(--n-100);
  border-radius: var(--radius); padding: 20px 22px;
}
.article-step .n {
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
  color: var(--ink-900); background: var(--lime-400);
  min-width: 40px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  transform: skewX(-14deg); flex-shrink: 0; margin-top: 2px;
}
.article-step .n span { transform: skewX(14deg); }
.article-step h3 { margin: 0 0 5px; font-size: 16.5px; }
.article-step p { margin: 0; font-size: 15px; }

/* Destaque de citação/ideia central */
.article-pull {
  border-left: 3px solid var(--lime-400);
  padding: 6px 0 6px 22px; margin: 30px 0;
}
.article-pull p {
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; line-height: 1.45; color: var(--ink-900); margin: 0 0 6px;
}
.article-pull p:last-child { margin-bottom: 0; }

/* CTA ao fim do artigo */
.article-cta {
  background: var(--ink-900); color: #fff;
  border-radius: var(--radius); padding: 40px 38px;
  margin-top: 52px; position: relative; overflow: hidden;
}
.article-cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: -60px; width: 130px;
  background: var(--lime-400); transform: skewX(-14deg);
}
.article-cta > * { position: relative; z-index: 1; }
.article-cta h2 { color: #fff; margin: 0 0 10px; font-size: 24px; }
.article-cta p { color: var(--n-300); font-size: 16px; margin-bottom: 24px; max-width: 46ch; }

.article-nav {
  border-top: 1px solid var(--n-100); margin-top: 56px; padding-top: 26px;
}
.article-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--ink-900);
}
.article-nav a:hover { color: var(--lime-700); }

/* ---------- Footer ---------- */
footer.site { background: var(--ink-950); color: #fff; padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand img { height: 34px; width: auto; }
/* Assinatura discreta da holding, em lockup com o logo */
.powered {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--n-500);
  margin-top: 11px;
}
.powered .ae { color: var(--n-300); font-weight: 600; letter-spacing: .1em; }
.footer-desc { font-size: 14px; color: var(--n-300); max-width: 32ch; margin-top: 18px; }
/* Impede que CNPJ e telefone quebrem no meio do número */
.nb { white-space: nowrap; }
.footer-bottom a { color: inherit; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-bottom a:hover { color: #fff; border-bottom-color: var(--lime-400); }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; color: var(--n-500);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--n-300); font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--n-500);
}
.footer-bottom .mono { font-size: 12.5px; }
.footer-legal { font-size: 12px; color: var(--n-500); margin-top: 18px; max-width: 92ch; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6, 19, 31, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 28px 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: 18px;
  width: min(520px, 100%);
  padding: 34px 32px 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .28s cubic-bezier(.2, .9, .3, 1.15);
  margin: auto 0;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(22px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 9px;
  border: none; background: var(--n-050); color: var(--ink-900);
  display: grid; place-items: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--n-100); }
.modal-close svg { width: 15px; height: 15px; }
.modal h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--n-700); margin-bottom: 22px; }

.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 6px; }
.profile-option input { position: absolute; opacity: 0; pointer-events: none; }
.profile-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1.5px solid var(--n-100); border-radius: 12px;
  padding: 14px 8px 12px;
  cursor: pointer; text-align: center;
  transition: border-color .15s, background .15s, box-shadow .15s;
  height: 100%;
}
.profile-card svg { width: 24px; height: 24px; color: var(--ink-900); }
.profile-card span { font-size: 12.5px; font-weight: 700; color: var(--ink-900); line-height: 1.3; }
.profile-card:hover { border-color: var(--n-300); }
.profile-option input:checked + .profile-card {
  border-color: var(--lime-600); background: var(--lime-100);
  box-shadow: 0 0 0 3px var(--lime-100);
}
.profile-option input:focus-visible + .profile-card { outline: 3px solid var(--lime-600); outline-offset: 2px; }

.field { margin-bottom: 16px; }
.field > label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field > label .opt { font-weight: 500; color: var(--n-500); }
.field input[type="text"], .field input[type="tel"], .field textarea {
  width: 100%; border: 1.5px solid var(--n-100); border-radius: 10px;
  padding: 13px 15px; font-size: 15px; font-family: var(--font-body);
  transition: border-color .15s, box-shadow .15s;
  outline: none; color: var(--ink-900);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus { border-color: var(--lime-600); box-shadow: 0 0 0 4px var(--lime-100); }
.field-error { display: none; font-size: 12.5px; color: var(--danger); font-weight: 600; margin-top: 6px; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }

.file-drop { position: relative; }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop-box {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px dashed var(--n-300); border-radius: 10px;
  padding: 14px 15px;
  font-size: 13.5px; font-weight: 600; color: var(--n-700);
  transition: border-color .15s, background .15s;
}
.file-drop:hover .file-drop-box { border-color: var(--lime-600); background: var(--n-050); }
.file-drop-box svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--ink-900); }
.file-drop-box .file-name { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--lime-700); }

.conditional { display: none; }
.conditional.show { display: block; }

.modal form .btn { width: 100%; margin-top: 8px; }
.modal-note { font-size: 11.5px; color: var(--n-500); text-align: center; margin-top: 14px; }

/* Honeypot: fora da tela, mas não display:none — bot precisa "ver" o campo */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-error {
  display: none;
  margin-top: 14px; padding: 12px 14px;
  border-radius: 10px;
  background: #FDECEE; color: #A32B39;
  font-size: 13.5px; font-weight: 600;
  border: 1px solid #F6C9CE;
}
.form-error.show { display: block; }

.btn.loading { opacity: .75; cursor: progress; }
.btn:disabled { cursor: not-allowed; }

.modal-success { display: none; text-align: center; padding: 14px 0 6px; }
.modal-success .check {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--lime-400); color: var(--ink-900);
  display: grid; place-items: center; margin: 0 auto 18px;
  transform: skewX(-6deg);
}
.modal-success .check svg { width: 30px; height: 30px; transform: skewX(6deg); }
.modal-success .status-chip {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em;
  background: var(--lime-100); color: var(--lime-700);
  padding: 5px 12px; border-radius: 6px;
  display: inline-block; margin-bottom: 12px;
}
.modal-success h3 { margin-bottom: 8px; }
.modal-success p { font-size: 14.5px; color: var(--n-700); margin-bottom: 24px; }
.modal.done .modal-form-wrap { display: none; }
.modal.done .modal-success { display: block; }

/* ---------- Animações ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding: 60px 0 100px; }
  .hero-photo img { height: 340px; }
  .segments { grid-template-columns: 1fr; }
  .steps, .benefits, .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-cta .hamburger { display: flex; }
  .steps, .benefits, .blog-grid, .stats-grid, .profile-grid { grid-template-columns: 1fr; }
  .profile-card { flex-direction: row; justify-content: flex-start; padding: 12px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 56px 7%; border-radius: 16px; }
  .hero-sim-cta { position: static; margin-top: 18px; justify-content: center; }
  .hero-visual::after { display: none; }
  .modal { padding: 28px 22px 24px; }
  .article-body { padding: 44px 0 60px; }
  .article-cta { padding: 32px 26px; }
  .article-step { flex-direction: column; gap: 12px; }
  .sim-pane.active { grid-template-columns: 1fr; }
  .sim-controls { padding: 26px 22px; }
  .sim-result { padding: 30px 24px; }
  .sim-tab { font-size: 13.5px; padding: 15px 8px; gap: 7px; }
  .sim-tab svg { width: 17px; height: 17px; }
  .sim-chips { flex-wrap: wrap; }
  .currency-wrap input { font-size: 18px; }
}
