/* SmartOwners — Landing redesign
   Type: Inter Tight (display) + Inter (body) + JetBrains Mono (data)
   Palette anchor: deep purple kept; CTA evolved from yellow → electric lime.
*/

:root {
  /* Brand purples — refined ladder */
  --plum-950: oklch(0.20 0.10 295);
  --plum-900: oklch(0.26 0.13 295);
  --plum-800: oklch(0.32 0.15 295);
  --plum-700: oklch(0.40 0.17 295);
  --plum-600: oklch(0.50 0.19 295);
  --plum-500: oklch(0.60 0.18 295);
  --plum-400: oklch(0.70 0.14 295);
  --plum-300: oklch(0.82 0.08 295);
  --plum-200: oklch(0.90 0.04 295);
  --plum-100: oklch(0.96 0.02 295);

  /* Neutrals — warm pearl */
  --ink-950: oklch(0.18 0.015 295);
  --ink-800: oklch(0.30 0.012 295);
  --ink-600: oklch(0.50 0.010 295);
  --ink-500: oklch(0.60 0.008 290);
  --ink-400: oklch(0.72 0.006 290);
  --ink-300: oklch(0.85 0.005 290);
  --ink-200: oklch(0.93 0.005 90);
  --ink-100: oklch(0.97 0.006 90);
  --ink-50:  oklch(0.985 0.004 80);
  --paper:   oklch(0.985 0.006 85);

  /* Accents — CTA color is tweakable */
  --lime:    oklch(0.88 0.20 128);
  --lime-ink:oklch(0.28 0.10 140);
  --coral:   oklch(0.74 0.18 30);
  --amber:   oklch(0.82 0.16 80);
  --mint:    oklch(0.84 0.13 170);
  --rose:    oklch(0.78 0.16 10);

  /* Status */
  --ok:   oklch(0.66 0.16 155);
  --warn: oklch(0.80 0.16 75);
  --err:  oklch(0.62 0.20 25);

  --cta:        var(--lime);
  --cta-ink:    var(--lime-ink);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 2px rgba(20,8,40,.05), 0 8px 24px -12px rgba(20,8,40,.12);
  --shadow-pop:  0 30px 60px -25px rgba(20,8,40,.45), 0 12px 30px -15px rgba(20,8,40,.25);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  background: var(--paper);
  color: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* Boot loader */
.boot {
  min-height: 100vh;
  display: grid; place-items: center;
  background: var(--plum-950);
  color: white;
}
.boot-card { text-align: center; }
.boot-logo {
  font-family: 'Inter Tight';
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.04em;
}
.boot-logo span { color: var(--lime); }
.boot p { color: var(--plum-300); margin-top: 12px; }

/* ============= Layout ============= */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============= Nav ============= */
.nav {
  position: sticky; top: 0; z-index: 80;
  /* Fundo sólido em vez de translúcido+blur: o backdrop-filter reprocessava
     o desfoque a cada frame de scroll (jank de rolagem, sobretudo no mobile).
     Sólido = zero custo de composição por frame, visual quase idêntico já que
     a nav senta sobre conteúdo majoritariamente claro (--paper). */
  background: var(--paper);
  border-bottom: 1px solid color-mix(in oklch, var(--plum-200) 60%, transparent);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  /* horizontal 28px preserva o gutter do .wrap (o shorthand o sobrescreveria com 0). */
  padding: 16px 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Inter Tight'; font-weight: 800; letter-spacing: -0.02em; font-size: 19px; color: var(--plum-900); }
.brand-logo { height: 32px !important; width: auto; max-width: none; display: block; }
.brand-logo-white { height: 36px !important; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-800));
  position: relative;
  box-shadow: inset 0 -6px 12px rgba(255,255,255,.18);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 5px;
  border-radius: 5px;
  background: conic-gradient(from 35deg, transparent 0deg, rgba(255,255,255,.6) 70deg, transparent 140deg);
  mix-blend-mode: overlay;
}
.brand small { color: var(--ink-500); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-800); font-weight: 500; }
.nav-links a:hover { color: var(--plum-700); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 12px;
  font-weight: 600; font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .2s;
}
.btn-primary {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 6px 16px -6px color-mix(in oklch, var(--cta) 60%, transparent), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px color-mix(in oklch, var(--cta) 70%, transparent), inset 0 -2px 0 rgba(0,0,0,.08); }
.btn-ghost {
  background: transparent;
  color: var(--ink-950);
  border: 1px solid var(--ink-300);
}
.btn-ghost:hover { background: var(--ink-100); }
.btn-light {
  background: white; color: var(--plum-900);
  border: 1px solid color-mix(in oklch, var(--plum-300) 50%, transparent);
}
.btn-lg { padding: 16px 24px; font-size: 15px; border-radius: 14px; }
.btn-link { color: var(--ink-800); font-size: 14px; font-weight: 500; }

/* ============= Hero (redesign — 4 conceitos + fundo animado) ============= */
.hero {
  position: relative;
  color: white;
  overflow: hidden;
  border-bottom: 1px solid var(--plum-800);
  background:
    radial-gradient(1200px 700px at 85% -10%, color-mix(in oklch, var(--plum-500) 60%, transparent), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, color-mix(in oklch, var(--plum-700) 60%, transparent), transparent 65%),
    linear-gradient(180deg, var(--plum-950), var(--plum-900) 70%, var(--plum-800));
}
/* aurora animada (lavagem de cor)
   SEM blur de propósito: os radial-gradients já são suaves, e blur(10px)
   numa camada maior que a viewport + animação infinita re-rasterizava o
   filtro no GPU o tempo todo — era o que derretia máquina modesta. A
   animação restante é só transform (compositor-only). */
.hero::before {
  content: ''; position: absolute; inset: -20% -10% 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px 400px at 20% 20%, color-mix(in oklch, var(--lime) 16%, transparent), transparent 60%),
    radial-gradient(700px 500px at 80% 60%, color-mix(in oklch, var(--plum-400) 22%, transparent), transparent 60%);
  will-change: transform;
  animation: aurora 16s ease-in-out infinite alternate;
}
/* Hero fora da tela = TODAS as animações do hero pausam (aurora, janelas,
   orbs, linhas). Sem isto, ~370 animações infinitas seguiam recalculando
   estilo a cada frame durante a rolagem da página inteira. */
.hero.is-offscreen::before,
.hero.is-offscreen *,
.hero.is-offscreen svg * {
  animation-play-state: paused !important;
}
@keyframes aurora { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(-4%, 3%, 0) scale(1.08); } }
/* grade (elemento próprio — antes era ::before) */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 75% at 60% 0%, black 30%, transparent 80%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr 1fr; gap: 60px; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 92px 28px 116px;
}

/* ---- Coluna de copy ---- */
.hero-copy { max-width: 560px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 999px;
  background: color-mix(in oklch, var(--plum-700) 50%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-400) 30%, transparent);
  color: var(--plum-100); font-size: 13px; font-weight: 500;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px color-mix(in oklch, var(--lime) 30%, transparent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

.hero-h1 { font-size: clamp(2.5rem, 5vw, 4.1rem); line-height: 1.02; margin-top: 20px; font-weight: 900; }
.hero-h1 .accent { position: relative; background: linear-gradient(96deg, var(--plum-200), var(--lime) 75%); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; font-weight: 800; white-space: nowrap; }
.hero-h1 .accent::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--lime)); transform: scaleX(0); transform-origin: left; animation: underline 1s cubic-bezier(.16,1,.3,1) .5s forwards; }
@keyframes underline { to { transform: scaleX(1); } }

/* Compat: o hero do prelaunch (HeroSection.vue) usa <h1> sem a classe .hero-h1 */
.hero h1:not(.hero-h1) { font-size: clamp(48px, 6vw, 84px); line-height: 1.0; margin-top: 22px; font-weight: 900; }
.hero h1:not(.hero-h1) .accent { background: linear-gradient(96deg, var(--plum-200), var(--lime) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; font-weight: 800; }

.lead { margin-top: 22px; font-size: 18.5px; line-height: 1.55; color: color-mix(in oklch, var(--plum-100) 85%, transparent); max-width: 540px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-ghost { background: color-mix(in oklch, var(--plum-700) 35%, transparent); color: white; border: 1px solid color-mix(in oklch, var(--plum-400) 40%, transparent); }
.btn-hero-ghost:hover { background: color-mix(in oklch, var(--plum-700) 55%, transparent); }
.hero-price { margin-top: 18px; font-size: 14.5px; color: color-mix(in oklch, white 78%, transparent); }
.hero-price strong { color: #fff; font-weight: 700; }
.hero-price a { margin-left: 6px; color: var(--lime); font-weight: 600; white-space: nowrap; }
.hero-price a:hover { text-decoration: underline; }
.hero-trust { margin-top: 26px; display: flex; gap: 22px; flex-wrap: wrap; color: color-mix(in oklch, var(--plum-200) 80%, transparent); font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .check { color: var(--lime); }

/* ---- Coluna do visual (compartilhada) ---- */
.hero-vis { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
@keyframes pop-in { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ====== CONCEITO 1 · Conversa viva ====== */
.lia-chat { position: relative; z-index: 2; width: 100%; max-width: 420px; background: #fff; border-radius: 22px; box-shadow: 0 30px 70px -22px rgba(20,8,40,.6); overflow: hidden; }
.lia-chat-bar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: linear-gradient(120deg, var(--plum-700), var(--plum-900)); color: #fff; }
.lia-ava-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: top; background: var(--lime); flex-shrink: 0; }
.lia-id strong { display: block; font-size: 0.95rem; line-height: 1.1; }
.lia-id span { font-size: 0.72rem; opacity: 0.85; display: inline-flex; align-items: center; gap: 5px; }
.lia-pip { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); display: inline-block; box-shadow: 0 0 0 0 color-mix(in oklch, var(--lime) 70%, transparent); animation: livepip 2s infinite; }
@keyframes livepip { 0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--lime) 60%, transparent); } 70% { box-shadow: 0 0 0 6px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.lia-chat-body { padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; gap: 11px; height: 320px; overflow: hidden; background: #faf7ff; }
.lia-bubble { max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: 0.86rem; line-height: 1.45; animation: bubble-in .4s cubic-bezier(.16,1,.3,1) both; }
@keyframes bubble-in { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }
.lia-bubble.user { align-self: flex-end; background: var(--plum-600); color: #fff; border-bottom-right-radius: 5px; }
.lia-bubble.lia { align-self: flex-start; background: #fff; color: var(--plum-950); border: 1px solid #ece6f7; border-bottom-left-radius: 5px; }
.lia-tag { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--plum-500); margin-bottom: 3px; }
.lia-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 12px 15px; background: #fff; border: 1px solid #ece6f7; border-radius: 16px; border-bottom-left-radius: 5px; }
.lia-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--plum-400); animation: typedot 1.2s infinite; }
.lia-typing i:nth-child(2) { animation-delay: .18s; } .lia-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typedot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.lia-chat-foot { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-top: 1px solid #f0ebf8; background: #fff; font-size: 0.66rem; }
.lia-ota { background: #f3eefd; color: #6d28d9; padding: 3px 8px; border-radius: 6px; font-weight: 700; transition: background .3s, color .3s, transform .3s; }
.lia-ota.lit { background: var(--lime); color: var(--lime-ink); transform: translateY(-2px); }
.lia-sync { margin-left: auto; color: var(--ok); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.lia-sync .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.chat-toast { position: absolute; left: -38px; bottom: 96px; z-index: 5; background: white; padding: 12px 15px; border-radius: 14px; box-shadow: 0 22px 44px -14px rgba(0,0,0,.4); display: flex; align-items: center; gap: 11px; color: var(--ink-950); animation: float-y 6s ease-in-out infinite; }
.chat-toast .ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklch, var(--ok) 18%, transparent); color: var(--ok); font-weight: 700; flex-shrink: 0; }
.chat-toast strong { display: block; font-size: 13px; } .chat-toast span { display: block; font-size: 11px; color: var(--ink-500); }

/* ====== CONCEITO 2 · Convergência dos canais ====== */
.converge { position: relative; width: 100%; max-width: 480px; aspect-ratio: 1; }
.converge svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.converge-line { stroke: color-mix(in oklch, var(--lime) 70%, transparent); stroke-width: 2; stroke-dasharray: 6 8; fill: none; opacity: .6; animation: flowline 1.4s linear infinite; }
@keyframes flowline { to { stroke-dashoffset: -28; } }
.converge-orb { position: absolute; width: 76px; height: 76px; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; background: rgba(255,255,255,.97); box-shadow: 0 16px 36px -12px rgba(0,0,0,.5); animation: orb-float 5s ease-in-out infinite; }
.converge-orb .om { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: white; font-family: 'Inter Tight'; font-weight: 800; font-size: 15px; }
.converge-orb .on { font-size: 9px; font-weight: 700; color: var(--ink-600); font-family: 'JetBrains Mono', monospace; }
@keyframes orb-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.converge-hub { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 4; width: 168px; background: var(--plum-950); border: 1px solid var(--plum-700); border-radius: 22px; padding: 18px 16px; box-shadow: 0 30px 70px -20px rgba(0,0,0,.7); text-align: center; }
.converge-hub::after { content: ''; position: absolute; inset: -6px; border-radius: 26px; border: 1px solid color-mix(in oklch, var(--lime) 45%, transparent); animation: hub-ring 2.6s ease-out infinite; }
@keyframes hub-ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.22); opacity: 0; } }
.converge-hub img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: top; background: var(--lime); margin: 0 auto; display: block; }
.converge-hub .hub-name { font-family: 'Inter Tight'; font-weight: 800; font-size: 15px; color: white; margin-top: 8px; }
.converge-hub .hub-sync { margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--lime); display: inline-flex; align-items: center; gap: 5px; }
.converge-hub .hub-sync .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s infinite; }
.converge-cap { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); white-space: nowrap; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: color-mix(in oklch, var(--plum-200) 80%, transparent); }
@media (max-width: 480px) { .converge { max-width: 340px; } .converge-orb { width: 60px; height: 60px; } .converge-hub { width: 138px; } }

/* ====== CONCEITO 3 · Lia protagonista ====== */
.lia-stage { position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/5; display: flex; align-items: flex-end; justify-content: center; }
.lia-glow { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%); width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, color-mix(in oklch, var(--lime) 30%, transparent), color-mix(in oklch, var(--plum-500) 28%, transparent) 45%, transparent 70%); filter: blur(8px); animation: glowpulse 5s ease-in-out infinite; }
@keyframes glowpulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .9; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; } }
.lia-hero-img { position: relative; z-index: 2; height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 24px 50px rgba(0,0,0,.5)); }
.lia-float { position: absolute; z-index: 3; background: white; color: var(--ink-950); border-radius: 14px; padding: 12px 14px; box-shadow: 0 22px 44px -16px rgba(0,0,0,.5); animation: float-y 6s ease-in-out infinite; }
.lia-float .lf-label { font-size: 10px; font-family: 'JetBrains Mono', monospace; color: var(--ink-500); text-transform: uppercase; letter-spacing: .08em; }
.lia-float .lf-val { font-family: 'Inter Tight'; font-weight: 800; font-size: 22px; letter-spacing: -.02em; margin-top: 2px; }
.lia-float .lf-val.lime { color: var(--ok); }
.lia-float .lf-sub { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
.lf-1 { left: -28px; top: 14%; animation-delay: 0s; }
.lf-2 { right: -24px; top: 34%; animation-delay: 1s; }
.lf-3 { right: -6px; bottom: 12%; animation-delay: 2s; }
.lia-chip-row { position: absolute; left: -14px; bottom: 18%; z-index: 3; display: flex; gap: 6px; background: white; padding: 8px 10px; border-radius: 12px; box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); animation: float-y 7s .5s ease-in-out infinite; }
.lia-chip { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: white; font-family: 'Inter Tight'; font-weight: 800; font-size: 11px; }
@media (max-width: 1024px) { .lia-stage { max-width: 380px; } .lf-1 { left: 0; } .lf-2, .lf-3 { right: 0; } }

/* ====== CONCEITO 4 · Antes / Depois ====== */
.ba-wrap { position: relative; width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 18px; }
.ba-card { border-radius: 20px; padding: 20px; position: relative; }
.ba-before { background: linear-gradient(180deg, color-mix(in oklch, var(--err) 14%, var(--plum-900)), var(--plum-900)); border: 1px solid color-mix(in oklch, var(--err) 30%, var(--plum-700)); }
.ba-after { background: white; color: var(--ink-950); box-shadow: 0 26px 56px -20px rgba(20,8,40,.55); }
.ba-head { display: flex; align-items: center; justify-content: space-between; }
.ba-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.ba-before .ba-tag { color: color-mix(in oklch, var(--err) 80%, white); }
.ba-after .ba-tag { color: var(--ok); }
.ba-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.ba-before .ba-badge { background: color-mix(in oklch, var(--err) 26%, transparent); color: color-mix(in oklch, var(--err) 70%, white); }
.ba-tabs { position: relative; height: 96px; margin-top: 14px; }
.ba-tab { position: absolute; width: 76%; border-radius: 10px; padding: 9px 12px; background: color-mix(in oklch, var(--plum-800) 88%, white); border: 1px solid color-mix(in oklch, var(--plum-600) 50%, transparent); display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--plum-100); box-shadow: 0 8px 20px -8px rgba(0,0,0,.5); }
.ba-tab .tdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ba-tab-1 { top: 0; left: 0; transform: rotate(-4deg); animation: jit1 4s ease-in-out infinite; }
.ba-tab-2 { top: 16px; left: 16%; transform: rotate(2deg); animation: jit2 4.4s ease-in-out infinite; }
.ba-tab-3 { top: 34px; left: 6%; transform: rotate(-1deg); animation: jit1 3.6s ease-in-out infinite .4s; }
.ba-tab-4 { top: 50px; left: 22%; transform: rotate(3deg); animation: jit2 4.2s ease-in-out infinite .2s; }
@keyframes jit1 { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-3px); } }
@keyframes jit2 { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(4deg) translateY(3px); } }
.ba-conflict { position: absolute; right: 0; top: 24px; z-index: 3; background: var(--err); color: white; font-size: 10px; font-weight: 700; padding: 6px 10px; border-radius: 10px; box-shadow: 0 10px 24px -8px rgba(0,0,0,.5); animation: shake 3s ease-in-out infinite; }
@keyframes shake { 0%,92%,100% { transform: translateX(0); } 94% { transform: translateX(-3px); } 96% { transform: translateX(3px); } 98% { transform: translateX(-2px); } }
.ba-arrow { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--lime); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; }
.ba-arrow .ln { flex: 1; height: 1px; background: color-mix(in oklch, var(--lime) 40%, transparent); max-width: 80px; }
.ba-msg { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.ba-bub { max-width: 88%; padding: 10px 13px; border-radius: 14px; font-size: 0.84rem; line-height: 1.4; }
.ba-bub.user { align-self: flex-end; background: var(--plum-600); color: white; border-bottom-right-radius: 4px; }
.ba-bub.lia { align-self: flex-start; background: var(--ink-100); border: 1px solid var(--ink-200); color: var(--plum-950); border-bottom-left-radius: 4px; }
.ba-bub .lia-tag { color: var(--plum-500); }
.ba-after-foot { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.68rem; }
.ba-after-foot .lia-ota { animation: none; }

/* ============= Hero — fundos animados (HeroBg) ============= */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, var(--plum-950) 20%, color-mix(in oklch, var(--plum-950) 42%, transparent) 50%, transparent 74%),
    linear-gradient(0deg, color-mix(in oklch, var(--plum-950) 60%, transparent), transparent 44%);
}
@media (max-width: 1024px) {
  .hero-bg::after { background: linear-gradient(180deg, color-mix(in oklch, var(--plum-950) 55%, transparent), color-mix(in oklch, var(--plum-950) 30%, transparent) 60%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .hero-bg * { animation: none !important; } }
/* Calendário vivo */
.hbg-cal { position: absolute; inset: -3%; display: grid; grid-template-columns: repeat(16, 1fr); grid-auto-rows: 1fr; gap: 7px; opacity: .55; }
.hbg-cal i { border-radius: 6px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.05); animation: calfill 7s ease-in-out infinite; }
@keyframes calfill {
  0%, 64%, 100% { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.05); }
  28%, 46% { background: color-mix(in oklch, var(--lime) 26%, transparent); border-color: color-mix(in oklch, var(--lime) 40%, transparent); }
}
/* Mapa de reservas */
.hbg-map { position: absolute; inset: 0; }
.hbg-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hbg-route { stroke: color-mix(in oklch, var(--lime) 50%, transparent); stroke-width: 1.4; fill: none; stroke-dasharray: 5 9; opacity: .45; animation: flow 2.4s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -28; } }
.hbg-pin { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px color-mix(in oklch, var(--lime) 80%, transparent); transform: translate(-50%, -50%); }
.hbg-pin::after { content: ''; position: absolute; inset: -7px; border-radius: 50%; border: 1.5px solid color-mix(in oklch, var(--lime) 65%, transparent); animation: ping 3.2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(3); opacity: 0; } }
.hbg-pin.plum { background: var(--plum-300); box-shadow: 0 0 14px color-mix(in oklch, var(--plum-300) 70%, transparent); }
.hbg-pin.plum::after { border-color: color-mix(in oklch, var(--plum-300) 60%, transparent); }
/* Janelas acendendo (prédios) */
.hbg-sky { position: absolute; left: 0; right: 0; bottom: 0; height: 58%; display: flex; align-items: flex-end; justify-content: center; gap: 16px; padding: 0 2%; opacity: .48; }
.hbg-bldg {
  position: relative; min-width: 0;
  background: linear-gradient(180deg, color-mix(in oklch, var(--plum-500) 18%, transparent), color-mix(in oklch, var(--plum-950) 52%, transparent));
  border-radius: 5px 5px 0 0;
  border: 1px solid color-mix(in oklch, var(--plum-400) 30%, transparent);
  border-bottom: 0;
  box-shadow: inset 0 -40px 50px -30px color-mix(in oklch, var(--plum-950) 60%, transparent);
}
.hbg-bldg::before { content: ''; position: absolute; top: -3px; left: -2px; right: -2px; height: 5px; border-radius: 3px; background: color-mix(in oklch, var(--plum-400) 28%, transparent); }
.hbg-tank { position: absolute; top: -15px; width: 22px; height: 13px; left: 16%; border-radius: 3px 3px 0 0; background: color-mix(in oklch, var(--plum-400) 30%, transparent); border: 1px solid color-mix(in oklch, var(--plum-300) 26%, transparent); }
.hbg-antenna { position: absolute; top: -30px; right: 20%; width: 1.5px; height: 17px; background: color-mix(in oklch, var(--plum-300) 36%, transparent); }
.hbg-antenna::after { content: ''; position: absolute; top: -3px; left: -2px; width: 5px; height: 5px; border-radius: 50%; background: color-mix(in oklch, var(--lime) 55%, transparent); }
.hbg-facade { position: absolute; inset: 15px 9px 0; display: grid; gap: 8px 10px; align-content: start; }
/* Janela é ESTÁTICA por default — só ~1/3 delas (.anim) pisca. Antes todas
   as ~370 tinham animação infinita, e o navegador recalcula estilo de cada
   elemento animado a cada frame, mesmo com steps(). */
.hbg-win { position: relative; aspect-ratio: 3 / 4; border-radius: 1.5px; background: rgba(255,255,255,.035); border: .5px solid rgba(255,255,255,.05); }
.hbg-win.anim { animation: winlit 7s steps(1, end) infinite; }
.hbg-win.y { background: color-mix(in oklch, var(--warn) 22%, transparent); }
.hbg-win.y.anim { animation-name: winlit-y; }
.hbg-win.bal::after { content: ''; position: absolute; left: -3px; right: -3px; bottom: -3px; height: 2px; border-radius: 1px; background: color-mix(in oklch, var(--plum-300) 24%, transparent); }
@keyframes winlit { 0%, 100% { background: rgba(255,255,255,.035); } 38%, 64% { background: rgba(255,250,238,.5); } }
@keyframes winlit-y { 0%, 100% { background: rgba(255,255,255,.035); } 38%, 64% { background: color-mix(in oklch, var(--warn) 50%, transparent); } }
/* Rede de canais */
.hbg-net { position: absolute; inset: 0; }
.hbg-net svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hbg-net-line { stroke-width: 1.3; fill: none; stroke-dasharray: 4 8; opacity: .4; animation: flow 2.2s linear infinite; }
.hbg-node { position: absolute; width: 44px; height: 44px; border-radius: 13px; transform: translate(-50%, -50%); display: grid; place-items: center; color: #fff; font-family: 'Inter Tight'; font-weight: 800; font-size: 15px; box-shadow: 0 10px 26px -8px rgba(0,0,0,.6); animation: node-float 6s ease-in-out infinite; }
.hbg-node::after { content: ''; position: absolute; inset: -5px; border-radius: 17px; border: 1.5px solid currentColor; opacity: .35; animation: node-ring 3s ease-out infinite; }
@keyframes node-float { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 12px)); } }
@keyframes node-ring { 0% { transform: scale(.85); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }

/* ============= Hero Dashboard mockup ============= */
.hd-wrap { position: relative; perspective: 1400px; }
.hd {
  position: relative;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid color-mix(in oklch, var(--plum-700) 30%, transparent);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), 0 18px 36px -18px rgba(0,0,0,.35);
  overflow: hidden;
  transform: rotateY(-7deg) rotateX(3deg) translateZ(0);
  transform-origin: center center;
  color: var(--ink-950);
}
.hd-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: oklch(0.96 0.01 290);
  border-bottom: 1px solid var(--ink-200);
}
.hd-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hd-bar .dot.r { background: oklch(0.78 0.14 25); }
.hd-bar .dot.y { background: oklch(0.85 0.14 80); }
.hd-bar .dot.g { background: oklch(0.78 0.14 145); }
.hd-url {
  margin-left: 14px; flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-500);
  background: white; padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--ink-200);
}
.hd-body { padding: 18px; background: var(--ink-100); }
.hd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hd-kpi {
  background: white; border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.hd-kpi-l { font-size: 11px; color: var(--ink-500); }
.hd-kpi strong { font-family: 'Inter Tight'; font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--ink-950); }
.hd-kpi strong.accent { color: var(--plum-700); }
.hd-kpi-d { font-size: 11px; color: var(--ok); font-family: 'JetBrains Mono', monospace; }

.hd-cal {
  margin-top: 12px;
  background: white;
  border-radius: 12px;
  padding: 14px;
}
.hd-cal-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hd-cal-head strong { font-size: 13px; font-family: 'Inter Tight'; font-weight: 700; color: var(--ink-950); }
.hd-legend { display: flex; gap: 10px; flex-wrap: wrap; }
.hd-legend span { font-size: 10px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 5px; }
.hd-legend i { width: 8px; height: 8px; border-radius: 3px; display: inline-block; }
.hd-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 12px; }
.hd-cal-grid.big { grid-template-columns: repeat(7, 1fr); gap: 6px; }
.hd-cell {
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
  font-size: 10px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.hd-cell.booked { background: color-mix(in oklch, oklch(0.88 0.13 155) 35%, white); }
.hd-cell.booked .hd-p { color: oklch(0.45 0.15 150); }
.hd-cell.high { background: color-mix(in oklch, var(--plum-300) 60%, white); }
.hd-cell.high .hd-p { color: var(--plum-800); font-weight: 700; }
.hd-cell.empty { background: var(--ink-100); }
.hd-cell.empty .hd-p { color: var(--ink-400); }
.hd-d { font-weight: 600; color: var(--ink-800); }
.hd-p { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.hd-cell.pulse { transform: translateY(-2px); box-shadow: 0 6px 14px -4px color-mix(in oklch, var(--plum-500) 40%, transparent); }

.hd-otas { display: flex; gap: 6px; margin-top: 10px; align-items: center; flex-wrap: wrap; }
.ota-chip { font-size: 10px; padding: 3px 8px; border-radius: 999px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.ota-chip.airbnb { background: color-mix(in oklch, oklch(0.65 0.20 20) 18%, transparent); color: oklch(0.55 0.20 20); }
.ota-chip.booking { background: color-mix(in oklch, oklch(0.42 0.18 260) 15%, transparent); color: oklch(0.42 0.18 260); }
.ota-chip.vrbo { background: color-mix(in oklch, oklch(0.50 0.18 250) 14%, transparent); color: oklch(0.50 0.18 250); }
.ota-chip.expedia { background: color-mix(in oklch, oklch(0.78 0.16 80) 25%, transparent); color: oklch(0.42 0.10 80); }
.hd-sync { font-size: 10px; color: var(--ok); font-family: 'JetBrains Mono', monospace; margin-left: auto; }

.hd-toast {
  position: absolute;
  left: -40px; bottom: -22px;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  border: 1px solid var(--ink-200);
  animation: toast-in .5s ease-out;
  max-width: 260px;
  z-index: 4;
}
@keyframes toast-in {
  from { transform: translateY(8px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.hd-toast strong { display: block; color: var(--ink-950); font-size: 13px; font-weight: 700; }
.hd-toast span { display: block; color: var(--ink-500); font-size: 12px; }
.hd-toast-ic {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.hd-toast.tone-ok .hd-toast-ic { background: color-mix(in oklch, var(--ok) 18%, transparent); color: var(--ok); }
.hd-toast.tone-plum .hd-toast-ic { background: color-mix(in oklch, var(--plum-500) 18%, transparent); color: var(--plum-700); }
.hd-toast.tone-warn .hd-toast-ic { background: color-mix(in oklch, var(--warn) 25%, transparent); color: oklch(0.55 0.16 75); }

.hd-card-side {
  position: absolute;
  right: -28px; top: 56px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 16px;
  width: 220px;
  box-shadow: 0 22px 40px -12px rgba(0,0,0,.3);
  z-index: 3;
}
.hd-side-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--ink-700); }
.hd-side-row + .hd-side-row { border-top: 1px dashed var(--ink-200); }
.hd-side-row strong { font-family: 'Inter Tight'; font-weight: 800; color: var(--ink-950); }
.hd-side-foot { margin-top: 10px; font-size: 10px; color: var(--ink-500); font-family: 'JetBrains Mono', monospace; }

.hd-abs { background: var(--plum-950); border-color: var(--plum-700); }
.hd-abs .hd-bar { background: var(--plum-900); border-color: var(--plum-800); }
.hd-abs .hd-url { background: var(--plum-800); border-color: var(--plum-700); color: var(--plum-300); }
.hd-abs-body { padding: 22px; background: var(--plum-950); }

/* ============= Live counter row ============= */
.tape {
  position: relative;
  background: var(--plum-950);
  color: white;
  padding: 18px 0;
  border-top: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  overflow: hidden;
}
.tape-track {
  display: flex; gap: 56px;
  animation: tape-scroll 50s linear infinite;
  width: max-content;
}
.tape-item { display: flex; align-items: baseline; gap: 12px; font-size: 14px; color: color-mix(in oklch, var(--plum-200) 90%, transparent); white-space: nowrap; }
.tape-item strong { font-family: 'Inter Tight'; font-weight: 800; color: white; font-size: 22px; letter-spacing: -0.01em; }
.tape-item .sep { color: var(--plum-500); }
@keyframes tape-scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============= OTA strip ============= */
.otas {
  background: var(--paper);
  padding: 64px 0;
  border-bottom: 1px solid var(--ink-200);
}
.otas-label {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--ink-500);
  text-align: center;
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.otas-label::before, .otas-label::after { content: ''; height: 1px; flex: 0 0 60px; background: var(--ink-300); }
.ota-row {
  margin-top: 30px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ota-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--ink-200);
  transition: transform .2s, border-color .2s;
}
.ota-tile:hover { transform: translateY(-2px); border-color: var(--plum-300); }
.ota-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 800; font-size: 17px;
}
.ota-name { font-weight: 600; font-size: 15px; color: var(--ink-950); }
.ota-meta { font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--ok); display: flex; align-items: center; gap: 5px; }
.ota-meta .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* ============= Section base ============= */
.section { padding: 110px 0; }
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--plum-700);
  text-transform: uppercase;
}
.section-title { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; margin-top: 14px; max-width: 16ch; }
.section-sub { color: var(--ink-600); font-size: 18px; line-height: 1.55; max-width: 56ch; margin-top: 16px; }

/* ============= Comparison ============= */
.compare {
  background: var(--ink-100);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.compare-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-200);
}
.compare-card.bad { background: linear-gradient(180deg, color-mix(in oklch, var(--err) 8%, white), white); }
.compare-card.good {
  background: var(--plum-950);
  color: white;
  border-color: var(--plum-800);
  position: relative;
  overflow: hidden;
}
.compare-card.good::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 80% 0%, color-mix(in oklch, var(--plum-500) 35%, transparent), transparent 70%);
  pointer-events: none;
}
.compare-head { display: flex; align-items: center; gap: 12px; }
.compare-head h3 { font-size: 22px; }
.compare-pill { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.compare-card.bad .compare-pill { background: color-mix(in oklch, var(--err) 15%, transparent); color: var(--err); }
.compare-card.good .compare-pill { background: var(--lime); color: var(--lime-ink); }
.compare-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; align-items: flex-start; }
.compare-card.bad .compare-list li { color: var(--ink-800); }
.compare-card.good .compare-list li { color: color-mix(in oklch, var(--plum-100) 90%, transparent); }
.compare-icon { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 2px; }
.compare-card.bad .compare-icon { background: color-mix(in oklch, var(--err) 18%, transparent); color: var(--err); }
.compare-card.good .compare-icon { background: var(--lime); color: var(--lime-ink); }
@keyframes checkPulse {
  0%   { transform: scale(0.4); box-shadow: 0 0 0 0 color-mix(in oklch, var(--lime) 80%, transparent); }
  35%  { transform: scale(1.18); box-shadow: 0 0 0 8px color-mix(in oklch, var(--lime) 0%, transparent); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 transparent; }
}

/* ============= Stats ============= */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.stat-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--ink-200);
}
.stat-num { font-family: 'Inter Tight'; font-weight: 900; font-size: 64px; letter-spacing: -0.03em; line-height: 1; color: var(--plum-800); }
.stat-num small { font-size: 28px; vertical-align: top; }
.stat-label { margin-top: 12px; font-size: 15px; color: var(--ink-600); }

/* ============= Product tabs ============= */
.product { background: white; }
.tabs {
  display: inline-flex;
  background: var(--ink-100);
  border-radius: 999px;
  padding: 5px;
  margin-top: 36px;
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-600);
  transition: background .18s;
}
.tab.active { background: white; color: var(--plum-900); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.tab:not(.active):hover { color: var(--ink-950); }

.shot {
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-100);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-pop);
  position: relative;
}
.shot-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: white;
  border-bottom: 1px solid var(--ink-200);
}
.shot-bar .lights { display: flex; gap: 6px; }
.shot-bar .light { width: 11px; height: 11px; border-radius: 50%; }
.shot-bar .light.r { background: oklch(0.78 0.15 25); }
.shot-bar .light.y { background: oklch(0.85 0.16 80); }
.shot-bar .light.g { background: oklch(0.80 0.15 145); }
.shot-bar .url { margin-left: 14px; flex: 1; padding: 7px 14px; background: var(--ink-100); border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-500); }

/* ============= Features ============= */
.features {
  background: var(--ink-100);
  border-top: 1px solid var(--ink-200);
}
.features-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--ink-200);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--plum-300); box-shadow: var(--shadow-card); }
.feature .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in oklch, var(--plum-200) 80%, white);
  color: var(--plum-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 18px; }
.feature p { color: var(--ink-600); font-size: 14px; line-height: 1.55; margin: 8px 0 0; }

/* Special big feature spans 2 cols */
.feature.span2 {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--plum-900), var(--plum-700));
  color: white;
  border-color: var(--plum-700);
  position: relative; overflow: hidden;
}
.feature.span2 .ico { background: color-mix(in oklch, var(--lime) 30%, transparent); color: var(--lime); }
.feature.span2 p { color: color-mix(in oklch, var(--plum-100) 80%, transparent); }
.feature.span2 .demo {
  margin-top: 24px;
  padding: 18px;
  background: color-mix(in oklch, var(--plum-950) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-700) 50%, transparent);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: color-mix(in oklch, var(--plum-200) 90%, transparent);
}
.feature.span2 .demo .row { display: flex; justify-content: space-between; padding: 4px 0; }
.feature.span2 .demo .row + .row { border-top: 1px dashed color-mix(in oklch, var(--plum-600) 40%, transparent); }
.feature.span2 .demo .row .v { color: var(--lime); font-weight: 600; }

/* ============= Workflow / story ============= */
.story { background: var(--paper); }
.story-row {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  padding: 60px 0;
  border-top: 1px dashed var(--ink-300);
}
.story-row:first-of-type { border-top: 0; }
.story-row.flip { grid-template-columns: 1.1fr 1fr; }
.story-row.flip > .story-text { order: 2; }
.story-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--plum-600);
  display: flex; align-items: center; gap: 12px;
}
.story-num::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--plum-300); }
.story-text h3 { font-size: 36px; line-height: 1.1; margin-top: 18px; max-width: 14ch; }
.story-text p { color: var(--ink-600); font-size: 17px; line-height: 1.55; margin-top: 18px; max-width: 48ch; }
.story-cta { margin-top: 22px; color: var(--plum-700); font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; }
.story-cta:hover { color: var(--plum-900); }

.story-art {
  position: relative;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  min-height: 280px;
}

/* ============= Quote / testimonial ============= */
.quote-section {
  background: var(--plum-950);
  color: white;
  background-image:
    radial-gradient(800px 400px at 90% 100%, color-mix(in oklch, var(--plum-500) 50%, transparent), transparent 70%),
    radial-gradient(700px 400px at 0% 0%, color-mix(in oklch, var(--plum-700) 40%, transparent), transparent 70%);
}
.quote-section .section-tag { color: var(--lime); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.quote-card {
  background: color-mix(in oklch, var(--plum-900) 70%, transparent);
  border: 1px solid color-mix(in oklch, var(--plum-700) 60%, transparent);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.quote-card .text { font-size: 16px; line-height: 1.55; color: color-mix(in oklch, var(--plum-100) 95%, transparent); flex: 1; }
.quote-card .text::before { content: '“'; color: var(--lime); font-size: 48px; font-family: 'Inter Tight'; line-height: 0.4; vertical-align: -10px; margin-right: 4px; }
.quote-meta { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  display: grid; place-items: center;
  font-family: 'Inter Tight'; font-weight: 700; color: white; font-size: 14px;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-role { color: color-mix(in oklch, var(--plum-300) 90%, transparent); font-size: 12px; }

/* ============= Pricing ============= */
/* Faixa plum clara (continua o tom da .reassure logo acima) + brilho radial
   no topo. Cards brancos e o badge lima saltam contra o fundo tingido. */
.pricing {
  background:
    radial-gradient(1000px 520px at 50% 0%, color-mix(in oklch, var(--plum-200) 48%, transparent), transparent 68%),
    color-mix(in oklch, var(--plum-100) 82%, var(--paper));
  border-bottom: 1px solid color-mix(in oklch, var(--plum-200) 55%, transparent);
}

/* Properties slider + billing toggle */
.price-controls {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.price-slider-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: 16px;
  padding: 22px 28px 18px;
  width: 100%; max-width: 520px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.price-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--ink-700);
  margin-bottom: 14px;
}
.price-slider-head strong {
  font-family: 'Inter Tight'; font-size: 28px; font-weight: 800;
  color: var(--plum-700); letter-spacing: -0.02em;
}
.price-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--plum-700) 0 var(--pct, 0%), var(--ink-200) var(--pct, 0%) 100%);
  outline: none; cursor: pointer;
}
.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--plum-700); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(106, 0, 168, 0.3);
  cursor: pointer;
}
.price-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--plum-700); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(106, 0, 168, 0.3);
  cursor: pointer; border: 3px solid white;
}
.price-slider-scale {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-500);
}

.price-billing {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-600); font-weight: 500;
}
.price-billing .on { color: var(--ink-950); font-weight: 700; }
.price-toggle {
  width: 46px; height: 26px; border-radius: 999px;
  background: var(--ink-300); border: none; cursor: pointer;
  position: relative; transition: background 0.2s;
  padding: 0;
}
.price-toggle.is-annual { background: var(--plum-700); }
.price-toggle-dot {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: white; transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.price-toggle.is-annual .price-toggle-dot { transform: translateX(20px); }
.price-save {
  background: color-mix(in oklch, var(--ok) 18%, white);
  color: var(--ok);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}

/* 3-column pricing grid — centrado, com respiro entre os cards */
.price-grid {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 1040px;
}
.price {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--ink-200);
  display: flex; flex-direction: column;
  position: relative;
}
.price.featured {
  background: white;
  color: var(--ink-950);
  border: 2px solid var(--plum-700);
  box-shadow: 0 18px 40px -20px rgba(106, 0, 168, 0.4);
}
.price-head { min-height: 92px; }
.price-name { font-family: 'Inter Tight'; font-size: 22px; font-weight: 800; color: var(--ink-950); letter-spacing: -0.01em; display: block; }
.price.featured .price-name { color: var(--plum-700); }
.price-desc { color: var(--ink-600); font-size: 13px; margin-top: 8px; line-height: 1.5; }

.price-amount-wrap { margin-top: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--ink-200); }
.price-amount {
  font-family: 'Inter Tight'; font-size: 38px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1; color: var(--ink-950);
  display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap;
}
.price-amount small { font-size: 14px; color: var(--ink-500); font-weight: 500; }
.price-free { color: var(--plum-700); }
.price-sub { font-size: 12px; color: var(--ink-500); margin-top: 8px; }

.price-cta { margin-top: 20px; justify-content: center; width: 100%; }
.price.featured .price-cta { background: var(--plum-700); color: white; border-color: var(--plum-700); }

.price-feats { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-feats li { font-size: 13.5px; color: var(--ink-800); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.price-feats li.off { color: var(--ink-400); }
.price-feats .check { color: var(--plum-700); flex: 0 0 14px; font-weight: 700; margin-top: 1px; }
.price-feats li.off .check { color: var(--ink-300); }

.price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--plum-700); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
  white-space: nowrap;
}

.price-foot-note {
  margin-top: 32px; text-align: center;
  font-size: 13px; color: var(--ink-500);
}

/* ============= FAQ ============= */
.faq-section { background: white; }
.faq-list { margin-top: 48px; max-width: 820px; }
.faq {
  border-top: 1px solid var(--ink-200);
  padding: 22px 0;
  cursor: pointer;
}
.faq:last-child { border-bottom: 1px solid var(--ink-200); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 17px; font-weight: 600; color: var(--ink-950); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink-100); color: var(--plum-800);
  display: grid; place-items: center;
  flex-shrink: 0; transition: transform .25s;
}
.faq.open .faq-toggle { transform: rotate(45deg); background: var(--plum-800); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin .25s, opacity .25s;
  opacity: 0;
  color: var(--ink-600); font-size: 15px; line-height: 1.6;
}
.faq.open .faq-a { max-height: 240px; opacity: 1; margin-top: 14px; }

/* ============= CTA ============= */
.bigcta {
  background: var(--plum-950);
  color: white;
  position: relative; overflow: hidden;
  background-image:
    radial-gradient(700px 360px at 50% 130%, color-mix(in oklch, var(--lime) 25%, transparent), transparent 70%),
    radial-gradient(900px 500px at 50% -10%, color-mix(in oklch, var(--plum-500) 50%, transparent), transparent 70%);
}
.bigcta-inner { padding: 110px 28px; text-align: center; }
.bigcta h2 { font-size: clamp(48px, 6vw, 80px); line-height: 1.0; max-width: 18ch; margin: 0 auto; }
.bigcta h2 .accent { color: var(--lime); font-style: italic; font-weight: 800; }
.bigcta p { color: color-mix(in oklch, var(--plum-200) 90%, transparent); font-size: 18px; margin-top: 22px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.bigcta .actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============= Footer ============= */
.footer {
  background: var(--plum-950);
  color: color-mix(in oklch, var(--plum-200) 90%, transparent);
  border-top: 1px solid color-mix(in oklch, var(--plum-700) 40%, transparent);
  padding: 64px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer h3 { font-size: 13px; color: white; margin-bottom: 16px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; }
.footer ul a:hover { color: var(--lime); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid color-mix(in oklch, var(--plum-800) 60%, transparent); display: flex; justify-content: space-between; font-size: 13px; color: color-mix(in oklch, var(--plum-300) 80%, transparent); }
.footer-brand .brand { color: white; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.55; margin: 16px 0 24px; max-width: 36ch; }

/* ============= Notes panel ============= */
.notes {
  position: fixed; bottom: 18px; left: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-500);
  background: white; border: 1px solid var(--ink-200);
  padding: 8px 12px; border-radius: 999px;
  box-shadow: var(--shadow-card);
  z-index: 30;
}

/* ============= Responsive ============= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding: 72px 28px 88px; }
  .compare-grid, .stats, .features-grid, .quote-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .ota-row { grid-template-columns: repeat(3, 1fr); }
  .story-row, .story-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .story-row.flip > .story-text { order: 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .compare-grid, .stats, .features-grid, .price-grid, .quote-grid, .footer-grid, .ota-row { grid-template-columns: 1fr; }
  .feature.span2 { grid-column: span 1; }
  .price.featured { transform: none; }
  .section { padding: 72px 0; }
  .hero h1:not(.hero-h1) { font-size: 44px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
/* Reserva espaço para o CTA fixo do rodapé (StickyCta, visível em ≤760px),
   senão a barra encobre a última linha do footer. */
@media (max-width: 760px) {
  .footer { padding-bottom: calc(40px + 72px + env(safe-area-inset-bottom, 0px)); }
  /* Sobe a bolha do chat (Chatwoot) pra não ficar em cima do sticky CTA do rodapé. */
  .woot-widget-bubble,
  .woot-widget-bubble.woot--close,
  .woot--bubble-holder {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
