/* =========================================================================
   VitrineOOH — OnePage / Landing
   Design system: premium SaaS, tecnológico, comercial.
   Accent: #8A47EB · Headings: Sora · Body: Inter
   ========================================================================= */

:root {
  /* Brand */
  --accent:        #8A47EB;
  --accent-600:    #7a35e0;
  --accent-400:    #a26ff0;
  --accent-300:    #b89bfa;
  --accent-100:    #e3d6fc;
  --accent-tint:   #f3edfd;

  /* Dark (premium areas) */
  --ink:           #0B1020;
  --ink-2:         #0e1530;
  --ink-3:         #141c3a;

  /* Light surfaces */
  --bg:            #ffffff;
  --bg-soft:       #f8f7fc;
  --bg-soft-2:     #f4f2fb;

  /* Text */
  --text:          #14182b;
  --text-2:        #4a4f63;
  --text-3:        #7b8094;
  --text-on-dark:  #eef0fb;
  --text-on-dark-2:#a7adcf;

  /* Lines */
  --line:          rgba(17, 24, 39, 0.08);
  --line-2:        rgba(17, 24, 39, 0.12);
  --line-dark:     rgba(255, 255, 255, 0.09);
  --line-dark-2:   rgba(255, 255, 255, 0.16);

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(11,16,32,.06), 0 1px 3px rgba(11,16,32,.05);
  --shadow:    0 8px 24px -8px rgba(11,16,32,.14), 0 2px 6px rgba(11,16,32,.06);
  --shadow-lg: 0 28px 60px -22px rgba(11,16,32,.30), 0 8px 24px -12px rgba(11,16,32,.18);
  --shadow-accent: 0 14px 34px -12px rgba(138,71,235,.55);

  --maxw: 1200px;
  --gutter: 24px;
  --header-h: 72px;

  --ff-head: 'Sora', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(138,71,235,.22); }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: var(--text-on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); border-radius: 2px; }
.section--dark .eyebrow { color: var(--accent-300); }
.section--dark .eyebrow::before { background: var(--accent-400); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 18px; letter-spacing: -0.03em;
  text-wrap: balance;
}
.section-sub {
  margin-top: 18px; font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--text-2); max-width: 60ch;
  text-wrap: pretty;
}
.center .section-sub { margin-inline: auto; }
.section--dark .section-sub { color: var(--text-on-dark-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 12px; border: 1.5px solid transparent;
  transition: transform .18s cubic-bezier(.4,.6,.3,1), box-shadow .25s, background .2s, border-color .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(138,71,235,.62); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-600); background: var(--accent-tint); }
.section--dark .btn--ghost, .header .btn--ghost { color: var(--text); }

.btn--outline-light { background: rgba(255,255,255,.04); color: var(--text-on-dark); border-color: var(--line-dark-2); }
.btn--outline-light:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }

.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; gap: 28px; width: 100%; }
.header.scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(11,16,32,.4);
}
/* over the dark hero before scroll */
.header:not(.scrolled) { color: var(--text-on-dark); }
.header:not(.scrolled) .nav__link { color: var(--text-on-dark-2); }
.header:not(.scrolled) .nav__link:hover { color: #fff; }
.header:not(.scrolled) .btn--ghost { color: var(--text-on-dark); border-color: var(--line-dark-2); }
.header:not(.scrolled) .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color:#fff; }
.header:not(.scrolled) .burger span { background: var(--text-on-dark); }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--ff-head); font-weight: 700; }
.brand__mark { width: 38px; height: 38px; border-radius: 10px; box-shadow: var(--shadow-accent); }
.brand__name { font-size: 19px; letter-spacing: -.01em; line-height: 1; }
.brand__name b { color: var(--accent); font-weight: 700; }
.header.scrolled .brand__name { color: var(--text); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; flex: none; }
.nav__link {
  font-size: 14.5px; font-weight: 500; color: var(--text-2);
  padding: 9px 13px; border-radius: 9px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.header.scrolled .nav__link:hover { color: var(--accent-600); background: var(--accent-tint); }
.nav__link:hover { color: var(--accent-600); }

.header__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; border-radius: 10px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .2s, top .3s; }
.burger span:nth-child(1){ top: 15px; }
.burger span:nth-child(2){ top: 21px; }
.burger span:nth-child(3){ top: 27px; }
body.menu-open .burger span:nth-child(1){ top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: rgba(11,16,32,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; width: min(360px, 100%); height: 100%;
  background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,.6,.3,1);
  box-shadow: var(--shadow-lg);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__link { font-family: var(--ff-head); font-weight: 600; font-size: 17px; padding: 14px 12px; border-radius: 12px; color: var(--text); }
.mobile-menu__link:hover { background: var(--accent-tint); color: var(--accent-600); }
.mobile-menu hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }
.mobile-menu .btn { width: 100%; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; background: var(--ink); color: var(--text-on-dark); overflow: hidden; padding-top: calc(var(--header-h) + 56px); padding-bottom: clamp(72px, 9vw, 120px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grid-overlay {
  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(120% 90% at 70% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 78%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob--1 { width: 540px; height: 540px; right: -120px; top: -160px; background: radial-gradient(circle, #8A47EB, transparent 70%); }
.blob--2 { width: 460px; height: 460px; left: -140px; bottom: -160px; background: radial-gradient(circle, #5b3bd6, transparent 70%); opacity: .42; }
.blob--3 { width: 320px; height: 320px; left: 46%; top: 38%; background: radial-gradient(circle, #c08bff, transparent 70%); opacity: .22; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 1fr; gap: 56px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 10px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark-2);
  font-size: 13px; font-weight: 500; color: var(--text-on-dark);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.55); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(52,211,153,.5);} 70%{ box-shadow: 0 0 0 9px rgba(52,211,153,0);} 100%{ box-shadow: 0 0 0 0 rgba(52,211,153,0);} }

.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px); font-weight: 800; margin-top: 22px;
  letter-spacing: -0.035em; line-height: 1.04; text-wrap: balance;
}
.hero h1 .grad {
  background: linear-gradient(100deg, #b89bfa, #8A47EB 55%, #6c5bff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin-top: 22px; font-size: clamp(16px, 1.7vw, 19px); color: var(--text-on-dark-2); max-width: 56ch; text-wrap: pretty; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); font-size: 12.5px; color: var(--text-on-dark-2); font-weight: 500;
}
.chip svg { width: 14px; height: 14px; color: var(--accent-300); }

/* =========================================================================
   HERO MOCKUP — dashboard
   ========================================================================= */
.mock { position: relative; }
.mock-dash {
  background: linear-gradient(180deg, rgba(28,34,64,.92), rgba(16,21,48,.92));
  border: 1px solid var(--line-dark-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(138,71,235,.12);
  padding: 18px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.mock-dash__bar { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line-dark); margin-bottom: 16px; }
.mock-dash__bar .traffic { display: flex; gap: 6px; }
.mock-dash__bar .traffic i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.16); }
.mock-dash__title { font-family: var(--ff-head); font-size: 12.5px; font-weight: 600; color: var(--text-on-dark); margin-left: 4px; }
.mock-dash__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #6ee7b7; font-weight: 600; letter-spacing: .04em; }
.mock-dash__live .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: pulse 2.2s infinite; }

.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.kpi {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 14px; padding: 14px;
  position: relative; overflow: hidden;
}
.kpi__label { font-size: 11.5px; color: var(--text-on-dark-2); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.kpi__label svg { width: 13px; height: 13px; color: var(--accent-300); }
.kpi__value { font-family: var(--ff-head); font-size: 27px; font-weight: 700; margin-top: 8px; color: #fff; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kpi__delta { font-size: 11px; font-weight: 600; margin-top: 4px; color: #6ee7b7; }
.kpi__spark { position: absolute; right: 10px; bottom: 8px; width: 56px; height: 26px; opacity: .8; }

.mock-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }

.rank-card, .capture-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 14px; padding: 14px;
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.card-head h4 { font-size: 12.5px; font-weight: 600; color: var(--text-on-dark); letter-spacing: 0; }
.card-head .tag { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; background: rgba(138,71,235,.18); color: var(--accent-300); letter-spacing: .03em; }

.rank-item { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 10px; padding: 6px 0; }
.rank-item + .rank-item { border-top: 1px solid rgba(255,255,255,.06); }
.rank-item .pos { font-family: var(--ff-head); font-weight: 700; font-size: 12px; color: var(--accent-300); text-align: center; }
.rank-item .brandname { font-size: 12.5px; color: var(--text-on-dark); font-weight: 500; }
.rank-item .bar { height: 6px; width: 90px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; }
.rank-item .bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent-400), var(--accent)); }

.capture-card { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: stretch; }
.capture-thumb {
  border-radius: 11px; border: 1px solid var(--line-dark); position: relative; overflow: hidden; min-height: 92px;
  background:
    repeating-linear-gradient(45deg, rgba(138,71,235,.16) 0 8px, rgba(138,71,235,.05) 8px 16px),
    linear-gradient(180deg, #1a2042, #11163a);
}
.capture-thumb .verified {
  position: absolute; left: 7px; bottom: 7px; display: inline-flex; align-items: center; gap: 4px;
  background: rgba(16,21,48,.85); border: 1px solid rgba(52,211,153,.4); color: #6ee7b7;
  font-size: 9.5px; font-weight: 700; padding: 3px 7px; border-radius: 100px;
}
.capture-thumb .verified svg { width: 10px; height: 10px; }
.capture-meta { display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.capture-meta .line { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--text-on-dark-2); }
.capture-meta .line svg { width: 13px; height: 13px; color: var(--accent-300); flex: none; }
.capture-meta .line b { color: var(--text-on-dark); font-weight: 600; }
.capture-status { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #6ee7b7; margin-top: 2px; }

/* floating badges around mock */
.float-badge {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.96); color: var(--text); font-family: var(--ff-head);
  font-size: 12px; font-weight: 600; padding: 9px 13px; border-radius: 100px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.float-badge svg { width: 15px; height: 15px; color: var(--accent); }
.float-badge--ai   { top: -16px; left: -18px; animation: floaty 5s ease-in-out infinite; }
.float-badge--cert { bottom: 38px; right: -22px; animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

/* =========================================================================
   "O que é" — highlight chips
   ========================================================================= */
.whatis { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.highlights { display: grid; gap: 12px; }
.highlight {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .25s, border-color .2s;
}
.highlight:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--accent-100); }
.highlight__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-600); }
.highlight__ico svg { width: 22px; height: 22px; }
.highlight b { font-family: var(--ff-head); font-size: 15px; display: block; }
.highlight span { font-size: 13.5px; color: var(--text-2); }

/* =========================================================================
   Cards grid (benefits / differentials)
   ========================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s cubic-bezier(.4,.6,.3,1), box-shadow .3s, border-color .25s;
}
.feature::after { content:""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-300)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-100); }
.feature:hover::after { transform: scaleX(1); }
.feature__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-600); margin-bottom: 18px; transition: background .25s, color .25s; }
.feature__ico svg { width: 26px; height: 26px; }
.feature:hover .feature__ico { background: var(--accent); color: #fff; }
.feature h3 { font-size: 19px; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--text-2); text-wrap: pretty; }

/* =========================================================================
   How it works — steps
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.steps::before { content:""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--accent-100) 0 10px, transparent 10px 18px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: left; }
.step__num {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 20px; color: #fff;
  background: linear-gradient(150deg, var(--accent-400), var(--accent-600));
  box-shadow: var(--shadow-accent); margin-bottom: 18px;
}
.step h3 { font-size: 16px; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--text-2); text-wrap: pretty; }

/* =========================================================================
   Audience
   ========================================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience {
  border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition: transform .25s, border-color .25s, background .25s;
}
.audience:hover { transform: translateY(-6px); border-color: rgba(138,71,235,.5); background: linear-gradient(180deg, rgba(138,71,235,.12), rgba(255,255,255,.02)); }
.audience__ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(138,71,235,.16); color: var(--accent-300); margin-bottom: 18px; }
.audience__ico svg { width: 25px; height: 25px; }
.audience h3 { font-size: 17px; margin-bottom: 9px; color: #fff; }
.audience p { font-size: 13.5px; color: var(--text-on-dark-2); text-wrap: pretty; }

/* =========================================================================
   Data intelligence
   ========================================================================= */
.data-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.metric {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm);
}
.metric__value { font-family: var(--ff-head); font-weight: 700; font-size: 30px; color: var(--accent-600); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.metric__label { font-size: 13.5px; color: var(--text-2); margin-top: 4px; }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.panel__head h4 { font-size: 15px; }
.panel__head .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #15a35f; }
.panel__head .live .dot { width: 7px; height: 7px; border-radius: 50%; background: #16c172; animation: pulse 2.2s infinite; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.filter {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500;
  padding: 7px 12px; border-radius: 100px; border: 1px solid var(--line-2); background: #fff; color: var(--text-2);
}
.filter.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.filter svg { width: 13px; height: 13px; }
.filter[role="button"] { cursor: pointer; }
.filter-select {
  font-size: 12.5px; font-weight: 500; padding: 7px 28px 7px 12px; border-radius: 100px;
  border: 1px solid var(--line-2); background: #fff; color: var(--text-2); cursor: pointer; max-width: 170px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2.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 9px center; background-size: 13px;
}
.filter-select:focus { outline: none; border-color: var(--accent); }
.rank-list[aria-busy="true"] { opacity: .55; transition: opacity .2s; }

.rank-list { padding: 8px 20px 18px; }
.rank-row { display: grid; grid-template-columns: 26px 1fr 64px; align-items: center; gap: 14px; padding: 12px 0; }
.rank-row + .rank-row { border-top: 1px solid var(--line); }
.rank-row .pos { font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: var(--text-3); text-align: center; }
.rank-row.top .pos { color: var(--accent); }
.rank-row .who { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.rank-row .who b { font-size: 14px; font-family: var(--ff-head); }
.rank-row .who .bar { height: 7px; border-radius: 100px; background: var(--bg-soft-2); overflow: hidden; }
.rank-row .who .bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent-300), var(--accent)); transition: width 1s cubic-bezier(.4,.6,.3,1); }
.rank-row .cnt { text-align: right; font-family: var(--ff-head); font-weight: 600; font-size: 14px; font-variant-numeric: tabular-nums; }
.rank-row .cnt span { display: block; font-family: var(--ff-body); font-weight: 500; font-size: 11px; color: var(--text-3); }
.mock-note { font-size: 12px; color: var(--text-3); padding: 0 20px 16px; }

/* =========================================================================
   Differentials
   ========================================================================= */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.diff {
  display: flex; align-items: center; gap: 13px; padding: 18px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm);
  font-family: var(--ff-head); font-weight: 600; font-size: 14.5px; transition: transform .2s, border-color .2s;
}
.diff:hover { transform: translateY(-3px); border-color: var(--accent-100); }
.diff__ico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-600); }
.diff__ico svg { width: 20px; height: 20px; }

/* =========================================================================
   Trial form
   ========================================================================= */
.trial { background: var(--ink); color: var(--text-on-dark); position: relative; overflow: hidden; }
.trial .blob--1 { right: -180px; top: -120px; opacity: .4; }
.trial .blob--2 { left: -180px; bottom: -180px; opacity: .35; }
.trial__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.trial__copy h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.03em; text-wrap: balance; }
.trial__copy p { margin-top: 18px; font-size: 17px; color: var(--text-on-dark-2); max-width: 48ch; text-wrap: pretty; }
.value-list { margin-top: 26px; display: grid; gap: 12px; }
.value-list li { list-style: none; display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-on-dark); }
.value-list .tick { width: 26px; height: 26px; flex: none; border-radius: 8px; display: grid; place-items: center; background: rgba(52,211,153,.16); color: #6ee7b7; }
.value-list .tick svg { width: 15px; height: 15px; }

.form-card {
  background: #fff; color: var(--text); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-dark-2);
}
.form-card h3 { font-size: 21px; }
.form-card .sub { font-size: 14px; color: var(--text-2); margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; font-family: var(--ff-head); margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px; color: var(--text);
  padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: 11px; background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(138,71,235,.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field .err { display: none; font-size: 12px; color: #d23b53; margin-top: 6px; font-weight: 500; }
.field.invalid input, .field.invalid select { border-color: #d23b53; background: #fdf2f4; }
.field.invalid .err { display: block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin: 4px 0 12px; font-size: 13px; font-weight: 500; color: #d23b53; text-align: center; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.form-trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 9px 14px; border-radius: 10px;
  background: rgba(52,211,153,.10); border: 1px solid rgba(21,163,95,.22);
  font-family: var(--ff-head); font-weight: 600; font-size: 12.5px; color: #0f7a48;
}
.form-trust svg { width: 15px; height: 15px; flex: none; color: #15a35f; }
.form-trust b { font-weight: 700; }
.form-note { font-size: 12px; color: var(--text-3); margin-top: 12px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 28px 10px;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,211,153,.16); color: #15a35f; margin: 0 auto 18px; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; }
.form-success p { color: var(--text-2); margin-top: 8px; font-size: 15px; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta { position: relative; overflow: hidden; padding-block: clamp(72px, 9vw, 120px); }
.final-cta__card {
  position: relative; z-index: 1; text-align: center;
  background: linear-gradient(150deg, #1a1147, #0B1020 60%);
  border: 1px solid rgba(138,71,235,.3); border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 88px) 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.final-cta__card .grid-overlay { -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000 20%, transparent 75%); mask-image: radial-gradient(80% 80% at 50% 50%, #000 20%, transparent 75%); }
.final-cta__card .blob--1 { top: -200px; right: 10%; opacity: .45; }
.final-cta h2 { position: relative; font-size: clamp(30px, 4.4vw, 50px); color: #fff; letter-spacing: -.035em; max-width: 18ch; margin-inline: auto; text-wrap: balance; }
.final-cta p { position: relative; margin-top: 18px; color: var(--text-on-dark-2); font-size: 18px; max-width: 52ch; margin-inline: auto; }
.final-cta__btns { position: relative; margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--ink-2); color: var(--text-on-dark-2); padding-block: 56px 32px; border-top: 1px solid var(--line-dark); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line-dark); }
.footer .brand__name { color: #fff; }
.footer__desc { margin-top: 18px; font-size: 14.5px; max-width: 38ch; color: var(--text-on-dark-2); }
.footer__col h5 { font-family: var(--ff-head); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; padding: 6px 0; color: var(--text-on-dark-2); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; font-size: 13px; flex-wrap: wrap; }
.footer__bottom a { color: var(--text-on-dark); transition: color .2s; }
.footer__bottom a:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================================
   Browser frame (real screenshots)
   ========================================================================= */
.browser-frame {
  background: linear-gradient(180deg, rgba(28,34,64,.95), rgba(16,21,48,.95));
  border: 1px solid var(--line-dark-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(138,71,235,.12);
  overflow: hidden; margin: 0;
}
.browser-frame__bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line-dark); }
.browser-frame__bar .traffic { display: flex; gap: 6px; }
.browser-frame__bar .traffic i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.16); }
.browser-frame__url {
  display: inline-flex; align-items: center; gap: 7px; flex: 1; min-width: 0;
  font-size: 11.5px; color: var(--text-on-dark-2); font-weight: 500;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 100px;
  padding: 5px 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.browser-frame__url svg { width: 12px; height: 12px; flex: none; color: #6ee7b7; }
.browser-frame__live { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; color: #6ee7b7; font-weight: 700; letter-spacing: .04em; flex: none; }
.browser-frame__live .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: pulse 2.2s infinite; }
.browser-frame__screen { aspect-ratio: 4 / 3; overflow: hidden; background: #11163a; }
.browser-frame__screen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ---- Hero heat-map (stylized Brazil) ---- */
.heatmap { position: relative; display: grid; place-items: center; background: radial-gradient(120% 95% at 52% 18%, #181c46 0%, #0c1124 78%); }
.heatmap__map { width: auto; height: 100%; max-width: 100%; filter: drop-shadow(0 10px 34px rgba(138,71,235,.28)); }
.heatmap__legend {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-weight: 600; font-size: 11.5px; color: var(--text-on-dark);
  background: rgba(11,16,32,.62); border: 1px solid var(--line-dark-2); border-radius: 100px;
  padding: 6px 12px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.heatmap__legend .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-400); box-shadow: 0 0 0 0 rgba(138,71,235,.6); animation: pulse 2.2s infinite; }
.heatmap__tag {
  position: absolute; bottom: 13px; right: 14px; z-index: 2;
  font-size: 10.5px; color: var(--text-on-dark-2);
  background: rgba(11,16,32,.5); border: 1px solid var(--line-dark); border-radius: 8px; padding: 5px 10px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hm-glow { transform-box: fill-box; transform-origin: center; animation: hmGlow 3.4s var(--d, 0s) ease-in-out infinite; }
.hm-dot  { animation: hmDot 3.4s var(--d, 0s) ease-in-out infinite; }
.hm-ping { fill: none; stroke: #b89bfa; stroke-width: 3; transform-box: fill-box; transform-origin: center; animation: hmPing 3s .3s ease-out infinite; }
@keyframes hmGlow { 0%,100% { opacity: .5; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes hmDot  { 0%,100% { opacity: .75; } 50% { opacity: 1; } }
@keyframes hmPing { 0% { transform: scale(1); opacity: .65; } 70%,100% { transform: scale(3.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hm-glow, .hm-dot { animation: none; }
  .hm-ping { display: none; }
  .heatmap__legend .dot { animation: none; }
}

/* =========================================================================
   Solutions (two products)
   ========================================================================= */
.solutions { display: grid; gap: 28px; }
.solution {
  display: grid; grid-template-columns: 1.02fr 1fr; gap: 0; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow); overflow: hidden;
}
.solution--alt .solution__body { order: 2; }
.solution__body { padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.solution__for {
  align-self: flex-start; font-family: var(--ff-head); font-weight: 600; font-size: 12px;
  letter-spacing: .04em; color: var(--accent-600); background: var(--accent-tint);
  padding: 6px 12px; border-radius: 100px; margin-bottom: 16px;
}
.solution__body h3 { font-size: clamp(22px, 2.6vw, 30px); display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.solution__sub-label { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--text-3); text-transform: lowercase; letter-spacing: .02em; }
.solution__body > p { margin-top: 14px; font-size: 15.5px; color: var(--text-2); text-wrap: pretty; }
.solution__shot { margin: 0; position: relative; min-height: 280px; background: var(--ink); overflow: hidden; }
.solution__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.solution__shot::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); pointer-events: none; }

/* report (signed PDF) mockup */
.solution__shot--report { background: radial-gradient(120% 120% at 30% 8%, #f6f4fc, #e7e1f6); display: grid; place-items: center; padding: 32px 24px; }
.solution__shot--report img {
  width: auto; height: 100%; max-height: 100%; max-width: 86%; object-fit: contain;
  border-radius: 4px; transform: rotate(-1.4deg); transition: transform .4s cubic-bezier(.4,.6,.3,1);
  box-shadow: 0 26px 60px -22px rgba(46,32,90,.55), 0 0 0 1px rgba(11,16,32,.08);
}
.solution:hover .solution__shot--report img { transform: rotate(0) scale(1.015); }
.report-seal {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,16,32,.82); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark-2); color: #fff;
  font-family: var(--ff-head); font-weight: 600; font-size: 12px;
  padding: 9px 13px; border-radius: 100px; box-shadow: var(--shadow-lg);
}
.report-seal svg { width: 15px; height: 15px; flex: none; color: #6ee7b7; }

/* =========================================================================
   Legal validity (gov.br evidence)
   ========================================================================= */
.legal { display: grid; grid-template-columns: 1fr 1.12fr; gap: 52px; align-items: center; }
.section--dark .feat-checks li { color: var(--text-on-dark); }
.section--dark .fc-ico { background: rgba(138,71,235,.18); color: var(--accent-300); }
.legal__shot { margin: 0; }
.legal__cap { margin-top: 14px; font-size: 12.5px; color: var(--text-on-dark-2); text-align: center; }
.browser-frame__screen--doc { aspect-ratio: auto; background: #fff; }
.browser-frame__screen--doc img { width: 100%; height: auto; object-fit: contain; display: block; }
.browser-frame__live svg { width: 12px; height: 12px; }

.ticklist { list-style: none; margin-top: 22px; display: grid; gap: 11px; }
.ticklist li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; color: var(--text); }
.ticklist svg { width: 18px; height: 18px; flex: none; padding: 3px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-600); box-sizing: content-box; }

/* =========================================================================
   How it works — two flow tracks
   ========================================================================= */
.flow-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.track { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); }
.track--alt { background: #fff; border-color: var(--accent-100); }
.track__tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 600;
  font-size: 13px; letter-spacing: .02em; color: var(--accent-600);
  background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px; margin-bottom: 22px;
}
.track--alt .track__tag { background: var(--accent-tint); border-color: transparent; }
.track__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.track__steps { list-style: none; display: grid; gap: 4px; position: relative; }
.track__steps li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 12px 0; position: relative; }
.track__steps li:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 42px; bottom: -4px; width: 2px; background: var(--accent-100); }
.track__steps .n {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; z-index: 1;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(150deg, var(--accent-400), var(--accent-600)); box-shadow: var(--shadow-accent);
}
.track__steps b { font-family: var(--ff-head); font-size: 15.5px; display: block; }
.track__steps span { font-size: 13.5px; color: var(--text-2); }

/* =========================================================================
   Examples gallery (masonry)
   ========================================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.cap {
  position: relative; border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--line-dark-2); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .3s;
}
.cap--feature { grid-column: span 2; grid-row: span 2; }
.cap--wide    { grid-column: span 2; }
.cap:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,10,22,.86)); pointer-events: none; }
.cap__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(11,16,32,.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(52,211,153,.45); color: #6ee7b7;
  font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 100px;
}
.cap__badge svg { width: 12px; height: 12px; }
.cap figcaption { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; }
.cap figcaption b { font-family: var(--ff-head); font-size: 14.5px; display: block; line-height: 1.2; }
.cap figcaption span { font-size: 12px; color: rgba(255,255,255,.78); }

/* =========================================================================
   Feature checklist (intelligence)
   ========================================================================= */
.feat-checks { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.feat-checks li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--text); }
.fc-ico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-600); }
.fc-ico svg { width: 20px; height: 20px; }

/* =========================================================================
   FAQ (accordion)
   ========================================================================= */
.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .2s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--accent-100); }
.faq-item[open] { border-color: var(--accent-100); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; font-family: var(--ff-head); font-weight: 600; font-size: 16.5px;
  color: var(--text); transition: color .2s; text-wrap: pretty;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-600); }
.faq-chevron { width: 20px; height: 20px; flex: none; margin-left: auto; color: var(--accent-600); transition: transform .25s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 22px; }
.faq-answer p { color: var(--text-2); font-size: 15px; text-wrap: pretty; }
.faq-answer p + p { margin-top: 10px; }
.faq-item[open] .faq-answer { animation: faqOpen .28s ease both; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-answer { animation: none; }
  .faq-chevron { transition: none; }
}

/* direct contact (WhatsApp + e-mail) */
.contact-direct { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-direct__item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark-2); border-radius: var(--r);
  transition: transform .2s, border-color .2s, background .2s;
}
.contact-direct__item:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.contact-direct__ico {
  width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: rgba(138,71,235,.18); color: var(--accent-300);
}
.contact-direct__ico.wa { background: rgba(37,211,102,.16); color: #4ade80; }
.contact-direct__ico svg { width: 22px; height: 22px; }
.contact-direct__txt { display: flex; flex-direction: column; min-width: 0; }
.contact-direct__txt b { font-family: var(--ff-head); font-size: 14px; color: var(--text-on-dark); }
.contact-direct__txt span { font-size: 13px; color: var(--text-on-dark-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* contact alt CTA */
.trial__alt { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.trial__alt span { font-size: 14.5px; color: var(--text-on-dark-2); }

/* =========================================================================
   Floating WhatsApp button
   ========================================================================= */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0; border-radius: 100px; overflow: hidden;
  background: #25D366; color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.55), 0 4px 10px rgba(11,16,32,.2);
  transition: transform .2s cubic-bezier(.4,.6,.3,1), box-shadow .25s, padding .25s;
}
.wa-fab svg { width: 30px; height: 30px; flex: none; margin: 0 14px; }
.wa-fab__label {
  font-family: var(--ff-head); font-weight: 600; font-size: 15px; white-space: nowrap;
  max-width: 0; opacity: 0; padding-right: 0; transition: max-width .3s ease, opacity .25s, padding-right .3s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(37,211,102,.62), 0 6px 14px rgba(11,16,32,.24); }
.wa-fab:hover .wa-fab__label { max-width: 200px; opacity: 1; padding-right: 22px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s infinite;
}
@keyframes waPulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
/* Content is visible by default (SEO/no-JS/capture-robust). The entrance is a
   transform-only rise added on scroll — no opacity hiding, so content is always
   readable even if the compositor can't progress the animation. */
.reveal { will-change: transform; }
.reveal.in { animation: revealIn .7s cubic-bezier(.2,.7,.3,1) both; }
.reveal.d1.in { animation-delay: .07s; }
.reveal.d2.in { animation-delay: .14s; }
.reveal.d3.in { animation-delay: .21s; }
.reveal.d4.in { animation-delay: .28s; }
@keyframes revealIn {
  from { transform: translateY(24px); }
  to   { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal.in { animation: none !important; }
  .float-badge, .blob, .pill .dot, .mock-dash__live .dot, .panel__head .live .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1040px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .mock { max-width: 560px; }
  .whatis, .data-wrap, .trial__inner, .legal { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .solution, .solution--alt .solution__body { grid-template-columns: 1fr; }
  .solution--alt .solution__body { order: 0; }
  .solution__shot { min-height: 240px; max-height: 360px; }
  .flow-tracks { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .grid-3, .grid-4, .diff-grid, .metric-grid, .steps, .kpi-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .field-row.two { grid-template-columns: 1fr; }
  .hero__cta .btn, .final-cta__btns .btn { width: 100%; }
  .float-badge--ai { left: -6px; top: -14px; }
  .float-badge--cert { right: -6px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .cap--feature, .cap--wide { grid-column: auto; grid-row: auto; }
  .trial__alt { flex-direction: column; align-items: flex-start; }
  .trial__alt .btn { width: 100%; }
  .contact-direct { grid-template-columns: 1fr; }
  .wa-fab { right: 16px; bottom: 16px; height: 54px; }
  .wa-fab svg { width: 28px; height: 28px; margin: 0 13px; }
}

/* =========================================================================
   Legal pages (privacidade, termos) — conteúdo sobre fundo claro.
   O header nesta página é sempre sólido (não há hero escuro atrás dele).
   ========================================================================= */
body.legal-page .header {
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(11,16,32,.4);
  color: var(--text);
}
body.legal-page .header .brand__name { color: var(--text); }
body.legal-page .header .nav__link { color: var(--text-2); }
body.legal-page .header .nav__link:hover { color: var(--accent-600); background: var(--accent-tint); }
body.legal-page .header .btn--ghost { color: var(--text); border-color: var(--line-2); }
body.legal-page .header .burger span { background: var(--text); }

.legal-hero {
  padding-top: calc(var(--header-h) + clamp(36px, 6vw, 72px));
  padding-bottom: clamp(28px, 4vw, 48px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.legal-hero__inner { max-width: 820px; margin-inline: auto; }
.legal-hero h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 14px; }
.legal-hero .legal-updated { font-size: 14.5px; color: var(--text-3); }

.legal-doc { padding-block: clamp(40px, 6vw, 72px); }
.legal-doc__inner { max-width: 820px; margin-inline: auto; }
.legal-doc__intro { font-size: 17px; color: var(--text-2); margin-bottom: clamp(28px, 4vw, 44px); }

.legal-section { margin-bottom: clamp(28px, 4vw, 40px); scroll-margin-top: calc(var(--header-h) + 20px); }
.legal-section h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-section p { color: var(--text-2); margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 4px 0 0; }
.legal-section li {
  position: relative; padding-left: 26px; color: var(--text-2);
}
.legal-section li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint);
}
.legal-section li b, .legal-section p b { color: var(--text); font-weight: 600; }
.legal-section a { color: var(--accent-600); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--accent); }
