/* =========================================================
   CONSULT ASSESSORIA CONTÁBIL — styles.css
   Mobile-first · sem dependências externas
   ========================================================= */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Paleta */
  --navy-900: #081827;
  --navy: #0B1F33;
  --blue: #123B5D;
  --blue-600: #1C4E78;
  --blue-300: #8FB3D4;
  --green: #2E8065;
  --green-700: #246A53;
  --green-300: #6CC3A2;
  --green-50: #EAF5F0;
  --off: #F7F8F9;
  --white: #FFFFFF;
  --gray: #667085;
  --gray-300: #D0D5DD;
  --gray-200: #E4E7EC;
  --ink: #101828;
  --ink-700: #344054;

  /* Tipografia */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-body: 1.0625rem;
  --fs-h1: clamp(2.125rem, 1.3rem + 3.1vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 1.2rem + 2.2vw, 2.625rem);
  --fs-h3: 1.1875rem;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 72px;

  /* Efeitos */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 1px 3px rgba(16, 24, 40, .06), 0 8px 24px -8px rgba(16, 24, 40, .10);
  --shadow-lg: 0 24px 48px -16px rgba(11, 31, 51, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
address { font-style: normal; }
[hidden] { display: none !important; }
h1, h2, h3 { color: var(--ink); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -.01em; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--white); color: var(--navy); padding: .75rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--green-300); outline-offset: 3px; border-radius: 6px; }
main:focus { outline: none; }
.section--soft :focus-visible, .section:not(.section--dark) :focus-visible, .form-card :focus-visible { outline-color: var(--blue-600); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: var(--white); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .8rem 1.4rem;
  border-radius: 999px; border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 1rem; line-height: 1.2; letter-spacing: -.005em; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--green); box-shadow: 0 8px 20px -8px rgba(46, 128, 101, .6); }
.btn-primary:hover { --btn-bg: var(--green-700); box-shadow: 0 12px 28px -10px rgba(46, 128, 101, .7); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--gray-300); }
.btn-outline:hover { --btn-bd: var(--navy); --btn-bg: var(--white); }
.btn-ghost-light { --btn-bg: rgba(255,255,255,.06); --btn-fg: var(--white); --btn-bd: rgba(255,255,255,.28); }
.btn-ghost-light:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: rgba(255,255,255,.6); }
.btn-sm { min-height: 42px; padding: .6rem 1.1rem; font-size: .9375rem; }
.btn-lg { min-height: 54px; padding: 1rem 1.6rem; font-size: 1.0625rem; }
.btn-xl { min-height: 60px; padding: 1.1rem 2.2rem; font-size: 1.125rem; }
.btn-block { width: 100%; }
.btn-primary:has(.icon use[href="#i-arrow"]):hover .icon { transform: translateX(3px); }
.btn .icon { transition: transform .25s var(--ease); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--green-700);
  border-bottom: 1.5px solid transparent; padding-block: .25rem; transition: border-color .2s, gap .2s;
}
.link-arrow:hover { border-color: currentColor; gap: .7rem; }
.link-btn { color: rgba(255,255,255,.72); text-align: left; transition: color .2s; }
.link-btn:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Eyebrow / cabeçalhos de seção ---------- */
.eyebrow {
  display: inline-flex; flex-wrap: nowrap; align-items: center; gap: .6rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: var(--green-300); }
@media (max-width: 420px) { .eyebrow { letter-spacing: .08em; font-size: .75rem; } }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-lead { margin-top: 1.1rem; font-size: 1.125rem; color: var(--gray); max-width: 62ch; }
.section-cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; justify-content: center; }

.section { position: relative; padding-block: var(--section-y); }
.section--soft { background: var(--off); }
.section--dark { background: var(--navy); color: rgba(255,255,255,.78); overflow: hidden; }
.section--dark h2, .section--dark h3 { color: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  color: var(--white);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.is-scrolled, .site-header--solid {
  background: rgba(11, 31, 51, .82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 30px -18px rgba(0,0,0,.5);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .75rem; margin-right: auto; position: relative; z-index: 2; }
.brand-mark {
  position: relative; width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(145deg, var(--blue-600), var(--blue));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  display: grid; align-content: end; grid-auto-flow: column; justify-content: center; gap: 3px; padding-bottom: 9px;
}
.brand-mark span { display: block; width: 5px; border-radius: 2px; background: var(--white); }
.brand-mark span:nth-child(1) { height: 9px; opacity: .55; }
.brand-mark span:nth-child(2) { height: 14px; opacity: .8; }
.brand-mark span:nth-child(3) { height: 20px; background: var(--green-300); }
.brand-mark--dark { background: linear-gradient(145deg, var(--blue), var(--navy)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; font-size: 1.1875rem; letter-spacing: .16em; }
.brand-sub { font-size: .6875rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: .72; margin-top: 5px; }

.header-cta { display: none; }

/* Navegação mobile (off-canvas) */
.nav-toggle {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-content: center; gap: 5px;
  border: 1px solid rgba(255,255,255,.22); position: relative; z-index: 2;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed; inset: 0; z-index: 1;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
  background: var(--navy);
  background-image: radial-gradient(circle at 100% 0, rgba(46,128,101,.18), transparent 50%);
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  overflow-y: auto;
}
.main-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.main-nav ul { display: flex; flex-direction: column; }
.main-nav li a {
  display: block; padding: 1rem 0; font-size: 1.375rem; font-weight: 600; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-cta-mobile { width: 100%; }
body.nav-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden; color: rgba(255,255,255,.78);
  background: var(--navy);
  padding: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem)) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 30%, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-glow--a { width: 520px; height: 520px; right: -140px; top: -120px; background: rgba(28, 78, 120, .55); }
.hero-glow--b { width: 380px; height: 380px; left: -160px; bottom: -180px; background: rgba(46, 128, 101, .22); }

.hero-inner { position: relative; display: grid; gap: clamp(3rem, 6vw, 4rem); align-items: center; }
.hero h1 { color: var(--white); font-size: var(--fs-h1); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; max-width: 19ch; text-wrap: balance; }
.hero h1 .hl {
  background: linear-gradient(90deg, #BFE6D6, var(--green-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); max-width: 52ch; color: rgba(255,255,255,.76); }
.hero-actions { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .8rem; }
.hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-trust li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .85rem; border-radius: 999px; font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
}
.hero-trust .icon { color: var(--green-300); width: 1.05em; height: 1.05em; }

/* Painel */
.hero-visual { position: relative; }
.panel {
  position: relative; border-radius: var(--radius-lg); padding: 1.25rem;
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.panel-dots { display: flex; gap: 6px; }
.panel-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.panel-title { font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .02em; }
.panel-title span { font-weight: 500; color: rgba(255,255,255,.5); margin-left: .35rem; }

.panel-chart {
  position: relative; height: 150px; border-radius: var(--radius); overflow: hidden;
  background: rgba(8, 24, 39, .55); border: 1px solid rgba(255,255,255,.08); padding: 14px 14px 0;
}
.panel-chart svg { position: absolute; inset: 14px 0 0; width: 100%; height: calc(100% - 14px); }
.chart-grid path { stroke: rgba(255,255,255,.07); stroke-width: 1; fill: none; }
.chart-line { fill: none; stroke: var(--green-300); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 600; stroke-dashoffset: 600; }
.chart-area { opacity: 0; }
.chart-dot { fill: var(--green-300); opacity: 0; }
.chart-bars { position: absolute; left: 14px; right: 14px; bottom: 0; height: 58%; display: flex; align-items: flex-end; gap: 8%; opacity: .55; }
.chart-bars span { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: linear-gradient(180deg, rgba(143,179,212,.5), rgba(143,179,212,.08)); transform: scaleY(0); transform-origin: bottom; }

.is-ready .chart-line { animation: drawLine 1.8s var(--ease) .4s forwards; }
.is-ready .chart-area { animation: fadeIn 1s var(--ease) 1.2s forwards; }
.is-ready .chart-dot { animation: fadeIn .4s ease 2s forwards, pulse 2.4s ease-in-out 2.4s infinite; }
.is-ready .chart-bars span { animation: growBar .9s var(--ease) forwards; }
.chart-bars span:nth-child(1) { animation-delay: .1s !important; } .chart-bars span:nth-child(2) { animation-delay: .16s !important; }
.chart-bars span:nth-child(3) { animation-delay: .22s !important; } .chart-bars span:nth-child(4) { animation-delay: .28s !important; }
.chart-bars span:nth-child(5) { animation-delay: .34s !important; } .chart-bars span:nth-child(6) { animation-delay: .4s !important; }
.chart-bars span:nth-child(7) { animation-delay: .46s !important; } .chart-bars span:nth-child(8) { animation-delay: .52s !important; }

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes growBar { to { transform: scaleY(1); } }
@keyframes pulse { 0%, 100% { r: 4; } 50% { r: 6; } }

.panel-cards { margin-top: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.p-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .7rem;
  padding: .9rem; border-radius: 14px; text-align: left; min-height: 96px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.82); font-size: .875rem; font-weight: 600; line-height: 1.3;
  transition: background-color .35s var(--ease), border-color .35s, transform .35s var(--ease), color .35s;
}
.p-card .icon { width: 30px; height: 30px; padding: 6px; border-radius: 9px; background: rgba(255,255,255,.07); color: var(--blue-300); transition: background-color .35s, color .35s; }
.p-card:hover { transform: translateY(-2px); background: rgba(255,255,255,.07); }
.p-card.is-active { background: rgba(255,255,255,.96); color: var(--navy); border-color: transparent; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }
.p-card.is-active .icon { background: var(--green-50); color: var(--green); }
.p-card.is-active::after {
  content: ""; position: absolute; right: .8rem; top: .9rem; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(46,128,101,.18);
}
.panel-status {
  margin-top: 1rem; display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; line-height: 1.5; color: rgba(255,255,255,.78);
  padding: .8rem .9rem; border-radius: 12px; background: rgba(8,24,39,.45); min-height: 3.6em;
}
.status-dot { width: 8px; height: 8px; margin-top: .45em; border-radius: 50%; background: var(--green-300); flex: none; box-shadow: 0 0 0 4px rgba(108,195,162,.15); }
[data-panel-output] { transition: opacity .25s; }
[data-panel-output].is-swapping { opacity: 0; }

.float-chip {
  position: absolute; display: none; align-items: center; gap: .5rem;
  padding: .6rem .9rem; border-radius: 12px; font-size: .8125rem; font-weight: 600; color: var(--navy);
  background: var(--white); box-shadow: var(--shadow-lg);
}
.float-chip .icon { color: var(--green); }
.float-chip--a { top: 22%; left: -46px; animation: float 7s ease-in-out infinite; }
.float-chip--b { top: -20px; right: 32px; animation: float 8s ease-in-out -3s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   BARRA DE CONFIANÇA
   ========================================================= */
.trustbar { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trustbar-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 0; padding-block: 1.25rem; }
.trustbar-list li {
  display: inline-flex; align-items: center; gap: .45rem; padding-inline: 1rem;
  font-size: .875rem; font-weight: 500; color: var(--ink-700); white-space: nowrap;
}
.trustbar-list li + li { border-left: 1px solid var(--gray-200); }
.trustbar-list li span { color: var(--gray); font-weight: 600; font-size: .75rem; letter-spacing: .08em; }
.trustbar-list strong { color: var(--navy); font-weight: 700; letter-spacing: .04em; font-size: .8125rem; }
.trustbar-list .icon { color: var(--green); width: 1.05em; height: 1.05em; }

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services-grid { display: grid; gap: 1rem; }
.service-card {
  position: relative; padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  overflow: hidden; isolation: isolate;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue-600));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { margin-top: 1.25rem; }
.service-card p { margin-top: .6rem; color: var(--gray); font-size: 1rem; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--off); color: var(--blue); border: 1px solid var(--gray-200);
  transition: background-color .35s, color .35s, border-color .35s;
}
.service-icon .icon { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: var(--navy); color: var(--white); border-color: var(--navy); }

.service-card--wide { background: var(--navy); border-color: var(--navy); color: rgba(255,255,255,.75); }
.service-card--wide::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .9;
  background: radial-gradient(circle at 100% 0, rgba(46,128,101,.35), transparent 55%),
              repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 14px);
}
.service-card--wide h3 { color: var(--white); }
.service-card--wide p { color: rgba(255,255,255,.75); }
.service-card--wide .service-icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--green-300); }
.service-card--wide:hover .service-icon { background: var(--green); color: var(--white); border-color: var(--green); }
.service-card--wide .link-arrow { margin-top: 1.25rem; color: var(--green-300); }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.diff-layout { display: grid; gap: 3rem; }
.diff-deco { display: none; }
.diff-list { display: grid; gap: .25rem; counter-reset: diff; }
.diff-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start;
  padding: 1.5rem 0; border-top: 1px solid var(--gray-200);
}
.diff-list li:last-child { border-bottom: 1px solid var(--gray-200); }
.diff-list p { margin-top: .4rem; color: var(--gray); }
.diff-icon {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700); transition: transform .35s var(--ease), background-color .35s, color .35s;
}
.diff-icon .icon { width: 22px; height: 22px; }
.diff-list li:hover .diff-icon { transform: scale(1.08); background: var(--green); color: var(--white); }

/* =========================================================
   SOBRE
   ========================================================= */
.about-layout { display: grid; gap: 3rem; align-items: center; }
.prose { margin-top: 1.5rem; display: grid; gap: 1rem; max-width: 60ch; font-size: 1.0625rem; }
.prose p:first-child { font-size: 1.1875rem; color: var(--ink); font-weight: 500; }
.about-copy .btn { margin-top: 2rem; }

.id-card {
  position: relative; padding: clamp(1.5rem, 4vw, 2.25rem); border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.id-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 6px;
  background: linear-gradient(90deg, var(--navy) 0 60%, var(--green) 60% 100%);
}
.id-card-head { display: flex; align-items: center; gap: .9rem; padding-bottom: 1.25rem; border-bottom: 1px dashed var(--gray-300); }
.id-card-head h3 { font-size: 1.0625rem; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); }
.id-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1rem; margin-top: 1.25rem; }
.id-list > div { grid-column: 1 / -1; }
.id-list > .id-half { grid-column: auto; }
.id-list dt { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.id-list dd { margin-top: .2rem; color: var(--ink); font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.id-list dd a { color: var(--green-700); border-bottom: 1px solid transparent; }
.id-list dd a:hover { border-color: currentColor; }
.id-note {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-200);
  font-size: .875rem; color: var(--gray); display: flex; align-items: center; gap: .5rem;
}
.id-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.section-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.section--dark .container { position: relative; }
.steps { display: grid; gap: 1rem; position: relative; }
.step {
  position: relative; padding: 2rem 1.75rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: background-color .35s, border-color .35s, transform .35s var(--ease);
}
.step:hover { background: rgba(255,255,255,.07); border-color: rgba(108,195,162,.4); transform: translateY(-4px); }
.step-num {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  font-size: 1.125rem; font-weight: 800; letter-spacing: .02em; color: var(--green-300);
  background: rgba(108,195,162,.1); border: 1px solid rgba(108,195,162,.3); margin-bottom: 1.4rem;
}
.step p { margin-top: .6rem; }

/* =========================================================
   NOVOS NEGÓCIOS (consultiva)
   ========================================================= */
.consult-panel {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; gap: 2rem; padding: clamp(2rem, 6vw, 4rem);
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(135deg, var(--green-50) 0%, #F3F8F6 45%, var(--off) 100%);
  border: 1px solid #D5EAE1;
}
.consult-deco { position: absolute; z-index: -1; right: -90px; top: -90px; width: 340px; opacity: .6; }
.consult-deco svg { width: 100%; height: auto; fill: none; stroke: #BFDCCF; stroke-width: 1; }
.consult-copy p:not(.eyebrow) { margin-top: 1.1rem; font-size: 1.125rem; max-width: 56ch; }
.consult-copy .btn { margin-top: 2rem; }
.consult-points { display: grid; gap: .75rem; align-content: center; }
.consult-points li {
  display: flex; align-items: center; gap: .8rem; padding: 1rem 1.1rem; border-radius: 14px;
  background: rgba(255,255,255,.8); border: 1px solid #D5EAE1; font-weight: 600; color: var(--ink); font-size: 1rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.consult-points li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.consult-points .icon { color: var(--white); background: var(--green); border-radius: 50%; padding: 4px; width: 24px; height: 24px; stroke-width: 2.4; }

/* =========================================================
   EMPRESAS EM OPERAÇÃO
   ========================================================= */
.ops-layout { display: grid; gap: 2.5rem; align-items: center; }
.ops-head .link-arrow { margin-top: 1.5rem; }
.ops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.ops-card {
  display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200); font-weight: 600; color: var(--ink); line-height: 1.35;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ops-card .icon { width: 26px; height: 26px; color: var(--blue); }
.ops-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.ops-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; background: var(--navy); color: var(--white); border-color: var(--navy); }
.ops-card--wide .icon { color: var(--green-300); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout { display: grid; gap: 2.5rem; }
.faq-head .btn { margin-top: 1.75rem; }
.faq { border-top: 1px solid var(--gray-200); }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item h3 { font-size: 1.0625rem; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; text-align: left; font-weight: 600; color: var(--ink); line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: var(--green-700); }
.faq-icon {
  flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--gray-300); color: var(--navy); transition: transform .35s var(--ease), background-color .3s, color .3s, border-color .3s;
}
.faq-icon .icon { width: 18px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 3rem 1.5rem 0; color: var(--gray); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.no-js .faq-a { grid-template-rows: 1fr; }

/* =========================================================
   CONTATO / FORMULÁRIO
   ========================================================= */
.contact-layout { display: grid; gap: 2.5rem; align-items: start; }
.contact-list { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list strong { display: block; color: var(--ink); font-size: .9375rem; }
.contact-list a, .contact-list address, .contact-list span:not(.contact-ico) { color: var(--gray); font-size: 1rem; }
.contact-list a { color: var(--green-700); font-weight: 600; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--blue);
}
.contact-ico .icon { width: 20px; height: 20px; }

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .9375rem; font-weight: 600; color: var(--ink); }
.req { color: #B42318; }
.opt { font-weight: 500; color: var(--gray); font-size: .875rem; }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--gray-300); background: var(--white); color: var(--ink); font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #737B8C; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(28,78,120,.14); }
.field.has-error input, .field.has-error select { border-color: #D92D20; }
.field.has-error input:focus, .field.has-error select:focus { box-shadow: 0 0 0 4px rgba(217,45,32,.12); }
.field-error { font-size: .8125rem; color: #B42318; font-weight: 500; min-height: 0; }
.field-error:empty { display: none; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 1.1rem; top: 50%; width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--gray); border-bottom: 2px solid var(--gray); transform: rotate(45deg); pointer-events: none;
}
.select-wrap select { padding-right: 2.75rem; cursor: pointer; }

.field--check { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.field--check input {
  width: 22px; height: 22px; margin: .1rem 0 0; accent-color: var(--green); cursor: pointer;
}
.field--check label { font-weight: 500; color: var(--ink-700); cursor: pointer; }
.field--check label a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.field--check .field-error { grid-column: 2; }
.form-hint { margin: 1rem 0 1.25rem; font-size: .8125rem; color: var(--gray); }

.form-success { text-align: center; padding: 1.5rem .5rem; }
.form-success:focus { outline: none; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-50); color: var(--green); animation: pop .5s var(--ease);
}
.success-icon .icon { width: 30px; height: 30px; stroke-width: 2.4; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { margin-top: .75rem; color: var(--gray); max-width: 44ch; margin-inline: auto; }
.form-success .success-small { font-size: .9375rem; }
.form-success .success-small a { color: var(--green-700); font-weight: 600; text-decoration: underline; }
.form-success .btn { margin-top: 1.5rem; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  padding-block: clamp(5rem, 11vw, 8.5rem); background: var(--navy); color: rgba(255,255,255,.78);
}
.final-cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(46,128,101,.45), transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% -20%, rgba(28,78,120,.8), transparent 70%),
    repeating-radial-gradient(circle at 50% 110%, rgba(255,255,255,.045) 0 1px, transparent 1px 38px);
}
.final-inner { max-width: 860px; }
.final-cta h2 { color: var(--white); font-size: clamp(2rem, 1.2rem + 3.2vw, 3.25rem); letter-spacing: -.03em; }
.final-cta p { margin: 1.25rem auto 0; max-width: 52ch; font-size: 1.1875rem; }
.final-cta .btn { margin-top: 2.5rem; }
.final-phone { font-size: .9375rem !important; color: rgba(255,255,255,.6); margin-top: 1rem !important; letter-spacing: .04em; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.68); padding-top: clamp(3.5rem, 7vw, 5rem); font-size: .9375rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; }
.footer-col h2 { font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-notice {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; border-radius: var(--radius);
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
  font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.7);
}
.footer-notice .icon { color: var(--blue-300); width: 22px; height: 22px; margin-top: .15rem; }
.footer-bottom { padding: 1.75rem 0 calc(1.75rem + env(safe-area-inset-bottom)); margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .875rem; }

/* =========================================================
   WHATSAPP FLUTUANTE / TOPO
   ========================================================= */
.wa-float {
  position: fixed; z-index: 90; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #1FA855; color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(18, 140, 70, .6), 0 0 0 0 rgba(31,168,85,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: waRing 3s ease-out 3s 3;
}
.wa-float .icon { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.07); }
.wa-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translate(6px, -50%);
  white-space: nowrap; padding: .45rem .8rem; border-radius: 8px;
  background: var(--navy); color: var(--white); font-size: .8125rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
  box-shadow: var(--shadow);
}
.wa-tip::after { content: ""; position: absolute; left: 100%; top: 50%; margin-top: -5px; border: 5px solid transparent; border-left-color: var(--navy); }
.wa-float:hover .wa-tip, .wa-float:focus-visible .wa-tip { opacity: 1; transform: translate(0, -50%); }
@keyframes waRing { 0% { box-shadow: 0 10px 24px -8px rgba(18,140,70,.6), 0 0 0 0 rgba(31,168,85,.45); } 100% { box-shadow: 0 10px 24px -8px rgba(18,140,70,.6), 0 0 0 16px rgba(31,168,85,0); } }

.to-top {
  position: fixed; z-index: 89; right: 26px; bottom: calc(86px + env(safe-area-inset-bottom));
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--navy); border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s, transform .3s var(--ease), visibility 0s linear .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.to-top:hover { background: var(--navy); color: var(--white); }
.to-top .icon { width: 18px; height: 18px; }

/* =========================================================
   COOKIES
   ========================================================= */
.cookie-banner {
  position: fixed; z-index: 120; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  padding: 1.1rem 1.2rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 20px 50px -12px rgba(16,24,40,.28);
  font-size: .9063rem; color: var(--ink-700); line-height: 1.55;
  animation: slideUp .5s var(--ease);
}
.cookie-banner a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: .6rem; margin-top: .9rem; }
.cookie-actions .btn { flex: 1; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.cookie-modal {
  width: min(560px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(11,31,51,.45); color: var(--ink-700);
}
.cookie-modal::backdrop { background: rgba(8,24,39,.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.cookie-modal-inner { padding: clamp(1.4rem, 4vw, 2rem); }
.cookie-modal h2 { font-size: 1.375rem; }
.cookie-modal > form > p { margin-top: .6rem; color: var(--gray); font-size: .9375rem; }
.cookie-opt { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; padding: 1.1rem 0; border-bottom: 1px solid var(--gray-200); }
.cookie-opt:first-of-type { margin-top: 1rem; border-top: 1px solid var(--gray-200); }
.cookie-opt h3 { font-size: 1rem; }
.cookie-opt p { font-size: .875rem; color: var(--gray); margin-top: .2rem; }
.switch--locked { font-size: .75rem; font-weight: 700; color: var(--green-700); white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; }
.switch-input {
  -webkit-appearance: none; appearance: none; flex: none; position: relative; cursor: pointer;
  width: 48px; height: 28px; border-radius: 999px; background: var(--gray-300); transition: background-color .25s; margin: 0;
}
.switch-input::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); box-shadow: 0 1px 3px rgba(16,24,40,.25); transition: transform .25s var(--ease);
}
.switch-input:checked { background: var(--green); }
.switch-input:checked::after { transform: translateX(20px); }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: flex-end; margin-top: 1.5rem; }
.cookie-modal-actions .btn { flex: 1 1 auto; }

/* =========================================================
   PÁGINAS LEGAIS
   ========================================================= */
.legal-hero { background: var(--navy); color: rgba(255,255,255,.75); padding: calc(var(--header-h) + 3.5rem) 0 3rem; position: relative; overflow: hidden; }
.legal-hero .hero-grid { opacity: .6; }
.legal-hero .container { position: relative; }
.legal-hero h1 { color: var(--white); font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); }
.legal-hero p { margin-top: .75rem; }
.breadcrumb { font-size: .875rem; margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--green-300); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.legal-body { padding-block: clamp(3rem, 7vw, 5rem); }
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.375rem; margin: 2.5rem 0 .8rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.0625rem; margin: 1.5rem 0 .5rem; }
.legal-content p, .legal-content li { color: var(--ink-700); }
.legal-content p + p { margin-top: .9rem; }
.legal-content ul { list-style: disc; padding-left: 1.3rem; margin: .8rem 0; display: grid; gap: .45rem; }
.legal-content a { color: var(--green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-content .table-wrap { overflow-x: auto; margin: 1rem 0; border: 1px solid var(--gray-200); border-radius: var(--radius); }
.legal-content table { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 560px; }
.legal-content th, .legal-content td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.legal-content th { background: var(--off); color: var(--ink); font-weight: 700; }
.legal-content tr:last-child td { border-bottom: 0; }
.legal-box { margin-top: 1rem; padding: 1.25rem 1.4rem; border-radius: var(--radius); background: var(--off); border: 1px solid var(--gray-200); }
.legal-box p { margin: 0 !important; }
.legal-content .btn { text-decoration: none; margin-top: 1rem; }

/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-hero-in] { animation: heroIn .9s var(--ease) both; animation-delay: calc(var(--i, 0) * 90ms); }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* =========================================================
   BREAKPOINTS
   ========================================================= */
@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
  .cookie-banner { left: auto; right: 20px; bottom: 20px; max-width: 420px; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .panel { padding: 1.5rem; }
  .panel-chart { height: 170px; }
  .panel-cards { gap: .75rem; }
  .p-card { font-size: .9375rem; padding: 1rem; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .steps::before {
    content: ""; position: absolute; top: calc(2rem + 28px); left: 12%; right: 12%; height: 1px;
    background: repeating-linear-gradient(90deg, rgba(108,195,162,.45) 0 6px, transparent 6px 12px);
  }
  .step { background: rgba(14, 38, 61, .92); }
  .consult-panel { grid-template-columns: 1.3fr 1fr; align-items: center; }
  .ops-grid { grid-template-columns: repeat(3, 1fr); }
  .ops-card--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .service-card--wide { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; }
  .service-card--wide h3 { margin-top: 0; }
  .service-card--wide .link-arrow { margin-top: 0; white-space: nowrap; }
}

@media (min-width: 1024px) {
  :root { --header-h: 80px; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .main-nav {
    position: static; inset: auto; padding: 0; background: none; opacity: 1; visibility: visible; transform: none;
    flex-direction: row; overflow: visible; transition: none;
  }
  .main-nav ul { flex-direction: row; gap: .25rem; }
  .main-nav li a {
    position: relative; font-size: .9375rem; font-weight: 500; padding: .5rem .8rem; border: 0; color: rgba(255,255,255,.82);
    transition: color .2s;
  }
  .main-nav li a::after {
    content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .15rem; height: 2px; border-radius: 2px;
    background: var(--green-300); transform: scaleX(0); transition: transform .3s var(--ease);
  }
  .main-nav li a:hover, .main-nav li a.is-current { color: var(--white); }
  .main-nav li a:hover::after, .main-nav li a.is-current::after { transform: scaleX(1); }
  .nav-cta-mobile { display: none; }
  .brand { margin-right: 0; }
  .main-nav { margin-inline: auto; }

  .hero { min-height: min(900px, 100vh); display: flex; align-items: center; }
  .hero-inner { grid-template-columns: 1.12fr .88fr; gap: 3.5rem; }
  .hero-actions .btn-lg { padding-inline: 1.4rem; }
  .float-chip { display: inline-flex; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .diff-layout { grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
  .diff-head { position: sticky; top: calc(var(--header-h) + 2.5rem); }
  .diff-deco { display: flex; gap: 8px; margin-top: 2.5rem; }
  .diff-deco span { height: 6px; border-radius: 6px; background: var(--gray-200); }
  .diff-deco span:nth-child(1) { width: 64px; background: var(--navy); }
  .diff-deco span:nth-child(2) { width: 32px; background: var(--green); }
  .diff-deco span:nth-child(3) { width: 16px; }
  .about-layout { grid-template-columns: 1.15fr 1fr; gap: 5rem; }
  .ops-layout { grid-template-columns: 1fr 1.15fr; gap: 4rem; }
  .faq-layout { grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
  .faq-head { position: sticky; top: calc(var(--header-h) + 2.5rem); }
  .contact-layout { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 3rem; }
}

@media (min-width: 1280px) {
  .float-chip--a { left: -64px; }
  .hero-inner { gap: 4.5rem; }
}

/* Movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal], [data-hero-in] { opacity: 1; transform: none; animation: none; }
  .chart-line { stroke-dashoffset: 0; }
  .chart-area, .chart-dot { opacity: 1; }
  .chart-bars span { transform: none; }
}

/* Impressão */
@media print {
  .site-header, .wa-float, .to-top, .cookie-banner, .cookie-modal, .hero-visual { display: none !important; }
  .hero, .section--dark, .final-cta, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .final-cta h2 { color: #000 !important; }
}
.legal-content code { font-size: .875em; background: var(--off); border: 1px solid var(--gray-200); padding: .1em .35em; border-radius: 6px; overflow-wrap: anywhere; }
