/* =========================================================
   BRAINS MARKETING — Design System
   Dark premium · Space Grotesk + Inter · Performance-first
   ========================================================= */

:root {
  /* Cores da marca */
  --bg: #020617;            /* base (slate-950) */
  --bg-soft: #060B2A;       /* navy profundo */
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-strong: rgba(255, 255, 255, 0.16);

  --ink: #F8FAFC;
  --ink-soft: #B6BFD4;
  --ink-mute: #7C87A5;

  --brand: #6366F1;         /* indigo elétrico */
  --brand-2: #22D3EE;       /* ciano */
  --brand-3: #A78BFA;       /* violeta */
  --grad: linear-gradient(100deg, #6366F1 0%, #8B5CF6 50%, #22D3EE 100%);
  --grad-soft: linear-gradient(100deg, rgba(99,102,241,.18), rgba(34,211,238,.12));
  --whatsapp: #25D366;

  /* Tipografia */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(.22, .8, .26, .99);
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(99,102,241,.45); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(72px, 9vw, 128px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
/* Compensa o cabeçalho fixo ao navegar por âncoras (#servicos, #contato...) */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Utilitários de texto ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.h-xl { font-size: clamp(2.5rem, 6vw, 4.4rem); }
.h-lg { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 640px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(99, 102, 241, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(99, 102, 241, .5); }
.btn--ghost {
  border-color: var(--stroke-strong);
  color: var(--ink);
  background: rgba(255,255,255,.03);
}
.btn--ghost:hover { border-color: var(--brand-2); transform: translateY(-2px); background: rgba(34,211,238,.06); }
.btn--whatsapp {
  background: rgba(37, 211, 102, .12);
  border-color: rgba(37, 211, 102, .4);
  color: #5EF09A;
}
.btn--whatsapp:hover { background: rgba(37, 211, 102, .2); transform: translateY(-2px); }
.btn--sm { padding: 11px 22px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(2, 6, 23, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--stroke);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-logo .brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.brand-logo .brand-mark svg { width: 20px; height: 20px; }
.brand-logo em { font-style: normal; color: var(--brand-2); }
.brand-logo .brand-img,
.brand-logo .custom-logo {
  height: 56px;
  width: auto;
  transition: transform .25s var(--ease);
}
.brand-logo:hover .brand-img { transform: scale(1.05); }
.brand-logo--footer .brand-img { height: 92px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.menu-cta { display: none; } /* só aparece dentro do menu mobile */
.main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.main-nav a {
  display: block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: #fff; background: rgba(255,255,255,.06); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--stroke-strong);
  background: transparent;
  border-radius: 12px;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.nav-toggle::before { top: 15px; }
.nav-toggle span   { top: 21px; }
.nav-toggle::after { top: 27px; }
.nav-toggle[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::after { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 0;
  overflow: hidden;
}
.hero > .container { margin-block: auto; } /* centraliza o conteúdo; a faixa de serviços fica na base */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(820px 480px at 78% 18%, rgba(99, 102, 241, .22), transparent 62%),
    radial-gradient(640px 420px at 12% 78%, rgba(34, 211, 238, .12), transparent 60%),
    var(--bg);
}
/* Aurora: brilho que se move lentamente, dando vida ao fundo (leve, só transform). */
.hero-aurora {
  position: absolute;
  inset: -25%;
  z-index: 0;
  background:
    radial-gradient(38% 38% at 28% 32%, rgba(99, 102, 241, .20), transparent 70%),
    radial-gradient(36% 36% at 72% 62%, rgba(34, 211, 238, .15), transparent 70%);
  filter: blur(46px);
  animation: aurora 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes aurora {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, 3%) scale(1.12); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(800px 500px at 60% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(800px 500px at 60% 40%, #000 30%, transparent 75%);
}
/* Cérebro neural animado no fundo do hero (lado direito), no estilo da referência. */
.hero-brain {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: min(52vw, 660px);
  pointer-events: none;
  animation: brainFloat 16s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-brain img { width: 100%; height: auto; display: block; }
@keyframes brainFloat {
  from { transform: translateY(calc(-50% - 8px)); }
  to   { transform: translateY(calc(-50% + 8px)); }
}
@keyframes nodePulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.5); }
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  background: rgba(255,255,255,.04);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 12px var(--brand-2);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.7); opacity: .6; }
}
.hero h1 { max-width: 880px; margin-bottom: 22px; }
.hero .lead { margin-bottom: 28px; }

/* Pills de diferenciais competitivos */
.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  background: rgba(255, 255, 255, .04);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color .25s, transform .25s var(--ease);
}
.hero-pills li:hover { border-color: rgba(99, 102, 241, .5); transform: translateY(-2px); }
.hero-pills svg { width: 15px; height: 15px; color: var(--brand-2); flex: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 760px;
}
.hero-stats > div {
  background: rgba(6, 11, 42, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 26px 28px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 14px; color: var(--ink-mute); margin-top: 2px; }

/* Faixa de serviços deslizando na base do hero */
.hero-services {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  border-top: 1px solid var(--stroke);
  background: rgba(2, 6, 23, .4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-services-track {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 34s linear infinite;
}
.hero-services:hover .hero-services-track { animation-play-state: paused; }
.hero-services-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mute);
}
.hero-services-track svg { width: 16px; height: 16px; color: var(--brand); opacity: .7; flex: none; }

/* ---------- Logos / prova social ---------- */
.logos { border-block: 1px solid var(--stroke); background: var(--bg-soft); }
.logos-title {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 30px;
}
.logos-title strong { color: var(--ink-soft); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-mute);
  white-space: nowrap;
  transition: color .25s;
}
.marquee-item:hover { color: var(--ink); }
.marquee-item svg { width: 20px; height: 20px; opacity: .65; }
.marquee-item img {
  height: 68px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.7);
  opacity: .8;
  transition: filter .3s, opacity .3s;
}
.marquee-item:hover img { filter: none; opacity: 1; }

/* ---------- Cards genéricos ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, .45);
  background: var(--bg-card-hover);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(99, 102, 241, .35);
  display: grid;
  place-items: center;
  color: var(--brand-2);
  margin-bottom: 22px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Dores ---------- */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}
.pain-card { border-top: 2px solid transparent; }
.pain-card:hover { border-top-color: var(--brand-2); }
.pains-punch {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-2);
}
.service-card .card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service-card:hover .card-link svg { transform: translateX(5px); }
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: 44px;
  background:
    radial-gradient(560px 300px at 88% 0%, rgba(99,102,241,.22), transparent 65%),
    var(--bg-card);
}
.service-card--featured h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.featured-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.featured-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 15px;
}
.featured-points svg { width: 19px; height: 19px; color: var(--brand-2); flex: none; margin-top: 2px; }

/* ---------- Método ---------- */
.method { background: var(--bg-soft); border-block: 1px solid var(--stroke); }
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
  counter-reset: step;
}
.method-step {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  transition: transform .3s var(--ease), border-color .3s;
}
.method-step:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, .5); }
.method-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  margin-bottom: 18px;
}
.method-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.method-step p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.method-step::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -19px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  display: block;
}
.method-step:last-child::after { display: none; }

/* ---------- Diferenciais ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.checklist { list-style: none; margin: 28px 0 36px; padding: 0; display: grid; gap: 18px; }
.checklist li { display: flex; gap: 16px; align-items: flex-start; }
.checklist .check-ic {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 9px;
  background: var(--grad-soft);
  border: 1px solid rgba(99,102,241,.35);
  display: grid;
  place-items: center;
  color: var(--brand-2);
  margin-top: 2px;
}
.checklist .check-ic svg { width: 15px; height: 15px; }
.checklist strong { display: block; font-family: var(--font-head); font-size: 1.04rem; margin-bottom: 3px; }
.checklist span { color: var(--ink-soft); font-size: 14.5px; }

.brain-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(420px 320px at 70% 25%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(360px 280px at 25% 80%, rgba(34,211,238,.16), transparent 60%),
    var(--bg-soft);
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brain-visual svg.neural { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Cérebro neural animado */
.brain-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.brain-outline { animation: brainBreath 5s ease-in-out infinite; transform-origin: center; }
.brain-nodes circle {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 5px rgba(129, 140, 248, .9));
  animation: nodePulse 3.4s ease-in-out infinite;
}
.brain-nodes circle:nth-of-type(2n) { animation-delay: -.7s; }
.brain-nodes circle:nth-of-type(3n) { animation-delay: -1.5s; }
.brain-nodes circle:nth-of-type(4n) { animation-delay: -2.3s; }
@keyframes brainBreath {
  0%, 100% { opacity: .5; }
  50%      { opacity: .95; }
}
.brain-visual .kpi-float {
  position: absolute;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(6, 11, 42, .85);
  border: 1px solid var(--stroke-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--ink-soft);
  animation: float 5.5s ease-in-out infinite;
}
.brain-visual .kpi-float b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #fff;
}
.brain-visual .kpi-float b em { font-style: normal; color: var(--brand-2); }
.kpi-1 { top: 12%; left: 8%; }
.kpi-2 { bottom: 26%; right: 7%; animation-delay: -2.2s !important; }
.kpi-3 { bottom: 8%; left: 16%; animation-delay: -3.8s !important; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Segmentos ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}
.segment-card {
  text-align: center;
  padding: 38px 24px;
}
.segment-card .card-icon { margin-inline: auto; }
.segment-card p { font-size: 14px; }

/* ---------- Depoimentos ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 34px 34px 30px;
}
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 58px; /* altura fixa: alinha logos e estrelas entre todos os cards */
}
/* Logo branca/clara: aparece direto, em tamanho legível e uniforme. */
.testimonial-logo {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  opacity: .92;
}
/* Logo colorida/escura ganha um selo de fundo claro para contraste no dark. */
.testimonial-logo--chip {
  height: 54px;
  width: auto;
  max-width: 120px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  opacity: 1;
}
.testimonial-seal {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--grad);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex: none;
}
.testimonial .stars { display: flex; gap: 3px; color: #FBBF24; flex: none; }
.testimonial .stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-quote {
  position: relative;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
}
.testimonial-author strong { font-family: var(--font-head); font-size: 15px; }
.testimonial-author span { font-size: 13px; color: var(--brand-2); font-weight: 500; }

/* ---------- Blog teaser ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}
.post-card { padding: 0; display: flex; flex-direction: column; }
.post-card .post-thumb {
  aspect-ratio: 16 / 9;
  background: var(--grad-soft);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--brand);
}
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-card .post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .post-meta { font-size: 13px; color: var(--ink-mute); }
.post-card h3 { font-size: 1.13rem; margin: 0; }
.post-card h3 a:hover { color: var(--brand-2); }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(99, 102, 241, .4);
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(99, 102, 241, .35), transparent 65%),
    radial-gradient(500px 300px at 85% 110%, rgba(34, 211, 238, .18), transparent 60%),
    var(--bg-soft);
  padding: clamp(52px, 7vw, 92px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.cta-final h2 { max-width: 720px; margin-inline: auto; }
.cta-final .lead { margin-inline: auto; margin-bottom: 36px; }
.cta-final .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Formulário de contato ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info { display: grid; gap: 14px; margin-top: 30px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  transition: border-color .25s, transform .25s var(--ease);
}
.contact-line:hover { border-color: rgba(34,211,238,.5); transform: translateX(4px); }
.contact-line .card-icon { width: 44px; height: 44px; margin: 0; border-radius: 12px; }
.contact-line .card-icon svg { width: 20px; height: 20px; }
.contact-line strong { display: block; font-size: 15px; }
.contact-line span { font-size: 13.5px; color: var(--ink-mute); }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke-strong);
  background: rgba(2, 6, 23, .6);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .22);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237C87A5' stroke-width='2.4'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-submit { margin-top: 24px; width: 100%; }
.form-note { font-size: 12.5px; color: var(--ink-mute); text-align: center; margin: 14px 0 0; }
.form-msg { margin-top: 16px; padding: 14px 18px; border-radius: 12px; font-size: 14px; display: none; }
.form-msg.ok { display: block; background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .4); color: #5EF09A; }
.form-msg.err { display: block; background: rgba(244, 63, 94, .12); border: 1px solid rgba(244, 63, 94, .4); color: #FDA4AF; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--stroke);
  background: var(--bg-soft);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-grid h4 {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid li a { font-size: 14.5px; color: var(--ink-soft); transition: color .2s; }
.footer-grid li a:hover { color: var(--brand-2); }
.footer-about p { font-size: 14.5px; color: var(--ink-soft); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--stroke-strong);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: var(--brand); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease);
}
.whats-float:hover { transform: scale(1.1); }
.whats-float svg { width: 28px; height: 28px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Páginas internas (WP) ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(56px, 9vw, 110px)) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(700px 360px at 70% 0%, rgba(99,102,241,.2), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--stroke);
}
.entry-content { max-width: 760px; margin-inline: auto; }
.entry-content h2 { font-size: 1.7rem; margin-top: 2em; }
.entry-content h3 { font-size: 1.3rem; margin-top: 1.6em; }
.entry-content a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--brand);
  color: var(--ink-soft);
  font-style: italic;
}
.entry-content ul, .entry-content ol { color: var(--ink-soft); padding-left: 1.3em; }
.entry-content li { margin-bottom: .4em; }
.post-header-meta { color: var(--ink-mute); font-size: 14px; }

/* ---------- Páginas de detalhe (serviço / segmento) ---------- */
.detail-hero .detail-hero-inner { max-width: 760px; }
.detail-hero-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(99, 102, 241, .35);
  color: var(--brand-2);
  margin-bottom: 24px;
}
.detail-hero-icon svg { width: 30px; height: 30px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.detail-intro { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink-soft); line-height: 1.7; }
.detail-benefits {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.detail-benefits h2 { margin-bottom: 22px; }
.detail-benefits .checklist { margin: 0; }
.detail-benefits .checklist li { align-items: center; }

/* FAQ acordeão */
.detail-faq { max-width: 820px; margin-inline: auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] { border-color: rgba(99, 102, 241, .45); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
}
.faq-plus::before, .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--brand-2);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.faq-plus::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-plus::after { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-answer { padding: 0 26px 24px; }
.faq-answer p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Página Sobre ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
}
.about-stats > div { background: rgba(6, 11, 42, .55); padding: 30px 26px; text-align: center; }
.about-stats .stat-num { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.about-stats .stat-label { margin-top: 8px; }
.about-brands {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.about-brands strong { color: var(--ink); }

/* Tabela comparativa */
.compare {
  margin-top: 54px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid var(--stroke);
}
.compare-row:first-child { border-top: 0; }
.compare-cell { padding: 18px 22px; font-size: 15px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.compare-head .compare-cell { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .04em; background: rgba(255,255,255,.02); }
.compare-label { font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.compare-old { color: var(--ink-mute); }
.compare-brains { background: rgba(99, 102, 241, .08); color: var(--ink); font-weight: 500; }
.compare-head .compare-brains { background: rgba(99, 102, 241, .14); color: var(--brand-2); }
.compare-check { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; background: var(--grad-soft); color: var(--brand-2); flex: none; }
.compare-check svg { width: 13px; height: 13px; }

.about-segments { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Regiões */
.regions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 54px; }
.region-card { padding: 30px 30px 32px; }
.region-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.region-head .card-icon { width: 44px; height: 44px; margin: 0; border-radius: 12px; }
.region-head .card-icon svg { width: 20px; height: 20px; }
.region-head h3 { margin: 0; font-size: 1.18rem; }
.region-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Manifesto */
.manifesto-quote {
  margin: 24px auto 0;
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: balance;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .pains-grid, .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(3, 1fr); }
  .method-step:nth-child(3)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-segments { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    background: rgba(2, 6, 23, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stroke);
    padding: 18px 24px 28px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 2px; width: 100%; }
  .main-nav a { padding: 13px 14px; font-size: 16px; }
  .nav-toggle { display: block; }
  /* No mobile, header fica só com logo + menu; os botões vão para dentro do menu. */
  .header-cta .btn { display: none; }
  .menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--stroke); }
  .menu-cta .btn { display: flex; width: 100%; }

  .split, .contact-wrap, .service-card--featured, .detail-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); } /* tablet: 2 colunas */
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-step::after { display: none; }
  .hero-stats { grid-template-columns: 1fr; max-width: 420px; }
  /* Cérebro vira fundo central sutil no mobile, sem competir com o texto */
  .hero-brain { width: 120%; right: -10%; opacity: .28; }
  .regions-grid { grid-template-columns: 1fr; }
  .compare-cell { padding: 14px 14px; font-size: 13.5px; }

  /* KPIs deixam de flutuar (sobrepunham no mobile) e empilham em coluna. */
  .brain-visual {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .brain-visual svg.neural, .brain-visual .brain-svg { opacity: .4; }
  .brain-visual .kpi-float {
    position: static;
    width: 100%;
    animation: none;
  }
  .kpi-1, .kpi-2, .kpi-3 {
    top: auto; bottom: auto; left: auto; right: auto;
    animation-delay: 0s !important;
  }
}

@media (max-width: 560px) {
  .pains-grid, .segments-grid, .services-grid, .method-steps, .form-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .blog-grid { grid-template-columns: 1fr; } /* celular: 1 coluna */
  .about-stats, .about-segments { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .section { padding-block: 64px; }

  /* Tabela comparativa vira blocos empilhados no celular */
  .compare-row { grid-template-columns: 1fr; }
  .compare-head { display: none; }
  .compare-label { background: rgba(255,255,255,.03); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-mute); padding-bottom: 4px; }
  .compare-old::before { content: "Tradicional: "; color: var(--ink-mute); }
  .compare-brains::before { content: "Brains: "; color: var(--brand-2); font-weight: 600; }
  .compare-cell { border-top: 1px solid var(--stroke); }
}

/* =========================================================================
   LANDING PAGE — Assessoria (tráfego pago). Standalone, foco em conversão.
   ========================================================================= */
.lp-body { background: var(--bg); }
.footer-bottom-links { display: inline-flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--ink-mute); }
.footer-bottom-links a:hover { color: var(--ink); }

/* ---- Topo minimalista ---- */
.lp-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2,6,23,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--stroke);
}
.lp-topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 40px; width: auto; display: block; }
.lp-topbar-cta { display: flex; align-items: center; gap: 18px; }
.lp-topbar-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink-soft); font-size: 15px; }
.lp-topbar-phone svg { width: 17px; height: 17px; color: var(--brand-2); }

/* ---- Hero ---- */
.lp-hero { position: relative; overflow: hidden; padding: 64px 0 72px; }
.lp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.lp-hero-copy .hero-badge { margin-bottom: 22px; }
.lp-hero-copy .h-xl { margin: 0 0 18px; }
.lp-hero-copy .lead { margin: 0 0 26px; max-width: 580px; }

.lp-bullets { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.lp-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.45; }
.lp-bullets svg { flex: none; width: 20px; height: 20px; color: var(--brand-2); margin-top: 1px; }

.lp-trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-size: 14.5px; color: var(--ink-mute); }
.lp-trust strong { color: var(--ink); }
.lp-trust-stars, .lp-testimonial-stars { color: #FBBF24; letter-spacing: 2px; font-size: 15px; }

/* ---- Vídeo (YouTube Short, vertical) ---- */
.lp-hero-video { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lp-video {
  position: relative; width: 100%; max-width: 340px; aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 30px 80px -30px rgba(99,102,241,.5), 0 0 0 1px rgba(255,255,255,.04);
  background: #04081d;
}
.lp-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.lp-video-play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: none; display: block; }
.lp-video-play img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease), filter .4s; filter: brightness(.82) saturate(1.05); }
.lp-video-play:hover img { transform: scale(1.05); filter: brightness(.92); }
.lp-video-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 40px -8px rgba(99,102,241,.7);
  transition: transform .25s var(--ease);
}
.lp-video-btn svg { margin-left: 4px; }
.lp-video-play:hover .lp-video-btn { transform: translate(-50%,-50%) scale(1.08); }
.lp-video-cap { font-size: 14px; color: var(--ink-mute); margin: 0; }

/* ---- Logos ---- */
.lp-logos { padding: 8px 0 36px; border-bottom: 1px solid var(--stroke); }

/* ---- Dores ---- */
.lp-pains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }

/* ---- Solução ---- */
.lp-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-solution-grid .h-lg { margin: 14px 0 16px; }
.lp-solution-grid .btn { margin-top: 8px; }
.lp-deliver { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.lp-deliver li { display: flex; gap: 16px; padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--stroke); border-radius: var(--radius); }
.lp-deliver svg { flex: none; width: 26px; height: 26px; color: var(--brand-2); margin-top: 2px; }
.lp-deliver strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 16.5px; margin-bottom: 3px; }
.lp-deliver span { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }

/* ---- Método (etapas) ---- */
.lp-steps { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.lp-steps li { position: relative; padding-top: 30px; }
.lp-step-n { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 28px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.lp-steps h3 { margin: 0 0 8px; font-size: 18px; }
.lp-steps p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---- Números ---- */
.lp-numbers-sec { padding-top: 0; }
.lp-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; padding: 40px; border: 1px solid var(--stroke); border-radius: var(--radius-lg); background: var(--grad-soft); }
.lp-numbers .stat-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px, 5vw, 52px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.lp-numbers .stat-label { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* ---- Depoimentos ---- */
.lp-testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.lp-testimonial { display: flex; flex-direction: column; gap: 14px; }
.lp-testimonial blockquote { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.lp-testimonial figcaption { display: flex; flex-direction: column; }
.lp-testimonial figcaption strong { color: var(--ink); font-family: var(--font-head); }
.lp-testimonial figcaption span { color: var(--ink-mute); font-size: 14px; }

/* ---- Para quem é ---- */
.lp-fit-intro { max-width: 620px; margin: 14px auto 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.lp-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.lp-fit h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; font-size: 19px; }
.lp-fit h3 svg { width: 22px; height: 22px; }
.lp-fit ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lp-fit li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.lp-fit li::before { position: absolute; left: 0; top: 0; }
.lp-fit-yes { border-color: rgba(34,211,238,.35); }
.lp-fit-yes h3 svg { color: var(--brand-2); }
.lp-fit-yes li::before { content: "✓"; color: var(--brand-2); font-weight: 700; }
.lp-fit-no li::before { content: "✕"; color: var(--ink-mute); }

/* ---- FAQ ---- */
.lp-faq-wrap { max-width: 820px; }
.lp-faq { margin-top: 38px; display: grid; gap: 12px; }
.lp-faq details { border: 1px solid var(--stroke); border-radius: var(--radius); background: var(--bg-card); overflow: hidden; }
.lp-faq summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary svg { flex: none; width: 20px; height: 20px; color: var(--brand-2); transition: transform .3s var(--ease); }
.lp-faq details[open] summary svg { transform: rotate(45deg); }
.lp-faq details[open] summary { color: var(--brand-2); }
.lp-faq p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ---- CTA + Formulário ---- */
.lp-cta { background: linear-gradient(180deg, transparent, rgba(99,102,241,.06)); }
.lp-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lp-cta-copy .h-lg { margin: 14px 0 16px; }
.lp-cta-copy .lp-bullets { grid-template-columns: 1fr; margin-bottom: 24px; }
.lp-cta-form .form-card { margin: 0; }

/* ---- Rodapé minimalista ---- */
.lp-footer { border-top: 1px solid var(--stroke); padding: 34px 0; }
.lp-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-footer-inner img { height: 38px; width: auto; }
.lp-footer-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer-contact a { color: var(--ink-soft); font-size: 14.5px; }
.lp-footer-contact a:hover { color: var(--ink); }
.lp-footer-legal { display: flex; gap: 18px; align-items: center; font-size: 13px; color: var(--ink-mute); flex-wrap: wrap; }
.lp-footer-legal a { color: var(--ink-mute); }
.lp-footer-legal a:hover { color: var(--ink); }

/* ---- Barra fixa de conversão (mobile) ---- */
.lp-sticky { display: none; }

/* ---- Responsivo ---- */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-video { order: -1; }
  .lp-solution-grid, .lp-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-pains { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .lp-numbers { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding: 32px 24px; }
  .lp-testimonials, .lp-fit { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lp-topbar-phone { display: none; }
  .lp-hero { padding: 36px 0 48px; }
  .lp-bullets { grid-template-columns: 1fr; }
  .lp-pains, .lp-steps { grid-template-columns: 1fr; }
  .lp-video { max-width: 280px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; }
  /* barra fixa de CTA aparece no mobile */
  .lp-sticky {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(2,6,23,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--stroke);
  }
  .lp-sticky .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 14px; }
  .lp-main { padding-bottom: 76px; } /* espaço para a barra fixa */
  .whats-float { bottom: 84px; }
}

/* =========================================================================
   POLÍTICA DE PRIVACIDADE (página legal)
   ========================================================================= */
.legal-meta {
  display: inline-block; margin-top: 18px; padding: 6px 14px;
  border: 1px solid var(--stroke); border-radius: 999px;
  font-size: 13.5px; color: var(--ink-mute);
}
.legal { max-width: 820px; margin-inline: auto; }
.legal > h2 {
  font-family: var(--font-head); font-size: 1.5rem; line-height: 1.25;
  margin: 2.4em 0 .7em; padding-top: 1.4em; border-top: 1px solid var(--stroke);
  color: var(--ink);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-family: var(--font-head); font-size: 1.12rem; margin: 1.6em 0 .5em; color: var(--ink); }
.legal p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 1em; }
.legal ul { color: var(--ink-soft); line-height: 1.7; padding-left: 1.25em; margin: 0 0 1.2em; }
.legal li { margin-bottom: .55em; }
.legal li strong, .legal p strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }

/* Caixas de destaque (avisos) */
.legal-note {
  position: relative; margin: 1.4em 0 1.6em; padding: 16px 18px 16px 48px;
  background: var(--bg-card); border: 1px solid var(--stroke);
  border-left: 3px solid var(--brand); border-radius: 14px;
  color: var(--ink-soft); font-size: 15px; line-height: 1.65;
}
.legal-note::before {
  content: "ℹ"; position: absolute; left: 16px; top: 15px;
  font-size: 17px; color: var(--brand-2); line-height: 1;
}
.legal-note--warn { border-left-color: #FBBF24; }
.legal-note--warn::before { content: "⚠"; color: #FBBF24; }
.legal-note--mail { border-left-color: var(--brand-2); }
.legal-note--mail::before { content: "✉"; color: var(--brand-2); }

/* Pares chave-valor (identificação, DPO) */
.legal-kv {
  margin: 1.2em 0 1.6em; border: 1px solid var(--stroke); border-radius: 16px;
  overflow: hidden; background: var(--bg-card);
}
.legal-kv > div {
  display: grid; grid-template-columns: 240px 1fr; gap: 16px;
  padding: 14px 20px; border-top: 1px solid var(--stroke);
}
.legal-kv > div:first-child { border-top: 0; }
.legal-kv dt { color: var(--ink-mute); font-size: 14px; font-family: var(--font-head); font-weight: 600; }
.legal-kv dd { margin: 0; color: var(--ink); font-size: 15px; }

/* Cards de finalidades */
.legal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.4em 0 1.8em; }
.legal-card {
  background: var(--bg-card); border: 1px solid var(--stroke); border-radius: 16px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 8px;
}
.legal-card strong { color: var(--ink); font-family: var(--font-head); font-size: 15.5px; }
.legal-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.legal-base {
  align-self: flex-start; margin-top: auto; padding: 4px 11px;
  background: var(--grad-soft); border: 1px solid var(--stroke);
  border-radius: 999px; font-size: 12.5px; color: var(--brand-2); font-weight: 500;
}

/* Tabela de retenção */
.legal-table {
  margin: 1.4em 0 1.8em; border: 1px solid var(--stroke); border-radius: 16px;
  overflow: hidden; background: var(--bg-card);
}
.legal-table-head, .legal-table-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 18px; padding: 14px 20px; }
.legal-table-head {
  background: rgba(255,255,255,.02); font-family: var(--font-head); font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-mute);
}
.legal-table-row { border-top: 1px solid var(--stroke); font-size: 14.5px; }
.legal-table-row span:first-child { color: var(--ink); font-weight: 500; }
.legal-table-row span:last-child { color: var(--ink-soft); }

/* Assinatura final */
.legal-sign {
  margin-top: 2.6em; padding-top: 1.6em; border-top: 1px solid var(--stroke);
  font-size: 14px; color: var(--ink-mute); line-height: 1.7;
}

@media (max-width: 720px) {
  .legal-cards { grid-template-columns: 1fr; }
  .legal-kv > div { grid-template-columns: 1fr; gap: 4px; }
  .legal-table-head { display: none; }
  .legal-table-row { grid-template-columns: 1fr; gap: 4px; }
  .legal-table-row span:first-child { font-family: var(--font-head); }
  .legal-table-row span:last-child::before { content: "Prazo: "; color: var(--ink-mute); }
}

/* =========================================================================
   BANNER DE CONSENTIMENTO DE COOKIES (LGPD + Consent Mode)
   ========================================================================= */
.cookie-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 9999;
  width: min(440px, calc(100vw - 40px));
  background: rgba(6, 11, 42, 0.92);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid var(--stroke-strong); border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -24px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
  animation: cookieIn .45s var(--ease) both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner [hidden] { display: none !important; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cookie-inner { padding: 22px 22px 18px; }
.cookie-text strong { display: block; font-family: var(--font-head); font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.cookie-text p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.cookie-text a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 2px; }

.cookie-prefs { margin: 16px 0 4px; display: grid; gap: 8px; }
.cookie-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 14px; background: var(--bg-card); border: 1px solid var(--stroke);
  border-radius: 12px; cursor: pointer;
}
.cookie-opt span { display: flex; flex-direction: column; gap: 1px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.4; }
.cookie-opt span strong { font-family: var(--font-head); font-size: 14px; color: var(--ink); font-weight: 600; }
.cookie-opt input { width: 18px; height: 18px; accent-color: var(--brand); flex: none; cursor: pointer; }
.cookie-opt--locked { opacity: .75; cursor: default; }
.cookie-opt--locked input { cursor: not-allowed; }

.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
.cookie-actions [data-cookie="accept"], .cookie-actions [data-cookie="save"] { flex-basis: 100%; }

@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; width: auto; }
  .cookie-inner { padding: 18px 18px 16px; }
}
