/* ============================================================
   ALPHA TRANSPORTES · Itapevi/SP
   Transporte rodoviario de cargas · entrega ate onde nao ha doca
   Site em codigo (Kit Visibilidade MAB) · sem frameworks, sem CDN
   Marca: Azul Alpha #009FE3 · grafite #16181D · navy #0B4C7A
   ============================================================ */

/* ---------- Fontes (self-hosted, sem chamadas externas) ---------- */
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/barlow-400.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/barlow-500.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/barlow-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/barlow-condensed-600.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/barlow-condensed-700.woff2') format('woff2'); }
@font-face { font-family: 'IBM Plex Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  --ink: #0b0e13;          /* fundo profundo (azul-preto) */
  --ink-2: #0f141c;        /* faixa alternada */
  --card: #141a23;         /* card */
  --card-2: #18202b;       /* card 2 */
  --card-3: #1e2833;       /* card hover */
  --blue: #009fe3;         /* marca: Azul Alpha */
  --blue-2: #35b5ec;       /* azul claro (topo do gradiente) */
  --blue-deep: #0b4c7a;    /* navy profundo */
  --blue-ink: #041018;     /* texto sobre o azul */
  --ice: #eef3f8;          /* texto principal */
  --muted: #8fa2b4;        /* texto secundario */
  --muted-2: #b6c4d2;      /* texto de apoio */
  --line: rgba(238, 243, 248, 0.08);
  --line-2: rgba(238, 243, 248, 0.15);
  --blue-line: rgba(0, 159, 227, 0.34);
  --blue-soft: rgba(0, 159, 227, 0.10);
  --glow: rgba(0, 159, 227, 0.20);
  --wa: #25d366;
  --wa-2: #128c7e;
  --grad-blue: linear-gradient(135deg, var(--blue-2), var(--blue));
  --grad-blue-deep: linear-gradient(135deg, var(--blue), var(--blue-deep));
  --display: 'Barlow Condensed', 'Bahnschrift', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'Consolas', monospace;
  --r: 12px;
  --r-lg: 18px;
  --header-h: 74px;
  --pad: clamp(20px, 4vw, 32px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  background: var(--ink);
  color: var(--ice);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }
::selection { background: var(--blue); color: var(--blue-ink); }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* textura de grid tecnica sutil no fundo */
.grid-bg { position: relative; }
.grid-bg::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(238, 243, 248, 0.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(238, 243, 248, 0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 0%, transparent 70%);
}

/* ---------- Tipografia de secao ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-2);
  background: var(--blue-soft); border: 1px solid var(--blue-line);
  padding: 7px 15px; border-radius: 30px;
}
.eyebrow svg { flex-shrink: 0; }
.sec-head { margin-bottom: clamp(34px, 5.5vw, 54px); }
.sec-head h2 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(33px, 4.5vw, 53px); line-height: 1.02; letter-spacing: 0.3px;
  margin-top: 18px; max-width: 20ch;
}
.sec-head h2 em { font-style: normal; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); padding-right: 3px; }
.sec-head .sec-sub { color: var(--muted-2); font-size: 17.5px; max-width: 62ch; margin-top: 14px; }
.sec-head.center { text-align: center; }
.sec-head.center h2, .sec-head.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow + h2 { margin-left: auto; margin-right: auto; }

/* motivo grafico: tres tracos (velocidade/movimento) nas cores da marca */
.bars { display: inline-flex; flex-direction: column; gap: 3px; }
.bars i { display: block; height: 3px; border-radius: 2px; background: var(--grad-blue); }
.bars i:nth-child(1) { width: 24px; }
.bars i:nth-child(2) { width: 16px; }
.bars i:nth-child(3) { width: 9px; }

/* ---------- Botoes ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 1px; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--r); text-decoration: none; cursor: pointer;
  border: none; overflow: hidden; white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg.i-arrow { transform: translateX(4px); }
.btn-primary { background: var(--grad-blue); color: var(--blue-ink); box-shadow: 0 8px 28px rgba(0, 159, 227, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(0, 159, 227, 0.44); }
.btn-ghost { background: rgba(238, 243, 248, 0.05); border: 1px solid var(--line-2); color: var(--ice); }
.btn-ghost:hover { background: rgba(238, 243, 248, 0.1); border-color: var(--blue-line); transform: translateY(-2px); }
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-2)); color: #fff; box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4); }
.btn .ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255, 255, 255, 0.4); transform: scale(0);
  animation: ripple 0.55s ease-out forwards;
}
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(11, 14, 19, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line); }
.site-header.hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; gap: 24px; width: 100%; }
.brand { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; gap: 2px; margin-left: auto; }
.main-nav a {
  font-family: var(--display); font-weight: 600; font-size: 15.5px; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--muted-2); text-decoration: none; padding: 8px 11px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover { color: var(--ice); background: rgba(238, 243, 248, 0.06); }
.main-nav a.active { color: var(--blue-2); }
.header-cta { flex-shrink: 0; padding: 11px 20px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; color: var(--ice); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 990;
  background: rgba(11, 14, 19, 0.98); backdrop-filter: blur(10px);
  flex-direction: column; padding: 26px var(--pad); gap: 2px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted-2); text-decoration: none; padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu a:active { color: var(--blue-2); }
.mobile-menu .btn { margin-top: 20px; }

/* ---------- Hero (full-bleed, texto ancorado a esquerda) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
/* scrim: garante contraste do texto independente da foto */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,14,19,0.94) 0%, rgba(11,14,19,0.78) 34%, rgba(11,14,19,0.35) 66%, rgba(11,14,19,0.55) 100%),
    linear-gradient(0deg, rgba(11,14,19,0.92) 0%, rgba(11,14,19,0.12) 42%, rgba(11,14,19,0.45) 100%);
}
.hero-inner { position: relative; z-index: 3; flex: 1; display: flex; align-items: center; width: 100%; padding-top: calc(var(--header-h) + 30px); padding-bottom: 40px; }
.hero-inner > .container { width: 100%; }
.hero-content { max-width: 660px; }
.hero h1 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(41px, 6vw, 78px); line-height: 0.98; letter-spacing: 0.4px;
  margin: 24px 0 22px; text-shadow: 0 4px 34px rgba(4, 12, 20, 0.6);
}
.hero h1 .hl { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); }
.hero-sub { font-size: clamp(16.5px, 1.9vw, 19px); color: var(--muted-2); max-width: 60ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-micro { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.hero-micro svg { color: var(--blue-2); flex-shrink: 0; }

/* pilula flutuante do diferencial no hero */
.hero-tag {
  position: absolute; z-index: 4; right: clamp(20px, 5vw, 64px); bottom: clamp(150px, 22vh, 210px);
  display: flex; align-items: center; gap: 13px; max-width: 290px;
  background: rgba(15, 20, 28, 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--blue-line); border-radius: 16px; padding: 15px 18px;
  box-shadow: 0 20px 50px rgba(2, 8, 14, 0.6);
}
.hero-tag .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 24px var(--glow); }
.hero-tag strong { display: block; font-family: var(--display); font-size: 17px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.1; }
.hero-tag small { color: var(--muted); font-size: 12.5px; line-height: 1.35; }

/* rota decorativa animada do hero */
.hero-route { position: absolute; left: 0; right: 50%; bottom: 128px; z-index: 2; pointer-events: none; opacity: 0.75; }
.hero-route svg { width: 100%; height: 44px; display: block; }
.hero-route .route-line { stroke-dasharray: 6 8; animation: routeDash 1.4s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset: -14; } }

/* faixa de stats */
.hero-stats { position: relative; z-index: 5; border-top: 1px solid var(--line-2); background: rgba(11, 14, 19, 0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 24px 20px 22px 22px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num { font-family: var(--display); font-weight: 700; font-size: clamp(25px, 3vw, 37px); line-height: 1; color: var(--blue-2); letter-spacing: 0.4px; text-transform: uppercase; }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 7px; line-height: 1.45; }

/* ---------- Faixa de prova (selos) ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); padding: clamp(40px, 6vw, 60px) 0; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.seal {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.seal:hover { transform: translateY(-4px); border-color: var(--blue-line); background: var(--card-2); }
.seal .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 22px var(--glow); }
.seal strong { display: block; font-family: var(--display); font-size: 19px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.1; }
.seal small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.proof-certs { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.proof-certs span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted-2); }
.proof-certs svg { color: var(--blue-2); flex-shrink: 0; }

/* ---------- Secoes ---------- */
section { position: relative; }
.sec { padding: clamp(70px, 9vw, 116px) 0; }
.sec.tint { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Problema (dores) ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pain-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--card-2); }
.pain-card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(238, 243, 248, 0.05); border: 1px solid var(--line-2); color: var(--muted-2); display: flex; align-items: center; justify-content: center; transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.pain-card:hover .ic { color: var(--blue-2); border-color: var(--blue-line); background: var(--blue-soft); }
.pain-card h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.1; }
.pain-card p { color: var(--muted-2); font-size: 15px; }
.pain-turn {
  margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--blue-soft), transparent 70%);
  border: 1px solid var(--blue-line); border-radius: var(--r-lg); padding: 22px 26px;
}
.pain-turn svg { color: var(--blue-2); flex-shrink: 0; }
.pain-turn p { font-family: var(--display); font-weight: 600; font-size: clamp(19px, 2.4vw, 26px); letter-spacing: 0.3px; text-transform: uppercase; line-height: 1.12; }
.pain-turn p em { font-style: normal; color: var(--blue-2); }

/* ---------- Metodo (3 pilares) ---------- */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar:hover { transform: translateY(-5px); border-color: var(--blue-line); box-shadow: 0 22px 48px rgba(2, 8, 14, 0.5); }
.pillar:hover::before { transform: scaleX(1); }
.pillar .num { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.pillar .ic { width: 56px; height: 56px; border-radius: 15px; margin: 14px 0 18px; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 26px var(--glow); }
.pillar h3 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.08; margin-bottom: 10px; }
.pillar p { color: var(--muted-2); font-size: 15.5px; }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(36px, 5.5vw, 68px); align-items: center; }
.about-media { position: relative; }
.about-media .frame { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 8 / 6; }
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-media:hover .frame img { transform: scale(1.035); }
.about-media::before {
  content: ''; position: absolute; top: -14px; left: -14px; right: 40%; bottom: 42%;
  border: 1px solid var(--blue-line); border-radius: var(--r-lg); pointer-events: none;
}
.about-badge {
  position: absolute; right: -10px; bottom: 22px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: var(--card-2); border: 1px solid var(--blue-line); border-radius: 14px;
  padding: 13px 17px; box-shadow: 0 18px 44px rgba(2, 8, 14, 0.55);
}
.about-badge .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; color: var(--blue-2); box-shadow: 0 0 22px var(--glow); flex-shrink: 0; }
.about-badge strong { display: block; font-family: var(--display); font-size: 16px; letter-spacing: 0.6px; text-transform: uppercase; line-height: 1.15; }
.about-badge small { color: var(--muted); font-size: 12px; }
.about-text > p { color: var(--muted-2); margin-top: 16px; font-size: 16.5px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.about-stat { background: rgba(238, 243, 248, 0.03); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 14px; text-align: center; }
.about-stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--blue-2); line-height: 1; letter-spacing: 0.5px; }
.about-stat span { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); line-height: 1.35; }

/* ---------- DESTAQUE: Plataforma elevatoria ---------- */
.lift { position: relative; overflow: hidden; background:
    radial-gradient(120% 90% at 82% 20%, rgba(0, 159, 227, 0.10), transparent 60%), var(--ink); }
.lift-grid { display: grid; grid-template-columns: 6.4fr 5.6fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.lift-media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--blue-line); background:
    linear-gradient(160deg, #eef4f8, #d7e5ee); padding: clamp(20px, 3vw, 34px); }
.lift-media img { width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(4, 20, 34, 0.18)); }
.lift-media .lift-floor { position: absolute; left: 6%; right: 6%; bottom: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0 14px, transparent 14px 26px); opacity: 0.5; }
.lift-badge {
  position: absolute; left: 18px; top: 18px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--blue-ink); border-radius: 30px; padding: 8px 16px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500;
  box-shadow: 0 10px 26px rgba(0, 159, 227, 0.4);
}
.lift-arrow { position: absolute; right: 20px; bottom: 20px; color: var(--blue); animation: liftUp 2.4s ease-in-out infinite; }
@keyframes liftUp { 0%, 100% { transform: translateY(6px); opacity: 0.5; } 50% { transform: translateY(-6px); opacity: 1; } }
.lift-content h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(32px, 4.3vw, 50px); line-height: 1.02; letter-spacing: 0.3px; margin: 18px 0 16px; }
.lift-content h2 em { font-style: normal; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); }
.lift-content > p { color: var(--muted-2); font-size: 16.5px; margin-bottom: 24px; }
.lift-benefits { display: flex; flex-direction: column; gap: 12px; }
.lift-benefits li { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; font-size: 15.5px; font-weight: 500; transition: border-color 0.25s ease, transform 0.25s ease; }
.lift-benefits li:hover { border-color: var(--blue-line); transform: translateX(6px); }
.lift-benefits .ic { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; }

/* ---------- Servicos ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.35s ease;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 159, 227, 0.09), transparent 62%);
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--blue-line); box-shadow: 0 22px 48px rgba(2, 8, 14, 0.5); }
.svc-card:hover::before { opacity: 1; }
.svc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 24px var(--glow); }
.svc-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; color: var(--muted); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: 6px; text-transform: uppercase; }
.svc-card h3 { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.05; }
.svc-card p { color: var(--muted-2); font-size: 15px; flex: 1; }
.svc-card .note { font-size: 12.5px; color: var(--muted); font-style: italic; }
.services-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.services-foot p { color: var(--muted-2); font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.services-foot p svg { color: var(--blue-2); flex-shrink: 0; }

/* ---------- Diferenciais ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.diff-cell { background: var(--ink); padding: 32px 28px; transition: background 0.3s ease; position: relative; }
.diff-cell:hover { background: var(--card); }
.diff-cell .ic {
  width: 54px; height: 54px; border-radius: 50%; margin-bottom: 18px;
  background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 rgba(0, 159, 227, 0); transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.diff-cell:hover .ic { box-shadow: 0 0 34px var(--glow); transform: translateY(-3px); }
.diff-cell h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.1; margin-bottom: 9px; }
.diff-cell p { color: var(--muted-2); font-size: 15px; }

/* ---------- Faixa parallax de slogan ---------- */
.slogan-band { position: relative; overflow: hidden; padding: clamp(84px, 12vw, 140px) 0; }
.band-media { position: absolute; inset: -18% 0; z-index: 0; will-change: transform; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 14, 19, 0.9), rgba(11, 14, 19, 0.6) 50%, rgba(11, 14, 19, 0.92)); }
.slogan-band .container { position: relative; z-index: 2; text-align: center; }
.slogan-band .bars { align-items: center; margin: 0 auto 20px; }
.slogan-band .bars i:nth-child(2) { margin: 0 auto; }
.slogan-band blockquote {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(32px, 5vw, 58px); line-height: 1.03; letter-spacing: 0.4px; max-width: 24ch; margin: 0 auto;
}
.slogan-band blockquote em { font-style: normal; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); }
.slogan-band .band-sub { color: var(--muted-2); margin-top: 16px; font-size: 16.5px; }

/* ---------- Segmentos ---------- */
.seg-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(34px, 5vw, 62px); align-items: center; }
.seg-intro .sec-head { margin-bottom: 22px; }
.seg-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 16 / 10; margin-top: 26px; }
.seg-photo img { width: 100%; height: 100%; object-fit: cover; }
.seg-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 14, 19, 0.85), transparent 55%); }
.seg-photo figcaption { position: absolute; left: 20px; bottom: 16px; right: 20px; z-index: 2; font-size: 13.5px; color: var(--muted-2); }
.seg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.seg-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.seg-card:hover { transform: translateY(-4px); border-color: var(--blue-line); background: var(--card-2); }
.seg-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 0 22px var(--glow); }
.seg-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.1; margin-bottom: 8px; }
.seg-card p { color: var(--muted-2); font-size: 14.5px; }

/* ---------- Como funciona ---------- */
.steps-wrap { position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; counter-reset: passo; }
.steps::before { content: ''; position: absolute; top: 27px; left: 28px; right: 28px; height: 2px; background: var(--line-2); }
.steps-progress { position: absolute; top: 27px; left: 28px; height: 2px; width: 0; background: var(--grad-blue); box-shadow: 0 0 14px rgba(0, 159, 227, 0.7); z-index: 1; transition: width 0.15s linear; max-width: calc(100% - 56px); }
.steps-van { position: absolute; top: 27px; left: 28px; z-index: 3; transform: translate(-50%, -50%); color: var(--blue-2); filter: drop-shadow(0 0 10px rgba(0, 159, 227, 0.75)); transition: left 0.15s linear; }
.step { position: relative; z-index: 2; }
.step-node {
  counter-increment: passo;
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 20px;
  background: var(--card); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 21px; color: var(--muted-2);
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.step-node::before { content: counter(passo); }
.step.done .step-node { border-color: var(--blue); color: var(--blue-2); background: var(--card-2); box-shadow: 0 0 24px var(--glow); }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.08; margin-bottom: 9px; }
.step p { color: var(--muted-2); font-size: 15px; }
.steps-cta { text-align: center; margin-top: 46px; }

/* ---------- Cobertura (mapa do Brasil) ---------- */
.cov-grid { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.brmap-wrap { position: relative; width: 100%; max-width: 540px; margin: 0 auto; }
.brmap { position: relative; width: 100%; }
.brmap svg { width: 100%; height: auto; display: block; overflow: visible; }
.region { cursor: pointer; transition: opacity 0.3s ease; }
.region .shape { transition: fill 0.35s ease, stroke 0.35s ease, filter 0.35s ease; }
/* regiao nao atendida (contexto) */
.region.off .shape { fill: rgba(238, 243, 248, 0.05); stroke: var(--line-2); stroke-width: 1.2; }
.region.off .r-label { fill: var(--muted); opacity: 0.6; }
/* regiao atendida */
.region.on .shape { fill: rgba(0, 159, 227, 0.16); stroke: var(--blue-line); stroke-width: 1.5; }
.region.on:hover .shape, .region.on.active .shape { fill: rgba(0, 159, 227, 0.34); stroke: var(--blue); filter: drop-shadow(0 0 12px rgba(0, 159, 227, 0.5)); }
.region .r-label { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 0.6px; text-transform: uppercase; fill: var(--muted-2); pointer-events: none; transition: fill 0.3s ease; }
.region.on .r-label { fill: var(--ice); }
.region.on.active .r-label { fill: var(--blue-2); }
.route-path { fill: none; stroke: var(--blue); stroke-width: 2; stroke-dasharray: 5 7; opacity: 0.75; animation: routeDash 1.2s linear infinite; }
.origin-wave { fill: none; stroke: var(--blue); stroke-width: 1.6; opacity: 0; animation: baseWave 2.6s ease-out infinite; }
.origin-wave.w2 { animation-delay: 1.3s; }
@keyframes baseWave { 0% { opacity: 0.85; r: 8; } 100% { opacity: 0; r: 46; } }
.origin-core { fill: url(#gradBlue); }
.origin-label { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 1px; fill: var(--blue-2); text-transform: uppercase; }
.brmap-chip {
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  background: var(--card-2); border: 1px solid var(--blue-line); border-radius: 30px; padding: 9px 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ice);
  box-shadow: 0 14px 34px rgba(2, 8, 14, 0.5);
}
.brmap-chip .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 10px var(--wa); flex-shrink: 0; }
.cov-content .sec-head { margin-bottom: 20px; }
.cov-content > p { color: var(--muted-2); font-size: 16.5px; margin-bottom: 14px; }
.cov-tiers { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; }
.cov-tiers li { display: flex; align-items: center; gap: 15px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; transition: border-color 0.25s ease, transform 0.25s ease; cursor: default; }
.cov-tiers li:hover, .cov-tiers li.active { border-color: var(--blue-line); transform: translateX(6px); background: var(--card-2); }
.cov-tiers .ic { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; }
.cov-tiers strong { display: block; font-family: var(--display); font-size: 18.5px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.15; }
.cov-tiers small { color: var(--muted); font-size: 13.5px; }
.cov-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; color: var(--muted-2); font-size: 14.5px; }
.cov-note svg { flex-shrink: 0; color: var(--blue-2); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.3s ease; }
.faq-item.open { border-color: var(--blue-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: none; color: var(--ice); text-align: left; cursor: pointer;
  padding: 20px 24px; font-family: var(--body); font-weight: 600; font-size: 16.5px; line-height: 1.4;
}
.faq-q .faq-ic { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--blue-2); transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease; }
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--blue-soft); border-color: var(--blue-line); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a > div { padding: 0 24px 22px; color: var(--muted-2); font-size: 15.5px; max-width: 70ch; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; padding: clamp(84px, 11vw, 132px) 0; }
.cta-final .band-media::after { background: linear-gradient(180deg, rgba(11, 14, 19, 0.88), rgba(11, 14, 19, 0.55) 50%, rgba(11, 14, 19, 0.95)); }
.cta-final .container { position: relative; z-index: 2; text-align: center; }
.cta-final h2 {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.01; letter-spacing: 0.4px; max-width: 22ch; margin: 20px auto 0;
}
.cta-final h2 em { font-style: normal; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--blue); }
.cta-final p { color: var(--muted-2); font-size: 17px; max-width: 58ch; margin: 18px auto 0; }
.cta-final .hero-ctas { justify-content: center; margin-top: 30px; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(34px, 5vw, 62px); align-items: start; }
.channel-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.channel {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 17px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.channel:hover { border-color: var(--blue-line); transform: translateX(6px); }
.channel .ic { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--glow); }
.channel strong { display: block; font-family: var(--display); font-size: 18px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.1; }
.channel small { color: var(--muted); font-size: 14px; word-break: break-word; }
.form-card { background: var(--card); border: 1px solid var(--line-2); border-radius: 22px; padding: clamp(24px, 3.5vw, 38px); box-shadow: 0 24px 60px rgba(2, 8, 14, 0.45); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--muted-2); }
.field input, .field textarea, .field select {
  background: rgba(11, 14, 19, 0.7); border: 1px solid var(--line-2); border-radius: 11px;
  padding: 13px 15px; color: var(--ice); font-family: var(--body); font-size: 15px; outline: none; width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238fa2b4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { background: var(--ink-2); color: var(--ice); }
.field input::placeholder, .field textarea::placeholder { color: rgba(143, 162, 180, 0.55); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.15); }
.field textarea { min-height: 108px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; }
.consent input { margin-top: 4px; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--muted); line-height: 1.55; }
.consent a { color: var(--blue-2); }
.form-msg { display: none; margin-top: 14px; font-size: 14.5px; border-radius: 11px; padding: 13px 16px; line-height: 1.5; }
.form-msg.err { display: block; background: rgba(255, 107, 107, 0.08); border: 1px solid rgba(255, 107, 107, 0.3); color: #ff9d9d; }
.form-msg.err a { color: #ffc4c4; font-weight: 600; }
.form-success { display: none; text-align: center; padding: 26px 8px; }
.form-success.show { display: block; }
.form-success .ok-ic { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--blue-soft); border: 2px solid var(--blue); color: var(--blue-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 34px var(--glow); }
.form-success h3 { font-family: var(--display); font-size: 28px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-success p { color: var(--muted-2); font-size: 15.5px; max-width: 46ch; margin: 0 auto 20px; }
/* honeypot anti-spam: invisivel para humanos */
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: #070a0e; border-top: 1px solid var(--line); padding: 62px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand .tagline { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 19px; letter-spacing: 0.6px; color: var(--blue-2); margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 32ch; }
.footer-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14.5px; padding: 5px 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--blue-2); }
.footer-legal { padding-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-legal p { color: var(--muted); font-size: 13px; }
.footer-credits { color: rgba(143, 162, 180, 0.65); font-size: 12px; line-height: 1.6; }
.footer-credits a { color: rgba(182, 196, 210, 0.8); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: flex; align-items: center; gap: 12px; flex-direction: row-reverse; }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--wa), var(--wa-2)); color: #fff;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55); }
.wa-tip {
  background: var(--card-2); border: 1px solid var(--line-2); border-radius: 14px; padding: 11px 16px;
  color: var(--ice); font-size: 13.5px; max-width: 230px; line-height: 1.45;
  box-shadow: 0 14px 34px rgba(2, 8, 14, 0.55);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-float:hover .wa-tip, .wa-float.show-tip .wa-tip { opacity: 1; transform: translateX(0); }

/* ---------- Banner de cookies (LGPD) ---------- */
.cookie-banner {
  position: fixed; left: 22px; bottom: 22px; z-index: 960; max-width: 420px;
  background: var(--card-2); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 22px; box-shadow: 0 24px 60px rgba(2, 8, 14, 0.6);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner h3 { font-family: var(--display); font-size: 20px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.cookie-banner h3 svg { color: var(--blue-2); }
.cookie-banner p { font-size: 13.5px; color: var(--muted-2); margin-bottom: 16px; }
.cookie-banner a { color: var(--blue-2); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 18px; font-size: 14px; flex: 1; }

/* ---------- Cursor custom + magnetismo (so ponteiro fino) ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot {
    display: block; position: fixed; z-index: 9999; pointer-events: none;
    width: 7px; height: 7px; border-radius: 50%; background: var(--blue-2);
    transform: translate(-50%, -50%); top: 0; left: 0;
  }
  .cursor-ring {
    display: block; position: fixed; z-index: 9998; pointer-events: none;
    width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(0, 159, 227, 0.55);
    transform: translate(-50%, -50%); top: 0; left: 0;
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  }
  .cursor-ring.on { width: 58px; height: 58px; border-color: rgba(53, 181, 236, 0.9); }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Reveals ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: translateX(0); }

/* ---------- Pagina de privacidade ---------- */
.legal-hero { padding: calc(var(--header-h) + clamp(48px, 8vw, 80px)) 0 clamp(38px, 6vw, 60px); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.legal-hero h1 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); line-height: 1.02; margin-top: 18px; }
.legal-hero .updated { font-family: var(--mono); font-size: 13px; letter-spacing: 1px; color: var(--muted); margin-top: 14px; }
.legal-body { padding: clamp(46px, 7vw, 78px) 0; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(23px, 3vw, 30px); letter-spacing: 0.4px; margin: 42px 0 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.legal-body h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body h3 { font-size: 17px; font-weight: 600; color: var(--ice); margin: 24px 0 8px; }
.legal-body p { color: var(--muted-2); margin-bottom: 14px; font-size: 15.5px; }
.legal-body ul, .legal-body ol { margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li, .legal-body ol li { position: relative; padding-left: 26px; color: var(--muted-2); font-size: 15.5px; }
.legal-body ul li::before { content: ''; position: absolute; left: 4px; top: 10px; width: 10px; height: 3px; border-radius: 2px; background: var(--grad-blue); }
.legal-body ol { counter-reset: itens; }
.legal-body ol li { counter-increment: itens; }
.legal-body ol li::before { content: counter(itens) '.'; position: absolute; left: 0; top: 0; font-family: var(--display); font-weight: 700; color: var(--blue-2); }
.legal-body strong { color: var(--ice); }
.legal-body a { color: var(--blue-2); }
.legal-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 24px; margin: 18px 0; }
.legal-card p { margin-bottom: 6px; }
.legal-card p:last-child { margin-bottom: 0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .band-media { inset: 0; }
  .cursor-dot, .cursor-ring { display: none !important; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
  .hero-route .route-line, .route-path { animation: none; }
  .lift-arrow { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .hero-bg img { object-position: 62% 50%; }
  .hero-tag { display: none; }
  .hero-route { display: none; }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; padding-left: 22px; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:first-child { padding-left: 22px; }
  .about-grid, .seg-grid, .cov-grid, .contact-grid, .lift-grid { grid-template-columns: 1fr; }
  .lift-grid { gap: 34px; }
  .about-media { max-width: 520px; }
  .brmap-wrap { max-width: 420px; }
  .steps { grid-template-columns: 1fr; gap: 30px; padding-left: 8px; }
  .steps::before { top: 28px; bottom: 28px; left: 27px; right: auto; width: 2px; height: auto; }
  .steps-progress { top: 28px; left: 26px; width: 2px !important; height: 0; max-width: none; max-height: calc(100% - 56px); }
  .steps-van { left: 27px !important; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; }
  .step-node { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .proof-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .seg-cards { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .hero-ctas .btn { width: 100%; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .wa-float { right: 14px; bottom: 84px; }
  .wa-tip { display: none; }
  .about-badge { right: 6px; }
  .pain-turn p { font-size: 19px; }
}
@media (max-width: 400px) {
  .hero-stats .container { grid-template-columns: 1fr; }
  .stat { border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
  .about-stats { grid-template-columns: 1fr; }
}
