/* ============================================================
   ALE DO GOOGLE — Landing Page de Alta Conversão
   Tema: espaço dark + teal/verde da marca
   ============================================================ */

:root {
  --bg: #030708;
  --bg-2: #071012;
  --panel: #0b1517;
  --panel-2: #0e1a1d;
  --line: rgba(43, 184, 168, 0.16);
  --teal: #2bb8a8;
  --mint: #52e5a3;
  --teal-soft: rgba(43, 184, 168, 0.12);
  --text: #eaf6f4;
  --text-dim: #93aeaa;
  --grad: linear-gradient(92deg, #2bb8a8 0%, #52e5a3 100%);
  --radius: 18px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--teal); color: #04211d; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(860px, 92%); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}

/* ============ ESTRELAS ============ */
#stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo acima das estrelas */
.nav, section, footer, .whats-float, .scroll-progress { position: relative; z-index: 2; }

/* ============ BARRA DE PROGRESSO ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
}
#scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(82, 229, 163, 0.8);
}

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  background: rgba(3, 7, 8, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 0;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; color: var(--teal); }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
}
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad);
  color: #04211d;
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(43, 184, 168, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(82, 229, 163, 0.5);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 26px;
  font-size: 0.95rem;
  background: rgba(43, 184, 168, 0.05);
}
.btn-ghost:hover { border-color: var(--teal); background: var(--teal-soft); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-xl { padding: 20px 42px; font-size: 1.1rem; }
.btn-nav { padding: 11px 22px; font-size: 0.85rem; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(43, 184, 168, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
/* horizonte de planeta na base do hero */
.hero-planet-rim {
  position: absolute;
  bottom: -46vw;
  left: 50%;
  transform: translateX(-50%);
  width: 130vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%, #0a1a1c 0%, #050c0d 45%, var(--bg) 70%);
  box-shadow: 0 -2px 60px rgba(82, 229, 163, 0.25), inset 0 3px 24px rgba(82, 229, 163, 0.2);
  pointer-events: none;
}
.hero-inner { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mint);
  border: 1px solid var(--line);
  background: rgba(43, 184, 168, 0.07);
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 34px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(82, 229, 163, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(82, 229, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82, 229, 163, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
}
.hero-title span { display: block; }

.hero-sub {
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--text-dim);
  font-size: 1.08rem;
}
.hero-sub strong { color: var(--text); }

.hero-chips { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(11, 21, 23, 0.6);
  transition: 0.3s;
}
.chip:hover { color: var(--mint); border-color: var(--teal); transform: translateY(-2px); }

.hero-ctas { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--text-dim); line-height: 1.45; }
.stat-divider { width: 1px; height: 52px; background: var(--line); }

.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.mouse {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 14px;
  position: relative;
  opacity: 0.6;
}
.wheel {
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--mint);
  border-radius: 3px;
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

/* ============ MARQUEE CLIENTES ============ */
.clients { padding: 40px 0 70px; overflow: hidden; }
.clients-title {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: rgba(234, 246, 244, 0.4);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--mint); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SEÇÕES ============ */
.section { padding: 110px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(11, 21, 23, 0.55) 18%, rgba(11, 21, 23, 0.55) 82%, transparent);
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head p { color: var(--text-dim); margin-top: 18px; }
.section-head strong { color: var(--text); }

/* ============ POR QUE GOOGLE ADS ============ */
.ads-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* SERP mock */
.serp-mock {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.serp-bar { display: flex; gap: 7px; margin-bottom: 14px; }
.serp-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.serp-dot.r { background: #ff5f57; } .serp-dot.y { background: #febc2e; } .serp-dot.g { background: #28c840; }
.serp-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 18px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
}
.serp-caret { width: 2px; height: 16px; background: var(--mint); animation: caret 0.9s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.serp-result {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
}
.serp-ad {
  background: rgba(43, 184, 168, 0.08);
  border: 1px solid rgba(82, 229, 163, 0.4);
  box-shadow: 0 0 24px rgba(82, 229, 163, 0.12) inset, 0 6px 22px rgba(82, 229, 163, 0.1);
  animation: adGlow 3s ease-in-out infinite;
}
@keyframes adGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(82, 229, 163, 0.1) inset, 0 6px 22px rgba(82, 229, 163, 0.08); }
  50% { box-shadow: 0 0 34px rgba(82, 229, 163, 0.2) inset, 0 8px 30px rgba(82, 229, 163, 0.2); }
}
.serp-tag { font-size: 0.7rem; font-weight: 700; color: var(--mint); letter-spacing: 0.04em; }
.serp-link { font-weight: 600; color: #8ab4f8; font-size: 0.98rem; }
.serp-desc { font-size: 0.82rem; color: var(--text-dim); }
.serp-result.dim { opacity: 0.42; }
.serp-badge-top {
  position: absolute;
  top: -11px; right: 14px;
  background: var(--grad);
  color: #04211d;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.ads-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(82, 229, 163, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(82, 229, 163, 0.45); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon { font-size: 1.6rem; margin-bottom: 12px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-dim); }

.platforms { text-align: center; margin-top: 70px; }
.platforms p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 20px; }
.platform-icons { display: flex; gap: 26px; justify-content: center; align-items: center; flex-wrap: wrap; }
.platform-icons span {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}
.platform-icons span:hover { transform: translateY(-5px) scale(1.06); border-color: var(--teal); }

/* ============ PLANETA 3D ============ */
.planet-section { padding: 110px 0 100px; position: relative; overflow: hidden; }
.planet-section .section-head { margin-bottom: 20px; }

.globe-wrap {
  position: relative;
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  margin: 0 auto;
}
#globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.globe-halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 184, 168, 0.13) 0%, rgba(43, 184, 168, 0.05) 48%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: haloBreath 7s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.planet-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  margin: 6px 0 18px;
}
.planet-stats > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.planet-stats strong {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.planet-stats span { font-size: 0.8rem; color: var(--text-dim); line-height: 1.4; }
.planet-caption {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ============ PROCESSO / TIMELINE ============ */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 70px; }
.timeline-line {
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
#timeline-progress {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(82, 229, 163, 0.8);
}
.step { position: relative; padding: 26px 0; }
.step-num {
  position: absolute;
  left: -70px;
  top: 22px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--mint);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px var(--bg);
  transition: 0.35s;
}
.step:hover .step-num {
  background: var(--grad);
  color: #04211d;
  border-color: transparent;
  box-shadow: 0 0 0 6px var(--bg), 0 0 30px rgba(82, 229, 163, 0.5);
}
.step-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  transition: transform 0.35s, border-color 0.35s;
}
.step:hover .step-body { transform: translateX(6px); border-color: rgba(82, 229, 163, 0.4); }
.step-body h3 { margin-bottom: 8px; }
.step-body p { color: var(--text-dim); font-size: 0.94rem; }

.cta-inline { text-align: center; margin-top: 70px; }
.cta-inline p {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

/* ============ SPLITS (landing pages / GMN / sobre) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-copy h2 { margin-bottom: 18px; }
.split-copy p { color: var(--text-dim); margin-bottom: 16px; }
.split-copy strong { color: var(--text); }

.check-list { list-style: none; margin: 8px 0 26px; }
.check-list li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 0.96rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid var(--line);
}

.lp-note {
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 26px !important;
}

/* Browser mockup */
.browser-mock {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.float-anim { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-0.4deg); } 50% { transform: translateY(-14px) rotate(0.4deg); } }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.browser-url {
  margin-left: 12px;
  font-size: 0.78rem;
  color: var(--text-dim);
  background: var(--bg-2);
  padding: 5px 16px;
  border-radius: 100px;
  flex: 1;
  text-align: center;
}
.browser-body { padding: 26px; position: relative; }
.bm-hero { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 18px 0 26px; }
.bm-badge { width: 110px; height: 14px; border-radius: 100px; background: var(--teal-soft); border: 1px solid var(--line); }
.bm-title { width: 78%; height: 22px; border-radius: 8px; background: linear-gradient(90deg, #1a2c2f, #223a3d); animation: shimmer 2.4s linear infinite; background-size: 200% 100%; }
.bm-title.short { width: 52%; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.bm-btn { width: 190px; height: 42px; border-radius: 100px; background: var(--grad); margin-top: 8px; box-shadow: 0 8px 26px rgba(43, 184, 168, 0.4); }
.bm-cards { display: flex; gap: 12px; }
.bm-cards span { flex: 1; height: 74px; border-radius: 12px; background: var(--panel-2); border: 1px solid var(--line); }
.bm-conv {
  position: absolute;
  right: 14px; bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 16, 18, 0.95);
  border: 1px solid rgba(82, 229, 163, 0.5);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  animation: convPop 5s ease-in-out infinite;
}
@keyframes convPop {
  0%, 12% { transform: translateY(20px); opacity: 0; }
  22%, 78% { transform: translateY(0); opacity: 1; }
  88%, 100% { transform: translateY(20px); opacity: 0; }
}
.bm-conv-icon {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #04211d;
  font-weight: 800;
  border-radius: 50%;
}
.bm-conv strong { display: block; font-size: 0.82rem; }
.bm-conv small { color: var(--text-dim); font-size: 0.72rem; }

/* ============ GOOGLE MEU NEGÓCIO ============ */
.split-reverse .gmn-visual { order: 0; }
.gmn-map {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.gmn-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 184, 168, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 184, 168, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridMove 12s linear infinite;
}
@keyframes gridMove { to { background-position: 44px 44px; } }
.gmn-pin { position: absolute; animation: pinBounce 2.6s ease-in-out infinite; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5)); }
.gmn-pin.p1 { top: 34%; left: 46%; }
.gmn-pin.p2 { top: 22%; left: 68%; animation-delay: 0.5s; }
.gmn-pin.p3 { top: 58%; left: 24%; animation-delay: 1s; }
@keyframes pinBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.gmn-radar {
  position: absolute;
  top: 38%; left: 49%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(82, 229, 163, 0.6);
  animation: radar 2.4s ease-out infinite;
}
@keyframes radar {
  0% { box-shadow: 0 0 0 0 rgba(82, 229, 163, 0.5); }
  100% { box-shadow: 0 0 0 90px rgba(82, 229, 163, 0); }
}
.gmn-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(7, 16, 18, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}
.gmn-card strong { font-family: var(--font-head); font-size: 0.95rem; }
.gmn-stars { color: #fbbc05; font-size: 0.85rem; }
.gmn-stars small { color: var(--text-dim); }
.gmn-card > small { color: var(--mint); font-size: 0.76rem; }

/* ============ NICHOS ============ */
.niche-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 820px; margin: 0 auto; }
.niche {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text-dim);
  transition: 0.3s;
  cursor: default;
}
.niche:hover {
  color: #04211d;
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 30px rgba(43, 184, 168, 0.35);
}

/* ============ SOBRE ============ */
.about-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 100%;
  justify-self: center;
}
.about-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  background: linear-gradient(160deg, #0e1f22, #071012);
  display: grid;
  place-items: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-fallback {
  display: none;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-photo.no-photo .about-photo-fallback { display: block; }
.about-id { display: flex; flex-direction: column; gap: 2px; padding: 18px 6px 4px; position: relative; }
.about-id strong { font-family: var(--font-head); font-size: 1.2rem; }
.about-id .grad-text { font-size: 0.88rem; font-weight: 600; }
.about-linkedin {
  position: absolute;
  right: 6px; top: 20px;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
  color: var(--mint);
  transition: 0.3s;
}
.about-linkedin:hover { background: var(--grad); color: #04211d; transform: translateY(-3px); }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(82, 229, 163, 0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--mint);
  font-weight: 600;
  transition: transform 0.35s, background 0.3s, color 0.3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--grad); color: #04211d; }
.faq-item p { padding: 0 26px 24px; color: var(--text-dim); font-size: 0.95rem; }

/* ============ CTA FINAL ============ */
.final-cta {
  text-align: center;
  padding: 150px 0 140px;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  bottom: -55vw;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(43, 184, 168, 0.2) 0%, rgba(7, 16, 18, 0.9) 40%, var(--bg) 70%);
  box-shadow: 0 -4px 80px rgba(82, 229, 163, 0.3), inset 0 4px 40px rgba(82, 229, 163, 0.25);
  pointer-events: none;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.6rem); position: relative; }
.final-cta p { color: var(--text-dim); margin: 20px 0 36px; font-size: 1.1rem; position: relative; }
.final-cta strong { color: var(--mint); }
.final-note { display: block; margin-top: 20px; font-size: 0.82rem; color: var(--text-dim); position: relative; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 50px 0 40px; background: rgba(3, 7, 8, 0.85); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer p { color: var(--text-dim); font-size: 0.9rem; }
.footer small { color: rgba(147, 174, 170, 0.55); font-size: 0.78rem; }

/* ============ WHATSAPP FLUTUANTE ============ */
.whats-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45);
  animation: whatsPulse 2.4s infinite;
  transition: transform 0.25s;
}
.whats-float:hover { transform: scale(1.1) rotate(6deg); }
@keyframes whatsPulse {
  0% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1), transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.15s; }
.d3 { transition-delay: 0.25s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }
.d7 { transition-delay: 0.75s; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1020px) {
  .ads-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-reverse .gmn-visual { order: 2; }
  .about-card { justify-self: center; }
}

/* ---------- Tablets e celulares ---------- */
@media (max-width: 860px) {
  body { font-size: 16px; }

  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 12px 0; }
  .logo-mark { width: 28px; height: 28px; }
  .logo-text { font-size: 0.92rem; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 58px 0 auto 0;
    flex-direction: column;
    background: rgba(3, 7, 8, 0.97);
    padding: 24px 6%;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .nav-links.open a { font-size: 1.05rem; padding: 4px 0; }

  .section { padding: 68px 0; }
  .section-head { margin-bottom: 42px; }
  h2 { font-size: clamp(1.6rem, 6.4vw, 2.2rem); }

  /* Hero */
  .hero { padding: 116px 0 90px; min-height: auto; }
  .hero-badge { font-size: 0.72rem; padding: 8px 16px; margin-bottom: 26px; }
  .hero-title { font-size: clamp(2rem, 9.4vw, 2.9rem); }
  .hero-sub { font-size: 0.98rem; margin-top: 20px; }
  .hero-chips { gap: 8px; margin-top: 22px; }
  .chip { font-size: 0.74rem; padding: 7px 13px; }
  .hero-ctas { margin-top: 30px; }
  .hero-stats { margin-top: 46px; gap: 14px 28px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.74rem; }
  .hero-scroll-hint { display: none; }

  /* Marquee */
  .clients { padding: 26px 0 54px; }
  .marquee-track { gap: 38px; }
  .marquee-track span { font-size: 0.95rem; }

  /* Google Ads */
  .serp-mock { padding: 14px; }
  .serp-search { font-size: 0.82rem; padding: 10px 14px; }
  .serp-link { font-size: 0.9rem; }
  .serp-desc { font-size: 0.78rem; }
  .ads-benefits { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 22px 20px; }
  .platforms { margin-top: 52px; }
  .platform-icons span { width: 52px; height: 52px; border-radius: 13px; }

  /* Planeta */
  .planet-section { padding: 68px 0 60px; }
  .planet-stats { gap: 22px; }
  .planet-stats strong { font-size: 1.7rem; }
  .planet-stats span { font-size: 0.72rem; }
  .planet-caption { font-size: 0.88rem; }

  /* Processo */
  .timeline { padding-left: 0; }
  .timeline-line { display: none; }
  .step { padding: 14px 0; }
  .step-num { position: static; margin-bottom: 12px; width: 46px; height: 46px; font-size: 0.85rem; }
  .step-body { padding: 20px 22px; }
  .step-body p { font-size: 0.9rem; }
  .cta-inline { margin-top: 52px; }
  .cta-inline p { font-size: 1.05rem; }

  /* Splits */
  .split { gap: 36px; }
  .check-list li { font-size: 0.9rem; }
  .lp-note { font-size: 0.86rem; }
  .gmn-map { height: 300px; }
  .gmn-card { padding: 11px 14px; }

  /* Nichos */
  .niche { font-size: 0.82rem; padding: 10px 18px; }
  .niche-grid { gap: 10px; }

  /* FAQ */
  .faq-item summary { padding: 17px 18px; font-size: 0.92rem; }
  .faq-item p { padding: 0 18px 18px; font-size: 0.88rem; }
  .faq-icon { width: 26px; height: 26px; }

  /* CTA final */
  .final-cta { padding: 96px 0 90px; }
  .final-cta p { font-size: 0.98rem; margin: 16px 0 28px; }
  .final-note { font-size: 0.74rem; }

  /* WhatsApp */
  .whats-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* ---------- Celulares pequenos ---------- */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .btn-lg { padding: 15px 24px; font-size: 0.92rem; }
  .btn-xl { padding: 17px 28px; font-size: 0.98rem; width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .hero-stats .stat:last-child { grid-column: 1 / -1; }
  .browser-body { padding: 18px; }
  .bm-conv { position: static; margin-top: 14px; }
  .about-card { padding: 16px; }
  .about-photo { aspect-ratio: 4 / 4.3; }
  .planet-stats { flex-wrap: wrap; }
  .footer p { font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}
