/* =========================================================
   LILI AI — Landing Page
   Design system: Glassmorphism · Neon · Futurista
   ========================================================= */

:root {
  --bg: #07000f;
  --bg-2: #100020;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f3ff;
  --text-muted: #b8b0d6;
  --text-dim: #7a7099;

  --purple: #a855f7;
  --purple-2: #7c3aed;
  --magenta: #ec4899;
  --cyan: #06b6d4;
  --green: #10b981;

  --grad-1: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --grad-2: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
  --grad-glow: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);

  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
  --shadow-card: 0 20px 50px -10px rgba(0, 0, 0, 0.6);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1240px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button, input, select, textarea {
  font: inherit; color: inherit; background: none; border: none; outline: none;
}
button { cursor: pointer; }
ul { list-style: none; }

/* fundo gradiente eterno */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}

/* Canvas único 3D — z-index alto, pointer-events none. Renderiza por scissor. */
#webgl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
}

/* Slots 3D — placeholders posicionais (transparentes) que o WebGL global preenche via scissor */
.scene-3d {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mini-3d {
  width: 100%;
  height: 100%;
}

/* =========================================================
   GRADIENTES TEXTO
   ========================================================= */
.grad {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-2 {
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s var(--easing), visibility .8s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-orb {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-1);
  filter: blur(0px);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.6);
}
.loader-text {
  position: absolute;
  bottom: 32%;
  font-weight: 700; font-size: 14px; letter-spacing: 0.4em;
  color: var(--text-muted);
}
.loader-text span { color: var(--purple); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.7); opacity: 0.6; }
}

/* =========================================================
   CURSOR
   ========================================================= */
.cursor, .cursor-follow {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--easing);
}
.cursor-follow {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--easing), width .25s, height .25s, border-color .25s;
}
.cursor-follow.hover {
  width: 60px; height: 60px;
  border-color: var(--purple);
}
@media (max-width: 900px) { .cursor, .cursor-follow { display: none; } }

/* =========================================================
   HEADER + PROGRESS BAR
   ========================================================= */
.progress-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--grad-1);
  z-index: 200;
  box-shadow: 0 0 8px rgba(168,85,247,0.6);
  transition: width 0.08s linear;
}

.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: padding .3s var(--easing), background .3s;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(7,0,15,0.65) 0%, rgba(7,0,15,0.0) 100%);
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(7,0,15,0.80);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 700px) { .header-inner { padding: 0 18px; } }

.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  position: relative;
}
.logo-orb {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-1);
  box-shadow: 0 0 24px rgba(168,85,247,0.7), inset 0 0 20px rgba(255,255,255,0.2);
  animation: pulse 3s ease-in-out infinite;
  position: relative;
}
.logo-orb::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.4);
  animation: orbRing 3s ease-out infinite;
}
@keyframes orbRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.logo-text {
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.logo-text span {
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 1px;
}
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,100,224,0.25), rgba(59,89,224,0.25));
  border: 1px solid rgba(0,129,251,0.35);
  color: #6cb4ff;
  margin-left: 4px;
  white-space: nowrap;
}
@media (max-width: 700px) { .logo-tag { display: none; } }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav a > span { position: relative; z-index: 2; }
.nav a:not(.nav-cta):hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav a:not(.nav-cta).active {
  color: var(--text);
  background: rgba(168,85,247,0.12);
}

.nav-cta {
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  background: var(--grad-1);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(168,85,247,0.4);
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: transform .25s var(--easing), box-shadow .25s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(236,72,153,0.5);
}
.nav-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  animation: pulse 1.6s infinite;
}

.menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.menu-btn span { width: 22px; height: 2px; background: var(--text); transition: .3s; border-radius: 2px; }
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    position: fixed; top: 0; right: -100%;
    width: 82%; max-width: 360px; height: 100vh;
    flex-direction: column; align-items: stretch;
    gap: 8px;
    padding: 100px 24px 40px;
    background: rgba(7,0,15,0.97);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border);
    border-radius: 0;
    transition: right .4s var(--easing);
  }
  .nav.open { right: 0; }
  .nav a {
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 12px;
  }
  .nav-cta { margin-left: 0; margin-top: 12px; justify-content: center; }
  .menu-btn { display: flex; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600; font-size: 15px;
  transition: transform .25s var(--easing), box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad-1);
  color: white;
  box-shadow: 0 0 30px rgba(168,85,247,0.4), 0 10px 30px -10px rgba(168,85,247,0.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(236,72,153,0.5), 0 20px 40px -10px rgba(168,85,247,0.7);
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--purple);
  transform: translateY(-2px);
}

/* =========================================================
   META PARTNER BADGE (no hero)
   ========================================================= */
.meta-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px 10px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,100,224,0.15), rgba(0,129,251,0.08));
  border: 1px solid rgba(0,129,251,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0,129,251,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  text-align: left;
}
.meta-badge::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,129,251,0.6), transparent 50%, rgba(168,85,247,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.meta-icon {
  width: 36px; height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,129,251,0.6));
}
.meta-text strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #6cb4ff;
}
.meta-text span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.meta-check {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0081FB, #3B59E0);
  box-shadow: 0 0 12px rgba(0,129,251,0.5);
  flex-shrink: 0;
}

/* =========================================================
   SELO META — faixa dedicada
   ========================================================= */
.meta-stamp {
  padding: 32px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.stamp-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 36px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(0,100,224,0.10), rgba(0,129,251,0.04) 50%, rgba(168,85,247,0.06) 100%);
  border: 1px solid rgba(0,129,251,0.3);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.stamp-inner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,129,251,0.18), transparent 70%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .stamp-inner { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
}
.stamp-left {
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 2;
}
.stamp-meta-logo {
  width: 64px; height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0,129,251,0.6));
}
.stamp-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #6cb4ff;
  margin-bottom: 4px;
}
.stamp-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff, #6cb4ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stamp-desc {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}
.stamp-right {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: flex-end;
  position: relative; z-index: 2;
}
@media (max-width: 800px) { .stamp-right { justify-content: flex-start; } }
.stamp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0,129,251,0.10);
  border: 1px solid rgba(0,129,251,0.25);
  font-size: 12px;
  color: #cfe4ff;
  font-weight: 500;
}
.stamp-pill span {
  color: #10b981;
  font-weight: 700;
}

/* =========================================================
   KICKERS
   ========================================================= */

.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.3em;
  color: var(--purple);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.section-head h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-head p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 920px;
  text-align: center;
}
.hero-content .meta-badge { margin-bottom: 32px; }

.hero-title {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-stats > div {
  text-align: center;
  padding: 16px;
  border-left: 1px solid var(--border);
}
.hero-stats > div:first-child { border-left: none; }
.hero-stats strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stats > div:nth-child(3) { border-left: none; }
}

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-dim);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.trust-label {
  text-align: center;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.trust-marquee {
  display: flex;
  gap: 0;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.trust-track {
  display: flex; align-items: center; gap: 48px;
  flex-shrink: 0;
  animation: marquee 50s linear infinite;
  padding-right: 48px;
}
.trust-track span {
  font-weight: 600; font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* =========================================================
   SEGMENTOS (Para quem é)
   ========================================================= */
.segments {
  padding: 100px 24px 60px;
  max-width: var(--container);
  margin: 0 auto;
}
.seg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .seg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .seg-grid { grid-template-columns: 1fr; } }

.seg {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: transform .35s var(--easing), border-color .3s, background .3s;
}
.seg:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  background: var(--surface-2);
}
.seg-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 16px rgba(168,85,247,0.4));
}
.seg strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.seg p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.seg p strong {
  display: inline;
  font-size: inherit;
  color: var(--purple);
  font-weight: 600;
}
.seg-highlight {
  background: linear-gradient(180deg, rgba(168,85,247,0.10), rgba(236,72,153,0.04));
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 0 30px rgba(168,85,247,0.15);
}
.seg-badge {
  position: absolute;
  top: -10px; right: 16px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--grad-1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: white;
  box-shadow: 0 0 16px rgba(168,85,247,0.5);
}

/* =========================================================
   FEATURES
   ========================================================= */
.features {
  padding: 140px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .4s var(--easing), border-color .3s, background .3s;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-glow);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.feature:hover::before { opacity: 0.3; }

.feature-icon {
  width: 90px; height: 90px;
  border-radius: var(--r-md);
  background: radial-gradient(circle at 30% 30%, rgba(168,85,247,0.18), rgba(0,0,0,0.0) 70%);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: visible;
  position: relative;
}
.feature h3 {
  font-size: 20px; font-weight: 600;
  margin-bottom: 12px;
}
.feature > p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature ul li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 4px 0 4px 20px;
  position: relative;
}
.feature ul li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-1);
}

/* =========================================================
   PLATAFORMA — DASHBOARD 3D
   ========================================================= */
.platform {
  padding: 140px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.platform-stage {
  position: relative;
  height: 720px;
  margin-bottom: 80px;
  perspective: 2000px;
}
@media (max-width: 900px) { .platform-stage { height: auto; min-height: auto; } }

.platform-3d { z-index: 0; }

.mock {
  position: absolute;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(20,5,40,0.85), rgba(10,0,20,0.92));
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 60px -20px rgba(168,85,247,0.3);
  backdrop-filter: blur(20px);
  z-index: 12;
  overflow: hidden;
  transition: transform .6s var(--easing);
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-dot:nth-child(1) { background: #ef4444; }
.mock-dot:nth-child(2) { background: #fbbf24; }
.mock-dot:nth-child(3) { background: #10b981; }
.mock-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* INBOX */
.mock-inbox {
  top: 40px; left: 50%;
  transform: translateX(-50%) rotateX(8deg) rotateY(-4deg);
  width: 760px; max-width: 92%;
  height: 480px;
}
@media (max-width: 900px) {
  .mock-inbox { position: relative; left: 0; top: 0; transform: none; width: 100%; height: 460px; }
}
.mock-inbox-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: calc(100% - 40px);
}
.inbox-list {
  border-right: 1px solid var(--border);
  overflow: hidden;
}
.inbox-search {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.inbox-item {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  cursor: pointer;
  transition: background .2s;
}
.inbox-item:hover { background: rgba(168,85,247,0.06); }
.inbox-item.active { background: rgba(168,85,247,0.12); border-left: 2px solid var(--purple); }
.inbox-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: white; font-size: 14px;
}
.inbox-meta strong { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.inbox-meta span { display: block; font-size: 11px; color: var(--text-dim); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-meta em { color: var(--purple); font-style: normal; }
.ch { font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: 700; letter-spacing: 0.05em; }
.ch-wa { background: rgba(37,211,102,0.2); color: #25D366; }
.ch-ig { background: rgba(228,64,95,0.2); color: #E4405F; }
.ch-fb { background: rgba(24,119,242,0.2); color: #1877F2; }
.inbox-time { font-size: 10px; color: var(--text-dim); }

.inbox-conv {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(168,85,247,0.03), transparent);
}
.conv-head {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.conv-head strong { display: block; font-size: 13px; }
.conv-head span { font-size: 11px; color: var(--text-dim); }
.conv-head em { color: var(--purple); font-style: normal; }
.conv-actions { display: flex; align-items: center; gap: 8px; }
.ai-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(236,72,153,0.2));
  border: 1px solid rgba(168,85,247,0.4);
  color: var(--purple);
  font-weight: 600;
}
.conv-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.msg-action {
  background: rgba(6,182,212,0.1) !important;
  border: 1px dashed var(--cyan) !important;
  color: var(--cyan) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important;
}

/* KPIs */
.mock-kpis {
  top: 0; right: 8%;
  width: 280px;
  transform: rotateX(8deg) rotateY(-12deg) translateZ(40px);
  z-index: 14;
}
@media (max-width: 900px) {
  .mock-kpis { position: relative; right: 0; top: 0; width: 100%; transform: none; margin-top: 24px; }
}
.live {
  margin-left: auto;
  font-size: 10px;
  color: #10b981;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 4px;
  animation: pulse 2s infinite;
}
.kpi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.kpi {
  padding: 14px;
  background: rgba(0,0,0,0.3);
  display: grid;
}
.kpi span { font-size: 10px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }
.kpi strong { font-size: 22px; font-weight: 700; margin-top: 4px; }
.kpi em { font-size: 11px; color: var(--green); font-style: normal; font-weight: 600; }
.kpi-chart {
  padding: 12px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
}
.kpi-chart svg { width: 100%; height: 60px; }

/* FUNIL */
.mock-funnel {
  bottom: 60px; left: 4%;
  width: 320px;
  transform: rotateX(8deg) rotateY(8deg) translateZ(20px);
  z-index: 13;
}
@media (max-width: 900px) {
  .mock-funnel { position: relative; left: 0; bottom: 0; width: 100%; transform: none; margin-top: 24px; }
}
.funnel-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
}
.fcol { display: flex; flex-direction: column; gap: 4px; }
.fhead {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.fcard {
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(168,85,247,0.15), rgba(168,85,247,0.05));
  border: 1px solid rgba(168,85,247,0.2);
}
.fcard-win {
  background: linear-gradient(90deg, rgba(16,185,129,0.3), rgba(16,185,129,0.1));
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 0 20px rgba(16,185,129,0.3);
}

/* AGENTE IA */
.mock-agent {
  bottom: 40px; right: 6%;
  width: 280px;
  padding: 16px;
  transform: rotateX(8deg) rotateY(-8deg) translateZ(60px);
  z-index: 14;
}
@media (max-width: 900px) {
  .mock-agent { position: relative; right: 0; bottom: 0; width: 100%; transform: none; margin-top: 24px; }
}
.agent-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.agent-orb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad-1);
  box-shadow: 0 0 12px var(--purple);
  animation: pulse 1.6s infinite;
}
.agent-status {
  margin-left: auto;
  font-size: 11px;
  color: var(--purple);
  font-family: 'JetBrains Mono', monospace;
}
.agent-tools { display: grid; gap: 6px; }
.tool {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}
.tool span { color: var(--green); font-weight: 700; }
.tool.active { border-color: var(--purple); color: var(--text); background: rgba(168,85,247,0.1); }
.loader-mini {
  display: inline-block;
  width: 10px; height: 10px;
  border: 1.5px solid rgba(168,85,247,0.3);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* PLATFORM FEATURES */
.platform-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .platform-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .platform-features { grid-template-columns: 1fr; } }
.pf {
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.pf:hover { transform: translateY(-4px); border-color: var(--purple); }
.pf-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.pf strong { display: block; font-size: 15px; margin-bottom: 6px; }
.pf p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* =========================================================
   FLUXO 3D (Como funciona)
   ========================================================= */
.how {
  padding: 140px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.flow {
  position: relative;
  min-height: 600px;
}
.flow-3d { z-index: 1; }

.flow-nodes {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1000px) { .flow-nodes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .flow-nodes { grid-template-columns: 1fr; } }

.fnode {
  position: relative;
  padding: 28px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(20,5,40,0.7), rgba(10,0,20,0.85));
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: transform .4s var(--easing), border-color .3s, box-shadow .3s;
}
.fnode::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(168,85,247,0.4), transparent 50%, rgba(236,72,153,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity .3s;
  pointer-events: none;
}
.fnode:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  box-shadow: 0 30px 60px -20px rgba(168,85,247,0.4);
}
.fnode:hover::before { opacity: 1; }

.fnode-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(168,85,247,0.5));
}
.fnode strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fnode span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   DEMO PHONE
   ========================================================= */
.demo {
  padding: 140px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; gap: 60px; }
}
.demo-text h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.demo-text p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.demo-features {
  display: grid; gap: 12px;
}
.demo-features > div {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-1);
  color: white;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

.phone {
  display: grid; place-items: center;
  perspective: 1500px;
}
.phone-frame {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 48px;
  background: linear-gradient(145deg, #1a0030, #0a0014);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 8px #1a0030,
    0 0 0 9px rgba(255,255,255,0.06),
    0 80px 80px -20px rgba(168,85,247,0.4),
    0 0 100px rgba(236,72,153,0.2);
  transform: rotateY(-12deg) rotateX(6deg);
  transition: transform .8s var(--easing);
}
.phone:hover .phone-frame { transform: rotateY(-4deg) rotateX(2deg); }
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #0d0020, #14002a);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 50px 16px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(168,85,247,0.06);
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-1);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  color: white;
}
.chat-name {
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.online {
  color: var(--green);
  font-size: 8px;
  animation: pulse 2s infinite;
}
.chat-status {
  font-size: 11px;
  color: var(--text-dim);
}
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.chat-body::-webkit-scrollbar { width: 0; }
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation: msgIn .4s var(--easing) forwards;
}
.msg-user {
  align-self: flex-end;
  background: var(--grad-1);
  color: white;
  border-bottom-right-radius: 4px;
}
.msg-bot {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.msg-typing {
  display: flex; gap: 4px;
}
.msg-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing 1.4s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes msgIn {
  to { opacity: 1; transform: translateY(0); }
}
.chat-input {
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.mic { font-size: 16px; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing {
  padding: 140px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  transition: transform .4s var(--easing), border-color .3s;
}
.plan:hover { transform: translateY(-8px); border-color: var(--border-strong); }

.plan-popular {
  background: linear-gradient(180deg, rgba(168,85,247,0.12), rgba(236,72,153,0.06));
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 0 60px rgba(168,85,247,0.15), 0 30px 60px -20px rgba(0,0,0,0.5);
  transform: scale(1.04);
}
.plan-popular:hover { transform: translateY(-8px) scale(1.04); }
@media (max-width: 900px) { .plan-popular { transform: none; } .plan-popular:hover { transform: translateY(-8px); } }

.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--grad-1);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: white;
  box-shadow: 0 0 20px rgba(168,85,247,0.5);
}

.plan-head { margin-bottom: 24px; }
.plan-icon { font-size: 36px; margin-bottom: 12px; }
.plan-head h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.plan-head p { font-size: 14px; color: var(--text-muted); }

.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.plan-price .currency { font-size: 18px; color: var(--text-muted); }
.plan-price .value {
  font-size: 56px; font-weight: 700; line-height: 1;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price .period { font-size: 14px; color: var(--text-dim); margin-left: 4px; }

.plan-features {
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 10px; font-weight: 700;
}
.plan-features li strong { color: var(--text); }

.plans-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 140px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: transform .3s, border-color .3s;
}
.t-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.t-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text);
}
.t-foot {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-1);
  display: grid; place-items: center;
  font-weight: 700; color: white;
}
.t-foot strong { display: block; font-size: 14px; }
.t-foot span { font-size: 12px; color: var(--text-dim); }

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
}
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-content > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.form {
  display: grid; gap: 14px;
  padding: 36px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px);
  text-align: left;
}
.form input,
.form select,
.form textarea {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form input::placeholder,
.form textarea::placeholder { color: var(--text-dim); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--purple);
  background: rgba(168,85,247,0.05);
}
.form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23a855f7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.form textarea { resize: vertical; font-family: inherit; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}
.form-success {
  text-align: center;
  padding: 60px 24px;
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; background: var(--grad-1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.form-success p { color: var(--text-muted); line-height: 1.6; }
.form-fallback {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--grad-1);
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 24px rgba(168,85,247,0.4);
}
.form-fallback:hover { transform: translateY(-1px); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 24px 32px;
  background: rgba(0,0,0,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 48px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.logo-footer { margin-bottom: 16px; }
.footer p { font-size: 14px; color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer h5 {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}
.footer a:hover { color: var(--purple); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* =========================================================
   ANIMAÇÕES DE ENTRADA
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
