/* ═══════════════════════════════════════════════════════════════════════════
   Meu Agendador — Landing Page (meuagendador.com)
   Aurora dark · glassmorphism · animações ricas · zero dependências
   ═══════════════════════════════════════════════════════════════════════════ */

@property --beam-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  /* Paleta aurora */
  --bg: #03060e;
  --bg-2: #060b18;
  --surface: rgba(12, 18, 34, 0.55);
  --surface-2: rgba(17, 25, 46, 0.6);
  --surface-solid: #0a1122;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.24);
  --text: #f2f6fc;
  --text-muted: #93a3bd;
  --text-dim: #5f6f8c;

  --sky: #38bdf8;
  --cyan: #22d3ee;
  --sky-bright: #7dd3fc;
  --violet: #a78bfa;
  --fuchsia: #e879f9;
  --rose: #fb7185;
  --emerald: #34d399;
  --amber: #fbbf24;

  --grad-brand: linear-gradient(100deg, #67e8f9 0%, #818cf8 48%, #e879f9 100%);
  --grad-btn: linear-gradient(135deg, #0ea5e9 0%, #6366f1 52%, #a855f7 100%);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --topbar-h: 42px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.lp-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }

::selection { background: rgba(56, 189, 248, 0.32); color: #fff; }

.lp-container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

/* ═══════════ Barra de progresso de scroll ═══════════ */
.lp-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 3px;
  background: var(--grad-brand);
  background-size: 200% 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.7));
  pointer-events: none;
  animation: progress-hue 6s linear infinite;
}
@keyframes progress-hue {
  to { background-position: 200% 0; }
}

/* ═══════════ Cursor glow (lanterna global) ═══════════ */
.lp-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.075), rgba(168, 85, 247, 0.045) 42%, transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.lp-cursor-glow.is-active { opacity: 1; }

/* ═══════════ Background ═══════════ */
.lp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -14%, rgba(56, 189, 248, 0.15), transparent 62%),
    radial-gradient(ellipse 46% 42% at 94% 40%, rgba(129, 140, 248, 0.1), transparent 58%),
    radial-gradient(ellipse 44% 38% at 2% 80%, rgba(232, 121, 249, 0.07), transparent 52%),
    var(--bg);
}

.lp-bg-grid {
  position: absolute;
  inset: -2% 0 0;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 74% 60% at 50% 20%, black 26%, transparent 76%);
}

.lp-orb-wrap {
  position: absolute;
  will-change: transform;
}
.lp-orb-wrap--1 { top: -16%; left: 6%; }
.lp-orb-wrap--2 { top: 32%; right: -14%; }
.lp-orb-wrap--3 { bottom: -20%; left: 24%; }

.lp-bg-orb {
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: orb-drift 24s ease-in-out infinite alternate;
}
.lp-bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.26), transparent 66%);
}
.lp-bg-orb--2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.2), transparent 66%);
  animation-delay: -9s;
}
.lp-bg-orb--3 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.13), transparent 66%);
  animation-delay: -16s;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -46px) scale(1.14); }
}

.lp-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ═══════════ Ícones (sprite) ═══════════ */
svg[aria-hidden="true"][style*="display"] { position: absolute; }
.lp-svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }
.lp-svg--sm { width: 16px; height: 16px; }
.lp-svg--xs { width: 13px; height: 13px; }

/* ═══════════ Navegação ═══════════ */
.lp-nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: transform 0.5s var(--ease-out), top 0.45s var(--ease-out),
              background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
body.lp-condensed .lp-nav { top: 0; }
.lp-nav.is-scrolled {
  background: rgba(4, 7, 15, 0.68);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border-bottom-color: var(--border);
}
.lp-nav.is-hidden { transform: translateY(-102%); }

.lp-nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.lp-logo-mark {
  display: inline-flex;
  border-radius: 10px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.lp-logo:hover .lp-logo-mark {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 22px rgba(56, 189, 248, 0.35);
}
.lp-logo-mark img { border-radius: 10px; }
.lp-logo-name { font-size: 1.05rem; }

.lp-nav-menu { display: contents; }

.lp-nav-links {
  display: flex;
  gap: 0.35rem;
  margin-inline: auto;
}
.lp-nav-links a {
  position: relative;
  padding: 0.5rem 0.95rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}
.lp-nav-links a:hover { color: var(--text); background: rgba(148, 163, 184, 0.08); }
.lp-nav-links a:hover::after { width: 42%; }

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lp-nav-toggle {
  display: none;
  position: relative;
  z-index: 210;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: rgba(148, 163, 184, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.lp-nav-toggle:hover { border-color: var(--border-strong); background: rgba(148, 163, 184, 0.1); }
.lp-nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease;
}
.lp-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.lp-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ Botões ═══════════ */
.lp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.62rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  border-radius: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease,
              background 0.35s ease, border-color 0.35s ease, color 0.35s ease,
              background-position 0.5s ease;
  will-change: transform;
}
.lp-btn:active { transform: scale(0.96); }

.lp-btn--lg { padding: 0.9rem 1.8rem; font-size: 1rem; border-radius: 15px; }

.lp-btn--primary {
  color: #fff;
  background: var(--grad-btn);
  background-size: 160% 160%;
  background-position: 0% 50%;
  box-shadow: 0 10px 28px rgba(79, 122, 245, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.lp-btn--primary:hover {
  background-position: 90% 50%;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.lp-btn--primary .lp-svg { transition: transform 0.35s var(--ease-spring); }
.lp-btn--primary:hover .lp-svg { transform: translateX(4px); }

/* Brilho que atravessa o botão */
.lp-btn--shine { overflow: hidden; }
.lp-btn--shine::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  width: 34%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.8s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 55% { left: -60%; }
  85%, 100% { left: 135%; }
}

.lp-btn--outline {
  color: var(--text);
  background: rgba(148, 163, 184, 0.05);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.lp-btn--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 12px 30px rgba(2, 8, 20, 0.5), 0 0 0 1px rgba(125, 211, 252, 0.12);
}

.lp-btn--ghost {
  color: var(--text-muted);
  background: transparent;
}
.lp-btn--ghost:hover { color: var(--text); background: rgba(148, 163, 184, 0.09); }

/* ═══════════ Reveal on scroll ═══════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Reveal palavra a palavra (título do hero) */
[data-split] .lp-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding: 0.06em 0.04em 0.12em;
  margin: -0.06em -0.04em -0.12em;
}
[data-split] .lp-word-inner {
  display: inline-block;
  transform: translateY(118%) rotate(5deg);
  transform-origin: 0 100%;
  transition: transform 1s var(--ease-out);
  transition-delay: var(--wd, 0ms);
  will-change: transform;
}
[data-split].is-visible .lp-word-inner { transform: none; }

/* ═══════════ Tipografia de seção ═══════════ */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.34rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-bright);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.1);
}

.lp-gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% auto;
  animation: grad-pan 6s ease-in-out infinite alternate;
}
@keyframes grad-pan {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

.lp-section { padding: 7rem 0; }
.lp-section--alt {
  background: linear-gradient(180deg, transparent, rgba(9, 14, 28, 0.55) 16%, rgba(9, 14, 28, 0.55) 84%, transparent);
}

.lp-section-head {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.lp-section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
}
.lp-section-head p:not(.lp-eyebrow) {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ═══════════ Hero ═══════════ */
.lp-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--topbar-h) + 3.4rem) 0 3rem;
}

.lp-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  width: min(1280px, 100% - 2rem);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 0.42rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sky-bright);
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lp-badge-star { color: var(--fuchsia); }
.lp-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: badge-pulse 2.2s ease-out infinite;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.lp-hero h1 {
  max-width: 20ch;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.lp-hero-lead {
  margin: -1.2rem auto 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.13rem;
  line-height: 1.72;
  text-align: center;
  text-wrap: pretty;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: -0.6rem;
}
.lp-hero-cta--center { justify-content: center; }

.lp-hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: -1.2rem;
  color: var(--text-dim);
  font-size: 0.86rem;
}
.lp-hero-note .lp-svg { color: var(--emerald); flex-shrink: 0; }

/* ── Mockup do app (vídeo com moldura + tilt 3D + chips flutuantes) ── */
.lp-hero-visual {
  width: 100%;
  max-width: 1120px;
}

.lp-demo {
  position: relative;
  width: 100%;
  perspective: 1500px;
}

.lp-demo-glow {
  position: absolute;
  inset: -7% -5%;
  z-index: -1;
  background:
    radial-gradient(ellipse 62% 58% at 50% 52%, rgba(56, 189, 248, 0.2), transparent 70%),
    radial-gradient(ellipse 40% 36% at 78% 20%, rgba(232, 121, 249, 0.12), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
  animation: glow-breathe 7s ease-in-out infinite alternate;
}
@keyframes glow-breathe {
  from { opacity: 0.75; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1.04); }
}

.lp-demo-frame {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  background: #050810;
  box-shadow:
    0 50px 110px rgba(1, 4, 12, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform-style: preserve-3d;
  will-change: transform;
}

.lp-demo-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.85), rgba(10, 16, 30, 0.85));
  border-radius: 22px 22px 0 0;
}

.lp-demo-dots { display: inline-flex; gap: 7px; }
.lp-demo-dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
}
.lp-demo-dots i:nth-child(1) { background: #ff5f57; }
.lp-demo-dots i:nth-child(2) { background: #febc2e; }
.lp-demo-dots i:nth-child(3) { background: #28c840; }

.lp-demo-url {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-inline: auto;
  padding: 0.32rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  background: rgba(3, 6, 14, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
}
.lp-demo-url svg { width: 11px; height: 11px; }

.lp-demo-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--rose);
}
.lp-demo-live i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  animation: badge-pulse 1.6s ease-out infinite;
}

.lp-demo-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050810;
  border-radius: 0 0 22px 22px;
}

/* Chips flutuantes (notificações) ao redor do mockup */
.lp-float {
  position: absolute;
  z-index: 3;
  transform-style: preserve-3d;
}
.lp-float--1 { top: 10%; left: -4%; transform: translateZ(80px); }
.lp-float--2 { top: 38%; right: -4.5%; transform: translateZ(110px); }
.lp-float--3 { bottom: 12%; left: -2.5%; transform: translateZ(60px); }

.lp-float-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.95rem;
  background: rgba(10, 16, 32, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(1, 4, 12, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: float-y 6.5s ease-in-out infinite;
}
.lp-float--2 .lp-float-inner { animation-duration: 7.4s; animation-delay: -2.2s; }
.lp-float--3 .lp-float-inner { animation-duration: 6s; animation-delay: -4s; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.lp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
}
.lp-float-icon .lp-svg { width: 19px; height: 19px; }
.lp-float-icon--sky { color: var(--sky-bright); background: rgba(56, 189, 248, 0.14); border: 1px solid rgba(56, 189, 248, 0.3); }
.lp-float-icon--rose { color: var(--rose); background: rgba(251, 113, 133, 0.14); border: 1px solid rgba(251, 113, 133, 0.3); }
.lp-float-icon--emerald { color: var(--emerald); background: rgba(52, 211, 153, 0.14); border: 1px solid rgba(52, 211, 153, 0.3); }

.lp-float-text { display: flex; flex-direction: column; line-height: 1.3; }
.lp-float-text strong { font-size: 0.82rem; font-weight: 800; letter-spacing: -0.01em; }
.lp-float-text small { font-size: 0.72rem; color: var(--text-muted); }

.lp-float-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  margin-left: 0.2rem;
  color: #041018;
  background: var(--emerald);
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-float-check .lp-svg { width: 13px; height: 13px; stroke-width: 3; }

/* ═══════════ Stats ═══════════ */
.lp-stats-wrap { padding: 1.2rem 0 0; }

.lp-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.1rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.lp-stats::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.5), rgba(232, 121, 249, 0.4), transparent);
}

.lp-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
}
.lp-stat:hover { transform: translateY(-4px); background: rgba(148, 163, 184, 0.05); }

.lp-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 0.35rem;
  border-radius: 12px;
}
.lp-stat-icon .lp-svg { width: 20px; height: 20px; }
.lp-stat-icon--sky { color: var(--sky-bright); background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.26); }
.lp-stat-icon--violet { color: var(--violet); background: rgba(167, 139, 250, 0.12); border: 1px solid rgba(167, 139, 250, 0.26); }
.lp-stat-icon--emerald { color: var(--emerald); background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.26); }
.lp-stat-icon--rose { color: var(--rose); background: rgba(251, 113, 133, 0.12); border: 1px solid rgba(251, 113, 133, 0.26); }

.lp-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ═══════════ Marquee ═══════════ */
.lp-marquee {
  margin: 4.5rem 0 0;
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 14, 28, 0.45);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.lp-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.lp-marquee span {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.lp-marquee:hover span { color: var(--text-muted); }
.lp-marquee-star {
  width: 14px; height: 14px;
  color: rgba(129, 140, 248, 0.6);
  animation: star-spin 5s linear infinite;
}
@keyframes star-spin {
  to { transform: rotate(1turn); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }

/* ═══════════ Bento / Cards ═══════════ */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.lp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  will-change: transform;
}
.lp-card--wide { grid-column: span 2; }
.lp-card--tall { grid-row: span 2; }

/* Spotlight que segue o mouse */
.lp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    440px circle at var(--mx, 50%) var(--my, 50%),
    rgba(125, 211, 252, 0.1),
    transparent 44%
  );
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.lp-card:hover::before { opacity: 1; }
.lp-card:hover {
  border-color: rgba(125, 211, 252, 0.34);
  box-shadow: 0 26px 56px rgba(1, 4, 12, 0.55), 0 0 0 1px rgba(125, 211, 252, 0.06);
}
.lp-card > * { position: relative; z-index: 1; }

/* Feixe de luz percorrendo a borda (cards destaque + CTA) */
.lp-card--beam::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0%,
    transparent 68%,
    rgba(125, 211, 252, 0.9) 80%,
    rgba(232, 121, 249, 0.9) 88%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: beam-rotate 5.5s linear infinite;
  pointer-events: none;
}
@keyframes beam-rotate {
  to { --beam-angle: 360deg; }
}

.lp-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.lp-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.66;
}

.lp-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  margin-bottom: 0.45rem;
  border-radius: 15px;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
}
.lp-card:hover .lp-card-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 26px rgba(1, 4, 12, 0.4);
}
.lp-card-icon .lp-svg { width: 25px; height: 25px; }

.lp-card-icon--sky { color: var(--sky-bright); background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.28); }
.lp-card-icon--violet { color: var(--violet); background: rgba(167, 139, 250, 0.12); border: 1px solid rgba(167, 139, 250, 0.28); }
.lp-card-icon--rose { color: var(--rose); background: rgba(251, 113, 133, 0.12); border: 1px solid rgba(251, 113, 133, 0.28); }
.lp-card-icon--emerald { color: var(--emerald); background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.28); }
.lp-card-icon--amber { color: var(--amber); background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.28); }

/* Visual: timeline animada (agendamento) */
.lp-card-visual--timeline {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.lp-tl-row {
  height: 12px;
  background: rgba(148, 163, 184, 0.07);
  border-radius: 7px;
  overflow: hidden;
}
.lp-tl-row i {
  position: relative;
  display: block;
  width: var(--w, 60%);
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.75), rgba(56, 189, 248, 0.22));
  transform: translateX(-103%);
  transition: transform 1.2s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.lp-tl-row i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: tl-shimmer 2.6s ease-in-out infinite;
  animation-delay: calc(var(--d, 0s) + 1.2s);
}
@keyframes tl-shimmer {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}
.lp-tl-row i.is-violet { background: linear-gradient(90deg, rgba(167, 139, 250, 0.75), rgba(167, 139, 250, 0.22)); }
.lp-tl-row i.is-fuchsia { background: linear-gradient(90deg, rgba(232, 121, 249, 0.75), rgba(232, 121, 249, 0.22)); }
.lp-card.is-visible .lp-tl-row i { transform: translateX(0); }

/* Visual: crop 16:9 → 9:16 (Clipper) */
.lp-card-visual--crop {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
}
.lp-crop-wide {
  position: relative;
  width: 118px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(251, 113, 133, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(rgba(251, 113, 133, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 113, 133, 0.06) 1px, transparent 1px),
    rgba(251, 113, 133, 0.04);
  background-size: 12px 12px;
  overflow: hidden;
}
.lp-crop-scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--rose), transparent);
  box-shadow: 0 0 12px rgba(251, 113, 133, 0.8);
  animation: crop-scan 2.4s var(--ease-out) infinite;
}
@keyframes crop-scan {
  0% { left: 8%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}
.lp-crop-arrow {
  width: 18px; height: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
  animation: arrow-nudge 2.4s var(--ease-out) infinite;
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}
.lp-crop-tall {
  width: 46px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  border: 1px solid rgba(251, 113, 133, 0.45);
  background: linear-gradient(160deg, rgba(251, 113, 133, 0.3), rgba(167, 139, 250, 0.22) 55%, rgba(56, 189, 248, 0.18));
  background-size: 200% 200%;
  box-shadow: 0 8px 22px rgba(251, 113, 133, 0.22);
  animation: tall-shine 4s ease-in-out infinite alternate;
}
@keyframes tall-shine {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

/* Visual: mini chat (auto-reply) */
.lp-card-visual--chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.lp-chat-bubble {
  max-width: 86%;
  padding: 0.5rem 0.8rem;
  font-size: 0.78rem;
  line-height: 1.45;
  border-radius: 13px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.lp-chat-bubble--in {
  align-self: flex-start;
  color: var(--text-muted);
  background: rgba(148, 163, 184, 0.09);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom-left-radius: 4px;
}
.lp-chat-bubble--out {
  align-self: flex-end;
  color: #d1f7e7;
  background: rgba(52, 211, 153, 0.13);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-bottom-right-radius: 4px;
  transition-delay: 0.45s;
}
.lp-card.is-visible .lp-chat-bubble { opacity: 1; transform: none; }

/* Visual: radar (Trend Radar) */
.lp-card-visual--radar {
  position: relative;
  flex: 1;
  min-height: 160px;
  margin-top: 0.7rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.05), transparent 68%);
}
.lp-radar-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.lp-radar-ring--2 { width: 100%; border-color: rgba(251, 191, 36, 0.12); }
.lp-radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(251, 191, 36, 0.3), transparent 24%);
  transform: translate(-50%, -50%);
  animation: radar-spin 4.5s linear infinite;
}
@keyframes radar-spin {
  to { transform: translate(-50%, -50%) rotate(1turn); }
}
.lp-radar-dot {
  position: absolute;
  top: var(--y); left: var(--x);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  animation: radar-blip 2.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes radar-blip {
  0%, 100% { opacity: 0.35; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Visual: barras (Analytics) */
.lp-card-visual--bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 74px;
  margin-top: 0.9rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.14);
}
.lp-card-visual--bars i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.85), rgba(56, 189, 248, 0.15));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.lp-card-visual--bars i:nth-child(4) {
  background: linear-gradient(180deg, rgba(232, 121, 249, 0.85), rgba(232, 121, 249, 0.15));
}
.lp-card.is-visible .lp-card-visual--bars i { transform: scaleY(1); }

/* Visual: pilha de mídia (Biblioteca) */
.lp-card-visual--stack {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.9rem;
  overflow: hidden;
}
.lp-stack-thumb {
  position: relative;
  width: 64px;
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(167, 139, 250, 0.3);
  background:
    linear-gradient(150deg, rgba(167, 139, 250, 0.26), rgba(56, 189, 248, 0.16) 55%, rgba(232, 121, 249, 0.14)),
    var(--surface-solid);
  box-shadow: 0 12px 28px rgba(1, 4, 12, 0.45);
  animation: stack-wave 4.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
}
.lp-stack-thumb::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(3, 6, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
}
@keyframes stack-wave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(-1.5deg); }
}

/* ═══════════ Passos ═══════════ */
.lp-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.lp-steps::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.35) 16%, rgba(232, 121, 249, 0.3) 84%, transparent);
  background-size: 200% 100%;
  animation: steps-flow 5s linear infinite;
}
@keyframes steps-flow {
  from { background-position: 0% 0; }
  to { background-position: -200% 0; }
}

.lp-step {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.45s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}
.lp-step:hover {
  transform: translateY(-7px);
  border-color: rgba(125, 211, 252, 0.34);
  box-shadow: 0 24px 52px rgba(1, 4, 12, 0.55);
}

.lp-step-num {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  font-family: var(--mono);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.15);
  transition: all 0.4s ease;
}
.lp-step:hover .lp-step-num {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  margin-bottom: 1.05rem;
  color: var(--sky-bright);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 14px;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
}
.lp-step:hover .lp-step-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 28px rgba(56, 189, 248, 0.25);
}

.lp-step h3 {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lp-step p { color: var(--text-muted); font-size: 0.89rem; line-height: 1.62; }

/* ═══════════ CTA ═══════════ */
.lp-cta {
  position: relative;
  padding: 5rem 2.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 72% 105% at 50% 0%, rgba(56, 189, 248, 0.13), transparent 66%),
    radial-gradient(ellipse 50% 70% at 85% 100%, rgba(232, 121, 249, 0.08), transparent 60%),
    var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  overflow: hidden;
}
.lp-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.lp-cta > p:not(.lp-cta-kicker) {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.06rem;
}
.lp-cta .lp-hero-cta { margin-top: 2.2rem; }

.lp-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.36rem 0.95rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fuchsia);
  background: rgba(232, 121, 249, 0.08);
  border: 1px solid rgba(232, 121, 249, 0.24);
  border-radius: 999px;
}

.lp-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  animation: orb-drift 17s ease-in-out infinite alternate;
}
.lp-cta-orb--1 {
  top: -42%; left: -6%;
  width: 320px; height: 320px;
  background: rgba(56, 189, 248, 0.18);
}
.lp-cta-orb--2 {
  bottom: -48%; right: -4%;
  width: 360px; height: 360px;
  background: rgba(168, 85, 247, 0.16);
  animation-delay: -8s;
}

/* ═══════════ FAQ ═══════════ */
.lp-faq-wrap { max-width: 800px; }

.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.lp-faq-item:hover { border-color: rgba(148, 163, 184, 0.24); }
.lp-faq-item.is-open {
  border-color: rgba(125, 211, 252, 0.36);
  background: var(--surface-2);
  box-shadow: 0 16px 40px rgba(1, 4, 12, 0.4);
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem 1.45rem;
  text-align: left;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}
.lp-faq-q:hover { color: var(--sky-bright); }

.lp-faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.07);
  transition: transform 0.4s var(--ease-out), background 0.3s ease, border-color 0.3s ease;
}
.lp-faq-plus::before,
.lp-faq-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2px;
  background: var(--sky-bright);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.lp-faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.lp-faq-item.is-open .lp-faq-plus {
  transform: rotate(180deg);
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(125, 211, 252, 0.55);
}
.lp-faq-item.is-open .lp-faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); }

/* Animação de altura via grid */
.lp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.lp-faq-a > div { overflow: hidden; }
.lp-faq-a p {
  padding: 0 1.45rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.72;
}
.lp-faq-item.is-open .lp-faq-a { grid-template-rows: 1fr; }

/* ═══════════ Footer ═══════════ */
.lp-footer {
  position: relative;
  margin-top: 3.5rem;
  background: rgba(4, 7, 15, 0.65);
}
.lp-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.45), rgba(232, 121, 249, 0.35), transparent);
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.8rem 0 2.6rem;
}

.lp-footer-brand p {
  margin-top: 1rem;
  max-width: 26rem;
  color: var(--text-dim);
  font-size: 0.89rem;
  line-height: 1.65;
}

.lp-footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-footer-col h4 {
  margin-bottom: 0.45rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lp-footer-col a {
  width: fit-content;
  color: var(--text-muted);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}
.lp-footer-col a:hover { color: var(--sky-bright); transform: translateX(4px); }

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
}
.lp-footer-bottom p {
  color: var(--text-dim);
  font-size: 0.83rem;
}
.lp-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-dim);
}
.lp-footer-tag .lp-svg { color: var(--emerald); }

/* ═══════════ Responsivo ═══════════ */
@media (max-width: 1200px) {
  .lp-float { display: none; }
}

@media (max-width: 1024px) {
  .lp-hero-stack { gap: 2.6rem; }
  .lp-bento { grid-template-columns: repeat(2, 1fr); }
  .lp-card--tall { grid-row: auto; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-steps::before { display: none; }
}

@media (max-width: 860px) {
  /* Menu mobile fullscreen */
  .lp-nav-menu {
    position: fixed;
    inset: 0;
    z-index: 205;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    padding: 2rem;
    background:
      radial-gradient(ellipse 80% 50% at 50% -10%, rgba(56, 189, 248, 0.14), transparent 60%),
      rgba(4, 7, 15, 0.92);
    backdrop-filter: blur(26px) saturate(150%);
    -webkit-backdrop-filter: blur(26px) saturate(150%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease-out), visibility 0.45s;
  }
  .lp-nav-menu.is-open { opacity: 1; visibility: visible; }

  .lp-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
  }
  .lp-nav-links a {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 0.6rem 1rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s ease, background 0.25s ease;
  }
  .lp-nav-links a::after { display: none; }
  .lp-nav-menu.is-open .lp-nav-links a { opacity: 1; transform: none; }
  .lp-nav-menu.is-open .lp-nav-links a:nth-child(1) { transition-delay: 0.08s; }
  .lp-nav-menu.is-open .lp-nav-links a:nth-child(2) { transition-delay: 0.16s; }
  .lp-nav-menu.is-open .lp-nav-links a:nth-child(3) { transition-delay: 0.24s; }
  .lp-nav-menu.is-open .lp-nav-links a:nth-child(4) { transition-delay: 0.32s; }

  .lp-nav-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: min(320px, 100%);
    margin-inline: auto;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s var(--ease-out) 0.32s, transform 0.5s var(--ease-out) 0.32s;
  }
  .lp-nav-menu.is-open .lp-nav-actions { opacity: 1; transform: none; }
  .lp-nav-actions .lp-btn { width: 100%; padding-block: 0.85rem; }

  .lp-nav-toggle { display: flex; margin-left: auto; }
  .lp-logo-name { display: none; }
}

@media (max-width: 720px) {
  .lp-section { padding: 4.8rem 0; }
  .lp-hero { padding-top: calc(var(--nav-h) + var(--topbar-h) + 2.2rem); }
  .lp-hero-stack { width: min(1280px, 100% - 1.25rem); gap: 2.1rem; }
  .lp-hero-lead { font-size: 1.02rem; }
  .lp-hero-cta .lp-btn { width: 100%; }

  .lp-demo-frame { border-radius: 16px; }
  .lp-demo-bar { border-radius: 16px 16px 0 0; padding: 0.55rem 0.75rem; }
  .lp-demo-url { font-size: 0.62rem; padding: 0.26rem 0.7rem; }
  .lp-demo-live { display: none; }
  .lp-demo-video { border-radius: 0 0 16px 16px; }

  .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; padding: 1.4rem 1rem; }
  .lp-bento { grid-template-columns: 1fr; }
  .lp-card--wide { grid-column: auto; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-cta { padding: 3.4rem 1.4rem; border-radius: 24px; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .lp-footer-bottom { justify-content: center; text-align: center; }
}

/* ═══════════ Topbar: oferta de lançamento ═══════════ */
.lp-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 195;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--topbar-h);
  padding: 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fde8d7;
  text-decoration: none;
  background:
    linear-gradient(90deg, rgba(251, 113, 133, 0.16), rgba(251, 191, 36, 0.12) 50%, rgba(232, 121, 249, 0.14)),
    rgba(10, 8, 16, 0.92);
  border-bottom: 1px solid rgba(251, 146, 60, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out), opacity 0.3s ease;
  overflow: hidden;
}
.lp-topbar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 30%;
  left: -40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 4.6s ease-in-out infinite;
  pointer-events: none;
}
body.lp-condensed .lp-topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.lp-topbar-flame {
  display: inline-flex;
  color: #fb923c;
  animation: flame-flicker 1.6s ease-in-out infinite;
}
@keyframes flame-flicker {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(251, 146, 60, 0.55)); }
  50% { transform: scale(1.16) rotate(-3deg); filter: drop-shadow(0 0 9px rgba(251, 146, 60, 0.85)); }
}
.lp-topbar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(253, 232, 215, 0.86);
}
.lp-topbar-text strong { color: #fdba74; font-weight: 800; }
.lp-topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.22rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffedd5;
  background: rgba(251, 146, 60, 0.16);
  border: 1px solid rgba(251, 146, 60, 0.4);
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.lp-topbar:hover .lp-topbar-cta {
  background: rgba(251, 146, 60, 0.28);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(251, 146, 60, 0.3);
}

/* ═══════════ Hero: prova social ═══════════ */
.lp-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: -1.4rem;
}
.lp-proof-avatars { display: inline-flex; }
.lp-proof-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-left: -9px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--a, linear-gradient(135deg, #38bdf8, #6366f1));
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(1, 4, 12, 0.5);
  transition: transform 0.3s var(--ease-spring);
}
.lp-proof-avatar:first-child { margin-left: 0; }
.lp-proof:hover .lp-proof-avatar { transform: translateY(-3px); }
.lp-proof:hover .lp-proof-avatar:nth-child(2) { transition-delay: 0.04s; }
.lp-proof:hover .lp-proof-avatar:nth-child(3) { transition-delay: 0.08s; }
.lp-proof:hover .lp-proof-avatar:nth-child(4) { transition-delay: 0.12s; }
.lp-proof:hover .lp-proof-avatar:nth-child(5) { transition-delay: 0.16s; }
.lp-proof-avatar--plus {
  background: rgba(148, 163, 184, 0.18);
  border-color: rgba(148, 163, 184, 0.3);
  color: var(--text-muted);
}
.lp-proof-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}
.lp-proof-stars { display: inline-flex; gap: 2px; }
.lp-proof-stars .lp-svg {
  width: 14px; height: 14px;
  fill: var(--amber);
  stroke: var(--amber);
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.45));
}

/* ═══════════ Seção IA proprietária ═══════════ */
.lp-ai {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 3.4rem;
  align-items: center;
}
.lp-ai-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
}
.lp-ai-lead {
  margin-top: 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}
.lp-ai-lead strong, .lp-hero-lead strong { color: var(--text); font-weight: 700; }

.lp-ai-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}
.lp-ai-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.lp-ai-points li:hover {
  transform: translateX(6px);
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: 0 14px 34px rgba(1, 4, 12, 0.45);
}
.lp-ai-points strong { color: var(--text); }
.lp-ai-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
}
.lp-ai-point-icon .lp-svg { width: 20px; height: 20px; }
.lp-ai-point-icon--rose { color: var(--rose); background: rgba(251, 113, 133, 0.12); border: 1px solid rgba(251, 113, 133, 0.28); }
.lp-ai-point-icon--amber { color: var(--amber); background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.28); }
.lp-ai-point-icon--violet { color: var(--violet); background: rgba(167, 139, 250, 0.12); border: 1px solid rgba(167, 139, 250, 0.28); }

.lp-ai-cta { margin-top: 1.9rem; }

/* Laboratório da IA (visual) */
.lp-ai-lab {
  position: relative;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 60%),
    var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(1, 4, 12, 0.6);
  overflow: hidden;
}

.lp-ai-lab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.lp-ai-lab-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}
.lp-ai-lab-title .lp-svg { color: var(--sky-bright); }
.lp-ai-lab-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--emerald);
}
.lp-ai-lab-live i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: badge-pulse 1.6s ease-out infinite;
}

/* Filmstrip com scanner */
.lp-ai-strip {
  position: relative;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem;
  background: rgba(3, 6, 14, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-ai-frame {
  position: relative;
  flex: 1;
  aspect-ratio: 10 / 14;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(155deg, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.22) 55%, rgba(3, 6, 14, 0.3)),
    var(--surface-solid);
  filter: hue-rotate(calc(var(--f, 0) * 26deg)) saturate(0.85);
  opacity: 0.72;
  transition: opacity 0.4s ease;
}
.lp-ai-frame::after {
  content: "";
  position: absolute;
  left: 14%; right: 14%;
  bottom: 12%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
}
.lp-ai-frame--hot {
  opacity: 1;
  filter: none;
  border-color: rgba(251, 113, 133, 0.65);
  box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.35), 0 8px 26px rgba(251, 113, 133, 0.28);
  animation: hot-pulse 2.8s ease-in-out infinite;
}
.lp-ai-frame--hot2 {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.32), 0 8px 26px rgba(251, 191, 36, 0.24);
  animation-delay: -1.4s;
}
@keyframes hot-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.lp-ai-score {
  position: absolute;
  top: -8px; right: -6px;
  z-index: 2;
  padding: 0.14rem 0.42rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  font-style: normal;
  color: #051018;
  background: linear-gradient(135deg, #fda4af, #fb7185);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(251, 113, 133, 0.5);
}
.lp-ai-frame--hot2 .lp-ai-score {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.5);
}
.lp-ai-scan {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--sky-bright), transparent);
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.9), 0 0 44px rgba(56, 189, 248, 0.5);
  animation: ai-scan 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes ai-scan {
  0% { left: 2%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 97%; opacity: 0; }
}

/* Gauge + log */
.lp-ai-lab-body {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1.3rem;
}
.lp-ai-gauge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px; height: 132px;
  flex-shrink: 0;
}
.lp-ai-gauge-svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.lp-ai-gauge-track,
.lp-ai-gauge-ring {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}
.lp-ai-gauge-track { stroke: rgba(148, 163, 184, 0.12); }
.lp-ai-gauge-ring {
  stroke: var(--sky-bright);
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  filter: drop-shadow(0 0 8px rgba(125, 211, 252, 0.55));
  transition: stroke-dashoffset 1.8s var(--ease-out) 0.3s;
}
.lp-ai-visual.is-visible .lp-ai-gauge-ring { stroke-dashoffset: 3.3; }
.lp-ai-gauge-value {
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-ai-gauge-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.lp-ai-log {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-ai-log li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: calc(var(--l, 0) * 0.3s + 0.5s);
}
.lp-ai-visual.is-visible .lp-ai-log li { opacity: 1; transform: none; }
.lp-ai-log b {
  margin-left: auto;
  font-weight: 600;
  color: var(--text);
}
.lp-is-rose { color: var(--rose); }
.lp-is-amber { color: var(--amber); }
.lp-is-violet { color: var(--violet); }
.lp-is-emerald { color: var(--emerald); }

/* ═══════════ Comparação: antes × depois ═══════════ */
.lp-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}
.lp-compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.9rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.lp-compare-card--before {
  background: rgba(10, 14, 26, 0.5);
  border: 1px dashed rgba(148, 163, 184, 0.22);
}
.lp-compare-card--after {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(52, 211, 153, 0.07), transparent 60%),
    var(--surface-solid);
  border: 1px solid rgba(52, 211, 153, 0.22);
  box-shadow: 0 30px 70px rgba(1, 4, 12, 0.55);
}
.lp-compare-card h3 { display: flex; }
.lp-compare-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.lp-compare-tag--before {
  color: var(--text-dim);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.lp-compare-tag--after {
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.32);
  box-shadow: 0 0 22px rgba(52, 211, 153, 0.14);
}
.lp-compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.lp-compare-card--after li { color: var(--text); }
.lp-compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  margin-top: 0.05rem;
  border-radius: 50%;
}
.lp-compare-icon .lp-svg { width: 14px; height: 14px; stroke-width: 2.6; }
.lp-compare-icon--x {
  color: var(--rose);
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.26);
}
.lp-compare-icon--check {
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.32);
}
.lp-compare-result {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.24);
  border-radius: var(--radius);
}
.lp-compare-result .lp-svg { color: var(--emerald); flex-shrink: 0; }
.lp-compare-result strong { color: var(--emerald); }

/* ═══════════ Depoimentos ═══════════ */
.lp-testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.lp-testi {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}
.lp-testi:hover {
  transform: translateY(-7px);
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: 0 26px 56px rgba(1, 4, 12, 0.55);
}
.lp-testi--featured {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(129, 140, 248, 0.1), transparent 62%),
    var(--surface-2);
  border-color: rgba(129, 140, 248, 0.32);
}
.lp-testi-quote {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  color: rgba(129, 140, 248, 0.2);
}
.lp-testi-quote .lp-svg { width: 34px; height: 34px; fill: currentColor; stroke: none; }
.lp-testi-stars { display: inline-flex; gap: 3px; }
.lp-testi-stars .lp-svg {
  width: 15px; height: 15px;
  fill: var(--amber);
  stroke: var(--amber);
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.4));
}
.lp-testi blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.lp-testi--featured blockquote { color: var(--text); }
.lp-testi figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.6rem;
}
.lp-testi-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  background: var(--a);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(1, 4, 12, 0.5);
}
.lp-testi figcaption span { display: flex; flex-direction: column; line-height: 1.35; }
.lp-testi figcaption strong { font-size: 0.9rem; }
.lp-testi figcaption small { font-size: 0.76rem; color: var(--text-dim); }

/* ═══════════ CTA: urgência + garantias ═══════════ */
.lp-cta-kicker--fire {
  color: #fdba74;
  background: rgba(251, 146, 60, 0.09);
  border-color: rgba(251, 146, 60, 0.32);
  box-shadow: 0 0 26px rgba(251, 146, 60, 0.14);
}
.lp-cta-kicker--fire .lp-svg { animation: flame-flicker 1.6s ease-in-out infinite; }

.lp-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}
.lp-guarantee li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}
.lp-guarantee .lp-svg { color: var(--emerald); flex-shrink: 0; }

/* ═══════════ Responsivo: novas seções ═══════════ */
@media (max-width: 1024px) {
  .lp-ai { grid-template-columns: 1fr; gap: 2.6rem; }
  .lp-ai-copy { text-align: center; }
  .lp-ai-points li { text-align: left; }
  .lp-ai-visual { max-width: 620px; margin-inline: auto; width: 100%; }
}

@media (max-width: 720px) {
  .lp-topbar { font-size: 0.74rem; gap: 0.45rem; }
  .lp-topbar-cta { font-size: 0.68rem; padding: 0.18rem 0.6rem; }
  .lp-proof { flex-direction: column; gap: 0.6rem; text-align: center; }
  .lp-proof-copy { align-items: center; }
  .lp-ai-lab { padding: 1.1rem; }
  .lp-ai-lab-body { flex-direction: column; gap: 1.2rem; }
  .lp-ai-log { width: 100%; }
  .lp-compare-card { padding: 1.4rem; }
  .lp-testi { padding: 1.4rem; }
  .lp-guarantee { flex-direction: column; gap: 0.7rem; }
}

@media (max-width: 460px) {
  .lp-topbar-text strong { display: none; }
}

/* ═══════════ Acessibilidade: reduced motion ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  [data-split] .lp-word-inner { transform: none; }
  .lp-tl-row i { transform: none; }
  .lp-chat-bubble { opacity: 1; transform: none; }
  .lp-card-visual--bars i { transform: none; }
  .lp-cursor-glow { display: none; }
  .lp-ai-log li { opacity: 1; transform: none; }
  .lp-ai-gauge-ring { stroke-dashoffset: 3.3; }
  .lp-ai-scan { display: none; }
}
