/* ============================================================
   Verto Contabilidade
   Base: stripe/DESIGN.md — paleta, raios, espaçamentos e mesh.
   Desvio consciente: os pesos tipográficos sobem de 300 para
   400/500/600 e o cinza de texto escurece, priorizando leitura.
   ============================================================ */

:root {
  /* Brand & accent */
  --primary: #533afd;
  --primary-deep: #4434d4;
  --primary-press: #2e2b8c;
  --primary-soft: #665efd;
  --primary-subdued: #b9b9f9;
  --brand-dark-900: #1c1e54;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --lemon: #8a5c1f;

  /* Surface */
  --canvas: #ffffff;
  --canvas-soft: #f6f9fc;
  --canvas-cream: #f5e9d4;
  --hairline: #e3e8ee;
  --hairline-input: #a8c3de;

  /* Text — escurecidos em relação ao DESIGN.md para ganhar contraste */
  --ink: #0d253d;
  --ink-secondary: #2b3f59;
  --ink-mute: #4d5f7a;
  --ink-mute-2: #47586f;
  --on-primary: #ffffff;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xxs: 2px;
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 12px;
  --s-lg: 16px;
  --s-xl: 24px;
  --s-xxl: 32px;
  --s-huge: 64px;

  /* Elevation */
  --e1: rgba(0, 55, 112, .08) 0 1px 3px;
  --e2: rgba(0, 55, 112, .08) 0 8px 24px, rgba(0, 55, 112, .04) 0 2px 6px;
  --e3: rgba(0, 55, 112, .10) 0 24px 60px, rgba(0, 55, 112, .05) 0 4px 12px;

  --container: 1200px;
  --nav-h: 72px;
  --font: "Inter", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, fieldset, legend { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; min-width: 0; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.num { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

::selection { background: var(--primary-subdued); color: var(--primary-press); }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: var(--r-xs); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: var(--on-primary); font-weight: 500;
  padding: 10px 16px; border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-xl); }

.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--canvas-soft); border-block: 1px solid var(--hairline); }

.section__head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__head .pill-tag { margin-bottom: var(--s-lg); }
.section__lead { font-size: 17px; color: var(--ink-mute); margin-top: var(--s-lg); }
.section__head .btn { margin-top: var(--s-xl); }

/* ---------- Tipografia ---------- */
.display-xl { font-size: 46px; font-weight: 500; line-height: 1.14; letter-spacing: -.9px; }
.display-lg { font-size: 30px; font-weight: 500; line-height: 1.2; letter-spacing: -.5px; }

.pill-tag {
  display: inline-block;
  background: var(--primary-subdued); color: var(--primary-press);
  font-size: 11px; font-weight: 600; line-height: 1.2; letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.pill-tag--dark { background: rgba(28, 30, 84, .12); color: var(--brand-dark-900); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 15px; font-weight: 500; line-height: 1;
  padding: 13px 20px; border-radius: var(--r-pill);
  text-decoration: none; white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              box-shadow .18s var(--ease), transform .18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--sm { font-size: 14px; padding: 10px 16px; }
.btn--lg { font-size: 16px; padding: 15px 26px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--e1); }
.btn--primary:hover { background: var(--primary-deep); box-shadow: rgba(83, 58, 253, .3) 0 6px 18px; }
.btn--primary:active { background: var(--primary-press); }

.btn--secondary { background: var(--canvas); color: var(--primary); box-shadow: inset 0 0 0 1.5px var(--primary); }
.btn--secondary:hover { background: rgba(83, 58, 253, .07); }

.btn--ghost { color: var(--ink-secondary); padding-inline: 0; }
.btn--ghost:hover { color: var(--primary); }

.btn--on-light { background: var(--canvas); color: var(--brand-dark-900); font-weight: 600; }
.btn--on-light:hover { background: var(--canvas-soft); }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); text-decoration: none; font-size: 15px; font-weight: 500;
}
.link span { transition: transform .2s var(--ease); }
.link:hover span { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-stuck {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--e1);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-xl);
  height: var(--nav-h);
}

.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 30px; height: 30px; border-radius: var(--r-md);
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
}
.brand__mark svg { width: 19px; height: 19px; }
.brand__word { font-size: 20px; font-weight: 600; letter-spacing: -.4px; }

.nav__links { display: flex; align-items: center; gap: var(--s-xl); }
.nav__links > a {
  color: var(--ink-mute-2); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .16s var(--ease);
}
.nav__links > a:hover { color: var(--primary); }
.nav__links-cta { display: none; }

.nav__actions { display: flex; align-items: center; gap: var(--s-lg); }
.nav__signin { color: var(--ink-secondary); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav__signin:hover { color: var(--primary); }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: var(--r-md); position: relative; }
.nav__burger span {
  position: absolute; left: 13px; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s var(--ease);
}
.nav__burger span:nth-child(1) { top: 19px; }
.nav__burger span:nth-child(2) { top: 25px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 72px) 0 96px; }

.mesh { position: absolute; inset: 0 0 auto; height: 820px; z-index: 0; pointer-events: none; }
.mesh svg { width: 100%; height: 100%; }
.mesh::after {
  content: ""; position: absolute; inset: auto 0 0; height: 240px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--canvas));
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: var(--s-huge); align-items: center;
}
.hero__copy { max-width: 580px; }
.hero__title {
  font-size: 56px; font-weight: 500; line-height: 1.06; letter-spacing: -1.5px;
  margin: var(--s-xl) 0 var(--s-xl);
}
.hero__lead { font-size: 17.5px; color: var(--ink-secondary); max-width: 31em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-md); margin-top: var(--s-xxl); }
.hero__notes {
  display: flex; flex-wrap: wrap; gap: var(--s-md) var(--s-xl);
  margin-top: var(--s-xl); font-size: 14px; font-weight: 500; color: var(--ink-mute);
}
.hero__notes li { display: flex; align-items: center; gap: 7px; }
.hero__notes li::before {
  content: ""; width: 15px; height: 15px; border-radius: var(--r-pill); flex: none;
  background: var(--primary-subdued);
  box-shadow: inset 0 0 0 4px var(--canvas), 0 0 0 1.5px var(--primary-subdued);
}

/* split de palavras — o padding abre espaço para descendentes (p, g, ç) */
.word {
  display: inline-block; overflow: hidden; vertical-align: top;
  padding-bottom: .18em; margin-bottom: -.18em;
}
.word > i { display: inline-block; font-style: inherit; }

/* ---------- Peça de entrega (relatório) ---------- */
.hero__mock { position: relative; }

.mock {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); box-shadow: var(--e3); overflow: hidden;
}
.mock__chrome {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-md);
  padding: 14px var(--s-xl); border-bottom: 1px solid var(--hairline);
  background: var(--canvas-soft);
}
.mock__stamp {
  font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--primary-deep);
}
.mock__period { font-size: 13px; font-weight: 500; color: var(--ink-mute); }

.mock__main { padding: var(--s-xl); }
.mock__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-md); margin-bottom: var(--s-lg); }
.mock__eyebrow {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-mute);
}
.mock__figure { display: block; font-size: 30px; font-weight: 600; letter-spacing: -.7px; margin-top: 5px; }

.mock__sign {
  display: flex; align-items: center; gap: var(--s-md);
  margin-top: var(--s-xl); padding-top: var(--s-lg); border-top: 1px solid var(--hairline);
}
.mock__sign strong { display: block; font-size: 14.5px; font-weight: 600; }
.mock__sign div span { font-size: 12.5px; color: var(--ink-mute); }

.chip {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .02em;
  padding: 4px 9px; border-radius: var(--r-pill); white-space: nowrap;
}
.chip--ok { background: rgba(83, 58, 253, .1); color: var(--primary-deep); }
.chip--wait { background: #fbf0e0; color: var(--lemon); }
.chip--soft { background: var(--canvas-soft); color: var(--ink-mute); border: 1px solid var(--hairline); }

.mock__table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.mock__table th {
  text-align: left; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-mute); padding: 8px 0; border-bottom: 1px solid var(--hairline);
}
.mock__table td { padding: 11px 0; border-bottom: 1px solid var(--hairline); color: var(--ink-secondary); }
.mock__table tbody th[scope="row"], .mock__table tfoot th[scope="row"] {
  font-size: 13.5px; font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--ink-secondary); padding: 11px 0; border-bottom: 1px solid var(--hairline);
}
.mock__table .num { font-weight: 500; color: var(--ink); }
.mock__table tbody tr:last-child td, .mock__table tbody tr:last-child th { border-bottom: 0; }
.mock__table--tight td, .mock__table--tight tbody th[scope="row"] { padding: 9px 0; }
/* vem depois e com a mesma especificidade da regra de th[scope=row] acima, para vencer */
.mock__table tfoot th[scope="row"], .mock__table tfoot td {
  border-top: 1px solid var(--hairline); border-bottom: 0;
  padding: 13px 0 0; color: var(--ink); font-weight: 600;
}
.ta-r { text-align: right; }

.mock-float {
  position: absolute; background: var(--canvas);
  border: 1px solid var(--hairline); border-radius: var(--r-lg);
  box-shadow: var(--e2); padding: var(--s-lg);
}
.mock-float--chart { top: -36px; right: -28px; width: 214px; }
.mock-float__value { display: block; font-size: 22px; font-weight: 600; letter-spacing: -.4px; margin: 5px 0 13px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 52px; }
.bars span {
  flex: 1; height: var(--h); border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--primary-subdued), var(--primary-soft));
}
.bars span:last-child { background: linear-gradient(to top, var(--primary), var(--ruby)); }
.mock-float__delta { display: block; margin-top: 10px; font-size: 12px; font-weight: 500; color: var(--ink-mute); }

.mock-float--payroll { bottom: -30px; left: -34px; display: flex; align-items: center; gap: var(--s-md); max-width: 280px; }
.mock-float__icon {
  width: 32px; height: 32px; border-radius: var(--r-pill); flex: none;
  background: rgba(83, 58, 253, .1); color: var(--primary);
  display: grid; place-items: center;
}
.mock-float__icon svg { width: 17px; height: 17px; }
.mock-float--payroll strong { display: block; font-size: 14px; font-weight: 600; }
.mock-float--payroll span { font-size: 12.5px; color: var(--ink-mute); }

/* ---------- Logos ---------- */
.logos { padding: 8px 0 72px; }
.logos__label { text-align: center; font-size: 14px; font-weight: 500; color: var(--ink-mute); margin-bottom: var(--s-xl); }
.logos__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos__row { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.logos__group { display: flex; gap: 56px; padding-right: 56px; }
.logos__row span {
  font-size: 21px; font-weight: 600; letter-spacing: -.4px;
  color: var(--ink-mute); opacity: .5; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Números ---------- */
.stats { padding-bottom: 96px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-xl);
  border-top: 1px solid var(--hairline); padding-top: var(--s-xxl);
}
.stat strong { display: block; font-size: 40px; font-weight: 600; line-height: 1.1; letter-spacing: -1px; }
.stat span { display: block; margin-top: var(--s-sm); font-size: 14.5px; color: var(--ink-mute); max-width: 22em; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-xl); }

.card {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: var(--s-xxl);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--e2); border-color: #d5dee9; }
.card__icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--r-md); background: rgba(83, 58, 253, .09); color: var(--primary);
  margin-bottom: var(--s-xl);
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -.3px; margin-bottom: var(--s-sm); }
.card p { color: var(--ink-mute); font-size: 15.5px; }

/* ---------- Blocos de serviço ---------- */
.feature {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-huge); align-items: center;
  padding: 56px 0; border-top: 1px solid var(--hairline);
}
.feature:first-of-type { border-top: 0; padding-top: 0; }
.feature--rev .feature__copy { order: 2; }
.feature__copy .pill-tag { margin-bottom: var(--s-lg); }
.feature__copy h3 { margin-bottom: var(--s-md); }
.feature__copy > p { color: var(--ink-mute); font-size: 17px; max-width: 33em; }

.checklist { margin-top: var(--s-xl); display: grid; gap: var(--s-md); }
.checklist li { position: relative; padding-left: 28px; color: var(--ink-secondary); font-size: 15.5px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 17px; height: 17px;
  border-radius: var(--r-pill); background: rgba(83, 58, 253, .12);
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 9.5px; width: 7px; height: 3.5px;
  border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
.checklist--sm li { font-size: 15px; }
.checklist + .link { margin-top: var(--s-xl); }

.panel {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); box-shadow: var(--e2); padding: var(--s-xl);
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-md);
  padding-bottom: var(--s-lg); margin-bottom: var(--s-sm); border-bottom: 1px solid var(--hairline);
}
.panel__head strong { font-size: 15.5px; font-weight: 600; }
.panel__meta { display: block; font-size: 12.5px; color: var(--ink-mute); }
.panel__meta--foot { margin-top: var(--s-md); }
.panel__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-md); margin-top: var(--s-lg); }

.timeline li {
  display: grid; grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center; gap: var(--s-md);
  padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 14.5px;
}
.timeline li:last-child { border-bottom: 0; }
.timeline li span:first-child { color: var(--ink-mute); font-size: 13px; font-weight: 500; }
.timeline em { font-style: normal; color: var(--ink-secondary); }
.timeline .is-next em { color: var(--ink); font-weight: 500; }

.avatar {
  width: 36px; height: 36px; flex: none; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--primary-soft), var(--ruby));
  color: #fff; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
}
.panel--chat .panel__head { align-items: center; gap: var(--s-md); justify-content: flex-start; }
.chat { display: grid; gap: var(--s-md); padding-top: var(--s-lg); }
.chat p { font-size: 14.5px; padding: 11px 15px; border-radius: var(--r-lg); max-width: 88%; }
.chat__in { background: var(--canvas-soft); border: 1px solid var(--hairline); color: var(--ink-secondary); justify-self: start; border-bottom-left-radius: var(--r-xs); }
.chat__out { background: var(--primary); color: var(--on-primary); justify-self: end; border-bottom-right-radius: var(--r-xs); }

/* ---------- Banda cream ---------- */
.cream {
  background: var(--canvas-cream); color: var(--ink);
  border-radius: var(--r-lg); padding: 56px;
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: var(--s-huge); align-items: center;
}
.cream__copy h2 { margin: var(--s-lg) 0 var(--s-md); }
.cream__copy p { color: var(--ink-secondary); max-width: 34em; font-size: 16.5px; }
.cream__copy .btn { margin-top: var(--s-xl); }
.steps { display: grid; gap: var(--s-lg); }
.steps li {
  background: rgba(255, 255, 255, .72); border-radius: var(--r-md);
  padding: var(--s-xl); display: grid; grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px var(--s-lg);
}
.steps__n { grid-row: span 2; font-size: 14px; font-weight: 600; color: var(--primary-deep); padding-top: 2px; }
.steps strong { font-weight: 600; font-size: 16.5px; }
.steps em { font-style: normal; font-size: 15px; color: var(--ink-mute); }

/* ---------- Segmentos ---------- */
.segments { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-lg); }
.segment {
  display: block; text-decoration: none; color: inherit;
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.segment:hover { transform: translateY(-2px); box-shadow: var(--e2); border-color: var(--primary-subdued); }
.segment strong { display: block; font-weight: 600; font-size: 16.5px; margin-bottom: 4px; }
.segment span { font-size: 14px; color: var(--ink-mute); }

/* ---------- Toggle ---------- */
.toggle {
  display: inline-flex; gap: 4px; margin-top: var(--s-xl); padding: 4px;
  background: var(--canvas-soft); border: 1px solid var(--hairline); border-radius: var(--r-pill);
}
.toggle__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 500; padding: 9px 18px; border-radius: var(--r-pill); color: var(--ink-mute);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.toggle__btn.is-active { background: var(--canvas); color: var(--ink); box-shadow: var(--e1); }
.toggle__save {
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--primary-subdued); color: var(--primary-press);
  padding: 3px 8px; border-radius: var(--r-pill);
}

/* ---------- Honorários ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-xl); align-items: start; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: var(--s-xxl);
}
.price--featured {
  background: var(--brand-dark-900); color: var(--on-primary); border-color: var(--brand-dark-900);
  box-shadow: var(--e3);
}
.price__badge {
  position: absolute; top: -12px; left: var(--s-xxl);
  background: var(--primary); color: var(--on-primary);
  font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.price__name { font-size: 22px; font-weight: 600; letter-spacing: -.3px; }
.price__desc { font-size: 14.5px; color: var(--ink-mute); margin-top: 6px; min-height: 44px; }
.price--featured .price__desc { color: rgba(255, 255, 255, .72); }
.price__value { display: flex; align-items: baseline; gap: 3px; margin: var(--s-xl) 0; }
.price__value .num { font-size: 42px; font-weight: 600; letter-spacing: -1.2px; }
.price__cur { font-size: 17px; font-weight: 500; color: var(--ink-mute); }
.price--featured .price__cur, .price--featured .price__per { color: rgba(255, 255, 255, .72); }
.price__per { font-size: 14.5px; color: var(--ink-mute); }
.price__value--custom { font-size: 28px; font-weight: 600; letter-spacing: -.5px; }
.price .checklist { margin-top: var(--s-xl); }
.price--featured .checklist li { color: rgba(255, 255, 255, .88); }
.price--featured .checklist li::before { background: rgba(255, 255, 255, .18); }
.price--featured .checklist li::after { border-color: #fff; }
.pricing__note { margin-top: var(--s-xxl); text-align: center; font-size: 14px; color: var(--ink-mute); }

/* ---------- Depoimentos ---------- */
.quote {
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: var(--s-xxl); display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-xl);
}
.quote blockquote { font-size: 17px; line-height: 1.6; letter-spacing: -.1px; color: var(--ink-secondary); }
.quote figcaption { display: flex; align-items: center; gap: var(--s-md); }
.quote figcaption strong { display: block; font-weight: 600; font-size: 14.5px; }
.quote figcaption em { font-style: normal; font-size: 13.5px; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: var(--s-huge); align-items: start; }
.faq .section__head { margin-bottom: 0; max-width: 430px; }
.accordion { border-top: 1px solid var(--hairline); }
.acc { border-bottom: 1px solid var(--hairline); }
.acc__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-lg);
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 17px; font-weight: 500; line-height: 1.4; letter-spacing: -.2px;
  transition: color .18s var(--ease);
}
.acc__q:hover { color: var(--primary); }
.acc__q i { position: relative; width: 16px; height: 16px; flex: none; }
.acc__q i::before, .acc__q i::after {
  content: ""; position: absolute; background: var(--ink-mute); border-radius: 2px;
  transition: transform .25s var(--ease), background-color .18s var(--ease);
}
.acc__q i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__q i::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc.is-open .acc__q i::after { transform: rotate(90deg); }
.acc.is-open .acc__q { color: var(--primary); }
.acc.is-open .acc__q i::before, .acc.is-open .acc__q i::after { background: var(--primary); }
.acc__a { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.acc__a p { color: var(--ink-mute); font-size: 15.5px; padding-bottom: 22px; max-width: 52em; }

/* ---------- CTA ---------- */
.cta { background: var(--brand-dark-900); color: var(--on-primary); padding: 96px 0; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; width: 720px; height: 720px; right: -180px; top: -320px;
  background: radial-gradient(circle, rgba(83, 58, 253, .55), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.cta::after {
  content: ""; position: absolute; width: 560px; height: 560px; left: -200px; bottom: -300px;
  background: radial-gradient(circle, rgba(234, 34, 97, .3), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.cta__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: var(--s-huge); align-items: center; }
.cta__copy h2 { margin-bottom: var(--s-lg); }
.cta__copy p { color: rgba(255, 255, 255, .8); font-size: 17px; max-width: 32em; }
.checklist--dark li { color: rgba(255, 255, 255, .88); }
.checklist--dark li::before { background: rgba(255, 255, 255, .18); }
.checklist--dark li::after { border-color: #fff; }

/* ---------- Formulário ---------- */
.form {
  background: var(--canvas); border-radius: var(--r-lg); padding: var(--s-xxl);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-lg);
  box-shadow: var(--e3); color: var(--ink);
}
.field { grid-column: span 2; display: grid; gap: 6px; }
.field--half { grid-column: span 1; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--ink-secondary); }
.field input, .field select {
  background: var(--canvas); color: var(--ink); font-size: 15.5px; font-weight: 400;
  padding: 11px 13px; border-radius: var(--r-sm); border: 1px solid var(--hairline-input);
  min-height: 44px; width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder { color: #8b9bb0; }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(83, 58, 253, .16);
}
.field input[aria-invalid="true"] { border-color: var(--ruby); }
.form .btn { grid-column: span 2; margin-top: var(--s-sm); }
.form__legal { grid-column: span 2; font-size: 12px; color: var(--ink-mute); }
.form__ok {
  grid-column: span 2; display: block; font-size: 14px; font-weight: 500; color: var(--primary-deep);
  background: rgba(83, 58, 253, .09); padding: 11px 13px; border-radius: var(--r-sm);
}
.form__ok[hidden] { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--canvas); padding: var(--s-huge) 0 var(--s-xxl); border-top: 1px solid var(--hairline); color: var(--ink-mute); font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: var(--s-xl); }
.footer__brand p { margin-top: var(--s-md); max-width: 26em; }
.footer nav { display: grid; gap: 11px; align-content: start; }
.footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.footer nav a { color: var(--ink-mute); text-decoration: none; }
.footer nav a:hover { color: var(--primary); }
.footer__legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-md);
  margin-top: var(--s-huge); padding-top: var(--s-xl); border-top: 1px solid var(--hairline); font-size: 13px;
}
.footer__links { display: flex; gap: var(--s-lg); }
.footer__links a { color: var(--ink-mute); text-decoration: none; }
.footer__links a:hover { color: var(--primary); }

/* ---------- Reveal (só quando o GSAP carrega) ---------- */
.gsap-ready .reveal, .gsap-ready [data-anim] { opacity: 0; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1180px) {
  .hero__inner { gap: var(--s-xxl); }
  .hero__title { font-size: 50px; letter-spacing: -1.2px; }
  .mock-float--chart { right: -8px; }
  .mock-float--payroll { left: -12px; }
}

@media (max-width: 1023px) {
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__copy { max-width: 660px; }
  .hero__title { font-size: 44px; letter-spacing: -1px; }
  .display-xl { font-size: 36px; letter-spacing: -.6px; }
  .display-lg { font-size: 27px; letter-spacing: -.4px; }
  .hero__mock { margin-top: var(--s-xxl); }
  .mock-float--chart { top: -24px; right: 0; }
  .mock-float--payroll { bottom: -20px; left: 0; }

  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-xxl) var(--s-xl); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .segments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature, .cream, .cta__inner, .faq { grid-template-columns: minmax(0, 1fr); gap: var(--s-xxl); }
  .feature--rev .feature__copy { order: 0; }
  .cream { padding: var(--s-xxl); }
  .faq .section__head { max-width: none; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-xxl) var(--s-xl); }

  /* nav mobile */
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline);
    padding: var(--s-sm) var(--s-xl) var(--s-xl); box-shadow: var(--e2);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav.is-open { background: var(--canvas); }
  .nav__links > a { padding: 15px 0; border-bottom: 1px solid var(--hairline); font-size: 16.5px; color: var(--ink); }
  .nav__links-cta { display: grid; gap: var(--s-md); margin-top: var(--s-xl); }
  .nav__links-cta .btn--ghost { justify-content: center; box-shadow: inset 0 0 0 1px var(--hairline); padding: 13px; }
  .nav__signin, .nav__actions .btn { display: none; }
  .nav__burger { display: block; }
}

@media (max-width: 767px) {
  .container { padding-inline: var(--s-lg); }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: var(--s-xxl); }
  .hero__title { font-size: 34px; letter-spacing: -.8px; }
  .display-xl { font-size: 29px; letter-spacing: -.5px; }
  .display-lg { font-size: 24px; letter-spacing: -.3px; }
  .hero__lead, .section__lead, .feature__copy > p, .cta__copy p { font-size: 16px; }
  .btn { min-height: 46px; }
  .hero__cta .btn { width: 100%; }

  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat strong { font-size: 30px; letter-spacing: -.6px; }
  .grid-3, .segments, .pricing { grid-template-columns: minmax(0, 1fr); }
  .card, .quote, .price, .panel { padding: var(--s-xl); }

  .mock__main { padding: var(--s-lg); }
  .mock__chrome { padding: 12px var(--s-lg); }
  .mock__table th:nth-child(2), .mock__table td:nth-child(2) { display: none; }
  .mock__table--tight th:nth-child(2), .mock__table--tight td:nth-child(2) { display: table-cell; }
  .mock-float--chart { position: static; width: auto; margin-top: var(--s-lg); }
  .mock-float--payroll { position: static; max-width: none; margin-top: var(--s-md); }

  .price--featured { order: -1; }
  .price__badge { left: var(--s-xl); }
  .form { padding: var(--s-xl); }
  .field--half { grid-column: span 2; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .gsap-ready .reveal, .gsap-ready [data-anim] { opacity: 1 !important; }
}
