/* =====================================================================
   VÉRTICE DIGITAL — Criação de sites em Goiatuba-GO
   Identidade: preto profundo + vermelho (o mesmo #e10600 do Beicão),
   letras brancas, títulos pesados em caixa alta, cards 18px,
   sombras profundas, CTA de WhatsApp em pílula.
   Para mudar a cor da marca, altere só os tokens --accent* e --grad*.
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  --bg: #070707;
  --bg-2: #0d0d0d;
  --bg-3: #111111;
  --card: #121212;
  --card-2: #171717;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);

  --white: #ffffff;
  --cream: #fff0bf;
  --muted: #b3b3b3;
  --muted-2: #e4e4e4;

  --accent: #e10600;         /* vermelho principal (Beicão) */
  --accent-2: #ff4d4d;       /* vermelho claro: ícones e textos pequenos sobre preto */
  --accent-deep: #a30000;    /* vermelho profundo: fim dos gradientes */
  --red: #e10600;
  --gold: #ffb800;           /* só para estrelas de avaliação */
  --green: #22c55e;
  --wa: #25d366;
  --warn: #ffb020;           /* erros de formulário (para não confundir com a marca) */

  --grad: linear-gradient(135deg, #ff2e2e 0%, #d90000 55%, #a30000 100%);
  --grad-text: linear-gradient(135deg, #ff6a6a 0%, #ff2222 50%, #d10000 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 77, 77, 0.16), rgba(163, 0, 0, 0.1));
  --glow: 0 0 0 1px rgba(255, 59, 48, 0.45), 0 0 32px rgba(225, 6, 0, 0.3), 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --display: "Sora", "Poppins", "Segoe UI", sans-serif;
  --sans: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;

  /* Barra de rolagem, <select> e controles nativos em tom escuro (Windows mostrava barra branca) */
  color-scheme: dark;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: #2a2a2a var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: 1.1; }
p { margin: 0; }
figure { margin: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

.icon {
  width: 1.2em; height: 1.2em;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.section { padding-block: clamp(80px, 10vw, 140px); position: relative; }
/* Seções fora da tela não são renderizadas até chegarem perto (rolagem mais leve em páginas longas) */
.about, .services, .compare, .models, .stats, .process, .pricing, .subscription, .faq, .cta, .footer { content-visibility: auto; contain-intrinsic-size: auto 900px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  padding: 10px 16px; background: var(--accent); color: #fff; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { top: 16px; }
.hp { position: absolute; left: -9999px; }
[hidden] { display: none !important; }

/* ---------- 3. TIPOGRAFIA ---------- */
.h1, .hero-title {
  font-size: clamp(2.2rem, 3.2vw + 1.2rem, 4.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h3 { font-size: 1.25rem; font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
.lead { font-size: 1.12rem; color: var(--muted-2); max-width: 60ch; }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.h2 { text-wrap: balance; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .lead { margin-top: 4px; }
.section-head--row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.section-head--row .h2 { margin-bottom: 0; }
.section-head--center { text-align: center; margin-inline: auto; max-width: 820px; }
.section-head--center .lead { margin-inline: auto; }
.eyebrow .icon { width: 1.1em; height: 1.1em; }

/* ---------- 4. BOTÕES / LINKS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn.magnetic:hover { transform: none; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.25);
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}
.btn-primary:hover { box-shadow: var(--glow); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--accent-2); background: rgba(255, 59, 48, 0.08); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-xl { padding: 20px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  color: var(--accent-2);
}
.link-arrow .icon { transition: transform 0.3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- 5. GLASS / CARDS ---------- */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 59, 48, 0.14), transparent 45%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }

/* ---------- 6. ANIMAÇÕES BASE ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(6%, -8%) scale(1.1); }
  66% { transform: translate(-5%, 6%) scale(0.95); }
}
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes shine { 0% { transform: translateX(-150%) skewX(-20deg); } 100% { transform: translateX(250%) skewX(-20deg); } }
@keyframes buildIn { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes popIn {
  0% { opacity: 0; transform: translateY(16px) scale(0.92); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); } 100% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.25); } 30% { transform: scale(1); } }

/* ---------- 6b. INTRO (notebook abre → zoom → site) ---------- */
.intro { position: fixed; inset: 0; z-index: 500; background: #000; display: none; overflow: hidden; }
body.intro-running .intro, body.intro-leaving .intro { display: block; }
body.intro-running { overflow: hidden; }
.intro-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform-origin: var(--fx, 46%) var(--fy, 30%); /* ponto da tela do notebook no quadro */
  transform: scale(1.02);
}
.intro.is-leaving { pointer-events: none; }
.intro.is-leaving .intro-video { transition: transform 1.15s cubic-bezier(0.7, 0, 0.25, 1), opacity 0.85s ease 0.3s; transform: scale(2.6); opacity: 0; }
.intro-skip {
  position: absolute; right: 22px; bottom: 22px; z-index: 2;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35); background: rgba(0, 0, 0, 0.45); color: #fff;
  font-family: var(--display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; animation: fadeUp 0.6s var(--ease) 1.2s forwards;
}
.intro-skip:hover { border-color: var(--accent-2); color: var(--accent-2); }
/* Enquanto a intro roda, as animações do hero ficam presas no início; disparam quando ela sai */
body.intro-running .hero-anim, body.intro-running .mock-body *, body.intro-running .float-card, body.intro-running .float-card *, body.intro-running .mock-cursor, body.intro-running .mock-cursor * { animation-play-state: paused !important; }
body.intro-leaving .hero-inner { animation: siteEnter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes siteEnter { from { transform: scale(1.08); opacity: 0.4; } to { transform: none; opacity: 1; } }

/* ---------- 7. PROGRESSO / HEADER ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--grad);
  transform-origin: left; transform: scaleX(var(--p, 0));
}
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: height 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  height: 64px;
  background: rgba(7, 7, 7, 0.84);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-color: var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; filter: drop-shadow(0 4px 10px rgba(225, 6, 0, 0.35)); transition: transform 0.45s var(--ease-bounce), filter 0.4s; }
.logo-mark svg { width: 38px; height: 38px; overflow: visible; }
.logo:hover .logo-mark { transform: translateY(-2px) rotate(-4deg) scale(1.06); filter: drop-shadow(0 6px 16px rgba(255, 46, 46, 0.6)); }
.logo-text { display: inline-block; white-space: nowrap; line-height: 1; }
.logo-text b { color: var(--accent-2); font-weight: 800; transition: text-shadow 0.4s; }
.logo:hover .logo-text b { text-shadow: 0 0 18px rgba(255, 77, 77, 0.6); }
.logo-tag { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-family: var(--sans); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted-2); }
.logo-tag::before, .logo-tag::after { content: ""; flex: 1; height: 1.5px; background: var(--accent); min-width: 14px; }
.logo--footer .logo-mark { width: 46px; height: 46px; }
.logo--footer .logo-mark svg { width: 46px; height: 46px; }
.mock-v { width: 13px; height: 13px; flex-shrink: 0; }
.nav { display: flex; gap: 6px; }
.nav a {
  position: relative;
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--display); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.3s, background 0.3s;
}
.nav a:hover, .nav a.is-active { color: var(--white); background: rgba(255, 255, 255, 0.05); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px; width: 14px; height: 2px;
  background: var(--accent-2); border-radius: 2px; transform: translateX(-50%);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04);
  place-items: center;
}
.burger .icon { width: 22px; height: 22px; }
.burger .icon-x { display: none; }
.burger[aria-expanded="true"] .icon-menu { display: none; }
.burger[aria-expanded="true"] .icon-x { display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px;
  background: rgba(7, 7, 7, 0.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu nav a, .mobile-menu .btn {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--i) * 45ms + 80ms);
}
.mobile-menu.is-open nav a, .mobile-menu.is-open .btn { opacity: 1; transform: none; }
.mobile-menu nav a {
  font-family: var(--display); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.01em; padding: 6px 16px;
}
.mobile-menu nav a:hover { color: var(--accent-2); }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
  /* --sy = pixels rolados dentro do hero, --hp = progresso 0→1 (definidos no main.js) */
  --sy: 0; --hp: 0;
}
/* Parallax: usa `translate`, que se soma às animações de `transform` sem brigar com elas */
.hero .blob-1 { translate: 0 calc(var(--sy) * 0.22px); }
.hero .blob-2 { translate: 0 calc(var(--sy) * -0.18px); }
.hero-visual { translate: 0 calc(var(--sy) * 0.1px); }
.hero-copy { translate: 0 calc(var(--sy) * 0.05px); opacity: calc(1 - var(--hp) * 0.6); }
.hero-bg, .cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
/* Campo 3D (WebGL): o canvas fica atrás de tudo; a sombra garante leitura do texto à esquerda */
#hero-3d { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.hero-shade { position: absolute; inset: 0; display: none; background:
  linear-gradient(90deg, rgba(7, 7, 7, 0.93) 0%, rgba(7, 7, 7, 0.78) 34%, rgba(7, 7, 7, 0.28) 62%, rgba(7, 7, 7, 0.5) 100%),
  linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, transparent 28%, transparent 70%, var(--bg) 100%),
  radial-gradient(ellipse 34% 40% at 64% 48%, rgba(255, 40, 30, 0.22), transparent 70%); }
.hero.has-3d #hero-3d, .hero.has-3d .hero-shade { display: block; }
.hero.has-3d .blob, .hero.has-3d .grid-overlay, .hero.has-3d .beams { display: none; }
.hero.has-3d .noise { opacity: 0.05; mix-blend-mode: normal; } /* blend "overlay" sobre canvas animado custa caro por quadro */
.blob { position: absolute; border-radius: 50%; will-change: transform; animation: blobMove 22s ease-in-out infinite; }
.blob-1 {
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  top: -25%; right: -15%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 59, 48, 0.22), transparent 60%);
}
.blob-2 {
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  bottom: -20%; left: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(163, 0, 0, 0.18), transparent 60%);
  animation-delay: -8s; animation-duration: 26s;
}
.blob-3 {
  width: 30vw; height: 30vw; max-width: 420px; max-height: 420px;
  top: 30%; left: 35%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 77, 0.1), transparent 60%);
  animation-delay: -15s; animation-duration: 18s;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.noise {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: clamp(32px, 5vw, 72px);
}
.hero-anim { opacity: 0; transform: translateY(26px); animation: heroIn 1s var(--ease) forwards; animation-delay: calc(var(--d) * 95ms + 120ms); }
.no-js .hero-anim { opacity: 1; transform: none; animation: none; }
.badge-live {
  display: flex; width: fit-content; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 26px;
}
.badge-live .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: pulseDot 2s infinite; }
.badge-live.is-online { border-color: rgba(34, 197, 94, 0.45); background: rgba(34, 197, 94, 0.06); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero-title .line-inner { display: inline-block; }
.hero-title .line-inner.hero-anim { transform: translateY(110%); }

/* Palavra que troca na última linha do título */
.hero-title .line-inner.swap { display: inline-grid; }
.swap-word { grid-area: 1 / 1; display: block; white-space: nowrap; opacity: 0; transform: translateY(105%); transition: transform 0.7s var(--ease), opacity 0.5s var(--ease); }
.swap-word.is-active { opacity: 1; transform: none; }
.swap-word.is-leaving { opacity: 0; transform: translateY(-105%); }

/* Feixes de luz atravessando o fundo */
.beams { position: absolute; inset: 0; overflow: hidden; }
.beams i { position: absolute; top: -20%; bottom: -20%; left: 0; width: 18%; background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.13), transparent); animation: beam 14s linear infinite; }
.beams i:nth-child(2) { width: 8%; animation-duration: 21s; animation-delay: -9s; opacity: 0.8; }
@keyframes beam { 0% { transform: translateX(-60vw) skewX(-22deg); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateX(160vw) skewX(-22deg); opacity: 0; } }
.hero-sub { margin-top: 28px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted-2); max-width: 54ch; }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem; font-weight: 500; color: var(--muted-2);
}
.chips .icon { color: var(--accent-2); width: 1em; height: 1em; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border-radius: 14px; border: 2px solid var(--line-strong);
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--accent); animation: scrollCue 1.6s ease-in-out infinite; }

/* Mockup 3D (CSS puro) */
.hero-visual { position: relative; perspective: 1500px; }
.mock-scene {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(calc(-14deg + var(--ry, 0deg))) rotateX(calc(7deg + var(--rx, 0deg)));
  transition: transform 0.6s var(--ease);
  animation: float 7s ease-in-out infinite;
}
.mock-glow {
  position: absolute; inset: 10% -5% -10% -5%;
  background: radial-gradient(ellipse at 50% 60%, rgba(255, 59, 48, 0.28), transparent 65%);
  filter: blur(30px); z-index: -1;
}
.mock-browser {
  position: relative;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, #141414, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 59, 48, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: rgba(255, 255, 255, 0.04); border-bottom: 1px solid var(--line); }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.mock-bar span:nth-child(1) { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-url {
  margin-left: 10px; flex: 1; display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px; background: rgba(0, 0, 0, 0.4);
  font-size: 11px; color: var(--muted); font-family: var(--sans);
}
.mock-url .icon { width: 12px; height: 12px; }
.mock-body { padding: 16px 18px 18px; font-size: 10px; line-height: 1.3; }
.mock-nav { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mock-brand { display: flex; align-items: center; gap: 6px; }
.mock-brand b { font-family: var(--display); font-weight: 800; font-size: 12px; letter-spacing: -0.02em; color: var(--white); }
.mock-brand b span { color: var(--accent-2); }
.mock-links { display: flex; gap: 10px; flex: 1; justify-content: center; min-width: 0; overflow: hidden; }
.hero-inner > * { min-width: 0; } /* o conteúdo do mockup nunca alarga as colunas do hero */
.mock-links i { font-style: normal; font-family: var(--display); font-size: 7.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.mock-btn { padding: 5px 10px; border-radius: 999px; background: var(--grad); font-family: var(--display); font-size: 7.5px; font-weight: 700; color: #fff; }
.mock-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; align-items: center; margin-bottom: 14px; }
.mock-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.18); font-size: 6.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 9px; animation: buildIn 0.8s var(--ease) both; animation-delay: 0.8s; transform-origin: left; }
.mock-badge span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.mock-h1 { font-family: var(--display); font-weight: 800; font-size: 15.5px; line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; color: var(--white); animation: buildIn 0.8s var(--ease) both; animation-delay: 0.95s; transform-origin: left; }
.mock-h1 em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mock-p { margin: 8px 0 10px; font-size: 8px; color: var(--muted-2); max-width: 26ch; animation: buildIn 0.8s var(--ease) both; animation-delay: 1.15s; transform-origin: left; }
.mock-ctas { display: flex; gap: 6px; }
.mock-ctas b { display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 9px; border-radius: 999px; font-family: var(--display); font-size: 7.5px; font-weight: 700; animation: buildIn 0.8s var(--ease) both; transform-origin: left; white-space: nowrap; }
.mock-ctas .icon { width: 9px; height: 9px; }
.mock-cta-primary { background: var(--wa); color: #fff; animation-delay: 1.4s !important; transition: transform 0.15s var(--ease), box-shadow 0.25s; }
.mock-cta-ghost { border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); animation-delay: 1.5s !important; }
.mock-cta-primary.is-pressed { transform: scale(0.92); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.35), 0 0 24px rgba(37, 211, 102, 0.6); }
.mock-stat { position: absolute; left: 10px; bottom: 10px; display: flex; flex-direction: column; gap: 2px; padding: 7px 9px; border-radius: 8px; background: rgba(10, 10, 10, 0.75); border: 1px solid rgba(255, 255, 255, 0.14); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.mock-stat small { font-size: 6.5px; color: var(--muted-2); }
.mock-stat strong { font-family: var(--display); font-size: 13px; color: var(--green); line-height: 1; }
.mock-stat i { display: block; width: 100%; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--green), transparent); margin-top: 3px; }

/* Cursor fantasma: --sx/--sy (início) e --cx/--cy (botão) são calculados no main.js */
.mock-cursor {
  position: absolute; left: 0; top: 0; z-index: 5; width: 22px; height: 22px; pointer-events: none;
  opacity: 0; transform: translate(var(--sx, 300px), var(--sy, 260px));
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
  animation: cursorMove 6s cubic-bezier(0.4, 0, 0.2, 1) infinite; animation-delay: 2.4s;
}
.mock-cursor svg { width: 100%; height: 100%; }
.mock-cursor-ripple { position: absolute; left: 4px; top: 4px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.9); opacity: 0; animation: cursorRipple 6s ease-out infinite; animation-delay: 2.4s; }
@keyframes cursorMove {
  0% { transform: translate(var(--sx), var(--sy)); opacity: 0; }
  10% { opacity: 1; }
  32% { transform: translate(var(--cx), var(--cy)) scale(1); }
  36% { transform: translate(var(--cx), var(--cy)) scale(0.8); }
  40% { transform: translate(var(--cx), var(--cy)) scale(1); }
  68% { transform: translate(var(--cx), var(--cy)); opacity: 1; }
  82% { transform: translate(calc(var(--cx) + 70px), calc(var(--cy) + 46px)); opacity: 0; }
  100% { transform: translate(var(--sx), var(--sy)); opacity: 0; }
}
@keyframes cursorRipple {
  0%, 35% { opacity: 0; transform: scale(0.4); }
  37% { opacity: 0.9; transform: scale(0.6); }
  50% { opacity: 0; transform: scale(3); }
  100% { opacity: 0; transform: scale(3); }
}
.mock-cta-ghost { width: 70px; border: 1px solid rgba(255, 255, 255, 0.25); animation-delay: 1.6s !important; }
.mock-img {
  position: relative; aspect-ratio: 4 / 3.2; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.55), rgba(163, 0, 0, 0.45) 60%, rgba(225, 6, 0, 0.35));
  animation: popIn 0.9s var(--ease) both; animation-delay: 1.1s;
}
.mock-img::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 45%);
}
.mock-img-shine { position: absolute; top: 0; bottom: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent); animation: shine 4s ease-in-out infinite; animation-delay: 2s; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-cards > div { display: flex; flex-direction: column; gap: 3px; padding: 10px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); animation: popIn 0.8s var(--ease) both; }
.mock-cards > div:nth-child(1) { animation-delay: 1.7s; }
.mock-cards > div:nth-child(2) { animation-delay: 1.85s; }
.mock-cards > div:nth-child(3) { animation-delay: 2s; }
.mock-cards i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 7px; background: var(--grad-soft); border: 1px solid rgba(255, 59, 48, 0.35); color: var(--accent-2); margin-bottom: 5px; }
.mock-cards i .icon { width: 11px; height: 11px; }
.mock-cards b { font-family: var(--display); font-size: 8px; font-weight: 700; color: var(--white); }
.mock-cards small { font-size: 6.8px; color: var(--muted); }

.float-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(14, 14, 14, 0.92); /* sem backdrop-filter: sobre o 3D animado, o desfoque custava um quadro inteiro */
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  animation: popIn 0.9s var(--ease) both;
}
.float-card--wa { top: -44px; right: -36px; animation-delay: 2.2s; min-width: 250px; }
.float-card--wa.pop { animation: popIn 0.7s var(--ease-bounce); }
.float-card--chart { bottom: -34px; left: -36px; flex-direction: column; align-items: stretch; gap: 10px; width: 210px; animation-delay: 2.5s; }
.float-card--stars { bottom: 28px; right: -40px; animation-delay: 2.8s; gap: 8px; font-weight: 500; }
.fc-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--wa); color: #fff; display: grid; place-items: center; }
.fc-icon .icon { width: 20px; height: 20px; }
.fc-text { display: flex; flex-direction: column; line-height: 1.3; }
.fc-text strong { font-weight: 600; color: var(--white); }
.fc-text span { color: var(--muted-2); font-size: 0.78rem; }
.float-card em { font-style: normal; color: var(--muted); font-size: 0.72rem; margin-left: auto; align-self: flex-start; }
.fc-head { display: flex; justify-content: space-between; align-items: baseline; }
.fc-label { color: var(--muted-2); font-size: 0.75rem; }
.fc-value { font-family: var(--display); font-size: 1.1rem; color: var(--green); }
.fc-bars { display: flex; align-items: flex-end; gap: 5px; height: 46px; }
.fc-bars i { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: var(--grad); opacity: 0.85; transform-origin: bottom; animation: growBar 1s var(--ease) both; }
.fc-bars i:nth-child(1) { animation-delay: 2.7s; } .fc-bars i:nth-child(2) { animation-delay: 2.8s; } .fc-bars i:nth-child(3) { animation-delay: 2.9s; }
.fc-bars i:nth-child(4) { animation-delay: 3.0s; } .fc-bars i:nth-child(5) { animation-delay: 3.1s; } .fc-bars i:nth-child(6) { animation-delay: 3.2s; }
.fc-bars i:nth-child(7) { animation-delay: 3.3s; opacity: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .icon { width: 15px; height: 15px; }

/* ---------- 8b. SEGMENTOS (faixa rolante abaixo do hero) ---------- */
.segments { padding: 26px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); position: relative; }
.segments-title { text-align: center; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.seg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025);
  font-family: var(--display); font-weight: 600; font-size: 0.86rem; color: var(--muted-2); white-space: nowrap;
}
.seg .icon { width: 17px; height: 17px; color: var(--accent-2); }

/* ---------- 9. CLIENTES (marquee) ---------- */
.clients { padding: 28px 0 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.clients-title { text-align: center; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 32s linear infinite; padding-right: 20px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.client-logo:hover { border-color: var(--line-strong); transform: translateY(-2px); background: rgba(255, 255, 255, 0.06); }
.client-logo small { font-family: var(--sans); font-weight: 500; font-size: 0.7em; text-transform: none; letter-spacing: 0; color: var(--muted); margin-left: 4px; }
.client-logo--beicao .cl-name { color: var(--cream); }
.cl-icon { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(180deg, #e10600, #7a0b05); display: grid; place-items: center; font-size: 17px; }
.cl-x { font-style: italic; font-size: 1.6em; line-height: 1; color: var(--gold); transform: skewX(-12deg); text-shadow: 0 0 18px rgba(255, 184, 0, 0.6); }
.client-logo--xtreme .cl-name b { color: var(--gold); }
.client-logo--you { border-style: dashed; border-color: rgba(255, 59, 48, 0.5); color: var(--accent-2); }
.client-logo--you .icon { transition: transform 0.3s var(--ease); }
.client-logo--you:hover .icon { transform: translateX(4px); }

/* ---------- 10. SOBRE ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-copy p + p { margin-top: 16px; color: var(--muted-2); }
.about-copy .lead { margin-top: 4px; color: var(--white); }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.about-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bento-card { padding: 26px; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(255, 59, 48, 0.4); box-shadow: var(--shadow-sm); }
.bento-card > .icon { width: 30px; height: 30px; color: var(--accent-2); margin-bottom: 14px; }
.bento-card strong { display: block; font-family: var(--display); font-size: 1.02rem; margin-bottom: 6px; }
.bento-card p { font-size: 0.9rem; color: var(--muted-2); }
.bento-big { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; background: var(--grad-soft); border-color: rgba(255, 59, 48, 0.3); }
.bento-num { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; white-space: nowrap; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bento-big p { font-size: 1rem; color: var(--white); }

/* ---------- 11. SERVIÇOS ---------- */
.services { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 32px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255, 59, 48, 0.45); box-shadow: var(--glow); }
.sc-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(255, 59, 48, 0.35); color: var(--accent-2);
  transition: transform 0.45s var(--ease-bounce), background 0.45s, color 0.45s;
}
.sc-icon .icon { width: 26px; height: 26px; }
.service-card:hover .sc-icon { transform: rotate(-8deg) scale(1.08); background: var(--grad); color: #fff; border-color: transparent; }
.sc-tag {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-family: var(--display); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(225, 6, 0, 0.3);
}
.service-card h3 { font-size: 1.2rem; }
.service-card > p { color: var(--muted-2); font-size: 0.95rem; }
.sc-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; font-size: 0.88rem; color: var(--muted-2); }
.sc-list li { display: flex; align-items: center; gap: 8px; }
.sc-list .icon { width: 16px; height: 16px; color: var(--green); }
.service-card .link-arrow { margin-top: auto; padding-top: 8px; }

/* ---------- 12. ANTES E DEPOIS ---------- */
.compare-stage {
  --pos: 50%;
  position: relative;
  max-width: 980px; margin: 0 auto;
  aspect-ratio: 16 / 9.4;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: var(--shadow);
  user-select: none; -webkit-user-select: none;
}
.compare-panel { position: absolute; inset: 0; }
.compare-before { background: linear-gradient(135deg, #1a1a1a, #0e0e0e); }
.compare-before::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.compare-after { background: radial-gradient(ellipse 60% 70% at 50% 60%, rgba(255, 59, 48, 0.26), transparent 70%), radial-gradient(ellipse at 100% 0%, rgba(255, 59, 48, 0.12), transparent 50%), #0b0b0b; clip-path: inset(0 0 0 var(--pos)); }
.compare-after::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.compare-hint { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.compare-hint .icon { width: 14px; height: 14px; color: var(--accent-2); }

/* Cards de contexto ao redor do celular (somem em telas menores) */
.cmp-card {
  position: absolute; z-index: 2;
  width: min(250px, 26%);
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(14, 14, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  font-size: 0.8rem; line-height: 1.35;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.compare-stage.in .cmp-card { opacity: 1; transform: none; }
.cmp-card--tl { top: 9%; left: 5%; transition-delay: 0.3s; }
.cmp-card--bl { bottom: 9%; left: 8%; transition-delay: 0.5s; }
.cmp-card--tr { top: 9%; right: 5%; transition-delay: 0.4s; }
.cmp-card--br { bottom: 9%; right: 8%; transition-delay: 0.6s; }
.cmp-head { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; color: var(--muted); }
.cmp-head .icon { width: 13px; height: 13px; flex-shrink: 0; }
.cmp-card strong { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; color: var(--white); font-size: 0.86rem; }
.cmp-card strong .icon { width: 15px; height: 15px; color: var(--green); }
.cmp-card small { font-size: 0.72rem; color: var(--muted-2); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cmp-card small .stars .icon { width: 11px; height: 11px; }
.cmp-card--muted { filter: grayscale(1); }
.cmp-card--muted strong { color: #d0d0d0; }
.cmp-card--muted strong .icon { color: #8a8a8a; }
.cmp-up { font-size: 1.35rem !important; color: var(--green) !important; letter-spacing: -0.02em; }
.cmp-card .fc-bars { height: 38px; margin-top: 2px; }
.cmp-card .fc-bars i { animation: none; }
.compare-stage.in .cmp-card--br .fc-bars i { animation: growBar 1s var(--ease) both; }
.compare-stage.in .cmp-card--br .fc-bars i:nth-child(1) { animation-delay: 0.9s; } .compare-stage.in .cmp-card--br .fc-bars i:nth-child(2) { animation-delay: 0.98s; }
.compare-stage.in .cmp-card--br .fc-bars i:nth-child(3) { animation-delay: 1.06s; } .compare-stage.in .cmp-card--br .fc-bars i:nth-child(4) { animation-delay: 1.14s; }
.compare-stage.in .cmp-card--br .fc-bars i:nth-child(5) { animation-delay: 1.22s; } .compare-stage.in .cmp-card--br .fc-bars i:nth-child(6) { animation-delay: 1.3s; }
.compare-stage.in .cmp-card--br .fc-bars i:nth-child(7) { animation-delay: 1.38s; }
.compare-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--display); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-strong); color: var(--muted-2);
}
.compare-tag--after { left: auto; right: 18px; background: var(--grad); color: #fff; border-color: transparent; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 3;
  width: 2px; background: var(--accent); transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.7);
}
.compare-handle-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 59, 48, 0.2);
}
.compare-handle-btn .icon { width: 16px; height: 16px; stroke-width: 3; }
.compare-range {
  position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 60px; height: 100%; }
.compare-range::-moz-range-thumb { width: 60px; height: 100%; border: 0; }

.phone {
  position: absolute; left: 50%; top: 50%;
  width: min(272px, 30%);
  aspect-ratio: 9 / 17;
  transform: translate(-50%, -50%);
  border-radius: 12% / 6.3%;
  background: #000;
  border: 6px solid #1e1e1e;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  container-type: inline-size;
}
.phone-notch { position: absolute; top: 3%; left: 50%; transform: translateX(-50%); width: 34%; height: 3.2%; border-radius: 999px; background: #1a1a1a; z-index: 2; }
.phone-screen { position: absolute; inset: 0; padding: 12% 5% 5%; font-size: 4.1cqw; display: flex; flex-direction: column; gap: 0.7em; }
.phone--before .phone-screen { background: #151515; color: #9a9a9a; filter: grayscale(1); }
.phone--after .phone-screen { background: linear-gradient(180deg, #0c0c0c, #141414); color: var(--white); }

.ps-search { display: flex; align-items: center; gap: 0.6em; padding: 0.7em 1em; border-radius: 999px; background: #262626; font-size: 0.95em; }
.ps-search .icon { width: 1.1em; height: 1.1em; }
.ps-result { padding: 0.8em 1em; border-radius: 0.8em; background: #1f1f1f; display: flex; flex-direction: column; gap: 0.25em; font-size: 0.85em; line-height: 1.35; }
.ps-result b { color: #ddd; font-size: 1.05em; }
.ps-result small { font-weight: 400; color: #888; }
.ps-result--weak { border: 1px dashed #3a3a3a; background: transparent; }
.ps-ig { display: flex; align-items: center; gap: 0.7em; padding: 0.6em 0.8em; border-radius: 0.8em; background: #1b1b1b; border: 1px solid #2c2c2c; font-size: 0.82em; line-height: 1.3; }
.ps-ig i { width: 2.2em; height: 2.2em; border-radius: 50%; flex-shrink: 0; background: conic-gradient(#666, #3a3a3a, #777, #444, #666); border: 2px solid #111; box-shadow: 0 0 0 1px #555; }
.ps-ig span { display: flex; flex-direction: column; gap: 0.15em; color: #8d8d8d; }
.ps-ig b { color: #c9c9c9; }
.ps-chat { margin-top: auto; display: flex; flex-direction: column; gap: 0.45em; }
.ps-msg { align-self: flex-end; max-width: 85%; padding: 0.55em 0.9em; border-radius: 1em 1em 0.2em 1em; background: #2b2b2b; font-size: 0.85em; }
.ps-msg--muted { background: transparent; color: #666; font-size: 0.72em; padding: 0; }
.ps-msg--lost { align-self: flex-start; border-radius: 1em 1em 1em 0.2em; background: #242424; color: #bdbdbd; border: 1px dashed #4a4a4a; }

.pa-nav { display: flex; align-items: center; justify-content: space-between; }
.pa-logo { width: 2em; height: 2em; border-radius: 0.6em; background: var(--brand, var(--accent)); }
.pa-cta { padding: 0.45em 0.9em; border-radius: 999px; background: var(--brand, var(--accent)); color: var(--brand-ink, #fff); font-weight: 700; font-size: 0.8em; font-family: var(--display); }
.pa-hero small { font-size: 0.8em; color: var(--muted-2); margin-top: -0.4em; }
.pa-dot { display: inline-block; width: 0.6em; height: 0.6em; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0.25em rgba(34, 197, 94, 0.25); }
.pa-menu { display: flex; flex-direction: column; gap: 0.5em; margin-top: auto; }
.pa-item { display: flex; align-items: center; gap: 0.7em; padding: 0.55em 0.7em; border-radius: 0.7em; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); }
.pa-item i { width: 2.4em; height: 2.4em; border-radius: 0.55em; background: var(--brand-soft, rgba(255, 59, 48, 0.18)); border: 1px solid var(--brand, var(--accent)); flex-shrink: 0; }
.pa-item span { flex: 1; display: flex; flex-direction: column; gap: 0.35em; }
.pa-item b { display: block; height: 0.55em; border-radius: 0.3em; background: rgba(255, 255, 255, 0.35); width: 85%; }
.pa-item b.short { width: 50%; background: rgba(255, 255, 255, 0.18); }
.pa-item em { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 0.78em; padding: 0.3em 0.6em; border-radius: 999px; background: var(--brand, var(--accent)); color: var(--brand-ink, #fff); white-space: nowrap; }
.pa-item--hl { border-color: var(--brand, var(--accent)); background: var(--brand-soft, rgba(255, 59, 48, 0.12)); }
.phone-screen--model { color: var(--white); background: linear-gradient(180deg, #0c0c0c, #151515); gap: 0.9em; }
.phone-screen--model .pa-hero b { font-size: 1.9em; }
.phone-screen--model .pa-menu { margin-top: 0.3em; }
.phone-screen--model .pa-nav { position: relative; z-index: 2; }

/* Tela do modelo "rolando": o JS mede o conteúdo e define --scroll; a animação sobe, para e volta */
.pa-scroll { flex: 1; min-height: 0; overflow: hidden; position: relative; }
.pa-scroll-inner { display: flex; flex-direction: column; gap: 0.9em; animation: paScroll 16s ease-in-out infinite; animation-delay: calc(var(--i, 0) * -3.7s); will-change: transform; }
@keyframes paScroll {
  0%, 14% { transform: translateY(0); }
  50%, 62% { transform: translateY(var(--scroll, -40%)); }
  100% { transform: translateY(0); }
}
.pa-banner { display: flex; flex-direction: column; gap: 0.15em; padding: 0.7em 0.9em; border-radius: 0.8em; background: var(--brand-soft, rgba(255, 59, 48, 0.18)); border: 1px solid var(--brand, var(--accent)); }
.pa-banner small { font-size: 0.7em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.pa-banner strong { font-family: var(--display); font-size: 0.9em; line-height: 1.25; }
.pa-btn--full { align-self: stretch; justify-content: center; margin-top: 0.2em; }
.pa-thumb { position: absolute; right: 2.2%; top: 15%; bottom: 6%; width: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.07); z-index: 3; }
.pa-thumb::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 32%; border-radius: 2px; background: var(--brand, var(--accent)); opacity: 0.8; animation: paThumb 16s ease-in-out infinite; animation-delay: calc(var(--i, 0) * -3.7s); }
@keyframes paThumb {
  0%, 14% { transform: translateY(0); }
  50%, 62% { transform: translateY(212%); }
  100% { transform: translateY(0); }
}
.phone--after .pa-menu { margin-top: 0; }
.pa-hero { display: flex; flex-direction: column; gap: 0.8em; padding: 1em 0 0.4em; }
.pa-hero b { font-family: var(--display); font-weight: 800; font-size: 1.55em; line-height: 1.05; text-transform: uppercase; letter-spacing: -0.02em; }
.pa-btn { display: inline-flex; align-items: center; gap: 0.5em; align-self: flex-start; padding: 0.6em 1em; border-radius: 999px; background: var(--wa); color: #fff; font-weight: 700; font-size: 0.85em; font-family: var(--display); }
.pa-btn .icon { width: 1.1em; height: 1.1em; }
.pa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6em; }
.pa-card { padding: 0.7em 0.9em; border-radius: 0.8em; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 0.15em; }
.pa-card small { font-size: 0.7em; color: var(--muted); }
.pa-card strong { display: inline-flex; align-items: center; gap: 0.3em; font-family: var(--display); font-size: 1.05em; }
.pa-card .icon { width: 0.9em; height: 0.9em; color: var(--gold); fill: var(--gold); }
.pa-chart { padding: 0.8em 0.9em 0.5em; border-radius: 0.8em; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); }
.pa-chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4em; }
.pa-chart-head small { font-size: 0.7em; color: var(--muted); }
.pa-chart-head strong { font-family: var(--display); color: var(--green); font-size: 1em; }
.pa-chart svg { width: 100%; height: 3.6em; }
.pa-line { stroke-dasharray: 400; stroke-dashoffset: 400; }
.compare-stage.in .pa-line { animation: drawLine 2s var(--ease) forwards; animation-delay: 0.5s; }
.pa-notif { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5em; align-self: center; padding: 0.55em 1em; border-radius: 999px; background: rgba(37, 211, 102, 0.15); border: 1px solid rgba(37, 211, 102, 0.4); color: #7ee2a3; font-size: 0.78em; font-weight: 600; }
.pa-notif .icon { width: 1em; height: 1em; }

.compare-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 36px auto 0; }
.compare-points li { display: flex; gap: 14px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.compare-points .icon { width: 24px; height: 24px; color: var(--accent-2); margin-top: 2px; }
.compare-points strong { display: block; font-family: var(--display); margin-bottom: 4px; }
.compare-points span { font-size: 0.9rem; color: var(--muted-2); }

/* ---------- 12b. MODELOS POR SEGMENTO ---------- */
.models { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.model-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--card);
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s var(--ease);
}
.model-card:hover { transform: translateY(-8px); border-color: var(--brand, var(--accent)); box-shadow: 0 0 0 1px var(--brand-soft, rgba(255, 59, 48, 0.2)), 0 24px 60px rgba(0, 0, 0, 0.6); }
.model-stage {
  position: relative; padding: 28px 24px 0; overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, var(--brand-soft, rgba(255, 59, 48, 0.18)), transparent 70%), #0b0b0b;
  border-bottom: 1px solid var(--line);
}
.model-stage::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.phone--card {
  position: relative; left: auto; top: auto; transform: none;
  width: min(230px, 100%); margin: 0 auto -9%;
  aspect-ratio: 9 / 15;
  border-radius: 12% / 7%;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.model-card:hover .phone--card { transform: translateY(-10px); }
.model-info { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.model-tag { align-self: flex-start; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); }
.model-info h3 { font-size: 1.1rem; }
.model-info p { font-size: 0.9rem; color: var(--muted-2); }
.models-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 36px; padding: 22px 26px; border-radius: var(--radius); border: 1px dashed rgba(255, 59, 48, 0.45); background: var(--grad-soft); }
.models-cta p { color: var(--white); font-weight: 500; }

/* ---------- 13. PORTFÓLIO (opcional — cases reais autorizados) ---------- */
.portfolio { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03);
  font-family: var(--display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted-2);
  transition: all 0.3s var(--ease);
}
.filter:hover { border-color: var(--line-strong); color: var(--white); }
.filter.is-active { background: var(--grad); color: #fff; border-color: transparent; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project { display: flex; flex-direction: column; gap: 18px; }
.project.is-hidden { display: none; }
.project.is-showing { animation: fadeUp 0.5s var(--ease); }
.project-media { position: relative; display: block; border-radius: var(--radius); overflow: hidden; }
.browser-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-strong); background: #0a0a0a; box-shadow: var(--shadow); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.4s; }
.bf-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #161616; border-bottom: 1px solid var(--line); }
.bf-bar span { width: 9px; height: 9px; border-radius: 50%; background: #333; }
.bf-bar span:nth-child(1) { background: #ff5f57; } .bf-bar span:nth-child(2) { background: #febc2e; } .bf-bar span:nth-child(3) { background: #28c840; }
.bf-bar i { margin-left: 10px; font-style: normal; font-size: 11px; color: var(--muted); padding: 4px 10px; border-radius: 6px; background: rgba(0, 0, 0, 0.4); flex: 1; }
.browser-frame img { width: 100%; height: auto; aspect-ratio: 12 / 7; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease); }
.project-media:hover .browser-frame { transform: translateY(-6px); box-shadow: var(--glow); border-color: rgba(255, 59, 48, 0.5); }
.project-media:hover img { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.1), rgba(7, 7, 7, 0.7));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.project-overlay span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--grad); color: #fff; font-family: var(--display); font-weight: 700;
  transform: translateY(12px); transition: transform 0.4s var(--ease);
}
.project-media:hover .project-overlay { opacity: 1; }
.project-media:hover .project-overlay span { transform: none; }
.project-info { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.project-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.project-info p { color: var(--muted-2); font-size: 0.93rem; max-width: 42ch; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.tags li { padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.tags .tag-proto { border-color: rgba(255, 59, 48, 0.55); color: var(--accent-2); background: rgba(255, 59, 48, 0.08); }
.project--cta { border: 1px dashed rgba(255, 59, 48, 0.45); border-radius: var(--radius); background: var(--grad-soft); min-height: 320px; transition: transform 0.45s var(--ease), box-shadow 0.45s; }
.project--cta:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.project-cta-inner { margin: auto; text-align: center; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pc-icon { width: 64px; height: 64px; border-radius: 20px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(225, 6, 0, 0.3); }
.pc-icon .icon { width: 30px; height: 30px; }
.project-cta-inner h3 { font-size: 1.5rem; text-transform: uppercase; }
.project-cta-inner p { color: var(--muted-2); max-width: 32ch; }
.project-cta-inner .btn { margin-top: 8px; }

/* ---------- 14. DEPOIMENTOS ---------- */
.t-controls { display: flex; gap: 10px; }
.t-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.t-btn:hover { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.06); }
.t-btn .icon { width: 20px; height: 20px; }
.t-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; padding: 6px 0 10px;
  -webkit-overflow-scrolling: touch;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 min(100%, 400px);
  scroll-snap-align: start;
  position: relative;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.t-card:hover { border-color: rgba(255, 59, 48, 0.4); transform: translateY(-4px); }
.t-quote { position: absolute; top: 24px; right: 26px; width: 40px; height: 40px; color: rgba(255, 59, 48, 0.25); }
.t-card blockquote { margin: 0; font-size: 1.02rem; line-height: 1.6; color: var(--white); }
.t-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 8px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 0.85rem; color: #fff; background: linear-gradient(135deg, var(--a), #111); border: 2px solid rgba(255, 255, 255, 0.15); }
.t-card figcaption div { display: flex; flex-direction: column; line-height: 1.3; }
.t-card figcaption strong { font-family: var(--display); font-size: 0.95rem; }
.t-card figcaption span { font-size: 0.8rem; color: var(--muted); }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.t-dots button { width: 8px; height: 8px; border-radius: 999px; background: var(--line-strong); padding: 0; transition: all 0.3s var(--ease); }
.t-dots button.is-active { width: 28px; background: var(--accent); }

/* ---------- 15. NÚMEROS ---------- */
.stats { padding: 56px 0; background: var(--grad-soft); border-top: 1px solid rgba(255, 59, 48, 0.25); border-bottom: 1px solid rgba(255, 59, 48, 0.25); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 16px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 20%; height: 60%; width: 1px; background: rgba(255, 59, 48, 0.25); }
.stat-value { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; margin-top: 10px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- 16. PROCESSO (timeline) ---------- */
.timeline { position: relative; max-width: 940px; margin: 0 auto; padding: 10px 0; }
.timeline-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--line); transform: translateX(-50%); overflow: hidden; }
.timeline-line i { position: absolute; inset: 0; background: var(--grad); transform-origin: top; transform: scaleY(var(--p, 0)); transition: transform 0.15s linear; }
.step { position: relative; display: grid; grid-template-columns: 1fr 72px 1fr; align-items: center; gap: 0; margin-bottom: 34px; }
.step:last-child { margin-bottom: 0; }
.step-marker {
  grid-column: 2; grid-row: 1; justify-self: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line-strong);
  display: grid; place-items: center; color: var(--muted-2);
  transition: all 0.5s var(--ease);
}
.step-marker .icon { width: 22px; height: 22px; }
.step.is-active .step-marker { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 0 0 8px rgba(255, 59, 48, 0.15), 0 10px 30px rgba(225, 6, 0, 0.35); transform: scale(1.08); }
.step-card { grid-row: 1; padding: 26px 28px; transition: border-color 0.4s, transform 0.4s var(--ease); }
.step:nth-child(odd) .step-card { grid-column: 1; text-align: right; }
.step:nth-child(even) .step-card { grid-column: 3; }
.step.is-active .step-card { border-color: rgba(255, 59, 48, 0.35); }
.step-num { font-family: var(--display); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--accent-2); }
.step-card h3 { margin: 6px 0 8px; font-size: 1.15rem; }
.step-card p { color: var(--muted-2); font-size: 0.93rem; }
.step-card small { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.78rem; color: var(--muted); padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line); }
.step-card small .icon { width: 13px; height: 13px; }
.step:nth-child(odd) .step-card small { flex-direction: row-reverse; }

/* ---------- 17. PLANOS ---------- */
.pricing { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; gap: 22px; padding: 34px 30px; transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s; }
.plan:hover { transform: translateY(-6px); border-color: rgba(255, 59, 48, 0.4); }
.plan header h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 6px; }
.plan header p { color: var(--muted-2); font-size: 0.92rem; }
.plan-price { display: flex; flex-direction: column; gap: 2px; }
.plan-price small { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.plan-price strong { font-family: var(--display); font-weight: 800; font-size: 3rem; line-height: 1; letter-spacing: -0.03em; }
.plan-price sup { font-size: 0.38em; vertical-align: top; margin-right: 4px; color: var(--accent-2); letter-spacing: 0; top: 0.4em; position: relative; }
.plan-price sub { font-size: 0.42em; vertical-align: baseline; letter-spacing: 0; color: var(--muted-2); position: relative; bottom: 0; }
.plan-price span { font-size: 0.85rem; color: var(--muted-2); }
.plan-list { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; color: var(--muted-2); flex: 1; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; }
.plan-list .icon { width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.plan--featured { border-color: rgba(255, 59, 48, 0.6); box-shadow: var(--glow); background: linear-gradient(180deg, rgba(255, 59, 48, 0.08), rgba(255, 255, 255, 0.02)); margin-block: -14px; padding-block: 44px; }
/* Borda de luz girando no plano em destaque (navegadores sem @property mostram a borda estática) */
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes spinBorder { to { --ang: 360deg; } }
.plan--featured::before {
  content: ""; position: absolute; inset: -1px; z-index: 0;
  border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--ang), transparent 0%, rgba(255, 106, 106, 0.95) 12%, rgba(255, 34, 34, 0.35) 24%, transparent 40%, transparent 60%, rgba(255, 77, 77, 0.6) 78%, transparent 92%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  animation: spinBorder 7s linear infinite;
}
.plan--featured > * { position: relative; z-index: 1; }
.plan--featured .plan-price strong { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan--featured .plan-price sup { color: var(--accent-2); -webkit-text-fill-color: var(--accent-2); }
.plan--featured .plan-list { color: var(--white); }
.plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-family: var(--display); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.35); white-space: nowrap;
}
/* Planos sem preço fixo: bloco "orçamento sob medida" no lugar do valor */
.plan-quote { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.03); border: 1px dashed rgba(255, 59, 48, 0.5); }
.plan-quote strong { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; text-transform: uppercase; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan-quote span { font-size: 0.82rem; color: var(--muted-2); }
.plan--featured .plan-quote { background: rgba(255, 59, 48, 0.08); border-style: solid; border-color: rgba(255, 59, 48, 0.55); }
/* Orçamento: frase + passos de fechamento (sem tabela de preços) */
.quote-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.quote-copy .lead { max-width: 56ch; }
.quote-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.quote-copy .cta-perks { margin-top: 24px; }
.pricing-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.pricing-how--stack { grid-template-columns: 1fr; margin-top: 0; }
.pricing-how--stack > div { display: grid; grid-template-columns: 26px 1fr; column-gap: 14px; row-gap: 4px; align-items: start; padding: 20px 22px; background: rgba(255, 255, 255, 0.03); }
.pricing-how--stack > div > .icon { grid-row: 1 / span 2; margin: 3px 0 0; width: 26px; height: 26px; }
.pricing-how--stack > div > strong, .pricing-how--stack > div > span { grid-column: 2; }
.pricing-how > div { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.pricing-how .icon { width: 24px; height: 24px; color: var(--accent-2); margin-bottom: 6px; }
.pricing-how strong { font-family: var(--display); font-size: 0.95rem; }
.pricing-how span { font-size: 0.86rem; color: var(--muted-2); }
.pricing-note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; color: var(--muted-2); font-size: 0.92rem; text-align: center; }
.pricing-note .icon { color: var(--accent-2); width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- 17b. ASSINATURA MENSAL ---------- */
.subscription { overflow: hidden; border-bottom: 1px solid var(--line); }
.sub-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sub-bg .blob-1 { top: -35%; right: -20%; opacity: 0.7; }
.sub-bg .blob-2 { bottom: -35%; left: -15%; opacity: 0.7; }
.sub-bg .grid-overlay { -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 10%, transparent 70%); mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, #000 10%, transparent 70%); }
.subscription .container { position: relative; z-index: 1; }
.sub-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 980px; margin: 0 auto clamp(40px, 5vw, 56px);
  counter-reset: step;
}
.sub-steps li { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); position: relative; }
.sub-steps li + li::before { content: ""; position: absolute; left: -16px; top: 50%; width: 16px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.6)); }
.sub-step-n {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.3);
}
.sub-steps strong { display: block; font-family: var(--display); font-size: 0.98rem; margin-bottom: 4px; }
.sub-steps p { font-size: 0.88rem; color: var(--muted-2); }
.plan-common { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 16px; margin-top: 36px; padding: 18px 22px; border-radius: var(--radius); border: 1px solid rgba(255, 59, 48, 0.35); background: var(--grad-soft); }
.plan-common strong { font-family: var(--display); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-2); }
.plan-common .chips { margin-top: 0; justify-content: center; }
.plan-common .chips li { background: rgba(0, 0, 0, 0.35); color: var(--white); }
.sub-pay { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 26px; font-size: 0.86rem; color: var(--muted-2); }
.sub-pay li { display: inline-flex; align-items: center; gap: 8px; }
.sub-pay .icon { width: 18px; height: 18px; color: var(--accent-2); }
.subscription .pricing-note { margin-top: 22px; }

/* ---------- 18. FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro .lead { margin-bottom: 26px; }
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); transition: background 0.3s; }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 8px; text-align: left;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--white);
  transition: color 0.3s;
}
.acc-btn:hover { color: var(--accent-2); }
.acc-btn .icon { width: 22px; height: 22px; color: var(--accent-2); transition: transform 0.45s var(--ease); flex-shrink: 0; }
.acc-item.is-open .acc-btn .icon { transform: rotate(180deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.acc-panel > div { overflow: hidden; }
.acc-panel p { padding: 0 8px 22px; color: var(--muted-2); line-height: 1.7; }
.acc-panel strong { color: var(--white); font-weight: 600; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-item.is-open { background: linear-gradient(90deg, rgba(255, 59, 48, 0.04), transparent); }

/* ---------- 19. CTA FINAL + FORM ---------- */
.cta { overflow: hidden; border-top: 1px solid var(--line); }
.cta-bg .blob-1 { top: -30%; left: -10%; right: auto; }
.cta-bg .blob-2 { bottom: -30%; right: -10%; left: auto; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.cta-copy .h1 { margin-bottom: 20px; font-size: clamp(2.2rem, 2.6vw + 1rem, 3.6rem); }
.cta-copy .lead { margin-bottom: 30px; }
.cta-perks { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; font-size: 0.9rem; color: var(--muted-2); }
.cta-perks li { display: flex; align-items: center; gap: 6px; }
.cta-perks .icon { color: var(--green); width: 16px; height: 16px; }
.form { padding: 34px; display: flex; flex-direction: column; gap: 18px; background: #0f0f0f; }
.form h3 { font-size: 1.2rem; margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  border-radius: var(--radius-sm); border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04); color: var(--white);
  font: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23ff4d4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.field select option { background: #161616; color: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #6a6a6a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.18); background: rgba(255, 59, 48, 0.03); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--warn); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form-actions .btn { flex: 1; }
.form-status { min-height: 1.2em; font-size: 0.9rem; font-weight: 500; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--warn); }
.form-privacy { font-size: 0.75rem; color: var(--muted); }
.btn.is-loading { pointer-events: none; opacity: 0.7; }

/* ---------- 20. RODAPÉ ---------- */
.footer { padding: 70px 0 30px; background: #050505; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.3fr) minmax(0, 1.5fr); gap: 40px; }
.footer-grid > * { min-width: 0; }
.footer-brand p { margin: 18px 0 22px; color: var(--muted-2); font-size: 0.92rem; max-width: 34ch; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); display: grid; place-items: center; color: var(--muted-2); transition: all 0.3s var(--ease); }
.social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.social .icon { width: 19px; height: 19px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: flex; align-items: flex-start; gap: 10px; color: var(--muted-2); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.3s; min-width: 0; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--white); }
.footer-col .icon { width: 17px; height: 17px; color: var(--accent-2); margin-top: 3px; }
.footer-map { display: flex; flex-direction: column; gap: 10px; }
.footer-map iframe { width: 100%; height: 100%; min-height: 200px; border: 0; border-radius: var(--radius); filter: grayscale(1) invert(0.92) contrast(0.9); opacity: 0.85; transition: opacity 0.3s, filter 0.3s; animation: fadeUp 0.5s var(--ease); }
.footer-map:hover iframe { opacity: 1; filter: grayscale(0.4) invert(0.92) contrast(0.95); }
.map-facade {
  position: relative; width: 100%; min-height: 200px; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 59, 48, 0.22), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #0c0c0c;
  background-size: auto, 28px 28px, 28px 28px, auto;
  color: var(--white); text-align: center; overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.map-facade::before, .map-facade::after {
  content: ""; position: absolute; background: rgba(255, 255, 255, 0.07); pointer-events: none;
}
.map-facade::before { left: -10%; right: -10%; top: 38%; height: 6px; transform: rotate(-12deg); border-radius: 3px; }
.map-facade::after { top: -10%; bottom: -10%; left: 62%; width: 5px; transform: rotate(18deg); border-radius: 3px; }
.map-facade:hover { border-color: rgba(255, 59, 48, 0.5); transform: translateY(-2px); }
.map-facade strong { font-family: var(--display); font-size: 1rem; position: relative; }
.map-facade-hint { font-size: 0.78rem; color: var(--muted); position: relative; }
.map-facade-pin {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 4px;
  box-shadow: 0 10px 26px rgba(225, 6, 0, 0.4), 0 0 0 8px rgba(255, 59, 48, 0.12);
  animation: float 4s ease-in-out infinite;
}
.map-facade-pin .icon { width: 22px; height: 22px; }
.map-link { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 0.8rem; color: var(--muted-2); transition: color 0.3s; }
.map-link:hover { color: var(--accent-2); }
.map-link .icon { width: 14px; height: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); }
.heart { color: var(--red); display: inline-block; animation: heartbeat 1.6s ease-in-out infinite; }

/* ---------- 21. FLUTUANTES ---------- */
/* Barra fixa de CTA — só no celular, depois do hero */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 10, 0.9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.mobile-cta-text strong { font-family: var(--display); font-size: 0.92rem; }
.mobile-cta-text span { font-size: 0.74rem; color: var(--muted-2); }
.mobile-cta .btn { flex-shrink: 0; padding: 12px 18px; font-size: 0.85rem; }
/* Toque com resposta (celular) */
.btn, .chips li, .acc-btn, .burger, .wa-float, .to-top { -webkit-tap-highlight-color: transparent; }
.btn:active { transform: scale(0.97); transition-duration: 0.1s; }
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s ease-out infinite;
  transition: transform 0.3s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .icon { width: 30px; height: 30px; }
.wa-float-tip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  padding: 9px 14px; border-radius: 10px;
  background: #fff; color: #111; font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.wa-float-tip::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #fff; border-right: 0; }
.wa-float:hover .wa-float-tip, .wa-float.show-tip .wa-float-tip { opacity: 1; visibility: visible; transform: translateY(-50%); }
.to-top {
  position: fixed; right: 30px; bottom: 96px; z-index: 80;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(14, 14, 14, 0.85); color: var(--white);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.4s var(--ease);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--accent-2); color: var(--accent-2); }
.to-top .icon { width: 18px; height: 18px; }

/* ---------- 22. RESPONSIVO ---------- */
@media (max-width: 1240px) {
  /* Header com 6 links + CTA: aperta o menu antes de virar hambúrguer */
  .nav { gap: 0; }
  .nav a { padding: 8px 9px; font-size: 0.74rem; letter-spacing: 0.05em; }
  .header-inner { gap: 14px; }
}
@media (max-width: 1100px) {
  .header-actions .btn span { display: none; }
  .header-actions .btn { width: 42px; height: 42px; padding: 0; border-radius: 12px; }
  .header-actions .btn .icon { width: 20px; height: 20px; }
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); }
  .footer-map { grid-column: 1 / -1; }
  .footer-map iframe { min-height: 220px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .float-card--stars { right: -12px; }
  .float-card--wa { right: -12px; top: -40px; }
  .float-card--chart { left: -12px; }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: grid; }
  /* No celular o CTA do header vira só o ícone do WhatsApp, ao lado do menu */
  .header-actions .btn { width: 44px; height: 44px; padding: 0; border-radius: 12px; }
  .header-actions .btn span { display: none; }
  .header-actions .btn .icon { width: 22px; height: 22px; }
  .cmp-card { display: none; }
  .compare-stage { aspect-ratio: 16 / 11; }
  .phone { width: min(260px, 42%); }
  .sub-steps { grid-template-columns: 1fr; max-width: 560px; }
  .sub-steps li + li::before { display: none; }
  .hero { padding-top: calc(var(--header-h) + 24px); min-height: auto; }
  /* No celular o texto ocupa a largura toda: sombra uniforme por cima do campo 3D */
  .hero-shade { background: linear-gradient(180deg, rgba(7, 7, 7, 0.86) 0%, rgba(7, 7, 7, 0.72) 45%, rgba(7, 7, 7, 0.55) 75%, var(--bg) 100%); }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; margin: 20px auto 0; padding: 30px 30px 40px; }
  .mock-scene { transform: rotateY(calc(-8deg + var(--ry, 0deg))) rotateX(calc(5deg + var(--rx, 0deg))); }
  .scroll-cue { display: none; }
  .about-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan--featured { order: -1; margin-block: 0; padding-block: 34px; }
  .pricing-how { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .quote-grid { grid-template-columns: 1fr; }
  .pricing-how--stack { max-width: none; margin-inline: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .compare-points { grid-template-columns: 1fr; }
  .timeline-line { left: 27px; transform: none; }
  .step { grid-template-columns: 54px 1fr; column-gap: 18px; }
  .step-marker { grid-column: 1; justify-self: start; }
  .step:nth-child(odd) .step-card, .step:nth-child(even) .step-card { grid-column: 2; text-align: left; }
  .step:nth-child(odd) .step-card small { flex-direction: row; }
}
@media (max-width: 700px) {
  .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .models-cta { justify-content: center; text-align: center; }
  .about-bento { grid-template-columns: 1fr; }
  .bento-big { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 24px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .map-facade { min-height: 170px; }
  .sub-pay { gap: 10px 18px; font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 24px 20px; }
  .compare-stage { aspect-ratio: 2 / 3; border-radius: 22px; }
  .phone { width: min(250px, 68%); }
  .phone-screen { font-size: 4.3cqw; }
  .compare-tag { top: 12px; left: 12px; font-size: 0.65rem; }
  .compare-tag--after { left: auto; right: 12px; }
  .project-info { flex-direction: column; }
  .tags { justify-content: flex-start; }
  .hero-visual { padding: 30px 12px 44px; }
  .float-card--wa { right: -6px; top: -14px; min-width: 0; }
  .float-card--wa .fc-text span { display: none; }
  .float-card--chart { left: -6px; bottom: -30px; width: 170px; }
  .float-card--stars { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .btn-xl { width: 100%; }
  .wa-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .to-top { right: 22px; bottom: 86px; }
  /* Barra de CTA substitui o botão flutuante depois do hero */
  .mobile-cta { display: flex; }
  .mobile-cta.is-visible ~ .wa-float { opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.3s, visibility 0.3s, transform 0.3s; }
  .mobile-cta.is-visible ~ .to-top { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
  body.has-cta-bar { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  /* Campos em 16px: o iPhone não dá zoom ao focar */
  .field input, .field select, .field textarea { font-size: 16px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .mock-links i:nth-child(n+3) { display: none; } /* mini site: só 2 links no celular */
  .mock-hero { grid-template-columns: 1fr; }
  .mock-img { aspect-ratio: 4 / 1.6; }
}
@media (max-width: 420px) {
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; gap: 8px; }
  .eyebrow::before { width: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-value { font-size: 2.2rem; }
  .chips li { font-size: 0.76rem; }
}

/* ---------- 23. ACESSIBILIDADE / MOVIMENTO REDUZIDO ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-anim, .reveal { opacity: 1 !important; transform: none !important; }
  .mock-scene { transform: none; }
  .mock-cursor, .beams { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-track .is-clone { display: none; }
}
