/* ============================================================
   VEX PRIME — dark premium, vermelho VEX, glassmorphism
   ============================================================ */

/* fontes self-hosted (variáveis) — a CSP do servidor só permite 'self' */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
}

:root {
  --bg: #030303;
  --bg-soft: #0a0a0c;
  --red: #ef3d55;
  --red-soft: #ff5b70;
  --ink: #f5f4f6;
  --ink-dim: rgba(245, 244, 246, 0.62);
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.035);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -48px; left: 16px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 8px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- fundo ---------- */
#vex-scene {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.atmosphere {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(239, 61, 85, 0.12), transparent 55%),
    radial-gradient(90% 70% at 8% 88%, rgba(90, 12, 24, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, rgba(3, 3, 3, 0.45) 100%);
}

main, .footer { position: relative; z-index: 2; }

/* ---------- barra de progresso ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 150;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- logo ---------- */
.brand {
  position: fixed; top: clamp(18px, 3vw, 34px); left: var(--pad); z-index: 100;
  display: inline-flex;
  filter: drop-shadow(0 4px 18px rgba(239, 61, 85, 0.35));
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.brand:hover { transform: scale(1.06); }
.brand img { width: clamp(72px, 8vw, 96px); height: auto; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em; border-radius: 14px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, border-color 0.35s;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn.primary {
  background: linear-gradient(135deg, var(--red) 0%, #c2273d 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(239, 61, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(239, 61, 85, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-3px); }
.btn.full { width: 100%; }
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ---------- glass ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s;
}

/* ---------- tipografia de seção ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-soft);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  margin-top: 14px;
}
.section-head h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--red) 10%, var(--red-soft) 60%, #ffb3bf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section { padding: clamp(90px, 12vw, 160px) var(--pad); max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }

/* ============ HERO ============ */
.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--pad) 80px;
  position: relative;
  max-width: 1280px; margin: 0 auto;
}
.hero-inner { max-width: 820px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 84px);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.03em;
  margin: 28px 0 8px;
}
.hero-title .word {
  display: inline-block;
  background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0;
  transform: translateY(0.9em) rotateX(45deg);
  transform-origin: 0 100%;
  animation: word-rise 0.9s var(--ease-out) forwards;
  animation-delay: var(--wd, 0s);
}
.hero-title .word.accent {
  background: linear-gradient(100deg, var(--red) 0%, var(--red-soft) 70%, #ffb3bf 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px; display: flex; justify-content: center;
}
.scroll-cue span {
  width: 3px; height: 9px; border-radius: 3px; background: var(--red-soft);
  margin-top: 8px;
  animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ BORDAS: moldura + trilhos laterais (desktop) ============ */
.edge-frame { display: none; }
.rail { display: none; }

@media (min-width: 1100px) {
  .edge-frame {
    display: block;
    position: fixed; inset: 0;
    pointer-events: none; z-index: 5;
  }
  .edge-frame::before,
  .edge-frame::after {
    content: "";
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg,
      transparent 4%,
      rgba(239, 61, 85, 0.22) 18%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(239, 61, 85, 0.22) 82%,
      transparent 96%);
  }
  .edge-frame::before { left: 34px; }
  .edge-frame::after { right: 34px; }

  .rail-left {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    position: fixed; left: 34px; bottom: 42px; z-index: 6;
    transform: translateX(-50%);
  }
  .rail-left i {
    width: 1px; height: 74px;
    background: linear-gradient(180deg, transparent, var(--red));
  }
  .rail-left span {
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: rgba(245, 244, 246, 0.34);
    background: var(--bg, #030303);
    padding: 10px 0;
  }

  .rail-right {
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    position: fixed; right: 34px; top: 50%; z-index: 6;
    transform: translate(50%, -50%);
    padding: 14px 0;
    background: #030303;
  }
  .rail-right a {
    position: relative;
    width: 9px; height: 9px; border-radius: 50%;
    border: 1.5px solid rgba(245, 244, 246, 0.3);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .rail-right a:hover { border-color: var(--red-soft); transform: scale(1.25); }
  .rail-right a.is-active {
    background: var(--red); border-color: var(--red);
    box-shadow: 0 0 14px rgba(239, 61, 85, 0.65);
  }
  .rail-right a::after {
    content: attr(data-label);
    position: absolute; right: 22px; top: 50%;
    transform: translateY(-50%) translateX(6px);
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-dim); white-space: nowrap;
    opacity: 0; transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }
  .rail-right a:hover::after,
  .rail-right a.is-active::after { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* ============ ENCAIXE (nichos) ============ */
.fit {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.niches { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; }
.niche {
  min-height: 52px; padding: 13px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  touch-action: manipulation;
}
.niche:hover { border-color: rgba(239, 61, 85, 0.4); color: var(--ink); transform: translateY(-2px); }
.niche:active { transform: scale(0.96); }
.niche.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #c2273d 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(239, 61, 85, 0.35);
}
.niche:focus-visible, .btn:focus-visible, .chip:focus-visible, .chat-send:focus-visible {
  outline: 2px solid var(--red-soft); outline-offset: 3px;
}

/* mock de conversa por nicho */
.demo { overflow: hidden; }
.demo-top {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink-dim);
}
.demo-dot { width: 9px; height: 9px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 10px rgba(61, 220, 132, 0.7); }
.demo-chat { padding: 24px 22px 8px; display: grid; gap: 12px; min-height: 240px; align-content: start; }
.demo-foot {
  padding: 14px 22px 18px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245, 244, 246, 0.4);
}

.bubble {
  max-width: 82%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 15px; line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  animation: bubble-in 0.5s var(--ease-out) forwards;
  animation-delay: var(--bd, 0s);
}
.bubble.user {
  justify-self: end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-bottom-right-radius: 6px;
}
.bubble.agent {
  justify-self: start;
  background: linear-gradient(150deg, rgba(239, 61, 85, 0.2), rgba(239, 61, 85, 0.08));
  border: 1px solid rgba(239, 61, 85, 0.3);
  border-bottom-left-radius: 6px;
}
@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ PASSOS ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.step {
  padding: clamp(28px, 3vw, 42px);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.step:hover { background: var(--glass-hover); border-color: rgba(239, 61, 85, 0.3); }
.step.is-core {
  border-color: rgba(239, 61, 85, 0.45);
  background: linear-gradient(160deg, rgba(239, 61, 85, 0.10), rgba(255, 255, 255, 0.03) 60%);
}
.step-index {
  font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px); font-weight: 700;
  line-height: 1;
  background: linear-gradient(100deg, var(--red), var(--red-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 18px 0 6px; }
.step p { color: var(--ink-dim); font-size: 15px; }

/* ============ CHAT (agente simulado) ============ */
.chat {
  max-width: 680px; margin: 0 auto;
  border-radius: 28px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.chat-top {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.chat-avatar {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #c2273d 100%);
  box-shadow: 0 6px 20px rgba(239, 61, 85, 0.4);
}
.chat-id { display: grid; gap: 2px; }
.chat-id strong { font-family: var(--font-display); font-size: 15.5px; }
.chat-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-dim);
}
.chat-status i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3ddc84; box-shadow: 0 0 8px rgba(61, 220, 132, 0.7);
}
.chat-human {
  margin-left: auto;
  font-size: 13px; color: var(--ink-dim);
  padding: 9px 16px; min-height: 40px; display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.chat-human:hover { color: var(--ink); border-color: rgba(239, 61, 85, 0.4); background: rgba(239, 61, 85, 0.08); }

.chat-log {
  padding: 26px 22px;
  display: grid; gap: 14px; align-content: start;
  min-height: 300px; max-height: min(46vh, 460px);
  overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
.chat-log .bubble { max-width: 88%; }

/* resumo final dentro do chat */
.chat-summary {
  justify-self: start;
  width: 100%; max-width: 88%;
  border: 1px solid rgba(239, 61, 85, 0.3);
  border-radius: 18px; border-bottom-left-radius: 6px;
  background: linear-gradient(150deg, rgba(239, 61, 85, 0.14), rgba(255, 255, 255, 0.03) 70%);
  padding: 18px 20px;
  opacity: 0; transform: translateY(14px);
  animation: bubble-in 0.5s var(--ease-out) forwards;
}
.chat-summary dl { display: grid; gap: 8px; margin-bottom: 4px; }
.chat-summary dt {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-soft);
}
.chat-summary dd { font-size: 15px; margin-bottom: 6px; }

/* digitando… */
.typing {
  justify-self: start;
  display: inline-flex; gap: 5px; align-items: center;
  padding: 14px 18px;
  border-radius: 18px; border-bottom-left-radius: 6px;
  background: linear-gradient(150deg, rgba(239, 61, 85, 0.2), rgba(239, 61, 85, 0.08));
  border: 1px solid rgba(239, 61, 85, 0.3);
}
.typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: typing 1.1s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* opções de resposta */
.chat-options {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0 22px 20px;
}
.chip {
  min-height: 46px; padding: 11px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--ink);
  border: 1px solid rgba(239, 61, 85, 0.35); border-radius: 999px;
  background: rgba(239, 61, 85, 0.08);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  touch-action: manipulation;
  opacity: 0; transform: translateY(10px);
  animation: bubble-in 0.4s var(--ease-out) forwards;
  animation-delay: var(--bd, 0s);
}
.chip:hover {
  background: rgba(239, 61, 85, 0.18); border-color: var(--red);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239, 61, 85, 0.25);
}
.chip:active { transform: scale(0.96); }
.chip.muted { border-color: var(--line); background: rgba(255, 255, 255, 0.04); color: var(--ink-dim); }
.chip.muted:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.25); box-shadow: none; }

/* entrada livre */
.chat-input {
  display: flex; gap: 10px;
  padding: 0 22px 22px;
}
.chat-input[hidden] { display: none; }
.chat-input input {
  flex: 1; min-height: 50px; padding: 13px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.chat-input input::placeholder { color: rgba(245, 244, 246, 0.3); }
.chat-input input:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 61, 85, 0.18);
}
.chat-send {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #c2273d 100%);
  box-shadow: 0 6px 20px rgba(239, 61, 85, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  touch-action: manipulation;
}
.chat-send:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(239, 61, 85, 0.5); }
.chat-send:active { transform: scale(0.94); }

/* ============ PLANOS ============ */
.plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}
.plan { padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; position: relative; }
.plan:hover { transform: translateY(-6px); }
.plan-tier {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim);
}
.plan-value {
  font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 32px); font-weight: 700;
  margin: 12px 0 8px; letter-spacing: -0.02em; line-height: 1.15;
}
.plan-value em { font-style: normal; color: var(--red-soft); }
.plan-desc { color: var(--ink-dim); font-size: 14.5px; margin-bottom: 22px; }
.plan ul { display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan-invest {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim);
  text-align: center; margin-bottom: 14px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.plan li { padding-left: 24px; position: relative; font-size: 14.5px; color: var(--ink-dim); }
.plan li::before {
  content: "✓"; position: absolute; left: 0; color: var(--red-soft); font-weight: 700;
}
.plan.featured {
  border-color: rgba(239, 61, 85, 0.5);
  background: linear-gradient(170deg, rgba(239, 61, 85, 0.12), rgba(255, 255, 255, 0.03) 55%);
  box-shadow: 0 30px 80px rgba(239, 61, 85, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(1.03);
}
.plan.featured:hover { transform: scale(1.03) translateY(-6px); }
.plan.featured li { color: var(--ink); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), #c2273d);
  color: #fff; font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(239, 61, 85, 0.4);
}
.plan-badge.soft {
  background: rgba(28, 28, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.plans-compare { margin-top: clamp(28px, 4vw, 48px); padding: clamp(18px, 2.4vw, 32px); overflow-x: auto; }
.plans-compare table { width: 100%; border-collapse: collapse; min-width: 560px; }
.plans-compare th, .plans-compare td {
  padding: 13px 14px; font-size: 14px; text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.plans-compare tbody tr:last-child th, .plans-compare tbody tr:last-child td { border-bottom: none; }
.plans-compare thead th {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
}
.plans-compare tbody th[scope="row"] {
  text-align: left; font-weight: 500; color: var(--ink-dim); font-size: 14px;
}
.plans-compare td { color: var(--ink-dim); }
.plans-compare td:not(.col-featured) { opacity: 0.75; }
.plans-compare .col-featured { color: var(--ink); font-weight: 600; background: rgba(239, 61, 85, 0.08); }
.plans-compare thead .col-featured { color: var(--red-soft); }
.plans-note { margin-top: 28px; text-align: center; color: var(--ink-dim); font-size: 13.5px; }

/* ============ MARCA GIGANTE ============ */
.brand-giant {
  padding: clamp(72px, 12vw, 160px) var(--pad) clamp(48px, 8vw, 110px);
  display: grid; gap: clamp(18px, 3vw, 30px); justify-items: center;
  text-align: center;
}
.brand-giant img {
  width: min(1080px, 88vw);
  height: auto;
  filter: drop-shadow(0 24px 80px rgba(239, 61, 85, 0.28));
}
.brand-giant p {
  color: var(--ink-dim);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 64px) var(--pad);
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 18px; justify-items: start;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer nav a {
  font-size: 14px; color: var(--ink-dim);
  transition: color 0.3s;
}
.footer nav a:hover { color: var(--red-soft); }
.footer-copy { font-size: 13px; color: rgba(245, 244, 246, 0.35); }

/* ============ REVEAL (scroll) ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.9s var(--ease-out) var(--d, 0s),
    transform 0.9s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-64px); }
[data-reveal="right"] { transform: translateX(64px); }
[data-reveal="scale"] { transform: scale(0.92) translateY(30px); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
  .fit { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 480px; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan.featured { transform: none; order: -1; }
  .plan.featured:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .scroll-cue { display: none; }
  .niche { flex: 1 1 calc(50% - 12px); }
  .chat-human { padding: 9px 12px; font-size: 12px; }
  .chat-log { max-height: 52vh; }
  /* corta efeitos caros no mobile */
  .glass { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(16, 16, 18, 0.72); }
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(44px); }
}
