/* ============================================================
   ATHERA TECNOLOGIA — Engenharia de Crescimento Digital
   ============================================================ */

:root {
  --neon: #8BEA3A;
  --neon-soft: #b6f56e;
  --neon-deep: #5fa820;
  --neon-glow: rgba(139, 234, 58, 0.45);
  --neon-glow-soft: rgba(139, 234, 58, 0.15);
  --bg: #081405;
  --bg-2: #0c1c08;
  --bg-3: #112811;
  --line: rgba(139, 234, 58, 0.14);
  --line-strong: rgba(139, 234, 58, 0.32);
  --white: #FFFFFF;
  --gray-1: #cfd6cb;
  --gray-2: #8b9486;
  --gray-3: #5a6357;
  --red: #ff5f4c;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max: 1320px;
  --pad: clamp(20px, 4vw, 48px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 38px;
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  font-weight: 400;
}
body.topbar-hidden { padding-top: 0; }
@media (max-width: 700px) {
  body { padding-top: 44px; }
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(139, 234, 58, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(139, 234, 58, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--neon); color: var(--bg); }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--neon);
  flex-wrap: wrap;
  justify-content: center;
}
.loader-bracket { font-size: 28px; opacity: 0.7; }
.loader-text { display: flex; align-items: center; gap: 8px; }
.loader-dots { display: inline-flex; gap: 4px; }
.loader-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--neon);
  animation: dotpulse 1.2s infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotpulse {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}
.loader-progress {
  width: 100%;
  flex: 1 1 100%;
  max-width: 320px;
  height: 1px;
  background: rgba(139, 234, 58, 0.15);
  margin-top: 8px;
  overflow: hidden;
}
.loader-progress-bar {
  height: 100%;
  width: 0;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: loadbar 1.4s ease-out forwards;
}
@keyframes loadbar { to { width: 100%; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(139, 234, 58, 0.08);
  z-index: 200;
}
.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  transition: width 0.05s linear;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 234, 58, 0.13), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
  filter: blur(2px);
}
@media (max-width: 900px) { .cursor-glow { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(8, 20, 5, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 3px;
  /* Slight glow on hover for premium feel */
  transition: filter 0.4s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(139, 234, 58, 0.45));
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--gray-1);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--neon);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--neon); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 800px) { .nav-links { display: none; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.nav-cta:hover { color: var(--bg); }
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 1.6s infinite;
}
.nav-cta:hover .nav-cta-dot { background: var(--bg); box-shadow: none; }
@keyframes blink { 50% { opacity: 0.3; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.grid-bg {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
}
.hero-orb {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 234, 58, 0.18) 0%, rgba(139, 234, 58, 0.06) 30%, transparent 70%);
  filter: blur(60px);
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-48%, -52%) scale(1.08); }
}

.hero-meta {
  position: absolute;
  top: 92px;
  left: var(--pad); right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gray-2);
  text-transform: uppercase;
}
.hero-meta-l { display: flex; align-items: center; gap: 8px; }
.hero-meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}
@media (max-width: 700px) { .hero-meta-r { display: none; } }

.hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(139, 234, 58, 0.04);
}
.hero-tag-line {
  width: 24px; height: 1px;
  background: var(--neon);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0;
}
.hero-line.line-3 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--gray-1);
}
.hero-accent {
  position: relative;
  color: var(--neon);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 28px var(--neon-glow);
}
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 4px;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.4s 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
.hero-cursor {
  display: inline-block;
  color: var(--neon);
  font-weight: 300;
  animation: cursorBlink 1.1s infinite;
  margin-left: 4px;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--gray-1);
  margin: 0 0 48px;
  font-weight: 300;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover { transform: translateY(-2px); }
.btn-label { display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 2; }

.btn-primary {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
  box-shadow: 0 0 0 0 var(--neon-glow);
  transition: box-shadow 0.4s, transform 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 36px var(--neon-glow); }
.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5), transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover .btn-glow { transform: translateX(100%); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--neon);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--neon);
  margin-left: -4px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-sep {
  width: 1px;
  background: var(--line);
}
.stat .stat-num,
.stat .stat-suffix { display: inline; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gray-2);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--neon), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTION HEADERS / TAGS
   ============================================================ */
.section-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 80px;
  position: relative;
  z-index: 1;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
}
.tag-num {
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(139, 234, 58, 0.04);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
  max-width: 1100px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
}
.text-red { color: var(--red); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.text-accent { color: var(--neon); font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ============================================================
   PROBLEMA
   ============================================================ */
.problema {
  position: relative;
  z-index: 1;
}
.problema-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.problema-card {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s;
  background: rgba(8, 20, 5, 0.5);
}
.problema-card:hover {
  background: rgba(139, 234, 58, 0.04);
}
.problema-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(139, 234, 58, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
}
.problema-card:hover::before { opacity: 1; }
.problema-card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-3);
}
.problema-card-icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--neon);
  border: 1px solid var(--line-strong);
  background: rgba(139, 234, 58, 0.04);
  transition: all 0.3s;
}
.problema-card-icon svg { width: 24px; height: 24px; }
.problema-card:hover .problema-card-icon {
  background: var(--neon);
  color: var(--bg);
  box-shadow: 0 0 24px var(--neon-glow);
}
.problema-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.problema-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-1);
  position: relative;
  z-index: 1;
}
.problema-card strong { color: var(--white); font-weight: 600; }

/* ============================================================
   SOLUÇÃO
   ============================================================ */
.solucao {
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
  z-index: 1;
  border-top: 1px solid var(--line);
}
.solucao-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: rgba(139, 234, 58, 0.04);
  white-space: nowrap;
  bottom: -10%; left: -10%;
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}
.solucao-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.solucao-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 80px;
}
.solucao-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  padding: 40px 28px;
  background: var(--bg);
  transition: all 0.4s;
  position: relative;
}
.pillar:hover {
  background: var(--bg-2);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  color: var(--neon);
  display: grid;
  place-items: center;
}
.pillar-icon svg { width: 32px; height: 32px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--white);
}
.pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-1);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  position: relative;
  z-index: 1;
}
.servico-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .servico-block { grid-template-columns: 1fr; gap: 48px; }
}
.servico-symbol {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 42px;
  color: var(--neon);
  margin-bottom: 16px;
  text-shadow: 0 0 18px var(--neon-glow);
}
.servico-block-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  line-height: 1;
}
.servico-block-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: 0 0 32px;
  font-weight: 300;
  max-width: 520px;
}
.servico-block-desc strong {
  color: var(--neon);
  font-weight: 600;
}
.servico-block-desc-center { margin-left: auto; margin-right: auto; text-align: center; }

.servico-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.servico-feat li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-1);
  font-family: var(--font-mono);
}
.servico-feat li span {
  width: 6px; height: 6px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
  flex-shrink: 0;
}

/* Browser mockup */
.browser {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px var(--line-strong);
}
.browser:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 30px 80px -20px rgba(139, 234, 58, 0.3), 0 0 0 1px var(--neon);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--line);
}
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-3);
}
.browser-dot:nth-child(2) { background: var(--neon-deep); }
.browser-dot:nth-child(3) { background: var(--neon); }
.browser-url {
  margin-left: 14px;
  flex: 1;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-1);
  text-align: center;
}
.browser-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.browser-line {
  height: 14px;
  background: linear-gradient(90deg, var(--neon-soft), var(--neon-deep));
  border-radius: 2px;
  opacity: 0.6;
}
.browser-line.w-60 { width: 60%; }
.browser-line.w-90 { width: 90%; opacity: 0.3; }
.browser-line.w-40 { width: 40%; opacity: 0.3; }
.browser-cta {
  align-self: flex-start;
  margin-top: 10px;
  padding: 10px 20px;
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 0 24px var(--neon-glow);
  animation: ctapulse 2s infinite;
}
@keyframes ctapulse {
  50% { box-shadow: 0 0 36px var(--neon-glow); }
}
.browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.browser-tile {
  height: 48px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* Tráfego header */
.trafego-header {
  max-width: 720px;
  margin: 80px auto 48px;
  padding: 0 var(--pad);
  text-align: center;
}
.trafego-header .servico-block-title { margin-bottom: 16px; }

/* Planos grid */
.planos-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.plano-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}
.plano-card:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -10px rgba(139, 234, 58, 0.2);
}
.plano-destaque {
  border-color: var(--neon);
  background: linear-gradient(180deg, rgba(139, 234, 58, 0.08), rgba(139, 234, 58, 0.02));
  box-shadow: 0 0 0 1px var(--neon), 0 20px 60px -10px rgba(139, 234, 58, 0.25);
  transform: translateY(-12px);
}
.plano-destaque:hover { transform: translateY(-16px); }
.plano-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 0 18px var(--neon-glow);
}
.plano-header { margin-bottom: 20px; }
.plano-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 10px;
}
.plano-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}
.plano-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.plano-price-currency {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-2);
}
.plano-price-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.plano-destaque .plano-price-value { color: var(--neon); }
.plano-price-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-2);
}
.plano-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plano-feat li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.4;
}
.plano-feat li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0;
  color: var(--neon);
  font-family: var(--font-mono);
  font-weight: 700;
}
.plano-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.plano-cta:hover {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
  box-shadow: 0 0 24px var(--neon-glow);
}
.plano-cta-destaque {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
}
.plano-cta-destaque:hover { box-shadow: 0 0 36px var(--neon-glow); }

.trafego-footnote {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 0 var(--pad);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-2);
  text-align: center;
}

/* Video frame */
.video-frame {
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.video-rec {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #ff5f4c;
  font-weight: 700;
  z-index: 2;
  animation: rec 1.4s infinite;
}
@keyframes rec { 50% { opacity: 0.4; } }
.video-time {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--white);
  z-index: 2;
}
.video-grid {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
}
.video-focus {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid var(--neon);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px var(--neon-glow);
  animation: focus 2.5s infinite;
}
.video-focus::before, .video-focus::after,
.video-focus { position: absolute; }
.video-focus::before, .video-focus::after {
  content: '';
  width: 12px; height: 12px;
  border: 1px solid var(--neon);
}
.video-focus::before { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.video-focus::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }
@keyframes focus {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-30%, -50%) scale(0.8); opacity: 0.6; }
}

/* ============================================================
   DIFERENCIAL
   ============================================================ */
.diferencial {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  z-index: 1;
}
.diferencial-marquee {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  white-space: nowrap;
}
.diferencial-marquee-track {
  display: inline-flex;
  gap: 60px;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(139, 234, 58, 0.04);
  animation: marquee 35s linear infinite;
  align-items: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.diferencial-content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  z-index: 2;
}
.diferencial-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--neon);
  margin: 0 0 32px;
}
.diferencial-quote {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 80px;
}
.diferencial-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
}
.diferencial-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) {
  .diferencial-pillars { grid-template-columns: 1fr; gap: 24px; }
}
.dif-pill h5 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
  color: var(--white);
}
.dif-pill p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-1);
}
.dif-pill-num {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--neon);
}

/* ============================================================
   HOSPEDAGEM
   ============================================================ */
.hospedagem {
  position: relative;
  z-index: 1;
}
.hospedagem-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.host-card {
  position: relative;
  padding: 32px 26px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.host-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon);
  box-shadow: 0 20px 50px -10px rgba(139, 234, 58, 0.18);
}
.host-destaque {
  background: linear-gradient(180deg, rgba(139, 234, 58, 0.06), rgba(139, 234, 58, 0.01));
  border-color: var(--neon);
  box-shadow: 0 0 0 1px var(--neon);
  transform: translateY(-12px);
}
.host-destaque:hover { transform: translateY(-18px); }
.host-badge {
  position: absolute;
  top: -10px; left: 24px;
  padding: 5px 12px;
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.host-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.host-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 2s infinite;
}
.host-tier {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--neon);
}
.host-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.host-currency {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-2);
}
.host-value {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--white);
  line-height: 1;
}
.host-destaque .host-value { color: var(--neon); }
.host-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-2);
}
.host-ideal {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gray-2);
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.host-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.host-feat li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.4;
}
.host-feat li::before {
  content: '✓';
  position: absolute;
  left: 0; top: -1px;
  color: var(--neon);
  font-weight: 700;
  font-size: 13px;
}
.host-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.host-cta:hover {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
  box-shadow: 0 0 24px var(--neon-glow);
}
.host-cta-destaque {
  background: var(--neon);
  color: var(--bg);
  border-color: var(--neon);
}

/* ============================================================
   PROVAS
   ============================================================ */
.provas {
  position: relative;
  z-index: 1;
}
.provas-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.prova {
  position: relative;
  padding: 36px 30px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin: 0;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.prova:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.prova-quote {
  font-family: var(--font-serif);
  font-size: 80px;
  font-style: italic;
  color: var(--neon);
  line-height: 0.5;
  margin-bottom: 14px;
  opacity: 0.7;
}
.prova blockquote {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 400;
  flex: 1;
}
.prova blockquote strong { color: var(--neon); font-weight: 600; }
.prova figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.prova-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.prova-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-2);
}
.prova-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(139, 234, 58, 0.06);
  border: 1px dashed var(--line-strong);
}
.prova-metric-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--neon);
  line-height: 1;
}
.prova-metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-1);
  text-transform: uppercase;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding: 160px var(--pad) 160px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  opacity: 0.4;
}
.cta-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 234, 58, 0.18), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.cta-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin: 0 0 32px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 32px;
}
.cta-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
  text-shadow: 0 0 32px var(--neon-glow);
}
.cta-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: 0 0 56px;
  font-weight: 300;
}

.cta-mega {
  display: inline-flex;
  position: relative;
  padding: 24px 44px;
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-mega:hover { transform: translateY(-4px) scale(1.02); }
.cta-mega-glow {
  position: absolute;
  inset: -8px;
  background: var(--neon);
  filter: blur(28px);
  opacity: 0.45;
  z-index: -1;
  transition: opacity 0.4s;
  pointer-events: none;
}
.cta-mega:hover .cta-mega-glow { opacity: 0.9; }
.cta-mega-content {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cta-mega-icon {
  display: grid;
  place-items: center;
}
.cta-mega-arrow {
  transition: transform 0.3s;
  font-size: 24px;
}
.cta-mega:hover .cta-mega-arrow { transform: translateX(6px); }

.cta-footnote {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  margin: 32px 0 0;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line-strong);
  padding: 80px var(--pad) 32px;
  z-index: 1;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand { max-width: 280px; }
.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
  display: block;
  border-radius: 4px;
  transition: filter 0.4s ease;
}
.footer-logo:hover {
  filter: drop-shadow(0 0 16px rgba(139, 234, 58, 0.4));
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-1);
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h6 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 6px;
  font-weight: 500;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-1);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--neon); }
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-1);
}
.footer-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: blink 1.6s infinite;
}
.footer-uptime {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-2);
}
.footer-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-3);
}
@media (max-width: 600px) {
  .footer-bot { flex-direction: column; gap: 8px; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--bg);
  display: grid;
  place-items: center;
  z-index: 99;
  transition: transform 0.3s;
  box-shadow: 0 8px 32px rgba(139, 234, 58, 0.4);
}
.float-wpp:hover { transform: scale(1.1); }
.float-wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.5;
  animation: wppPulse 2s infinite;
  z-index: -1;
}
@keyframes wppPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.float-wpp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--neon);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.float-wpp:hover .float-wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero line reveal */
.hero-line {
  opacity: 0;
  transform: translateY(100%);
}
.loaded .hero-line {
  animation: lineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loaded .line-1 { animation-delay: 0.1s; }
.loaded .line-2 { animation-delay: 0.25s; }
.loaded .line-3 { animation-delay: 0.4s; }
.loaded .line-4 { animation-delay: 0.55s; }
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero other elements */
.hero-tag, .hero-sub, .hero-actions, .hero-stats {
  opacity: 0;
  transform: translateY(20px);
}
.loaded .hero-tag { animation: fadeUp 0.8s 0s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.loaded .hero-sub { animation: fadeUp 0.8s 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.loaded .hero-actions { animation: fadeUp 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.loaded .hero-stats { animation: fadeUp 0.8s 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .stat-num, .stat-suffix { font-size: 30px; }
  .nav-cta { padding: 8px 12px; font-size: 11px; }
  .servico-block { padding: 60px var(--pad); }
  .section-header { padding: 100px var(--pad) 60px; }
  .browser { transform: none; }
  .float-wpp { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .float-wpp-tooltip { display: none; }
  .hero-meta { font-size: 10px; top: 84px; }
  .hero-stats { padding-top: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ============================================================
   TOP BAR — URGÊNCIA
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--neon) 0%, var(--neon-soft) 50%, var(--neon) 100%);
  background-size: 200% 100%;
  animation: topbarShine 6s linear infinite;
  color: var(--bg);
  padding: 9px var(--pad);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.topbar.hidden { transform: translateY(-100%); }
@keyframes topbarShine {
  to { background-position: 200% 0%; }
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.topbar-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  animation: topbarPulse 1.2s infinite;
}
@keyframes topbarPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.topbar-text strong { font-weight: 700; }
.topbar-timer {
  display: inline-block;
  background: var(--bg);
  color: var(--neon);
  padding: 2px 8px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 76px;
  text-align: center;
}
/* Adjust nav for topbar */
.nav { top: 38px; }
@media (max-width: 700px) {
  .topbar { font-size: 10.5px; padding: 8px 12px; }
  .topbar-text { line-height: 1.4; }
}

/* ============================================================
   HERO TRUST INDICATORS
   ============================================================ */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-1);
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(139, 234, 58, 0.05);
  border: 1px solid var(--line);
}
.hero-trust-icon {
  color: var(--neon);
  font-size: 14px;
}
.hero-trust-item strong { color: var(--white); font-weight: 600; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--neon);
  color: var(--bg);
  padding: 14px 0;
  border-top: 1px solid var(--neon-deep);
  border-bottom: 1px solid var(--neon-deep);
}
.ticker-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}
.ticker-sep {
  opacity: 0.4;
  font-weight: 400;
}

/* ============================================================
   PROBLEMA PIN — Storytelling section
   ============================================================ */
.problema-pin {
  position: relative;
  z-index: 1;
  padding: 140px 0;
}
.problema-pin-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.problema-pin-text {
  margin-bottom: 80px;
  max-width: 900px;
}
.problema-pin-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 32px 0 32px;
}
.problema-pin-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
}
.problema-pin-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  color: var(--gray-1);
  font-weight: 300;
  margin: 0;
  font-family: var(--font-display);
}
.problema-pin-sub strong { color: var(--neon); font-weight: 600; }

.problema-pin-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .problema-pin-cards { grid-template-columns: 1fr; }
}
.ppc-card {
  position: relative;
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 20, 5, 0.4);
  transition: all 0.5s;
  overflow: hidden;
}
.ppc-card:nth-child(2n) { border-right: none; }
.ppc-card:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 800px) {
  .ppc-card { border-right: none !important; }
  .ppc-card:not(:last-child) { border-bottom: 1px solid var(--line); }
}
.ppc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(139, 234, 58, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.ppc-card:hover::before { opacity: 1; }
.ppc-card-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-3);
}
.ppc-card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--neon);
  border: 1px solid var(--line-strong);
  background: rgba(139, 234, 58, 0.04);
  transition: all 0.4s;
}
.ppc-card-icon svg { width: 28px; height: 28px; }
.ppc-card:hover .ppc-card-icon {
  background: var(--neon);
  color: var(--bg);
  box-shadow: 0 0 32px var(--neon-glow);
  transform: rotate(6deg) scale(1.05);
}
.ppc-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--white);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.ppc-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-1);
  position: relative;
  z-index: 1;
}
.ppc-card strong { color: var(--white); font-weight: 600; }
.ppc-card-stat {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 95, 76, 0.08);
  border-left: 2px solid var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray-1);
  position: relative;
  z-index: 1;
}

.problema-pin-cta {
  text-align: center;
  padding: 48px 32px;
  border: 1px dashed var(--line-strong);
  background: rgba(139, 234, 58, 0.02);
}
.problema-pin-cta p {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin: 0 0 16px;
}
.problema-pin-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--white);
}
.problema-pin-cta em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

/* ============================================================
   CUSTO DE OPORTUNIDADE
   ============================================================ */
.custo {
  position: relative;
  padding: 140px var(--pad) 140px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 95, 76, 0.04) 50%, var(--bg) 100%);
  overflow: hidden;
  z-index: 1;
}
.custo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 95, 76, 0.08), transparent 70%);
  pointer-events: none;
}
.custo-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.custo-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin: 0 0 32px;
}
.custo-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 32px;
}
.custo-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--neon);
}
.custo-strike {
  position: relative;
  display: inline-block;
}
.custo-strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 5px;
  background: var(--red);
  transform: rotate(-3deg);
  box-shadow: 0 0 16px rgba(255, 95, 76, 0.6);
}
.custo-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: 0 0 64px;
  font-weight: 300;
  font-family: var(--font-display);
}
.custo-sub strong { color: var(--white); font-weight: 600; }

.custo-counter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 56px;
  background: rgba(255, 95, 76, 0.06);
  border: 1px dashed var(--red);
  position: relative;
}
.custo-counter::before, .custo-counter::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--red);
}
.custo-counter::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.custo-counter::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.custo-counter-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray-2);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.custo-counter-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 95, 76, 0.4);
  font-variant-numeric: tabular-nums;
}
.custo-counter-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray-2);
  margin-top: 12px;
}

/* ============================================================
   MÉTODO — Horizontal scroll
   ============================================================ */
.metodo {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}
.section-header-tight { padding-bottom: 60px; }

.metodo-track-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.metodo-track {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
  padding: 0 var(--pad);
  will-change: transform;
}
.metodo-step {
  flex: 0 0 480px;
  height: 70vh;
  max-height: 600px;
  padding: 48px 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
}
.metodo-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--neon);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.metodo-step:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
}
.metodo-step:hover::before { width: 100%; }
.metodo-step-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.metodo-step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 24px var(--neon-glow);
}
.metodo-step-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gray-2);
  text-transform: uppercase;
}
.metodo-step-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--white);
}
.metodo-step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: 0 0 28px;
  font-family: var(--font-display);
  flex: 1;
}
.metodo-step-desc strong { color: var(--neon); font-weight: 600; }
.metodo-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.metodo-step-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-1);
  line-height: 1.4;
}
.metodo-step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}
@media (max-width: 800px) {
  .metodo-track-wrap {
    height: auto;
    overflow: visible;
  }
  .metodo-track {
    flex-direction: column;
    padding: 0 var(--pad) 80px;
    height: auto;
    gap: 20px;
  }
  .metodo-step {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    max-height: none;
  }
}

/* ============================================================
   SOLUÇÃO INTRO — refinements
   ============================================================ */
.solucao-intro {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: -40px 0 64px;
  font-weight: 300;
  font-family: var(--font-display);
}
.solucao-intro strong { color: var(--white); font-weight: 600; }

.pillar-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(139, 234, 58, 0.08);
  border-left: 2px solid var(--neon);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--gray-1);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.pillar-tag strong { color: var(--neon); font-weight: 700; }

/* ============================================================
   PLANO PRICE OLD (anchor pricing)
   ============================================================ */
.plano-price-old {
  position: absolute;
  top: -22px; left: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-2);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.plano-price { position: relative; }
.plano-promise {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--neon);
  margin: -14px 0 24px;
  text-transform: uppercase;
}

/* ============================================================
   DIFERENCIAL UPDATES
   ============================================================ */
.diferencial-strike {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gray-2);
}
.diferencial-strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 4px;
  background: var(--red);
  transform: rotate(-2deg);
}

/* ============================================================
   SECTION SUB
   ============================================================ */
.section-sub {
  max-width: 680px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-1);
  font-weight: 300;
}
.section-sub strong { color: var(--white); font-weight: 600; }

/* ============================================================
   PROVAS AGGREGATE
   ============================================================ */
.provas-aggregate {
  max-width: var(--max);
  margin: 60px auto 120px;
  padding: 32px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) {
  .provas-aggregate { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.provas-agg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.provas-agg-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--neon);
  line-height: 1;
}
.provas-agg-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 100%);
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad) 120px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.faq-item[open] {
  background: rgba(139, 234, 58, 0.03);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.35;
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-icon {
  background: var(--neon);
  color: var(--bg);
  transform: rotate(45deg);
  box-shadow: 0 0 16px var(--neon-glow);
}
.faq-a {
  padding: 0 4px 32px;
  max-width: 760px;
  animation: faqOpen 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-1);
  font-family: var(--font-display);
  font-weight: 300;
}
.faq-a p strong { color: var(--neon); font-weight: 600; }

/* ============================================================
   CTA FINAL — guarantees
   ============================================================ */
.cta-guarantees {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-1);
}
.cta-guar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-guar-icon {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--neon);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
}
.cta-guar strong { color: var(--white); font-weight: 600; }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.exit-popup.active {
  display: flex;
  animation: popupFade 0.4s ease;
}
@keyframes popupFade { from { opacity: 0; } to { opacity: 1; } }
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.exit-popup-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 48px 40px 36px;
  background: var(--bg);
  border: 1px solid var(--neon);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--neon-glow-soft);
  animation: popupSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popupSlide {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--gray-1);
  font-size: 22px;
  font-family: var(--font-mono);
  font-weight: 300;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.exit-popup-close:hover {
  border-color: var(--neon);
  color: var(--neon);
}
.exit-popup-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.exit-popup-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--white);
}
.exit-popup-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-1);
  margin: 0 0 32px;
  font-weight: 300;
}
.exit-popup-sub strong { color: var(--neon); font-weight: 600; }
.exit-popup-cta {
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--neon);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.exit-popup-cta:hover {
  box-shadow: 0 0 32px var(--neon-glow);
  transform: translateY(-2px);
}
.exit-popup-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-2);
  text-align: center;
  margin: 0;
}

/* ============================================================
   TERMINAL FEED — após problema-pin-sub
   ============================================================ */
.terminal-feed {
  margin-top: 48px;
  max-width: 720px;
  background: #050d03;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(139, 234, 58, 0.06);
  position: relative;
}
.terminal-feed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(139, 234, 58, 0.02) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.5;
}
.terminal-feed-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #0a1808;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
}
.terminal-feed-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2a3a26;
}
.terminal-feed-dot:nth-child(1) { background: #ff5f4c; }
.terminal-feed-dot:nth-child(2) { background: #ffbd2e; }
.terminal-feed-dot:nth-child(3) { background: var(--neon); }
.terminal-feed-title {
  margin-left: 8px;
  color: var(--gray-2);
  letter-spacing: 0.04em;
  flex: 1;
}
.terminal-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neon);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.terminal-feed-status span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: terminalPulse 1s infinite;
  box-shadow: 0 0 8px var(--neon);
}
@keyframes terminalPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.terminal-feed-body {
  padding: 20px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray-1);
  position: relative;
  z-index: 1;
}
.terminal-feed-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
  opacity: 0;
  animation: tfLineIn 0.5s forwards;
}
.terminal-feed-line:nth-child(1) { animation-delay: 0.0s; }
.terminal-feed-line:nth-child(2) { animation-delay: 0.5s; }
.terminal-feed-line:nth-child(3) { animation-delay: 1.0s; }
.terminal-feed-line:nth-child(4) { animation-delay: 1.5s; }
.terminal-feed-line:nth-child(5) { animation-delay: 2.0s; }
.terminal-feed-line:nth-child(6) { animation-delay: 2.5s; }
@keyframes tfLineIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.tf-prompt {
  color: var(--neon);
  font-weight: 700;
}
.tf-ok {
  margin-left: auto;
  color: var(--neon);
  font-weight: 600;
}
.tf-warn {
  margin-left: auto;
  color: #ffbd2e;
  font-weight: 600;
}
.tf-err {
  margin-left: auto;
  color: var(--red);
  font-weight: 600;
}
.tf-cursor {
  margin-left: auto;
  color: var(--neon);
  animation: cursorBlink 0.8s infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@media (max-width: 600px) {
  .terminal-feed-body { font-size: 11px; padding: 16px 12px; }
  .terminal-feed-title { font-size: 10px; }
  .terminal-feed-status { font-size: 10px; }
}

/* ============================================================
   ECOSYSTEM VIZ — entre solucao-intro e pillars
   ============================================================ */
.ecosystem-viz {
  position: relative;
  height: 240px;
  margin: 0 0 80px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.eco-line {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  opacity: 0.6;
}
.ecosystem-viz.active .eco-line {
  stroke: var(--neon);
  animation: ecoLineFlow 3s linear infinite;
  opacity: 1;
}
@keyframes ecoLineFlow {
  to { stroke-dashoffset: -16; }
}
.eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.eco-node-1 { top: 30px; left: 12.5%; transform: translateX(-50%); }
.eco-node-2 { top: 30px; left: 37.5%; transform: translateX(-50%); }
.eco-node-3 { top: 30px; left: 62.5%; transform: translateX(-50%); }
.eco-node-4 { top: 30px; left: 87.5%; transform: translateX(-50%); }
.eco-node-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--neon);
  box-shadow: 0 0 16px var(--neon-glow);
  position: relative;
}
.eco-node-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--neon);
  border-radius: 50%;
  opacity: 0;
  animation: ecoNodePing 2.4s infinite;
}
.eco-node-1 .eco-node-dot::after { animation-delay: 0s; }
.eco-node-2 .eco-node-dot::after { animation-delay: 0.6s; }
.eco-node-3 .eco-node-dot::after { animation-delay: 1.2s; }
.eco-node-4 .eco-node-dot::after { animation-delay: 1.8s; }
@keyframes ecoNodePing {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.eco-node-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray-1);
  font-weight: 600;
}
.eco-center {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 110px;
  display: grid;
  place-items: center;
  background: var(--neon);
  color: var(--bg);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 60px var(--neon-glow), inset 0 0 30px rgba(8, 20, 5, 0.2);
}
.eco-center-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--neon);
  border-radius: 50%;
  animation: ecoCenterPulse 2s infinite;
}
@keyframes ecoCenterPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.eco-center-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .ecosystem-viz { height: 180px; margin-bottom: 60px; }
  .eco-center { width: 80px; height: 80px; top: 70px; }
  .eco-center-label { font-size: 13px; }
  .eco-node-text { font-size: 9px; }
}

/* ============================================================
   PILLAR MINI — visualizações dentro de cada pillar
   ============================================================ */
.pillar { display: flex; flex-direction: column; }
.pillar-mini {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Speed comparison */
.pillar-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.pillar-mini-label {
  color: var(--gray-1);
  width: 48px;
  font-weight: 600;
}
.pillar-mini-bar {
  flex: 1;
  height: 6px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.pillar-mini-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pillar-mini-bar-red span {
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 95, 76, 0.5);
}
.pillar.in-view .pillar-mini-bar span {
  width: var(--target-width, 96%);
}
.pillar.in-view .pillar-mini-row:nth-child(1) .pillar-mini-bar span { width: 96%; }
.pillar.in-view .pillar-mini-row:nth-child(2) .pillar-mini-bar span { width: 42%; }
.pillar-mini-val {
  color: var(--neon);
  font-weight: 700;
  min-width: 38px;
  text-align: right;
}
.pillar-mini-row-dim .pillar-mini-val { color: var(--red); }

/* Sparkline */
.pillar-mini-spark {
  height: 50px;
  width: 100%;
  position: relative;
}
.pillar-mini-spark svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.spark-line {
  fill: none;
  stroke: var(--neon);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.spark-line-glow {
  stroke-width: 6;
  opacity: 0.25;
  filter: blur(3px);
}
.pillar.in-view .spark-line {
  stroke-dashoffset: 0;
}
.pillar-mini-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-1);
}
.pillar-mini-up { color: var(--neon); font-weight: 700; }

/* Audio EQ */
.pillar-mini-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 50px;
}
.pillar-mini-eq span {
  width: 4px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon-glow-soft);
  border-radius: 2px;
  transform-origin: bottom;
  height: 8px;
}
.pillar.in-view .pillar-mini-eq span {
  animation: eqBounce 1.2s ease-in-out infinite;
}
.pillar-mini-eq span:nth-child(1)  { animation-delay: 0.0s; }
.pillar-mini-eq span:nth-child(2)  { animation-delay: 0.08s; }
.pillar-mini-eq span:nth-child(3)  { animation-delay: 0.16s; }
.pillar-mini-eq span:nth-child(4)  { animation-delay: 0.24s; }
.pillar-mini-eq span:nth-child(5)  { animation-delay: 0.32s; }
.pillar-mini-eq span:nth-child(6)  { animation-delay: 0.40s; }
.pillar-mini-eq span:nth-child(7)  { animation-delay: 0.48s; }
.pillar-mini-eq span:nth-child(8)  { animation-delay: 0.56s; }
.pillar-mini-eq span:nth-child(9)  { animation-delay: 0.64s; }
.pillar-mini-eq span:nth-child(10) { animation-delay: 0.72s; }
.pillar-mini-eq span:nth-child(11) { animation-delay: 0.80s; }
.pillar-mini-eq span:nth-child(12) { animation-delay: 0.88s; }
.pillar-mini-eq span:nth-child(13) { animation-delay: 0.96s; }
.pillar-mini-eq span:nth-child(14) { animation-delay: 1.04s; }
.pillar-mini-eq span:nth-child(15) { animation-delay: 1.12s; }
@keyframes eqBounce {
  0%, 100% { height: 8px; opacity: 0.5; }
  50% { height: 42px; opacity: 1; }
}

/* Metrics grid */
.pillar-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pillar-mini-grid > div {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  background: rgba(139, 234, 58, 0.04);
  border-left: 2px solid var(--neon);
  font-family: var(--font-mono);
  gap: 2px;
}
.pmg-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gray-2);
  text-transform: uppercase;
}
.pmg-val {
  font-size: 14px;
  font-weight: 700;
}
.pmg-up { color: var(--neon); }
.pmg-down { color: var(--neon); }

/* ============================================================
   TRAFEGO COMPARE — comparação Athera vs agência
   ============================================================ */
.trafego-compare {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tc-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
}
.tc-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.tc-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.tc-row-them .tc-label { color: var(--gray-1); }
.tc-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray-2);
}
.tc-bar {
  position: relative;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.tc-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tc-row.in-view .tc-bar-them { width: 82%; }
.tc-row.in-view .tc-bar-us { width: 100%; }
.tc-bar-them {
  background: linear-gradient(90deg, rgba(255, 95, 76, 0.18) 0%, rgba(255, 95, 76, 0.06) 100%);
  border-right: 2px dashed var(--red);
}
.tc-bar-us {
  background: linear-gradient(90deg, var(--neon) 0%, var(--neon-soft) 100%);
}
.tc-bar-fee {
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  white-space: nowrap;
  z-index: 1;
}
.tc-bar-rest {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tc-bar-us .tc-bar-rest { color: var(--bg); }
@media (max-width: 700px) {
  .tc-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tc-side { text-align: left; flex-direction: row; gap: 12px; align-items: baseline; }
  .tc-bar-fee { font-size: 9px; padding: 3px 6px; right: -2px; }
}

/* ============================================================
   UPTIME MONITOR — após section-sub de hospedagem
   ============================================================ */
.uptime-monitor {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-mono);
  position: relative;
  overflow: hidden;
}
.uptime-monitor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(139, 234, 58, 0.04), transparent 70%);
  pointer-events: none;
}
.uptime-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.uptime-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.uptime-led {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: uptimeLedPulse 2s infinite;
}
@keyframes uptimeLedPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--neon); }
  50% { opacity: 0.7; box-shadow: 0 0 20px var(--neon); }
}
.uptime-status-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--neon);
  font-weight: 700;
}
.uptime-meta {
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.04em;
}
.uptime-meta strong { color: var(--white); }
.uptime-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.uptime-service {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  align-items: center;
  gap: 18px;
}
.us-name {
  font-size: 12px;
  color: var(--gray-1);
  letter-spacing: 0.04em;
}
.us-graph {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 24px;
}
.us-graph span {
  flex: 1;
  height: 100%;
  background: var(--neon);
  opacity: 0.85;
  box-shadow: 0 0 4px var(--neon-glow-soft);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: usGraphIn 0.5s forwards;
}
.uptime-monitor.in-view .us-graph span {
  animation: usGraphIn 0.6s forwards, usGraphPulse 4s infinite;
}
.us-graph .us-warn {
  background: #ffbd2e;
  height: 60%;
}
@keyframes usGraphIn {
  to { transform: scaleY(1); }
}
@keyframes usGraphPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.uptime-service:nth-child(1) .us-graph span { animation-delay: calc(var(--i, 0) * 0.02s); }
.us-graph span:nth-child(1) { animation-delay: 0.0s; }
.us-graph span:nth-child(5) { animation-delay: 0.05s; }
.us-graph span:nth-child(10) { animation-delay: 0.1s; }
.us-graph span:nth-child(15) { animation-delay: 0.15s; }
.us-graph span:nth-child(20) { animation-delay: 0.2s; }
.us-graph span:nth-child(25) { animation-delay: 0.25s; }
.us-graph span:nth-child(30) { animation-delay: 0.3s; }
.us-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--neon);
  text-align: right;
}
.uptime-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.04em;
  position: relative;
  flex-wrap: wrap;
  gap: 8px;
}
.uptime-pulse-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.uptime-pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: uptimeRecPulse 1s infinite;
}
@keyframes uptimeRecPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (max-width: 700px) {
  .uptime-monitor { padding: 18px 16px; margin-bottom: 40px; }
  .uptime-service {
    grid-template-columns: 1fr 50px;
    grid-template-rows: auto auto;
    gap: 4px 12px;
  }
  .us-name { grid-column: 1; grid-row: 1; }
  .us-pct { grid-column: 2; grid-row: 1; }
  .us-graph { grid-column: 1 / -1; grid-row: 2; }
}

/* ============================================================
   VERIFIED BANNER — após section-title de provas
   ============================================================ */
.verified-banner {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  margin-bottom: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 12px,
      rgba(139, 234, 58, 0.025) 12px,
      rgba(139, 234, 58, 0.025) 13px
    );
}
.verified-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: verifiedScroll 35s linear infinite;
  align-items: center;
  padding: 0 30px;
}
@keyframes verifiedScroll {
  to { transform: translateX(-50%); }
}
.verified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1.5px solid var(--neon);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  position: relative;
  transform: rotate(-1.5deg);
}
.verified-stamp:nth-child(2) { transform: rotate(1deg); }
.verified-stamp:nth-child(4) { transform: rotate(0.5deg); }
.verified-stamp:nth-child(5) { transform: rotate(-1deg); }
.verified-stamp::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--neon);
  opacity: 0.4;
  pointer-events: none;
}
.verified-stamp svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .verified-stamp { font-size: 10px; padding: 8px 14px; gap: 8px; }
  .verified-stamp svg { width: 14px; height: 14px; }
  .verified-track { gap: 40px; }
}

/* ============================================================
   ORB 3D ANIMADO — recriação do ícone Athera com profundidade
   ============================================================ */
.hero-orb3d {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  pointer-events: none;
  z-index: 2;
  perspective: 1200px;
}

/* Esconder em mobile/tablet */
@media (max-width: 1100px) {
  .hero-orb3d { display: none; }
}
@media (min-width: 1101px) and (max-width: 1400px) {
  .hero-orb3d {
    width: 440px;
    height: 440px;
    right: -3%;
  }
}

/* HUD radar externo */
.orb3d-hud {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: orbHudRotate 60s linear infinite;
}
@keyframes orbHudRotate {
  to { transform: rotate(360deg); }
}
.orb3d-coords {
  animation: orbCoordsCounter 60s linear infinite;
  transform-origin: 300px 300px;
}
@keyframes orbCoordsCounter {
  to { transform: rotate(-360deg); }
}

/* Anéis orbitais 3D — efeito átomo */
.orb3d-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(139, 234, 58, 0.35);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orb3d-orbit::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow:
    0 0 8px var(--neon),
    0 0 20px var(--neon-glow),
    0 0 40px var(--neon-glow-soft);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.orb3d-orbit-1 {
  width: 480px;
  height: 480px;
  margin: -240px 0 0 -240px;
  transform: rotateX(75deg) rotateZ(0deg);
  animation: orbit1Spin 8s linear infinite;
  border-color: rgba(139, 234, 58, 0.45);
}
.orb3d-orbit-2 {
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  transform: rotateX(70deg) rotateY(60deg);
  animation: orbit2Spin 12s linear infinite reverse;
  border-color: rgba(139, 234, 58, 0.3);
}
.orb3d-orbit-3 {
  width: 540px;
  height: 540px;
  margin: -270px 0 0 -270px;
  transform: rotateX(80deg) rotateY(-30deg);
  animation: orbit3Spin 18s linear infinite;
  border-color: rgba(139, 234, 58, 0.18);
  border-style: dashed;
}
@keyframes orbit1Spin {
  from { transform: rotateX(75deg) rotateZ(0deg); }
  to   { transform: rotateX(75deg) rotateZ(360deg); }
}
@keyframes orbit2Spin {
  from { transform: rotateX(70deg) rotateY(60deg) rotateZ(0deg); }
  to   { transform: rotateX(70deg) rotateY(60deg) rotateZ(360deg); }
}
@keyframes orbit3Spin {
  from { transform: rotateX(80deg) rotateY(-30deg) rotateZ(0deg); }
  to   { transform: rotateX(80deg) rotateY(-30deg) rotateZ(360deg); }
}

/* Core central — a esfera */
.orb3d-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  display: grid;
  place-items: center;
  animation: orbBreath 4s ease-in-out infinite;
}
@keyframes orbBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* Glow radial pulsante atrás da esfera */
.orb3d-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 234, 58, 0.55) 0%, rgba(139, 234, 58, 0.18) 35%, transparent 65%);
  filter: blur(20px);
  animation: orbGlowPulse 3s ease-in-out infinite;
}
@keyframes orbGlowPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.12); }
}

/* A esfera SVG — fica estática, as listras dentro é que se movem */
.orb3d-sphere {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(139, 234, 58, 0.35));
}

/* Listras com micro-deslocamento horizontal (sensação de leve rotação) */
.orb3d-stripes {
  transform-origin: 200px 220px;
  animation: stripeSubtle 6s ease-in-out infinite;
}
@keyframes stripeSubtle {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50%      { transform: translateX(-3px) scaleX(0.985); }
}

/* Espiral do topo gira lentamente */
.orb3d-stripes-top {
  transform-origin: 200px 92px;
  animation: stripeTopRotate 20s linear infinite;
}
@keyframes stripeTopRotate {
  to { transform: rotate(360deg); }
}

/* Linha de scan que atravessa a esfera */
.orb3d-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--neon) 30%,
    #ffffff 50%,
    var(--neon) 70%,
    transparent 100%);
  box-shadow: 0 0 12px var(--neon), 0 0 24px var(--neon-glow);
  z-index: 3;
  opacity: 0;
  animation: orbScan 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbScan {
  0%   { top: 10%; opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { top: 90%; opacity: 0.9; }
  60%  { opacity: 0; }
  100% { top: 90%; opacity: 0; }
}

/* Partículas orbitando ao redor */
.orb3d-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb3d-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon), 0 0 16px var(--neon-glow);
}
.orb3d-particle.p1 {
  animation: particleOrbit 6s linear infinite;
  --orbit-radius: 220px;
}
.orb3d-particle.p2 {
  animation: particleOrbit 9s linear infinite reverse;
  animation-delay: -3s;
  --orbit-radius: 250px;
  width: 3px;
  height: 3px;
}
.orb3d-particle.p3 {
  animation: particleOrbit 7s linear infinite;
  animation-delay: -2s;
  --orbit-radius: 200px;
  width: 5px;
  height: 5px;
}
.orb3d-particle.p4 {
  animation: particleOrbit 11s linear infinite reverse;
  animation-delay: -5s;
  --orbit-radius: 270px;
  width: 2px;
  height: 2px;
  opacity: 0.7;
}
.orb3d-particle.p5 {
  animation: particleOrbit 8s linear infinite;
  animation-delay: -4s;
  --orbit-radius: 235px;
  width: 3px;
  height: 3px;
}
@keyframes particleOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
  }
}

/* Labels técnicas flutuantes */
.orb3d-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--neon);
}
.orb3d-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(8, 20, 5, 0.85);
  border: 1px solid rgba(139, 234, 58, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: orbLabelFade 0.8s 1.5s forwards;
}
.orb3d-label-tl {
  top: 14%;
  left: 6%;
}
.orb3d-label-br {
  bottom: 12%;
  right: 8%;
  animation-delay: 2s;
}
.orb3d-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: terminalPulse 1.2s infinite;
}
@keyframes orbLabelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Garante que conteúdo do hero não fique embaixo do orb */
@media (min-width: 1101px) {
  .hero-content { max-width: 60%; }
}

/* Esconde o blob antigo nos breakpoints onde o orb 3D aparece */
@media (min-width: 1101px) {
  .hero-orb { display: none; }
}

/* ============================================================
   GSAP SAFETY NET — fallback se ScrollTrigger não disparar
   Após 4s, força visibilidade de qualquer elemento que ainda
   esteja invisível por causa de animação que não rodou
   ============================================================ */
body.gsap-safety-net .ppc-card,
body.gsap-safety-net .pillar,
body.gsap-safety-net .plano-card,
body.gsap-safety-net .host-card,
body.gsap-safety-net .prova,
body.gsap-safety-net .metodo-step,
body.gsap-safety-net .dif-pill,
body.gsap-safety-net .faq-item,
body.gsap-safety-net .provas-agg-item,
body.gsap-safety-net .cta-mega,
body.gsap-safety-net .cta-guar,
body.gsap-safety-net .cta-title,
body.gsap-safety-net .servico-block-visual,
body.gsap-safety-net .section-title,
body.gsap-safety-net .section-tag,
body.gsap-safety-net .problema-pin-title,
body.gsap-safety-net .problema-pin-sub,
body.gsap-safety-net .problema-pin-cta,
body.gsap-safety-net .custo-title,
body.gsap-safety-net .custo-counter,
body.gsap-safety-net .servico-block-side > * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ============================================================
   CSS-DRIVEN REVEAL SYSTEM (replaces problematic ScrollTrigger)
   IntersectionObserver in JS adds .in-view class.
   These rules handle the entry animation reliably.
   ============================================================ */

/* Default state: hidden + slightly translated */
.ppc-card,
.plano-card,
.host-card,
.prova,
.dif-pill,
.faq-item,
.provas-agg-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title,
.section-tag,
.problema-pin-title,
.problema-pin-sub,
.problema-pin-cta,
.custo-title,
.custo-counter,
.cta-title,
.cta-mega,
.cta-guar,
.servico-block-visual,
.servico-block-side > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* IN-VIEW state: animate to final position */
.ppc-card.in-view,
.plano-card.in-view,
.host-card.in-view,
.prova.in-view,
.dif-pill.in-view,
.faq-item.in-view,
.provas-agg-item.in-view,
.section-title.in-view,
.section-tag.in-view,
.problema-pin-title.in-view,
.problema-pin-sub.in-view,
.problema-pin-cta.in-view,
.custo-title.in-view,
.custo-counter.in-view,
.cta-title.in-view,
.cta-mega.in-view,
.cta-guar.in-view,
.servico-block-visual.in-view,
.servico-block-side > .in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger: cards within a grid get progressive delays */
.problema-pin-cards .ppc-card:nth-child(1) { transition-delay: 0.0s; }
.problema-pin-cards .ppc-card:nth-child(2) { transition-delay: 0.10s; }
.problema-pin-cards .ppc-card:nth-child(3) { transition-delay: 0.20s; }
.problema-pin-cards .ppc-card:nth-child(4) { transition-delay: 0.30s; }

.planos-grid .plano-card:nth-child(1) { transition-delay: 0.0s; }
.planos-grid .plano-card:nth-child(2) { transition-delay: 0.12s; }
.planos-grid .plano-card:nth-child(3) { transition-delay: 0.24s; }

.hospedagem-grid .host-card:nth-child(1) { transition-delay: 0.0s; }
.hospedagem-grid .host-card:nth-child(2) { transition-delay: 0.10s; }
.hospedagem-grid .host-card:nth-child(3) { transition-delay: 0.20s; }
.hospedagem-grid .host-card:nth-child(4) { transition-delay: 0.30s; }

.provas-grid .prova:nth-child(1) { transition-delay: 0.0s; }
.provas-grid .prova:nth-child(2) { transition-delay: 0.12s; }
.provas-grid .prova:nth-child(3) { transition-delay: 0.24s; }

.diferencial-pillars .dif-pill:nth-child(1) { transition-delay: 0.0s; }
.diferencial-pillars .dif-pill:nth-child(2) { transition-delay: 0.12s; }
.diferencial-pillars .dif-pill:nth-child(3) { transition-delay: 0.24s; }

.faq-list .faq-item:nth-child(1) { transition-delay: 0.0s; }
.faq-list .faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.24s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.30s; }

.provas-aggregate .provas-agg-item:nth-child(1) { transition-delay: 0.0s; }
.provas-aggregate .provas-agg-item:nth-child(2) { transition-delay: 0.08s; }
.provas-aggregate .provas-agg-item:nth-child(3) { transition-delay: 0.16s; }
.provas-aggregate .provas-agg-item:nth-child(4) { transition-delay: 0.24s; }

.cta-guarantees .cta-guar:nth-child(1) { transition-delay: 0.0s; }
.cta-guarantees .cta-guar:nth-child(2) { transition-delay: 0.10s; }
.cta-guarantees .cta-guar:nth-child(3) { transition-delay: 0.20s; }

/* Pillar already has its own transition for in-view bars/sparks/etc.
   Add the entry transition layer here */
.pillar {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar.in-view {
  opacity: 1;
  transform: translateY(0);
}
.solucao-pillars .pillar:nth-child(1) { transition-delay: 0.0s; }
.solucao-pillars .pillar:nth-child(2) { transition-delay: 0.10s; }
.solucao-pillars .pillar:nth-child(3) { transition-delay: 0.20s; }
.solucao-pillars .pillar:nth-child(4) { transition-delay: 0.30s; }

/* Reduced motion: skip the animations entirely */
@media (prefers-reduced-motion: reduce) {
  .ppc-card, .pillar, .plano-card, .host-card, .prova,
  .dif-pill, .faq-item, .provas-agg-item, .section-title,
  .section-tag, .problema-pin-title, .problema-pin-sub,
  .problema-pin-cta, .custo-title, .custo-counter,
  .cta-title, .cta-mega, .cta-guar,
  .servico-block-visual, .servico-block-side > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
