/* ============================================================
   PINGO — Landing Page
   Dark premium · Verde esmeralda neon · Awwwards style
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #070809;
  --panel: #0a0c0e;
  --panel-2: #0d1013;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);

  --green: #10f2a3;
  --green-soft: rgba(16, 242, 163, 0.14);
  --blue: #3b82f6;
  --blue-soft: rgba(59, 130, 246, 0.15);
  --purple: #8b5cf6;
  --purple-soft: rgba(139, 92, 246, 0.15);
  --orange: #f59e0b;
  --orange-soft: rgba(245, 158, 11, 0.14);
  --red: #f43f5e;
  --pink: #ec4899;

  --text: #f4f6f5;
  --muted: #8b9491;
  --muted-2: #5d6663;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-ui: 'Inter', sans-serif;

  --container: 1200px;
  --container-wide: 1400px;
  --radius: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 700; }

::selection { background: var(--green); color: #03130c; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #060707; }
::-webkit-scrollbar-thumb { background: #1c2220; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #29413a; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }
.container-wide { width: min(var(--container-wide), 100% - 48px); margin-inline: auto; }

.i { width: 18px; height: 18px; flex: none; }
.i-xs { width: 13px; height: 13px; }

.tx-green { color: var(--green); }
.tx-blue { color: #7fb1ff; }
.tx-purple { color: #b79bff; }
.tx-red { color: var(--red); }

.grad-text {
  background: linear-gradient(92deg, var(--green) 10%, var(--blue) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -60%;
  width: 220%; height: 220%;
  pointer-events: none; z-index: 9990;
  opacity: 0.055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Custom cursor ---------- */
.cursor { display: none; }
@media (pointer: fine) {
  html, body, a, button, [data-cursor] { cursor: none; }
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
  .cursor-dot {
    position: absolute; width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(16, 242, 163, 0.8);
  }
  .cursor-ring {
    position: absolute; width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
  }
  .cursor.is-hover .cursor-ring {
    width: 56px; height: 56px;
    border-color: rgba(16, 242, 163, 0.7);
  }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 9995; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  animation: loaderHide 0.6s 2.8s forwards;
}
.loader-stage { position: relative; width: 120px; height: 120px; display: grid; place-items: center; }
.loader-drop {
  width: 56px; position: relative; z-index: 2;
  filter: drop-shadow(0 0 18px rgba(16, 242, 163, 0.5));
  animation: loaderDrop 1.05s cubic-bezier(0.6, 0, 0.4, 1) both;
}
.loader-ripple {
  position: absolute; bottom: 8px; left: 50%;
  width: 90px; height: 26px; border-radius: 50%;
  border: 2px solid var(--green);
  transform: translateX(-50%) scale(0); opacity: 0;
  animation: loaderRipple 1.3s 0.95s ease-out 2;
}
.loader-ripple--2 { animation-delay: 1.35s; }
.loader-text {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.02em; display: flex; gap: 8px;
}
.loader-text span { opacity: 0; transform: translateY(14px); animation: loaderWord 0.7s var(--ease-out) forwards; }
.loader-text span:first-child { animation-delay: 1.15s; }
.loader-text span:last-child { animation-delay: 1.35s; color: var(--green); }
@keyframes loaderDrop {
  0% { transform: translateY(-130px) scale(0.85); opacity: 0; }
  55% { opacity: 1; }
  78% { transform: translateY(0) scale(1.06, 0.82); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes loaderRipple {
  0% { transform: translateX(-50%) scale(0.1); opacity: 0.9; }
  100% { transform: translateX(-50%) scale(1.9); opacity: 0; }
}
@keyframes loaderWord { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 15px 28px; border-radius: 14px; border: none;
  overflow: hidden; white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s, color 0.3s;
  will-change: transform;
}
.btn-sm { padding: 11px 20px; font-size: 13.5px; border-radius: 11px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-xl { padding: 20px 42px; font-size: 17px; border-radius: 16px; }
.btn-primary {
  background: linear-gradient(135deg, #14ffae, #0bd18d);
  color: #02160d;
  box-shadow: 0 10px 36px -10px rgba(16, 242, 163, 0.55);
}
.btn-primary .i { color: #02160d; }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:hover { box-shadow: 0 14px 48px -10px rgba(16, 242, 163, 0.75); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  color: #fff;
}
.btn-ghost:hover { border-color: rgba(16, 242, 163, 0.55); color: var(--green); }
.btn-ghost:hover .i { color: var(--green); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: padding 0.4s var(--ease-out), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 40px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 42px; width: auto;
  filter: drop-shadow(0 0 14px rgba(16, 242, 163, 0.25));
  transition: filter 0.3s;
}
.nav-logo:hover .logo-img { filter: drop-shadow(0 0 18px rgba(16, 242, 163, 0.45)); }
.logo-img--footer { height: 48px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  color: var(--muted); position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Sections shared ---------- */
section { position: relative; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--green); }
.kicker-red { color: var(--red); }
.kicker-red::before { background: var(--red); }
h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.025em;
}
h2 em { font-style: normal; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 18px; }

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.pulse-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(16, 242, 163, 0.5);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 242, 163, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(16, 242, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 242, 163, 0); }
}

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-ui); font-size: 9.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.chip-blue { background: var(--blue-soft); color: #7fb1ff; }
.chip-green { background: var(--green-soft); color: var(--green); }
.chip-orange { background: var(--orange-soft); color: #ffc25e; }
.chip-ghost { border: 1px solid var(--line-2); color: var(--muted); }

.ev-ok {
  font-family: var(--font-ui); font-size: 9px; font-weight: 700;
  color: var(--green); border: 1px solid rgba(16, 242, 163, 0.4);
  padding: 2px 8px; border-radius: 999px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none; }
.hero-glow--green {
  width: 560px; height: 560px; right: -120px; top: 5%;
  background: radial-gradient(circle, rgba(16, 242, 163, 0.13), transparent 65%);
}
.hero-glow--blue {
  width: 480px; height: 480px; left: -160px; bottom: 0;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.11), transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 56px; align-items: center;
}
/* min-width:0 impede a coluna de crescer até o conteúdo sem quebra (pill de tags),
   o que estourava a largura e cortava o texto no mobile. */
.hero-copy { min-width: 0; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.02);
}
.hero-tag em { font-style: normal; color: var(--muted-2); }

.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.9rem, 6.2vw, 5.1rem);
  line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.ht-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.ht-inner { display: block; }
.hero-title .flicker {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 2px rgba(244, 246, 245, 0.9);
  animation: flicker 7s linear infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.35; } 4% { opacity: 1; }
  7% { opacity: 0.2; } 8% { opacity: 1; }
  9.5% { opacity: 0.55; } 10.5% { opacity: 1; }
  48% { opacity: 1; } 49% { opacity: 0.45; } 50% { opacity: 1; }
  77% { opacity: 1; } 77.6% { opacity: 0.5; } 78.4% { opacity: 1; }
}

.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 480px; margin-bottom: 38px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-proof {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 13px; color: var(--muted);
}
.hero-proof b { font-weight: 700; }
.hero-proof .sep { width: 1px; height: 14px; background: var(--line-2); }

/* --- Mockup 3D --- */
.hero-visual { position: relative; perspective: 1600px; }
.mockup-scene { position: relative; transform-style: preserve-3d; }
.mockup {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.85),
    0 0 80px -30px rgba(16, 242, 163, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotateX(calc(5deg + var(--rx, 0deg))) rotateY(calc(-9deg + var(--ry, 0deg)));
  transition: box-shadow 0.4s;
  font-family: var(--font-ui); font-size: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mockup::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.05) 48%, transparent 60%);
}
.mk-top {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 14px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.mk-dots { display: flex; gap: 5px; }
.mk-dots i { width: 8px; height: 8px; border-radius: 50%; background: #2a2f2e; }
.mk-dots i:first-child { background: #3d3434; }
.mk-url { color: var(--muted-2); font-size: 9.5px; flex: 1; text-align: center; }
.mk-conn { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 9px; font-weight: 600; }
.mk-body { display: flex; min-height: 380px; }
.mk-side {
  width: 108px; flex: none;
  border-right: 1px solid var(--line);
  padding: 12px 10px; display: flex; flex-direction: column; gap: 3px;
  background: rgba(0, 0, 0, 0.25);
}
.mk-brand {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  margin-bottom: 14px; padding-left: 4px;
}
.mk-brand svg { width: 14px; }
.mk-link {
  font-size: 9px; color: var(--muted); padding: 6px 8px; border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mk-link.active { background: var(--green-soft); color: var(--green); font-weight: 600; }
.mk-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mk-head { display: flex; align-items: baseline; justify-content: space-between; }
.mk-head b { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.mk-head span { color: var(--muted-2); font-size: 9px; }
.mk-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mk-stat {
  border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px;
  background: rgba(255, 255, 255, 0.018);
}
.mk-stat b { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.mk-stat span { color: var(--muted-2); font-size: 8px; }
.mk-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 8px; flex: 1; }
.mk-panel {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px;
  background: rgba(255, 255, 255, 0.018);
  display: flex; flex-direction: column;
}
.mk-ptitle { font-size: 9px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.mk-bars { display: flex; align-items: flex-end; gap: 12px; flex: 1; padding: 0 6px; min-height: 70px; }
.mk-bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 4px; height: 100%; }
.mk-bar i {
  width: 100%; max-width: 26px; height: var(--h); border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--c), color-mix(in srgb, var(--c) 55%, transparent));
  box-shadow: 0 0 14px -2px color-mix(in srgb, var(--c) 45%, transparent);
}
.mk-bar span { font-size: 7.5px; color: var(--muted-2); }
.mk-jrow {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  font-size: 8.5px; padding: 5px 8px; margin-bottom: 4px;
  border-radius: 6px; overflow: hidden;
}
.mk-jrow i {
  position: absolute; inset: 0; width: var(--w);
  background: color-mix(in srgb, var(--c) 14%, transparent);
  border-left: 2.5px solid var(--c); border-radius: 6px;
}
.mk-jrow span, .mk-jrow b { position: relative; }
.mk-jrow b { font-weight: 700; }
.mk-recent { display: flex; flex-direction: column; gap: 5px; }
.mk-row {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 9px; padding: 6px 10px;
  font-size: 9px; background: rgba(255, 255, 255, 0.015);
}
.mk-row b { font-weight: 600; flex: 1; }
.mk-av {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 22%, transparent);
  color: var(--c); font-weight: 700; font-size: 8px;
}
.mk-meta { color: var(--muted-2); font-size: 8px; display: inline-flex; align-items: center; gap: 3px; }
.mk-num { font-variant-numeric: tabular-nums; }

/* floating badges */
.float-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(10, 12, 14, 0.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.8);
  font-family: var(--font-ui);
  transform: translate3d(calc(var(--bx, 0px) + var(--px, 1) * var(--mx, 0) * 1px), calc(var(--by, 0px) + var(--py, 1) * var(--my, 0) * 1px), 0);
  animation: badgeFloat 5.5s ease-in-out infinite alternate;
}
.float-badge b { display: block; font-size: 12px; font-weight: 600; }
.float-badge small { color: var(--muted); font-size: 10px; }
.badge-meta { top: -26px; left: -34px; animation-delay: 0.6s; }
.badge-wa { bottom: 90px; left: -58px; }
.badge-event { bottom: -24px; right: 22px; border-color: rgba(16, 242, 163, 0.35); animation-delay: 1.4s; }
@keyframes badgeFloat { from { margin-top: 0; } to { margin-top: -10px; } }

/* mascot */
.hero-mascot {
  position: absolute; right: -14px; top: -78px; width: 148px; z-index: 4;
  filter: drop-shadow(0 18px 40px rgba(16, 242, 163, 0.3));
}
.mascot-svg { width: 100%; height: auto; }
.hero-mascot, .cta-mascot { animation: mascotFloat 4.5s ease-in-out infinite alternate; }
@keyframes mascotFloat { from { transform: translateY(0) rotate(-2deg); } to { transform: translateY(-16px) rotate(2.5deg); } }
.m-eyes { transform-box: fill-box; transform-origin: center; animation: blink 4.6s infinite; }
@keyframes blink {
  0%, 91%, 100% { transform: scaleY(1); }
  94% { transform: scaleY(0.06); }
  97% { transform: scaleY(1); }
}
.m-ripple { transform-box: fill-box; transform-origin: center; animation: ripplePulse 4.5s ease-in-out infinite alternate; }
@keyframes ripplePulse { from { transform: scale(1); } to { transform: scale(0.92); } }
.m-sparks rect { transform-box: fill-box; transform-origin: center; animation: sparkTwinkle 2.8s ease-in-out infinite; }
.m-sparks rect:nth-child(2) { animation-delay: 0.5s; }
.m-sparks rect:nth-child(3) { animation-delay: 1s; }
@keyframes sparkTwinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted-2); z-index: 2;
}
.hs-line { width: 1px; height: 44px; background: var(--line-2); position: relative; overflow: hidden; }
.hs-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--green);
  animation: scrollHint 1.8s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap; will-change: transform;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 4rem); letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 246, 245, 0.38);
}
.marquee i { font-style: normal; color: var(--green); font-size: 1.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema { padding: 150px 0; overflow: hidden; }
.problema::before {
  content: ''; position: absolute; right: -200px; top: 20%;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.07), transparent 65%);
  filter: blur(80px); pointer-events: none;
}
.problema-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 80px; align-items: center;
}
.problema-copy h2 { margin-bottom: 26px; }
.problema-copy .lead { font-size: 19px; color: #cdd4d1; margin-bottom: 16px; }
.problema-copy p:not(.lead) { color: var(--muted); max-width: 460px; }
.problema-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.problema-pills span {
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 500;
  color: #ff9aab; border: 1px solid rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.06);
  padding: 8px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 7px;
}
.problema-pills span::before { content: '✕'; font-size: 10px; opacity: 0.8; }

.flow-broken {
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 30px 34px; position: relative;
}
.fb-node {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 14.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--panel-2);
  position: relative; z-index: 1;
}
.fb-node small { font-size: 10.5px; color: var(--muted-2); font-weight: 400; margin-left: 2px; }
.fb-node--lost { transition: opacity 0.6s, filter 0.6s; }
.is-broken .fb-node--lost { opacity: 0.55; filter: grayscale(1); border-style: dashed; }
.fb-seg { width: 2px; height: 40px; background: linear-gradient(180deg, var(--line-2), rgba(255, 255, 255, 0.18)); }
.fb-seg--broken { position: relative; height: 64px; background: none; }
.fb-seg--broken::before, .fb-seg--broken::after {
  content: ''; position: absolute; left: 0; width: 2px; height: 22px;
  background: var(--line-2);
  transition: background 0.5s, transform 0.5s, box-shadow 0.5s;
}
.fb-seg--broken::before { top: 0; }
.fb-seg--broken::after { bottom: 0; }
.is-broken .fb-seg--broken::before {
  background: var(--red); transform: translateX(-5px) rotate(-14deg);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.7);
}
.is-broken .fb-seg--broken::after {
  background: var(--red); transform: translateX(5px) rotate(-14deg);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.7);
}
.fb-q {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: var(--red); letter-spacing: 0.1em;
}
.is-broken .fb-q { animation: qGlitch 2.4s steps(2) infinite; }
@keyframes qGlitch {
  0%, 100% { transform: translateY(-50%); opacity: 1; }
  12% { transform: translateY(-54%) translateX(2px); opacity: 0.6; }
  24% { transform: translateY(-47%) translateX(-2px); opacity: 1; }
  60% { opacity: 1; } 64% { opacity: 0.45; } 68% { opacity: 1; }
}
.fb-alert {
  margin-top: 26px; font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  color: #ff8fa3; border: 1px dashed rgba(244, 63, 94, 0.4);
  padding: 9px 18px; border-radius: 10px;
  opacity: 0; transition: opacity 0.6s 0.2s;
}
.is-broken .fb-alert { opacity: 1; }

/* ============================================================
   SOLUÇÃO
   ============================================================ */
.solucao { padding: 150px 0; background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.solucao::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(16, 242, 163, 0.05), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.timeline { position: relative; margin-top: 90px; }
.tl-track {
  position: absolute; top: 28px; left: 10%; width: 80%; height: 2px;
  background: var(--line); border-radius: 2px; overflow: hidden;
}
.tl-fill {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--purple), var(--orange), var(--green));
  transform: scaleX(0); transform-origin: left;
  box-shadow: 0 0 16px rgba(16, 242, 163, 0.6);
}
.tl-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.tl-step { text-align: center; display: flex; flex-direction: column; align-items: center; }
.tl-dot {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel); border: 1.5px solid var(--line-2);
  color: var(--muted-2);
  transition: border-color 0.5s, color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-out), background 0.5s;
  position: relative; z-index: 1;
}
.tl-dot .i { width: 22px; height: 22px; }
.tl-step.lit .tl-dot {
  border-color: var(--c); color: var(--c);
  background: color-mix(in srgb, var(--c) 10%, var(--panel));
  box-shadow: 0 0 28px -4px color-mix(in srgb, var(--c) 65%, transparent);
  transform: scale(1.1);
}
.tl-step h4 {
  font-family: var(--font-display); font-size: 15.5px; font-weight: 600;
  margin: 18px 0 8px; color: var(--muted);
  transition: color 0.5s;
}
.tl-step.lit h4 { color: #fff; }
.tl-step p { font-size: 12.5px; color: var(--muted-2); max-width: 170px; transition: color 0.5s; }
.tl-step.lit p { color: var(--muted); }

/* ============================================================
   FUNCIONALIDADES — bento
   ============================================================ */
.features { padding: 150px 0; }
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(370px, auto); gap: 20px;
}
.span-2 { grid-column: span 2; }
.card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; position: relative;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px 200px at 50% 0%, color-mix(in srgb, var(--ac) 9%, transparent), transparent 70%);
  transition: opacity 0.5s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--ac) 38%, transparent);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 50px -20px color-mix(in srgb, var(--ac) 30%, transparent);
}
.card:hover::before { opacity: 1; }
.card-visual {
  flex: 1; margin: 16px 16px 0; border-radius: 14px;
  background: #07090b; border: 1px solid var(--line);
  overflow: hidden; position: relative; min-height: 190px;
}
.card-info { padding: 22px 26px 26px; position: relative; }
.card-ic {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: color-mix(in srgb, var(--ac) 13%, transparent);
  color: var(--ac);
}
.card-info h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 7px; }
.card-info p { color: var(--muted); font-size: 14.5px; max-width: 420px; }

.mini { position: absolute; inset: 0; font-family: var(--font-ui); }

/* 1 — track table */
.mini-track { display: flex; flex-direction: column; padding-top: 4px; }
.mini-row {
  display: grid; grid-template-columns: 1.3fr 1fr 0.9fr;
  align-items: center; gap: 8px;
  padding: 9px 16px; border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.mini-row b { font-weight: 600; }
.mini-row.head { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); border-bottom-color: var(--line-2); }
.mini-row.dim { opacity: 0.55; }
.mini-scan {
  position: absolute; left: 0; right: 0; height: 34px; top: 0;
  background: linear-gradient(180deg, transparent, rgba(16, 242, 163, 0.07), transparent);
  border-block: 1px solid rgba(16, 242, 163, 0.12);
  animation: miniScan 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes miniScan {
  0%, 12% { transform: translateY(34px); }
  44%, 56% { transform: translateY(106px); }
  88%, 100% { transform: translateY(34px); }
}

/* 2 — links */
.mini-links { padding: 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.link-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: 10px 13px; background: rgba(255, 255, 255, 0.02);
  position: relative; overflow: hidden;
}
.link-row::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(16, 242, 163, 0.07) 50%, transparent 65%);
  transform: translateX(-110%);
  animation: linkShine 4.5s ease-in-out infinite;
}
.link-row:nth-of-type(3)::after { animation-delay: 2.2s; }
@keyframes linkShine { 0%, 60% { transform: translateX(-110%); } 90%, 100% { transform: translateX(110%); } }
.link-url { font-family: ui-monospace, 'Cascadia Code', Consolas, monospace; font-size: 11.5px; color: var(--muted); }
.link-url b { color: var(--green); font-weight: 600; }
.link-clicks { font-size: 10.5px; font-weight: 700; color: var(--green); white-space: nowrap; }
.utm-chips { display: flex; gap: 6px; flex-wrap: wrap; padding-left: 4px; }
.utm-chips span {
  font-family: ui-monospace, Consolas, monospace; font-size: 9px;
  color: #b79bff; background: var(--purple-soft);
  padding: 3px 8px; border-radius: 6px;
}

/* 3 — funnel */
.mini-funnel { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.f-bar {
  position: relative; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 13px; font-size: 11px; overflow: hidden;
}
.f-fill {
  position: absolute; inset: 0; width: var(--w);
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border-left: 3px solid var(--c);
  border-radius: 8px;
  box-shadow: 0 0 18px -6px color-mix(in srgb, var(--c) 50%, transparent);
}
.f-bar span, .f-bar b { position: relative; }
.f-bar b { font-weight: 700; font-size: 12px; }

/* 4 — events ticker */
.mini-events { overflow: hidden; }
.mini-events::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #07090b 0%, transparent 14%, transparent 80%, #07090b 100%);
}
.ev-list { display: flex; flex-direction: column; animation: evLoop 14s linear infinite; }
.mini-events:hover .ev-list { animation-play-state: paused; }
@keyframes evLoop { to { transform: translateY(-50%); } }
.ev-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.ev-row b { font-weight: 600; flex: 1; }
.ev-time { color: var(--muted-2); font-size: 10px; }
.ev-type {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  min-width: 78px;
}
.ev-lead { background: var(--blue-soft); color: #7fb1ff; }
.ev-sch { background: var(--purple-soft); color: #b79bff; }
.ev-co { background: rgba(236, 72, 153, 0.13); color: #ff8fc6; }
.ev-buy { background: var(--green-soft); color: var(--green); }

/* 5 — chat */
.mini-chat { padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 9px; }
.wa-msg {
  max-width: 78%; padding: 9px 13px; font-size: 11.5px; line-height: 1.45;
  border-radius: 13px;
}
.wa-msg.in { background: #11161a; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.wa-msg.out {
  background: rgba(16, 242, 163, 0.1); border: 1px solid rgba(16, 242, 163, 0.22);
  border-bottom-right-radius: 4px; align-self: flex-end;
}
.wa-typing {
  display: inline-flex; gap: 4px; align-self: flex-start;
  background: #11161a; border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 13px; border-bottom-left-radius: 4px;
}
.wa-typing i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--muted);
  animation: typing 1.2s infinite;
}
.wa-typing i:nth-child(2) { animation-delay: 0.18s; }
.wa-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }
.chat-stage {
  position: absolute; right: 14px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; color: #03130c;
  background: linear-gradient(135deg, #14ffae, #0bd18d);
  padding: 7px 13px; border-radius: 9px;
  box-shadow: 0 8px 22px -8px rgba(16, 242, 163, 0.6);
}

/* 6 — accounts */
.mini-accounts { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.acc-row {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-2); border-radius: 12px;
  padding: 11px 14px; background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, transform 0.3s;
}
.acc-row:hover { border-color: rgba(16, 242, 163, 0.35); transform: translateX(4px); }
.acc-row b { display: block; font-size: 12px; font-weight: 600; }
.acc-row small { color: var(--muted-2); font-size: 10px; display: inline-flex; align-items: center; gap: 5px; }
.acc-av {
  width: 32px; height: 32px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--c) 18%, transparent);
  color: var(--c); font-weight: 800; font-size: 11px;
}

/* 8 — relatórios (KPIs + gráfico, igual à página real) */
.mini-report { padding: 16px 16px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.rp-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rp-kpi {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 11px; background: rgba(255, 255, 255, 0.02);
  display: flex; flex-direction: column; gap: 3px; position: relative; overflow: hidden;
}
.rp-kpi::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--rc, #10F2A3); }
.rp-kpi span { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.rp-kpi b { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); line-height: 1; }
.rp-chart { display: flex; align-items: flex-end; gap: 6px; height: 44px; padding: 0 2px; }
.rp-chart i {
  flex: 1; height: var(--h); min-height: 6px; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #10F2A3, color-mix(in srgb, #10F2A3 22%, transparent));
  transform-origin: bottom; animation: rpRise 0.9s var(--ease-out) both;
}
@keyframes rpRise { from { transform: scaleY(0.02); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   JORNADA — animação principal (pinned)
   ============================================================ */
.journey { background: var(--bg-2); border-block: 1px solid var(--line); overflow: hidden; }
.journey-inner { padding: 130px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.journey .section-head { margin-bottom: 70px; }
.jr-stage {
  display: flex; align-items: stretch; gap: 0;
  width: min(1400px, 100% - 48px); margin-inline: auto;
}
.jr-panel {
  flex: 0 1 300px; min-width: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.jr-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--muted);
}
.jr-cap { font-family: var(--font-ui); font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }
.jr-cap b { color: var(--muted-2); font-family: ui-monospace, Consolas, monospace; margin-right: 6px; transition: color 0.4s, text-shadow 0.4s; }
.jr-panel.is-on .jr-cap b { color: var(--green); text-shadow: 0 0 12px rgba(16, 242, 163, 0.7); }

.jr-link { flex: 1 1 60px; min-width: 34px; position: relative; align-self: center; height: 2px; margin: 0 8px; background: var(--line); border-radius: 2px; }
.jr-link i {
  position: absolute; top: 50%; left: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 10px rgba(16, 242, 163, 0.9);
  transform: translate(-8px, -50%);
  animation: dotTravel 2.1s linear infinite;
}
.jr-link i:nth-child(2) { animation-delay: 0.7s; }
.jr-link i:nth-child(3) { animation-delay: 1.4s; }
@keyframes dotTravel {
  0% { left: -4%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 104%; opacity: 0; }
}

.jr-panel > div:nth-child(2) {
  border-radius: 16px; border: 1px solid var(--line-2);
  background: var(--panel); overflow: hidden;
  font-family: var(--font-ui);
}

/* instagram card */
.ig-card { display: flex; flex-direction: column; }
.ig-head { display: flex; align-items: center; gap: 9px; padding: 11px 13px; }
.ig-av {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: 10px; font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b);
  color: #fff;
}
.ig-head b { display: block; font-size: 11.5px; }
.ig-head small { color: var(--muted-2); font-size: 9.5px; }
.ig-media {
  aspect-ratio: 4 / 3.1; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 80% 10%, rgba(139, 92, 246, 0.25), transparent 50%),
    radial-gradient(120% 110% at 15% 90%, rgba(16, 242, 163, 0.2), transparent 55%),
    linear-gradient(150deg, #12181f, #0c1410);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  text-align: center; padding: 14px;
}
.ig-media b { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.ig-media small { color: var(--muted); font-size: 10.5px; }
.ig-shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.06) 50%, transparent 62%);
  animation: igShine 4s ease-in-out infinite;
}
@keyframes igShine { 0%, 55% { transform: translateX(-100%); } 90%, 100% { transform: translateX(100%); } }
.ig-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 11px 13px 13px; padding: 9px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 9px;
}

/* whatsapp card */
.wa-card { display: flex; flex-direction: column; background: #0b1410 !important; border-color: rgba(16, 242, 163, 0.16) !important; }
.wa-head { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.wa-av {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
  background: var(--green-soft); color: var(--green);
}
.wa-head b { display: block; font-size: 11.5px; }
.wa-head small { color: var(--green); font-size: 9.5px; }
.wa-msgs { display: flex; flex-direction: column; gap: 8px; padding: 13px; }
.wa-msgs .wa-msg { max-width: 88%; font-size: 11px; }

/* pingo card */
.pg-card { position: relative; padding: 8px 0; border-color: rgba(16, 242, 163, 0.22) !important; }
.pg-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 30px;
  background: linear-gradient(180deg, transparent, rgba(16, 242, 163, 0.08), transparent);
  animation: pgScan 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pgScan { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(130px); } }
.pg-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.pg-row:last-child { border-bottom: none; }
.pg-row span { color: var(--muted-2); }
.pg-row b { font-weight: 600; }

/* meta card */
.mt-card { padding: 13px; display: flex; flex-direction: column; gap: 9px; border-color: rgba(59, 130, 246, 0.25) !important; }
.mt-ev {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--c) 35%, transparent);
  background: color-mix(in srgb, var(--c) 8%, transparent);
  color: #fff; padding: 9px 13px; border-radius: 10px;
}
.mt-ev .i { color: var(--c); }
.mt-ev .ev-ok { margin-left: auto; }
.mt-total { font-size: 10.5px; color: var(--muted); text-align: center; padding-top: 2px; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits { padding: 160px 0; overflow: hidden; }
.benefits::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(16, 242, 163, 0.06), transparent 65%);
  filter: blur(70px); pointer-events: none;
}
.bn-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.bn-item { padding: 10px 48px; text-align: center; }
.bn-item + .bn-item { border-left: 1px solid var(--line); }
.bn-num {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.2rem, 6.5vw, 5rem); letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 20%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(16, 242, 163, 0.25));
  font-variant-numeric: tabular-nums;
}
.bn-item b { display: block; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; margin: 14px 0 8px; }
.bn-item p { color: var(--muted); font-size: 14px; max-width: 260px; margin-inline: auto; }

/* ============================================================
   PARA QUEM
   ============================================================ */
.audience { padding: 150px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aud-card {
  position: relative; padding: 38px 34px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.aud-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
  opacity: 0.55; transition: opacity 0.4s;
}
.aud-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--ac) 40%, transparent);
  box-shadow: 0 32px 64px -32px rgba(0, 0, 0, 0.9), 0 0 56px -22px color-mix(in srgb, var(--ac) 38%, transparent);
}
.aud-card:hover::before { opacity: 1; }
.aud-ic {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: color-mix(in srgb, var(--ac) 13%, transparent);
  color: var(--ac);
}
.aud-ic .i { width: 21px; height: 21px; }
.aud-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.aud-lead { color: #e7ebe9; font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.aud-card p:not(.aud-lead) { color: var(--muted); font-size: 13.5px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 190px 0 170px; text-align: center;
  overflow: hidden; border-top: 1px solid var(--line);
}
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-mascot { width: 168px; margin-bottom: 36px; filter: drop-shadow(0 22px 50px rgba(16, 242, 163, 0.35)); }
.cta-title {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 18px; max-width: 800px;
}
.cta-slogan {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--muted); margin-bottom: 44px;
}
.cta-slogan em {
  font-style: normal;
  background: linear-gradient(92deg, var(--green), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-micro { margin-top: 46px; font-family: var(--font-ui); font-size: 13px; color: var(--muted-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; padding: 56px 0 40px; flex-wrap: wrap;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-ui); font-size: 13.5px; color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0 30px; border-top: 1px solid var(--line);
  font-family: var(--font-ui); font-size: 12.5px; color: var(--muted-2);
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .hero-title { font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
  .badge-wa { left: -26px; }
  .badge-meta { left: -16px; }
}

@media (max-width: 1023px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 10px 22px; }
  .nav-links { display: none; }

  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 640px; margin-inline: auto; width: 100%; }
  .hero-mascot { right: -10px; top: -64px; width: 110px; }
  .hero-scroll { display: none; }

  .problema-grid { grid-template-columns: 1fr; gap: 56px; }

  .tl-track { display: none; }
  .tl-steps { grid-template-columns: 1fr; gap: 8px; }
  .tl-step {
    flex-direction: row; text-align: left; gap: 18px;
    padding: 14px; border: 1px solid var(--line); border-radius: 16px;
    background: var(--panel);
  }
  .tl-dot { flex: none; width: 48px; height: 48px; }
  .tl-step h4 { margin: 0 0 4px; }
  .tl-step > div + h4 { margin-top: 0; }
  .tl-step p { max-width: none; }
  .tl-text { flex: 1; }

  .bento { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: span 2; }

  .journey-inner { min-height: 0; }
  .jr-stage { flex-direction: column; align-items: center; gap: 0; }
  .jr-panel { width: min(380px, 100%); flex: none; }
  .jr-link {
    width: 2px; height: 56px; flex: none; margin: 10px 0; align-self: center;
  }
  .jr-link i { animation: dotTravelY 2.1s linear infinite; left: 50% !important; transform: translate(-50%, 0); }
  @keyframes dotTravelY {
    0% { top: -4%; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { top: 104%; opacity: 0; }
  }

  .bn-grid { grid-template-columns: 1fr; gap: 44px; }
  .bn-item + .bn-item { border-left: none; border-top: 1px solid var(--line); padding-top: 44px; }

  .aud-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container, .container-wide { width: calc(100% - 36px); }
  .logo-img { height: 34px; }
  .logo-img--footer { height: 40px; }
  .hero-title { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .hero-sub { font-size: 16px; }
  /* pill de tags quebra em 2 linhas em vez de estourar/cortar na direita */
  .hero-tag { flex-wrap: wrap; max-width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .float-badge { display: none; }
  .hero-mascot { width: 90px; top: -56px; }
  .mk-side { display: none; }
  .mk-stats { grid-template-columns: repeat(2, 1fr); }
  .marquee span { font-size: 2rem; }
  .bento { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .bn-item { padding: 10px 12px; }
  .bn-item + .bn-item { padding-top: 40px; }
  .footer-inner { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .loader { display: none; }
  html { scroll-behavior: auto; }
}
