/* =====================================================================
   Bankai Tech — landing page
   Identidade fixa escura (preto + carmesim + violeta). Mesma linguagem
   da landing do SonarPricing (pílula flutuante, menu lateral por pontos,
   lanterna no mouse, revelação ao rolar), com o "corte" como assinatura:
   abertura cortada, títulos revelados por corte e o selo da seção
   "Liberar Bankai". Toda animação respeita prefers-reduced-motion e o
   botão "Pausar animações" (html[data-motion="paused"]).
   ===================================================================== */

:root {
  --bg: #07070c;
  --bg-deep: #040407;
  --surface: #0e0e16;
  --surface-2: #14141f;
  --surface-3: #1b1b29;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
  --wire: rgba(255, 58, 92, .16);
  --wire-strong: rgba(255, 58, 92, .34);
  --text: #f4f4f8;
  --muted: #a0a0b4;
  --dim: #7a7a8f;
  --crimson: #ff3a5c;
  --crimson-deep: #e11d48;
  --crimson-dark: #be123c;
  --rose-light: #ffb3c0;
  --ember: #ff8a3d;
  --violet: #7c5cff;
  --violet-soft: #a996ff;
  --wa: #25d366;
  --ok: #34d399;
  --grad: linear-gradient(100deg, var(--violet-soft) 0%, var(--crimson) 48%, var(--ember) 100%);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
  --wrap: 1200px;
  --ease-cut: cubic-bezier(.7, 0, .2, 1);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 3px; border-radius: 6px; }
section[id] { scroll-margin-top: 96px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.i--fill { fill: currentColor; stroke: none; }
.mark { width: 36px; height: 36px; flex: none; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 14px; border-radius: 10px; background: var(--crimson-deep); color: #fff; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

/* ---------- Fundo vivo (gradientes, sem filter: blur — mais leve) ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient::before, .ambient::after { content: ""; position: absolute; border-radius: 50%; }
.ambient::before { width: 70vmax; height: 70vmax; left: -25vmax; top: -30vmax; background: radial-gradient(circle, rgba(124, 92, 255, .22), transparent 62%); animation: driftA 32s ease-in-out infinite; }
.ambient::after { width: 60vmax; height: 60vmax; right: -22vmax; top: 10vh; background: radial-gradient(circle, rgba(255, 58, 92, .16), transparent 62%); animation: driftB 26s ease-in-out infinite; }
@keyframes driftA { 50% { transform: translate(8vw, 10vh) scale(1.1); } }
@keyframes driftB { 50% { transform: translate(-8vw, 6vh) scale(.92); } }

.cursor-glow { position: fixed; z-index: 1; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(255, 58, 92, .10), rgba(124, 92, 255, .05) 42%, transparent 70%); transform: translate(-50%, -50%); opacity: 0; transition: opacity .25s ease; }
@media (max-width: 820px), (pointer: coarse) { .cursor-glow { display: none; } }

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

/* ---------- Botões ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px;
  font: 700 15px/1 var(--font-body); white-space: nowrap; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn .i { width: 18px; height: 18px; }
/* o brilho que atravessa o botão no hover é um "mini corte" */
.btn::after { content: ""; position: absolute; inset: -2px; z-index: -1; background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .45) 50%, transparent 62%); transform: translateX(-130%); transition: transform .6s var(--ease-cut); pointer-events: none; }
.btn:hover::after { transform: translateX(130%); }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--crimson-deep), var(--crimson-dark)); box-shadow: 0 12px 30px -12px rgba(225, 29, 72, .8), inset 0 1px rgba(255, 255, 255, .18); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(225, 29, 72, .9), 0 0 0 4px rgba(255, 58, 92, .18); }
.btn--quiet { color: var(--text); background: rgba(255, 255, 255, .04); border-color: var(--line-strong); }
.btn--quiet:hover { transform: translateY(-2px); border-color: var(--wire-strong); background: rgba(255, 58, 92, .08); }
.btn--wa { color: #04210f; background: var(--wa); box-shadow: 0 12px 30px -14px rgba(37, 211, 102, .8); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .9), 0 0 0 4px rgba(37, 211, 102, .16); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 14px; border-radius: 11px; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 16px; border-radius: 14px; }

.icon-btn { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(255, 255, 255, .03); color: var(--text); cursor: pointer; transition: border-color .18s, background-color .18s; }
.icon-btn:hover { border-color: var(--wire-strong); background: rgba(255, 58, 92, .08); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid var(--wire-strong); border-radius: 999px; background: rgba(255, 58, 92, .07); color: var(--rose-light); font: 700 11px/1.2 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow .i { width: 14px; height: 14px; }
.pulse-dot { position: relative; width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--crimson); box-shadow: 0 0 10px var(--crimson); }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--crimson); animation: pulse 2s ease-out infinite; }
.pulse-dot--green { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.pulse-dot--green::after { border-color: var(--ok); }
@keyframes pulse { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Menu lateral (desktop) ---------- */
.dial { display: none; }
@media (min-width: 821px) {
  .page, .footer { padding-left: 78px; }
  .dial {
    position: fixed; z-index: 50; left: 0; top: 0; bottom: 0; width: 78px;
    display: flex; flex-direction: column; align-items: center; padding: 20px 0;
    background: rgba(9, 9, 15, .86); border-right: 1px solid var(--line);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  }
  .dial__mark, .dial__cta { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 12px; transition: transform .18s, box-shadow .18s; }
  .dial__mark .mark { width: 42px; height: 42px; }
  .dial__cta { color: #04210f; background: var(--wa); }
  .dial__mark:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 0 0 5px rgba(255, 58, 92, .18), 0 12px 28px -6px rgba(255, 58, 92, .7); }
  .dial__cta:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 0 0 5px rgba(37, 211, 102, .18), 0 12px 28px -6px rgba(37, 211, 102, .6); }
  .dial__track { position: relative; flex: 1; width: 2px; margin: 22px 0; display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; background: linear-gradient(180deg, transparent, var(--wire) 12%, var(--wire) 88%, transparent); }
  .dial__sweep { position: absolute; left: 50%; top: 0; width: 2px; height: 56px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, var(--crimson), transparent); animation: dialSweep 3.4s ease-in-out infinite; }
  @keyframes dialSweep { from { top: -8%; } to { top: 100%; } }
  .dial__dot { position: relative; width: 30px; height: 30px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--surface-2); transition: transform .18s, border-color .18s, box-shadow .18s, background-color .18s; }
  .dial__dot i { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); transition: background-color .18s, box-shadow .18s; }
  .dial__dot:hover, .dial__dot:focus-visible { transform: scale(1.14); border-color: var(--crimson); background: rgba(255, 58, 92, .14); box-shadow: 0 0 0 5px rgba(255, 58, 92, .18), 0 10px 24px -6px rgba(255, 58, 92, .7); }
  .dial__dot.is-active { border-color: var(--crimson); }
  .dial__dot.is-active i { background: var(--crimson); box-shadow: 0 0 10px var(--crimson); }
  .dial__tip { position: absolute; left: 44px; top: 50%; padding: 7px 11px; border: 1px solid var(--wire-strong); border-radius: 8px; background: var(--surface-2); color: var(--text); font: 700 12px/1 var(--font-body); white-space: nowrap; opacity: 0; pointer-events: none; transform: translate(-6px, -50%); transition: opacity .18s, transform .18s; }
  .dial__dot:hover .dial__tip, .dial__dot:focus-visible .dial__tip { opacity: 1; transform: translate(0, -50%); }
}
@media (min-width: 821px) and (max-height: 720px) {
  .dial { padding-block: 12px; }
  .dial__mark, .dial__cta, .dial__mark .mark { width: 36px; height: 36px; }
  .dial__track { margin-block: 12px; }
  .dial__dot { width: 26px; height: 26px; }
}

/* ---------- Barra do topo ---------- */
.nav { position: sticky; top: 0; z-index: 45; background: rgba(7, 7, 12, .82); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav__inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__copy { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.brand__copy strong { font: 800 18px/1 var(--font-display); letter-spacing: .16em; }
.brand__copy small { font: 700 10px/1 var(--font-mono); letter-spacing: .16em; color: var(--crimson); text-transform: uppercase; }
.nav__links { display: none; }
.nav__links a { position: relative; padding: 8px 0; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .18s; }
.nav__links a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 2px; border-radius: 2px; background: var(--grad); opacity: 0; transition: left .2s, right .2s, opacity .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { left: 0; right: 0; opacity: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__mobile { border-top: 1px solid var(--line); background: rgba(7, 7, 12, .97); }
.nav__mobile .wrap { display: grid; padding: 8px 0 14px; }
.nav__mobile a { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile a .i { width: 16px; height: 16px; color: var(--crimson); }

@media (min-width: 821px) {
  .nav__menu, .nav__mobile { display: none !important; }
  /* pílula flutuante (só desktop, igual ao SonarPricing) */
  .nav { position: fixed; top: 14px; left: 96px; right: 22px; border: 1px solid var(--line-strong); border-radius: 18px; background: linear-gradient(90deg, rgba(20, 16, 28, .9), rgba(9, 9, 15, .82)); box-shadow: 0 18px 50px rgba(0, 0, 0, .35); }
  .nav .wrap { width: 100%; padding-inline: 20px; }
}
@media (min-width: 1180px) { .nav__links { display: flex; gap: 28px; } }
@media (max-width: 820px) { .nav__cta span { display: none; } .nav__cta { width: 42px; padding: 0; } }

/* ---------- Abertura (o corte que libera o site) ---------- */
#bk-intro { display: none; }
.bk-intro #bk-intro {
  display: block; position: fixed; inset: 0; z-index: 1000; overflow: hidden;
  --cut-angle: -10deg;
  animation: introGone 0s linear 1.75s forwards;
}
.bk-intro #bk-intro.is-skip { opacity: 0; transition: opacity .2s ease; pointer-events: none; }
@keyframes introGone { to { visibility: hidden; pointer-events: none; } }
/* metades um pouco maiores que a tela: o "tranco" do corte não expõe as bordas */
.bk-intro__half { position: absolute; inset: -3%; display: grid; place-items: center; background: radial-gradient(ellipse at 50% 50%, #15111e 0%, #060609 68%); will-change: transform; }
.bk-intro__half--a { clip-path: polygon(0 0, 100% 0, 100% 38%, 0 62%); animation: halfA .72s cubic-bezier(.6, 0, .9, .45) 1s forwards; }
.bk-intro__half--b { clip-path: polygon(0 62%, 100% 38%, 100% 100%, 0 100%); animation: halfB .72s cubic-bezier(.6, 0, .9, .45) 1s forwards; }
@keyframes halfA { 0% { transform: none; } 16% { transform: translate(-1.4%, -.8%); } 100% { transform: translate(-12%, -85%) rotate(-5deg); } }
@keyframes halfB { 0% { transform: none; } 16% { transform: translate(1.4%, .8%); } 100% { transform: translate(12%, 85%) rotate(5deg); } }
.bk-intro__word { text-align: center; }
.bk-intro__word span { display: block; margin-right: -.22em; font: 800 clamp(52px, 12vw, 160px)/1 var(--font-display); letter-spacing: .22em; background: linear-gradient(100deg, #fff 20%, var(--rose-light) 55%, var(--crimson)); -webkit-background-clip: text; background-clip: text; color: transparent; animation: wordIn .55s var(--ease-out) both; }
.bk-intro__word small { display: block; margin-top: 18px; color: var(--muted); font: 700 11px/1 var(--font-mono); letter-spacing: .42em; text-transform: uppercase; animation: fadeIn .4s ease .2s both; }
@keyframes wordIn { from { opacity: 0; letter-spacing: .6em; filter: blur(10px); } to { opacity: 1; letter-spacing: .22em; filter: blur(0); } }
@keyframes fadeIn { from { opacity: 0; } }
.bk-intro__slash {
  position: absolute; left: 50%; top: 50%; width: 180vmax; height: 3px; margin: -1.5px 0 0 -90vmax;
  transform: rotate(var(--cut-angle));
  background: linear-gradient(90deg, transparent, #fff 18%, #ffe1e7 50%, var(--crimson) 82%, transparent);
  box-shadow: 0 0 16px 3px rgba(255, 58, 92, .9), 0 0 60px 12px rgba(124, 92, 255, .4);
  clip-path: inset(-60px 100% -60px 0);
  animation: slashDraw .24s cubic-bezier(.8, 0, .2, 1) .62s forwards, slashFade .45s ease-out .95s forwards;
}
@keyframes slashDraw { to { clip-path: inset(-60px 0 -60px 0); } }
@keyframes slashFade { to { opacity: 0; } }
.bk-intro__flash { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 26% at 50% 50%, rgba(255, 58, 92, .5), transparent 70%); opacity: 0; animation: flash .55s ease-out .84s; }
@keyframes flash { 20% { opacity: 1; } }
.bk-intro .wa-float { opacity: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; opacity: .35; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 45%, #000, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 70% 45%, #000, transparent 75%); }
.hero__streaks i { position: absolute; height: 1px; width: 70vw; background: linear-gradient(90deg, transparent, rgba(255, 58, 92, .5), rgba(169, 150, 255, .35), transparent); transform: rotate(-24deg); transform-origin: left center; pointer-events: none; opacity: .55; }
.hero__streaks i:nth-child(1) { left: 34%; top: 92%; }
.hero__streaks i:nth-child(2) { left: 52%; top: 100%; width: 55vw; opacity: .35; }
.hero__streaks i:nth-child(3) { left: 8%; top: 40%; width: 30vw; opacity: .25; }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(24px, 4vw, 64px); min-height: min(100vh, 900px); padding: 112px 0 64px; }
.hero__title { margin: 22px 0 22px; font-size: clamp(40px, 5.4vw, 76px); font-weight: 800; line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.hero__lead { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.readouts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.readouts li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255, 255, 255, .03); color: var(--muted); font: 500 12px/1 var(--font-mono); }
.motion-toggle { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; padding: 6px 0; border: 0; background: none; color: var(--dim); font-size: 13px; cursor: pointer; }
.motion-toggle .i { width: 14px; height: 14px; }
.motion-toggle:hover { color: var(--text); }

/* A palavra "Sozinho." é cortada ao meio e se junta de novo */
.cut-word { position: relative; display: block; width: fit-content; }
.cut-word__a, .cut-word__b { display: block; padding-right: .08em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cut-word__b, .cut-word__line { display: none; }
.js .cut-word__b { display: block; position: absolute; inset: 0; clip-path: polygon(-5% 70%, 105% 36%, 105% 130%, -5% 130%); }
.js .cut-word__a { clip-path: polygon(-5% -30%, 105% -30%, 105% 36%, -5% 70%); }
.js .cut-word__line { display: block; position: absolute; left: -6%; right: -6%; top: 53%; height: 2px; transform: rotate(var(--word-angle, -6deg)); background: linear-gradient(90deg, transparent, #fff 25%, var(--crimson) 75%, transparent); box-shadow: 0 0 14px rgba(255, 58, 92, .9); opacity: 0; clip-path: inset(-20px 100% -20px 0); pointer-events: none; }
.cut-word.is-cutting .cut-word__line { animation: wordLine .7s var(--ease-cut) forwards; }
.cut-word.is-cutting .cut-word__a { animation: wordA 1s var(--ease-cut) .18s; }
.cut-word.is-cutting .cut-word__b { animation: wordB 1s var(--ease-cut) .18s; }
@keyframes wordLine { 0% { opacity: 1; clip-path: inset(-20px 100% -20px 0); } 40% { opacity: 1; clip-path: inset(-20px 0 -20px 0); } 100% { opacity: 0; clip-path: inset(-20px 0 -20px 0); } }
@keyframes wordA { 0% { transform: none; } 22%, 55% { transform: translate(-7px, -5px); filter: drop-shadow(0 0 12px rgba(255, 58, 92, .8)); } 100% { transform: none; } }
@keyframes wordB { 0% { transform: none; } 22%, 55% { transform: translate(7px, 5px); filter: drop-shadow(0 0 12px rgba(255, 58, 92, .8)); } 100% { transform: none; } }

/* Entrada do hero: disparada pelo JS ao fim da abertura. Se o JS falhar,
   o "failsafe" mostra tudo sozinho depois de 3s. */
.js .hero-anim { opacity: 0; animation: failsafe 0s 3s forwards; }
.js.hero-go .hero-anim { animation: heroIn .7s var(--ease-out) var(--d, 0s) both; }
@keyframes failsafe { to { opacity: 1; } }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* ---------- Palco do hero: celular + cartões do painel ---------- */
.hero-stage { position: relative; display: grid; place-items: center; min-height: 660px; }
.stage-ring { position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid var(--wire); background: radial-gradient(circle, rgba(255, 58, 92, .12), transparent 62%); }
.stage-ring::before, .stage-ring::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(169, 150, 255, .18); }
.stage-ring::before { inset: 60px; animation: spin 40s linear infinite; }
.stage-ring::after { inset: -50px; border-style: solid; border-color: rgba(255, 255, 255, .04); }
@keyframes spin { to { transform: rotate(360deg); } }
.phone { position: relative; z-index: 2; width: 300px; height: 612px; padding: 11px; border-radius: 46px; background: linear-gradient(145deg, #2c2a38, #0c0c12); box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 40px 90px -24px rgba(0, 0, 0, .85), 0 0 110px -30px rgba(255, 58, 92, .55); }
.phone__screen { position: relative; height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 36px; background: #0b141a; }
.phone__notch { position: absolute; z-index: 3; top: 9px; left: 50%; width: 90px; height: 24px; margin-left: -45px; border-radius: 14px; background: #000; }
.wa-head { display: flex; align-items: center; gap: 10px; padding: 42px 14px 10px; background: #1f2c34; }
.wa-head__avatar { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, #f472b6, #a855f7); color: #fff; font: 700 13px/1 var(--font-body); }
.wa-head__who strong { display: block; color: #e9edef; font: 600 14px/1.2 var(--font-body); }
.wa-head__who small { color: #8696a0; font-size: 12px; }
.wa-head__who small.is-typing { color: #25d366; }
.wa-body { flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: 12px 10px; overflow: hidden; background-color: #0b141a; background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 16px 16px; transition: opacity .35s ease; }
.wa-body.is-clearing { opacity: 0; }
.wa-msg { max-width: 84%; padding: 7px 9px 5px; border-radius: 10px; color: #e9edef; font-size: 13px; line-height: 1.4; animation: msgIn .34s var(--ease-out) both; }
.wa-msg--in { align-self: flex-start; background: #202c33; border-top-left-radius: 3px; }
.wa-msg--out { align-self: flex-end; background: #005c4b; border-top-right-radius: 3px; }
.wa-msg time { display: block; margin-top: 2px; text-align: right; color: rgba(233, 237, 239, .6); font-size: 10px; }
.wa-msg--out time::after { content: " ✓✓"; color: #53bdeb; }
.wa-msg__bot { display: block; margin-bottom: 2px; color: #ff8fa3; font-size: 11px; font-weight: 600; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) scale(.96); } }
.wa-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }
.wa-options span { padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 8px; background: rgba(255, 255, 255, .06); color: #7ee0c3; font: 700 12px/1 var(--font-mono); transition: transform .2s, background-color .2s, color .2s; }
.wa-options span.is-picked { background: #00a884; border-color: #00a884; color: #04211a; transform: scale(1.08); }
.wa-pix { display: flex; align-items: center; gap: 9px; margin-top: 7px; padding: 9px; border-radius: 8px; background: rgba(0, 0, 0, .28); }
.wa-pix .i { width: 30px; height: 30px; color: #7ee0c3; }
.wa-pix strong { display: block; font-size: 12px; }
.wa-pix small { color: #8696a0; font-size: 11px; }
.wa-typing { align-self: flex-start; display: flex; gap: 4px; padding: 11px 12px; border-radius: 10px; border-top-left-radius: 3px; background: #202c33; animation: msgIn .25s var(--ease-out) both; }
.wa-typing i { width: 6px; height: 6px; border-radius: 50%; background: #8696a0; animation: typing 1s ease-in-out infinite; }
.wa-typing i:nth-child(2) { animation-delay: .15s; }
.wa-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.wa-compose { display: flex; align-items: center; gap: 8px; padding: 8px 10px 16px; background: #0b141a; }
.wa-compose__field { flex: 1; height: 38px; display: flex; align-items: center; padding: 0 14px; border-radius: 19px; background: #2a3942; color: #8696a0; font-size: 13px; }
.wa-compose__mic { width: 38px; height: 38px; flex: none; border-radius: 50%; background: #00a884; }

.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 16px; background: linear-gradient(160deg, rgba(30, 26, 42, .94), rgba(14, 14, 22, .94)); box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); opacity: 0; transform: translateY(14px) scale(.96); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), border-color .4s; }
.float-card.is-on { opacity: 1; transform: none; }
.float-card strong { display: block; font-size: 13.5px; line-height: 1.3; }
.float-card small { color: var(--muted); font-size: 12px; }
.float-card--agenda { top: 36px; right: -40px; display: block; width: 240px; padding: 14px; }
.float-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--rose-light); font: 700 11px/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.float-card__head .i { width: 15px; height: 15px; }
.agenda { display: grid; gap: 6px; }
.agenda li { position: relative; display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 255, 255, .03); font-size: 12.5px; transition: background-color .4s, border-color .4s; }
.agenda time { color: var(--muted); font: 700 11.5px/1 var(--font-mono); }
.agenda li span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.agenda__slot span { color: var(--dim); font-style: italic; }
/* o selo "novo" fica em cima da borda da linha, sem cobrir o nome */
.agenda__new { position: absolute; top: -8px; right: 8px; padding: 3px 6px; border-radius: 6px; background: var(--crimson-deep); color: #fff; font: 700 9.5px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .3s var(--ease-out); }
.agenda__slot.is-filled { border-color: var(--wire-strong); background: rgba(255, 58, 92, .12); }
.agenda__slot.is-filled span { color: var(--text); font-style: normal; font-weight: 600; }
.agenda__slot.is-filled .agenda__new { opacity: 1; transform: none; }
.float-card--pix { left: -46px; top: 372px; }
.float-card--pix.is-on { border-color: rgba(52, 211, 153, .45); }
.float-card__ok, .float-card__bell { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 11px; }
.float-card__ok { background: rgba(52, 211, 153, .16); color: var(--ok); }
.float-card__bell { background: rgba(169, 150, 255, .16); color: var(--violet-soft); }
.float-card__ok .i, .float-card__bell .i { width: 19px; height: 19px; }
.float-card--remind { right: -52px; bottom: 58px; }
.stage-note { position: absolute; z-index: 3; bottom: 6px; left: 50%; display: inline-flex; align-items: center; gap: 7px; transform: translateX(-50%); color: var(--dim); font: 500 11px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.stage-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); }

/* ---------- Faixa de pilares ---------- */
.strip { position: relative; border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(12, 10, 18, .96), rgba(22, 12, 22, .92), rgba(12, 10, 18, .96)); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { display: flex; align-items: center; gap: 13px; padding: 22px 18px; border-left: 1px solid var(--line); }
.strip__item:first-child { border-left: 0; }
.strip__item > .i { width: 40px; height: 40px; padding: 9px; border: 1px solid var(--wire-strong); border-radius: 12px; background: linear-gradient(145deg, rgba(255, 58, 92, .14), rgba(124, 92, 255, .1)); color: var(--rose-light); }
.strip__item b { display: block; font-size: 14.5px; }
.strip__item small { color: var(--muted); font-size: 13px; }

/* ---------- Seções ---------- */
.section { position: relative; padding: 110px 0; }
.section--tint { background: linear-gradient(180deg, rgba(20, 14, 26, .55), rgba(10, 10, 16, .2)); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 18px 0 16px; font-size: clamp(32px, 4.2vw, 54px); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
.section-head p { max-width: 640px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-head--center p { margin-inline: auto; }

/* Título revelado por um corte diagonal. A máscara usa um gradiente em
   ângulo fixo (105deg = borda inclinada 15deg), então a borda do corte fica
   sempre paralela ao risco de luz (skewX -15deg), seja qual for o tamanho
   do título. O padding vertical evita que a máscara corte acentos e
   descendentes (É, ç, g) que passam um pouco da caixa da linha. */
.cut-reveal { position: relative; width: fit-content; max-width: 100%; }
.section-head--center .cut-reveal, .cut-reveal--center { margin-inline: auto; }
@media (prefers-reduced-motion: no-preference) {
  .js .cut-reveal {
    /* a máscara só esconde na pintura: sem o clip, o risco de luz (que termina
       à direita do título) ainda aumentaria a largura rolável da página */
    overflow-x: clip;
    padding-block: .12em;
    -webkit-mask-image: linear-gradient(105deg, #000 44%, transparent 45.5%); mask-image: linear-gradient(105deg, #000 44%, transparent 45.5%);
    -webkit-mask-size: 300% 100%; mask-size: 300% 100%;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: 100% 0; mask-position: 100% 0;
    transition: -webkit-mask-position .9s var(--ease-cut), mask-position .9s var(--ease-cut);
  }
  .js .cut-reveal.is-in { -webkit-mask-position: 0 0; mask-position: 0 0; }
  .js .cut-reveal::after { content: ""; position: absolute; top: 0; bottom: 0; left: -67%; width: 3px; border-radius: 3px; background: linear-gradient(180deg, transparent, #fff 25%, var(--crimson) 75%, transparent); box-shadow: 0 0 14px 2px rgba(255, 58, 92, .85); transform: skewX(-15deg); pointer-events: none; }
  .js .cut-reveal.is-in::after { animation: cutBar .9s var(--ease-cut) forwards; }
}
@keyframes cutBar { from { left: -67%; } to { left: 133%; } }

/* Cards: aparecem ao rolar; o "slash-card" ganha um risco de luz ao entrar */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out) var(--delay, 0s), transform .7s var(--ease-out) var(--delay, 0s); }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .js .slash-card.is-in::after { animation: cardSlash 1s var(--ease-cut) calc(var(--delay, 0s) + .15s) both; }
}
.slash-card { position: relative; overflow: hidden; }
.slash-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(118deg, transparent 44%, rgba(255, 58, 92, .5) 49.4%, #fff 50%, rgba(255, 58, 92, .5) 50.6%, transparent 56%); background-size: 260% 100%; background-position: 130% 0; opacity: 0; }
@keyframes cardSlash { 0% { opacity: 1; background-position: 130% 0; } 85% { opacity: 1; } 100% { opacity: 0; background-position: -30% 0; } }

/* ---------- Soluções ---------- */
.powers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.power { padding: 28px 26px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(160deg, rgba(26, 22, 38, .92), rgba(12, 12, 19, .92)); transition: transform .25s var(--ease-out), border-color .25s, box-shadow .25s; }
.power::before { content: ""; position: absolute; right: -60px; top: -60px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 58, 92, .22), transparent 70%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.power:hover { transform: translateY(-5px); border-color: var(--wire-strong); box-shadow: 0 24px 50px -28px rgba(255, 58, 92, .55); }
.power:hover::before { opacity: 1; }
.power__num { position: absolute; top: 24px; right: 24px; color: var(--dim); font: 700 12px/1 var(--font-mono); letter-spacing: .1em; }
.power__icon, .niche__icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--wire-strong); border-radius: 14px; background: linear-gradient(145deg, rgba(255, 58, 92, .16), rgba(124, 92, 255, .12)); color: var(--rose-light); }
.power__icon .i, .niche__icon .i { width: 23px; height: 23px; }
.power h3, .niche h3 { margin-bottom: 10px; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.power p, .niche p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tags li { padding: 5px 9px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font: 500 11px/1 var(--font-mono); }

/* ---------- Faixas cruzadas ---------- */
.tapes { position: relative; z-index: 2; height: 200px; overflow: hidden; }
@supports (overflow: clip) { .tapes { overflow: clip; } }
.tape { position: absolute; left: -10vw; width: 120vw; top: 50%; overflow: hidden; }
.tape--back { transform: translateY(-50%) rotate(3deg); background: var(--surface-2); border-block: 1px solid var(--line-strong); }
.tape--front { transform: translateY(-50%) rotate(-4deg); background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-deep) 40%, #6d3cf0); box-shadow: 0 20px 50px -20px rgba(225, 29, 72, .6); }
.tape__track { display: flex; width: max-content; animation: tape 40s linear infinite; }
.tape--back .tape__track { animation-direction: reverse; animation-duration: 52s; }
.tape span { display: inline-flex; align-items: center; gap: 22px; padding: 16px 0 16px 22px; font: 800 17px/1 var(--font-display); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.tape span::after { content: "✦"; font-size: 13px; opacity: .75; }
.tape--back span { color: var(--dim); font-size: 15px; }
.tape--front span { color: #fff; }
@keyframes tape { to { transform: translateX(-50%); } }

/* ---------- Liberar Bankai ---------- */
.lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.lib-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(160deg, rgba(22, 22, 32, .92), rgba(10, 10, 16, .92)); transition: filter .6s ease, border-color .6s ease, box-shadow .6s ease; }
.lib-card__head { margin-bottom: 20px; }
.lib-card__label { display: inline-block; margin-bottom: 10px; padding: 5px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted); font: 700 11px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.lib-card__label--hot { border-color: var(--wire-strong); background: rgba(255, 58, 92, .1); color: var(--rose-light); }
.lib-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.chaos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chaos span { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; background: #1d1d28; color: #c9c9d6; font-size: 13px; transform: rotate(var(--r)); animation: jitter 2.6s ease-in-out infinite; }
.chaos span:first-child { background: rgba(255, 58, 92, .14); border-color: var(--wire-strong); color: var(--rose-light); font: 700 12px/1.2 var(--font-mono); }
.chaos span:nth-child(2) { animation-delay: .4s; }
.chaos span:nth-child(3) { animation-delay: .9s; }
.chaos span:nth-child(4) { animation-delay: 1.3s; }
@keyframes jitter { 0%, 100% { transform: rotate(var(--r)) translateY(0); } 50% { transform: rotate(calc(var(--r) * -1)) translateY(-3px); } }
.lib-list { display: grid; gap: 12px; }
.lib-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; line-height: 1.5; }
.lib-list .i { width: 22px; height: 22px; margin-top: 1px; padding: 4px; border-radius: 7px; stroke-width: 2.6; }
.lib-list--bad li { color: var(--muted); }
.lib-list--bad .i { background: rgba(255, 255, 255, .06); color: #8b8b9c; }
.lib-list--good .i { background: rgba(52, 211, 153, .16); color: var(--ok); }
.auto-flow { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.auto-flow span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid var(--wire-strong); border-radius: 11px; background: rgba(255, 58, 92, .08); color: var(--rose-light); font: 700 11.5px/1 var(--font-mono); white-space: nowrap; }
.auto-flow .i { width: 14px; height: 14px; }
.auto-flow i { position: relative; flex: 1; min-width: 10px; height: 2px; overflow: hidden; background: var(--wire); }
.auto-flow i::after { content: ""; position: absolute; inset: 0; width: 40%; background: linear-gradient(90deg, transparent, var(--crimson), transparent); animation: flowRun 1.6s linear infinite; }
@keyframes flowRun { from { transform: translateX(-100%); } to { transform: translateX(250%); } }
.lib-card--after { border-color: var(--wire); }
.lib-card__burst { position: absolute; left: 50%; top: 50%; width: 140%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 58, 92, .35), rgba(124, 92, 255, .12) 40%, transparent 65%); transform: translate(-50%, -50%) scale(0); opacity: 0; pointer-events: none; }
.lib-actions { display: flex; justify-content: center; margin-top: 34px; }

/* O selo só existe com JS e com movimento permitido */
.seal { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .seal { display: block; position: absolute; inset: 0; z-index: 5; }
  .js .lib-card--after:not(.is-released) .lib-list li { opacity: 0; transform: translateX(-10px); }
  .js .lib-card--after .lib-list li { transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); transition-delay: calc(.9s + var(--i) * .12s); }
  .js .lib-card--after.is-released { border-color: var(--wire-strong); box-shadow: 0 30px 80px -40px rgba(255, 58, 92, .7); }
  .js .lib-card--after.is-released .lib-card__burst { animation: burst 1.1s ease-out .75s both; }
  .js .lib-card--after.is-released .seal__slash { animation: sealSlash .34s cubic-bezier(.8, 0, .2, 1) forwards, slashFade .4s ease-out .5s forwards; }
  .js .lib-card--after.is-released .seal__half--a { animation: sealA .8s cubic-bezier(.6, 0, .9, .45) .42s forwards; }
  .js .lib-card--after.is-released .seal__half--b { animation: sealB .8s cubic-bezier(.6, 0, .9, .45) .42s forwards; }
  .js .lib-card--after.is-released .seal { animation: introGone 0s linear 1.3s forwards; }
  .js .lib.is-released .lib-card--before { filter: grayscale(.7) brightness(.72); }
  .js .lib.is-released .lib-card--before .chaos span { animation-play-state: paused; }
}
.lib-card--after.is-instant .seal { display: none !important; }
.lib-card--after.is-instant .lib-list li { opacity: 1 !important; transform: none !important; transition: none !important; }
.seal__half { position: absolute; inset: 0; display: grid; place-items: center; background: repeating-linear-gradient(135deg, rgba(255, 58, 92, .06) 0 2px, transparent 2px 14px), radial-gradient(ellipse at 50% 45%, #1d1526, #0b0b12 72%); will-change: transform; }
.seal__half--a { clip-path: polygon(0 0, 100% 0, 100% 36%, 0 64%); }
.seal__half--b { clip-path: polygon(0 64%, 100% 36%, 100% 100%, 0 100%); }
.seal__face { display: grid; justify-items: center; gap: 10px; padding: 20px; text-align: center; }
.seal__emblem { position: relative; margin-bottom: 6px; }
.seal__emblem .mark { width: 76px; height: 76px; filter: drop-shadow(0 0 24px rgba(255, 58, 92, .45)); }
.seal__emblem b { position: absolute; right: -10px; bottom: -8px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--wire-strong); border-radius: 10px; background: var(--surface-2); color: var(--rose-light); }
.seal__emblem b .i { width: 16px; height: 16px; }
.seal__face strong { font: 800 15px/1 var(--font-mono); letter-spacing: .32em; text-transform: uppercase; }
.seal__face small { color: var(--muted); font-size: 13.5px; }
.seal__slash { position: absolute; left: 50%; top: 50%; width: 160%; height: 3px; margin: -1.5px 0 0 -80%; transform: rotate(var(--seal-angle, -16deg)); background: linear-gradient(90deg, transparent, #fff 20%, #ffe1e7 50%, var(--crimson) 80%, transparent); box-shadow: 0 0 16px 3px rgba(255, 58, 92, .9), 0 0 50px 10px rgba(124, 92, 255, .35); clip-path: inset(-60px 100% -60px 0); z-index: 2; }
@keyframes sealSlash { to { clip-path: inset(-60px 0 -60px 0); } }
@keyframes sealA { 0% { transform: none; } 14% { transform: translate(-2%, -1.5%); } 100% { transform: translate(-16%, -90%) rotate(-7deg); opacity: .3; } }
@keyframes sealB { 0% { transform: none; } 14% { transform: translate(2%, 1.5%); } 100% { transform: translate(16%, 90%) rotate(7deg); opacity: .3; } }
@keyframes burst { 0% { transform: translate(-50%, -50%) scale(0); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; } }

/* ---------- Como funciona ---------- */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 34px; right: 34px; top: 34px; height: 2px; background: linear-gradient(90deg, var(--wire-strong), rgba(169, 150, 255, .3)); }
.steps::after { content: ""; position: absolute; left: 34px; top: 33px; width: 120px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, transparent, var(--crimson), #fff); box-shadow: 0 0 14px var(--crimson); animation: stepRun 4.5s var(--ease-cut) infinite; }
@keyframes stepRun { 0% { left: 34px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 154px); opacity: 0; } }
.step { position: relative; }
.step__num { position: relative; z-index: 1; width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid var(--wire-strong); border-radius: 50%; background: radial-gradient(circle, #231629, var(--surface)); color: var(--rose-light); font: 700 17px/1 var(--font-mono); box-shadow: 0 0 0 6px var(--bg), 0 0 30px -6px rgba(255, 58, 92, .6); }
.step__icon { position: absolute; top: 22px; left: 88px; width: 24px; height: 24px; color: var(--dim); }
.step h3 { margin-bottom: 8px; font-size: 20px; font-weight: 700; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- Cases ---------- */
.case { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: center; gap: clamp(28px, 4vw, 56px); padding: clamp(22px, 3vw, 38px); border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(160deg, rgba(24, 20, 34, .88), rgba(10, 10, 16, .88)); }
.case + .case { margin-top: 26px; }
.case--flip .case__visual { order: 2; }
.case__visual { position: relative; padding: 0 30px 40px 0; }
.case--flip .case__visual { padding: 0 0 40px 30px; }
.browser { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--surface-2); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9); transition: transform .5s var(--ease-out); }
.browser__bar { height: 32px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #16161f; border-bottom: 1px solid var(--line); }
.browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: #34343f; }
.browser__bar span { margin-left: 10px; padding: 4px 12px; border-radius: 7px; background: rgba(255, 255, 255, .05); color: var(--muted); font: 500 11px/1 var(--font-mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; object-position: top; }
.case__phone { position: absolute; right: 0; bottom: 0; width: 27%; overflow: hidden; border: 5px solid #1e1e2a; border-radius: 24px; background: #000; box-shadow: 0 24px 50px -16px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .08); transition: transform .5s var(--ease-out); }
.case--flip .case__phone { right: auto; left: 0; }
.case__phone img { width: 100%; aspect-ratio: 390 / 700; object-fit: cover; object-position: top; }
.case:hover .browser { transform: translateY(-4px); }
.case:hover .case__phone { transform: translateY(-10px) rotate(-2deg); }
.case--flip:hover .case__phone { transform: translateY(-10px) rotate(2deg); }
.case__tag { display: inline-flex; align-items: center; gap: 8px; color: var(--rose-light); font: 700 11.5px/1.3 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.case__tag .i { width: 16px; height: 16px; }
.case__copy h3 { margin: 14px 0 12px; font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.03em; }
.case__copy p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.case__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin: 22px 0 26px; }
.case__features li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.case__features .i { width: 16px; height: 16px; color: var(--ok); stroke-width: 2.6; }

/* ---------- Para quem ---------- */
.niches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.niche { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: rgba(14, 14, 22, .8); transition: transform .25s var(--ease-out), border-color .25s; }
.niche:hover { transform: translateY(-4px); border-color: var(--wire-strong); }
.niche-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 22px 26px; border: 1px dashed var(--wire-strong); border-radius: 20px; background: rgba(255, 58, 92, .05); }
.niche-cta p { color: var(--muted); }
.niche-cta strong { color: var(--text); }

/* ---------- Dúvidas ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq-layout__head { position: sticky; top: 110px; margin-bottom: 0; }
.faq-layout__head .btn { margin-top: 26px; }
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: 18px; background: rgba(14, 14, 22, .8); transition: border-color .2s; }
.faq__item[open] { border-color: var(--wire-strong); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .i { width: 18px; height: 18px; color: var(--crimson); transition: transform .25s var(--ease-out); }
.faq__item[open] summary .i { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: var(--muted); line-height: 1.7; }

/* ---------- Contato final ---------- */
.final { position: relative; overflow: hidden; padding: 130px 0 110px; text-align: center; border-top: 1px solid var(--line); background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(255, 58, 92, .18), transparent 70%); }
.final__slashes i { position: absolute; left: -10%; width: 120%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255, 58, 92, .7), rgba(169, 150, 255, .5), transparent); box-shadow: 0 0 20px rgba(255, 58, 92, .5); }
.final__slashes i:nth-child(1) { top: 30%; transform: rotate(-9deg); }
.final__slashes i:nth-child(2) { top: 72%; transform: rotate(6deg); opacity: .5; }
.final__watermark { position: absolute; left: 50%; bottom: -3vw; transform: translateX(-50%); font: 800 clamp(90px, 20vw, 300px)/1 var(--font-display); letter-spacing: .12em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .05); white-space: nowrap; pointer-events: none; user-select: none; }
.final__inner { position: relative; }
.final h2 { margin: 20px auto 18px; font-size: clamp(34px, 5vw, 64px); font-weight: 800; line-height: 1.06; letter-spacing: -.04em; text-wrap: balance; max-width: 900px; }
.final__inner > p { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.why { display: flex; align-items: flex-start; gap: 16px; max-width: 680px; margin: 60px auto 0; padding: 22px 24px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(10, 10, 16, .8); text-align: left; }
.why .mark { width: 44px; height: 44px; }
.why p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.why strong { color: var(--text); }

/* ---------- Rodapé ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 0 40px; }
.footer__brand p { max-width: 340px; margin-top: 16px; color: var(--muted); font-size: 14.5px; }
.footer__col { display: grid; align-content: start; gap: 10px; }
.footer__col strong { margin-bottom: 4px; font: 700 12px/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.footer__col a { color: var(--muted); font-size: 14.5px; transition: color .18s; }
.footer__col a:hover { color: var(--text); }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 20px 0 30px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position: fixed; z-index: 60; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--wa); color: #04210f; box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .8); transition: transform .2s, opacity .3s; }
.wa-float .i { width: 28px; height: 28px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
.wa-float:hover { transform: scale(1.07); }

/* ---------- Responsivo ---------- */
@media (max-width: 1180px) {
  .float-card--agenda { right: 0; width: 220px; }
  .float-card--pix { left: -30px; }
  .float-card--remind { right: 0; }
  .stage-ring { width: 460px; height: 460px; }
}
@media (max-width: 1060px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; padding-top: 120px; gap: 36px; }
  .hero__copy { max-width: 720px; }
  .hero-stage { min-height: 660px; }
  .float-card--agenda { right: calc(50% - 330px); }
  .float-card--pix { left: calc(50% - 330px); }
  .float-card--remind { right: calc(50% - 320px); }
  .powers, .niches { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before, .steps::after { display: none; }
  .lib-grid { grid-template-columns: 1fr; }
  .case, .case--flip { grid-template-columns: 1fr; }
  .case--flip .case__visual { order: 0; padding: 0 30px 40px 0; }
  .case--flip .case__phone { left: auto; right: 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout__head { position: static; }
}
@media (max-width: 820px) {
  .hero__inner { padding-top: 40px; }
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(3) { border-left: 0; }
  .strip__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .section { padding: 84px 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
/* No celular não há espaço dos lados: os cartões do painel saem de cima do
   celular (cobriam as mensagens) e ficam empilhados logo abaixo dele. Eles
   ocupam espaço mesmo invisíveis, então nada "pula" quando aparecem. */
@media (max-width: 680px) {
  .hero-stage { display: flex; flex-direction: column; align-items: center; gap: 12px; min-height: 0; padding-bottom: 8px; }
  .phone { width: 272px; height: 560px; border-radius: 42px; }
  .phone__screen { border-radius: 32px; }
  .stage-ring { top: 90px; left: 50%; width: 380px; height: 380px; margin-left: -190px; }
  .stage-note { order: 1; position: static; transform: none; margin: 4px 0 6px; }
  .float-card, .float-card--agenda { order: 2; position: relative; inset: auto; width: 100%; max-width: 340px; }
}
@media (max-width: 620px) {
  .powers, .niches { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .case__features { grid-template-columns: 1fr; }
  .niche-cta { flex-direction: column; align-items: flex-start; }
  .lib-card { padding: 24px 20px; }
  .auto-flow span { padding: 7px 8px; font-size: 10.5px; }
  .auto-flow span .i { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .final__actions .btn { flex: 1 1 100%; }
}
@media (max-width: 460px) {
  .hero__title { font-size: clamp(34px, 10.5vw, 44px); }
  .strip__inner { grid-template-columns: 1fr; }
  .strip__item { border-left: 0 !important; }
  .strip__item + .strip__item { border-top: 1px solid var(--line); }
  .auto-flow { gap: 4px; }
  .auto-flow span { padding: 6px 7px; font-size: 10px; }
  .auto-flow i { min-width: 6px; }
  .footer__inner { grid-template-columns: 1fr; }
  .case__visual, .case--flip .case__visual { padding: 0 18px 30px 0; }
  .why { flex-direction: column; }
  .brand__copy small { display: none; }
}

/* ---------- Movimento ---------- */
/* "Pausar animações" congela só o que fica em loop; cortes de uma vez só
   (títulos, selo) terminam normalmente, para nada ficar congelado no meio. */
html[data-motion="paused"] :is(.ambient, .pulse-dot, .wa-float, .stage-ring, .steps, .auto-flow i)::before,
html[data-motion="paused"] :is(.ambient, .pulse-dot, .wa-float, .stage-ring, .steps, .auto-flow i)::after,
html[data-motion="paused"] :is(.dial__sweep, .tape__track, .chaos span, .wa-typing i) { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .hero-anim { opacity: 1; animation: none !important; }
  .motion-toggle { display: none; }
  .lib-actions { display: none; }
}
