/* =========================================================
   Site em 2 dias — PODIUM × ibusiness
   LP de produto. Navy / paper. Tipografia: Manrope (única).
   Base de design herdada do site ibusiness, adaptada.
========================================================= */

:root {
  /* base quase-preta estilo ALPE (não o navy do IBZ) */
  --bg:        #0a0e1a;
  --bg-2:      #06090f;
  --bg-3:      #121826;
  --surface:   #121826;
  --surface-2: #1b2238;
  --line:        rgba(245, 247, 255, 0.08);
  --line-strong: rgba(245, 247, 255, 0.17);

  --fg:   #f5f7ff;
  --fg-2: #c3c8d6;
  --fg-3: #8b91a6;
  --fg-4: #59607a;

  --bone:    #f1f2f5;
  --bone-2:  #e7e9f0;
  --paper:   #fafbfd;
  --ink:     #0a0e1a;
  --ink-2:   #1b2238;
  --ink-mute:rgba(10, 14, 26, 0.72);
  --line-ink:rgba(10, 14, 26, 0.10);

  /* acento azul elétrico + ciano estilo ALPE (era cornflower no IBZ) */
  --blue:      #2e6bff;
  --blue-soft: #5bd0ff;
  --blue-ink:  #1e54e6;
  --blue-deep: #173a9e;
  --glow:      rgba(46, 107, 255, 0.32);

  /* acento velocidade (energia) */
  --gold:      #E6B24E;
  --gold-soft: #f3cd84;

  --ok:   #2BB3A3;
  --warm: #C99A3C;
  --red:  #D45A6B;

  --radius:    18px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --ease:      cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100vw; overflow-x: clip; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: #0a0e1a; }

/* ================ CONTAINER / SECTION ================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .container { padding: 0 24px; } }

section { position: relative; }
.section-pad { padding: clamp(78px, 11vh, 150px) 0; }

.sec--light, .sec--dark { position: relative; }
.sec-divider { border-top: 1px solid var(--line); }
.sec-mark { position: absolute; top: 0; left: 0; width: 64px; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); }

.sec--light { background: var(--bone-2); color: var(--ink); }
.sec--light .lede { color: var(--ink-mute); }
.sec--light .eyebrow { color: var(--blue-ink); }
.sec--light .eyebrow::before { background: linear-gradient(90deg, var(--blue-ink), transparent); }

/* ================ TYPOGRAPHY ================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.eyebrow--center { justify-content: center; }

h1, h2, h3 { font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
.display { font-size: clamp(2.5rem, 6.6vw, 5.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.99; }
.h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.lede { font-size: clamp(1.04rem, 1.6vw, 1.28rem); color: var(--fg-2); line-height: 1.5; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head--center { margin: 0 auto 56px; text-align: center; }
.sec-head .lede { margin-top: 20px; }

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .4s var(--ease-out), background .3s, box-shadow .4s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { transition: transform .4s var(--ease-out); }
.btn--wa { background: #25D366; color: #08331b; box-shadow: 0 8px 26px -10px rgba(37,211,102,.5); }
.btn--wa:hover { background: #2ee575; transform: translateY(-2px); box-shadow: 0 14px 36px -12px rgba(37,211,102,.55); }
.btn--wa:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 26px -10px var(--glow); }
.btn--primary:hover { background: #5a86ff; transform: translateY(-2px); box-shadow: 0 14px 36px -12px var(--glow); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.sec--light .btn--ghost { color: var(--ink); border-color: var(--line-ink); }
.sec--light .btn--ghost:hover { border-color: var(--blue-ink); color: var(--blue-ink); }
.btn--lg { padding: 17px 30px; font-size: 16px; }

.sec-cta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 56px; text-align: center; }
.sec-cta__q { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; letter-spacing: -0.02em; }
.sec--light .sec-cta__q { color: var(--ink); }

/* ================ CO-BRAND LOCKUP ================ */
.cobrand { display: inline-flex; align-items: center; gap: 13px; }
.cobrand img { width: auto; object-fit: contain; }
.cobrand .lp { height: 40px; filter: brightness(0) invert(1); }
.cobrand .li { height: 28px; filter: brightness(0) invert(1); }
.cobrand .x { color: var(--fg-4); font-size: 17px; font-weight: 300; }
/* badge do hero usa lockup menor pra não estourar a pílula */
.hero__proof .made .lp { height: 28px; }
.hero__proof .made .li { height: 24px; }

/* ================ NAV ================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 11px 40px;
  background: rgba(10, 14, 26, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--fg-2); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--blue); transition: width .35s var(--ease-out); }
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; background: var(--blue); color: #fff; font-weight: 600; font-size: 14px; transition: transform .4s var(--ease-out), box-shadow .4s; }
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--glow); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; }

.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--bg-2); padding: 24px; display: flex; flex-direction: column; gap: 8px; transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden; }
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__nav a { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px; border-radius: 100px; background: #25D366; color: #08331b; font-weight: 700; font-size: 17px; }
.mobile-menu__close { color: var(--fg); }

/* floating WhatsApp */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 18px 13px 15px; border-radius: 100px;
  background: #25D366; color: #08331b; font-weight: 700; font-size: 14.5px;
  box-shadow: 0 12px 34px -10px rgba(37,211,102,.5);
  transform: translateY(120px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s, box-shadow .3s;
}
.fab.is-visible { transform: none; opacity: 1; }
.fab:hover { box-shadow: 0 16px 40px -10px rgba(37,211,102,.6); }
.fab svg { width: 22px; height: 22px; }
.fab__txt { white-space: nowrap; }
@media (max-width: 560px) { .fab__txt { display: none; } .fab { padding: 14px; } }

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--blue-deep), var(--blue)); z-index: 150; }

[data-reveal] { opacity: 0; transform: translateY(30px); }

/* ============================================================
   HERO
============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 70px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -1px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, #000 30%, transparent 78%);
}
.hero__glow { position: absolute; top: -8%; left: 50%; transform: translateX(-50%); width: 1000px; height: 620px; background: radial-gradient(ellipse at center, var(--glow), transparent 66%); filter: blur(10px); opacity: .6; }
.hero__inner { position: relative; z-index: 2; }
.hero__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.hero__loc { font-size: 12px; color: var(--fg-3); letter-spacing: 0.16em; text-transform: uppercase; }
.hero h1 { max-width: 16ch; line-height: 1.02; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.12em; }
.hero h1 .line > span { display: block; line-height: 1.04; }
.hero h1 em { font-style: normal; color: var(--gold); position: relative; white-space: nowrap; }
.hero__sub { margin-top: 28px; max-width: 56ch; font-size: clamp(1.04rem, 1.7vw, 1.3rem); color: var(--fg-2); }
.hero__sub b { color: var(--fg); }
.hero__ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { margin-top: 52px; display: flex; align-items: center; gap: 20px 26px; flex-wrap: wrap; }
.hero__proof .made { display: inline-flex; align-items: center; gap: 12px; padding: 9px 18px 9px 14px; border-radius: 100px; background: var(--surface); border: 1px solid var(--line); }
.hero__proof .made small { font-size: 11.5px; color: var(--fg-3); letter-spacing: .04em; }
.hero__proof .dot-list { display: flex; align-items: center; gap: 8px 14px; flex-wrap: wrap; font-size: 13px; color: var(--fg-3); }
.hero__proof .dot-list span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .dot-list i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ============================================================
   LINHA 48H — console de produção (signature)
============================================================ */
.linha { background: var(--bg-2); overflow: hidden; }
.linha__console {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 18px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: var(--surface); padding: 20px;
  box-shadow: 0 40px 110px -50px #000;
}
.console__bar { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.console__dots { display: flex; gap: 6px; }
.console__dots i { width: 11px; height: 11px; border-radius: 50%; }
.console__dots i:nth-child(1){opacity:.6;background:#3a9} .console__dots i:nth-child(2){opacity:.6;background:var(--warm)} .console__dots i:nth-child(3){opacity:.6;background:var(--red)}
.console__title { font-size: 13px; color: var(--fg-3); font-weight: 600; }
.console__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ok); }
.console__live .ping { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: ping 1.8s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(43,179,163,.5);} 70%{box-shadow:0 0 0 9px rgba(43,179,163,0);} 100%{box-shadow:0 0 0 0 rgba(43,179,163,0);} }

.steps { display: flex; flex-direction: column; gap: 9px; }
.steps__phase { display: flex; align-items: center; gap: 10px; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 4px 0 2px; }
.steps__phase::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.steps__phase:first-child { margin-top: 0; }
.step { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); transition: border-color .5s, background .5s, opacity .5s; opacity: .42; }
.step.is-live { opacity: 1; border-color: var(--line-strong); background: var(--bg-3); }
.step.is-done { opacity: 1; }
.step__icon { width: 36px; height: 36px; border-radius: 9px; flex: none; display: grid; place-items: center; background: rgba(250,250,247,.06); color: var(--fg-2); }
.step.is-live .step__icon { color: var(--blue-soft); background: rgba(46,107,255,.12); }
.step.is-done .step__icon { color: var(--ok); background: rgba(43,179,163,.12); }
.step__icon svg { width: 19px; height: 19px; }
.step__body { flex: 1; line-height: 1.25; }
.step__body b { font-size: 13.5px; font-weight: 700; display: block; }
.step__body span { font-size: 11.5px; color: var(--fg-3); }
.step__status { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-4); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.step.is-live .step__status { color: var(--blue-soft); }
.step.is-done .step__status { color: var(--ok); }
.step__status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.step.is-live .step__status i { animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }

.feed { display: flex; flex-direction: column; }
.feed__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.feed__lbl { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); }
.feed__count { font-size: 12px; color: var(--fg-3); }
.feed__count b { color: var(--gold-soft); font-variant-numeric: tabular-nums; font-size: 15px; }
.feed__list { display: flex; flex-direction: column; gap: 8px; height: 392px; overflow: hidden; mask-image: linear-gradient(180deg, transparent, #000 7%, #000 92%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 7%, #000 92%, transparent); }
.logline { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line); animation: alertIn .55s var(--ease-out) both; }
@keyframes alertIn { from { opacity: 0; transform: translateY(-12px) scale(.98); } to { opacity: 1; transform: none; } }
.logline__tag { font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.logline--art  .logline__tag { background: rgba(46,107,255,.14); color: var(--blue-soft); }
.logline--ok   .logline__tag { background: rgba(43,179,163,.14); color: var(--ok); }
.logline--dev  .logline__tag { background: rgba(224,178,84,.16); color: var(--gold-soft); }
.logline__msg { font-size: 13px; color: var(--fg); line-height: 1.35; }
.logline__msg b { font-weight: 700; }
.logline__time { font-size: 11px; color: var(--fg-4); font-variant-numeric: tabular-nums; white-space: nowrap; }

.stack { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.stack__lbl { width: 100%; text-align: center; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 4px; }
.stack .chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--fg-2); padding: 8px 14px; border-radius: 100px; border: 1px solid var(--line); background: var(--surface); }
.stack .chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* ============================================================
   FRENTES — rápido não é raso (cards claros)
============================================================ */
.frentes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.frente {
  position: relative; display: flex; flex-direction: column;
  padding: 22px 22px 26px; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line-ink);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s;
}
.frente:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(10,14,26,.28); border-color: rgba(10,14,26,.16); }
.frente__head { display: flex; align-items: baseline; gap: 11px; margin-bottom: 14px; }
.frente__idx { font-size: 12px; font-weight: 800; color: var(--blue-ink); letter-spacing: 0.1em; flex: none; }

.viz { position: relative; aspect-ratio: 16 / 10; border-radius: 14px; background: linear-gradient(158deg, #ffffff, var(--bone-2)); border: 1px solid var(--line-ink); overflow: hidden; margin-bottom: 20px; }
.viz__chip { position: absolute; top: 11px; right: 11px; z-index: 2; font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-ink); background: rgba(30,84,230,.10); padding: 4px 9px; border-radius: 100px; }
.viz__chip::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); margin-right: 6px; vertical-align: middle; animation: blink 1.4s infinite; }
.viz__num { position: absolute; top: 12px; left: 14px; z-index: 2; font-size: 18px; font-weight: 800; color: var(--blue-ink); letter-spacing: -0.02em; }

/* 01 — direção de arte (paletas trocando) */
.viz--art { display: flex; align-items: center; justify-content: center; gap: 10px; }
.viz--art .sw { width: 30px; height: 56px; border-radius: 8px; border: 1px solid var(--line-ink); animation: swatch 3.6s var(--ease) infinite; }
.viz--art .sw:nth-child(1){background:var(--blue-ink)} .viz--art .sw:nth-child(2){background:var(--gold);animation-delay:.2s} .viz--art .sw:nth-child(3){background:var(--ink);animation-delay:.4s} .viz--art .sw:nth-child(4){background:var(--ok);animation-delay:.6s} .viz--art .sw:nth-child(5){background:var(--red);animation-delay:.8s}
@keyframes swatch { 0%,100%{transform:translateY(0) scaleY(.7);opacity:.45} 40%,60%{transform:translateY(0) scaleY(1);opacity:1} }

/* 02 — copy (linhas sendo escritas) */
.viz--copy { display: flex; flex-direction: column; justify-content: center; padding: 20px 18px; gap: 9px; }
.viz--copy .ln { height: 9px; border-radius: 4px; background: rgba(10,14,26,.10); position: relative; overflow: hidden; }
.viz--copy .ln::after { content: ""; position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--blue-ink), var(--blue)); border-radius: 4px; animation: typing 3.4s var(--ease) infinite; }
.viz--copy .ln:nth-child(1){width:88%} .viz--copy .ln:nth-child(2){width:96%} .viz--copy .ln:nth-child(3){width:64%}
.viz--copy .ln:nth-child(2)::after{animation-delay:.35s} .viz--copy .ln:nth-child(3)::after{animation-delay:.7s}
@keyframes typing { 0%{width:0} 40%{width:100%} 88%{width:100%} 100%{width:0} }

/* 03 — código próprio (janela compilando) */
.viz--code { display: flex; flex-direction: column; justify-content: center; padding: 16px 18px; gap: 7px; font-family: ui-monospace, monospace; }
.viz--code .cl { display: flex; align-items: center; gap: 7px; opacity: 0; transform: translateX(-8px); animation: codeIn 4s var(--ease) infinite; }
.viz--code .cl:nth-child(2){animation-delay:.3s} .viz--code .cl:nth-child(3){animation-delay:.6s} .viz--code .cl:nth-child(4){animation-delay:.9s}
.viz--code .tk { height: 7px; border-radius: 3px; }
.viz--code .tk.b { background: var(--blue-ink); } .viz--code .tk.g { background: var(--ok); } .viz--code .tk.n { background: rgba(10,14,26,.18); }
@keyframes codeIn { 0%{opacity:0;transform:translateX(-8px)} 14%{opacity:1;transform:none} 86%{opacity:1} 100%{opacity:0} }

/* 04 — mobile + perf (medidor) */
.viz--perf { display: flex; align-items: center; justify-content: center; gap: 14px; }
.viz--perf .gauge { width: 84px; height: 84px; border-radius: 50%; background: conic-gradient(var(--ok) 0turn, var(--ok) .96turn, rgba(10,14,26,.10) .96turn); position: relative; animation: gaugeUp 3.4s var(--ease) infinite; }
.viz--perf .gauge::after { content: "98"; position: absolute; inset: 12px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.02em; }
@keyframes gaugeUp { 0%{background:conic-gradient(var(--ok) 0turn, rgba(10,14,26,.10) 0turn)} 50%,100%{background:conic-gradient(var(--ok) .96turn, rgba(10,14,26,.10) .96turn)} }
.viz--perf .phone { width: 40px; height: 70px; border-radius: 9px; border: 2px solid var(--ink); background: #fff; padding: 5px 4px; display: flex; flex-direction: column; gap: 4px; }
.viz--perf .phone i { height: 5px; border-radius: 2px; background: rgba(10,14,26,.14); }
.viz--perf .phone i:nth-child(1){background:var(--blue-ink);height:9px} .viz--perf .phone i:nth-child(2){width:80%} .viz--perf .phone i:nth-child(3){width:60%}

/* 05 — deploy (site no ar) */
.viz--deploy .win { position: absolute; inset: 14px; background: #fff; border: 1px solid var(--line-ink); border-radius: 9px; overflow: hidden; display: flex; flex-direction: column; }
.viz--deploy .win__bar { display: flex; align-items: center; gap: 5px; padding: 7px 9px; border-bottom: 1px solid var(--line-ink); }
.viz--deploy .win__bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--bone-2); }
.viz--deploy .win__bar .url { margin-left: 6px; flex: 1; max-width: 62%; height: 7px; border-radius: 4px; background: rgba(10,14,26,.08); }
.viz--deploy .win__body { position: relative; flex: 1; padding: 13px; }
.viz--deploy .ld { position: absolute; top: 0; left: 0; height: 3px; width: 0; background: var(--ok); animation: siteLoad 3.8s var(--ease) infinite; }
.viz--deploy .lines { display: flex; flex-direction: column; gap: 7px; opacity: 0; animation: siteShow 3.8s var(--ease) infinite; }
.viz--deploy .lines span { height: 7px; border-radius: 4px; background: rgba(10,14,26,.10); }
.viz--deploy .lines span:nth-child(1){width:78%} .viz--deploy .lines span:nth-child(2){width:52%}
.viz--deploy .live { position: absolute; right: 12px; bottom: 11px; font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ok); opacity: 0; animation: siteShow 3.8s var(--ease) infinite; }
@keyframes siteLoad { 0%{width:0} 30%{width:100%} 92%{width:100%} 100%{width:0} }
@keyframes siteShow { 0%,28%{opacity:0} 42%{opacity:1} 92%{opacity:1} 100%{opacity:0} }

.frente__name { font-size: 1.24rem; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 0; }
.frente__block { margin-bottom: 13px; }
.frente__k { display: inline-flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; }
.frente__k.pain { color: var(--red); }
.frente__k.fix  { color: var(--ok); }
.frente__k::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.frente__pain { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.4; }
.frente__fix  { font-size: 15px; font-weight: 500; color: var(--ink-2); line-height: 1.55; }
.frente__tags { margin-top: auto; padding-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.frente__tags span { font-size: 11px; font-weight: 600; color: var(--blue-ink); background: rgba(30,84,230,.08); padding: 4px 10px; border-radius: 100px; }

/* 6º card: CTA que fecha a grade em par (escuro entre os 5 claros) */
.frente--cta { background: var(--ink); border-color: var(--ink); color: var(--paper); justify-content: center; gap: 14px; overflow: hidden; }
.frente--cta::after { content: ""; position: absolute; top: -40%; right: -30%; width: 320px; height: 320px; background: radial-gradient(circle, var(--glow), transparent 65%); pointer-events: none; }
.frente--cta:hover { box-shadow: 0 26px 50px -28px rgba(46,107,255,.42); border-color: var(--blue-deep); }
.frente--cta .frente__idx { color: var(--gold); position: relative; }
.frente--cta h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; color: var(--paper); position: relative; }
.frente--cta p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; position: relative; }
.frente--cta .btn { margin-top: 6px; align-self: flex-start; position: relative; }

/* ============================================================
   PORTFOLIO — sites no ar (grid + filtro)
============================================================ */
.port { background: var(--bone-2); }
.port__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
.port__head h2 { color: var(--ink); max-width: 20ch; }
.port__honest { font-size: 13px; color: var(--ink-mute); max-width: 32ch; line-height: 1.5; padding-left: 16px; border-left: 2px solid var(--blue-ink); }
.port__filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.port__filters button { font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line-ink); background: var(--paper); transition: all .3s var(--ease-out); }
.port__filters button .n { color: var(--blue-ink); font-variant-numeric: tabular-nums; }
.port__filters button:hover { border-color: var(--blue-ink); }
.port__filters button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.port__filters button.is-active .n { color: var(--blue-soft); }

.port__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.site-card { background: var(--paper); border: 1px solid var(--line-ink); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease-out), box-shadow .5s, border-color .4s, opacity .4s; }
.site-card:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -30px rgba(10,14,26,.30); border-color: rgba(10,14,26,.18); }
.site-card.is-hidden { display: none; }
.site-card__shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #06090f; border-bottom: 1px solid var(--line-ink); }
.site-card__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease-out); }
.site-card:hover .site-card__shot img { transform: scale(1.04); }
.site-card__flag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: rgba(10,14,26,.72); backdrop-filter: blur(6px); color: #fff; }
.site-card__open { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px; opacity: 0; background: rgba(10,14,26,.55); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: -.01em; transition: opacity .35s; backdrop-filter: blur(2px); }
.site-card__open svg { width: 17px; height: 17px; }
.site-card__shot a:hover .site-card__open { opacity: 1; }
.site-card__body { padding: 16px 18px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.site-card__name { font-size: 15.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.site-card__seg { font-size: 12px; font-weight: 600; color: var(--blue-ink); margin-top: 3px; }
.site-card__link { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-ink); display: grid; place-items: center; color: var(--blue-ink); transition: all .3s; }
.site-card__link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.site-card__link svg { width: 15px; height: 15px; }

/* ============================================================
   NÚMEROS
============================================================ */
.numeros__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.numeros__cell { background: var(--bg); padding: 38px 28px; }
.numeros__num { font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.numeros__num .u { color: var(--gold); }
.numeros__lbl { margin-top: 12px; font-size: 13.5px; color: var(--fg-3); line-height: 1.4; }

/* ============================================================
   QUEM FAZ — dois estúdios
============================================================ */
.makers { background: var(--bg-2); }
.makers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.maker { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); padding: 30px; overflow: hidden; display: flex; flex-direction: column; }
.maker__top { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.maker__av { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center 20%; border: 1px solid var(--line-strong); flex: none; }
.maker__logo { height: 28px; width: auto; filter: brightness(0) invert(1); }
.maker__role { font-size: 12px; color: var(--fg-3); margin-top: 6px; letter-spacing: .02em; }
.maker__who b { font-size: 17px; font-weight: 800; }
.maker p { color: var(--fg-2); font-size: 15px; line-height: 1.55; margin-bottom: 14px; }
.maker p:last-of-type { margin-bottom: 0; }
.maker__tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.maker__tags span { font-size: 11.5px; font-weight: 600; color: var(--fg-2); padding: 7px 13px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-2); }
.makers__plus { text-align: center; max-width: 720px; margin: 40px auto 0; }
.makers__plus h3 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; }
.makers__plus h3 em { color: var(--blue); font-style: normal; }
.makers__plus p { color: var(--fg-3); margin-top: 14px; font-size: 1.02rem; }

/* ============================================================
   CTA FINAL
============================================================ */
.cta { text-align: center; overflow: hidden; }
.cta__wrap { position: relative; max-width: 880px; margin: 0 auto; }
.cta__glow { position: absolute; inset: -40% -20% auto; height: 560px; background: radial-gradient(ellipse at center, var(--glow), transparent 62%); pointer-events: none; opacity: .7; }
.cta h2 { font-size: clamp(2.1rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; position: relative; }
.cta h2 em { color: var(--gold); font-style: normal; }
.cta p { margin: 24px auto 0; max-width: 54ch; color: var(--fg-2); font-size: 1.08rem; position: relative; }
.cta__ctas { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta__note { margin-top: 22px; font-size: 13px; color: var(--fg-4); position: relative; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 66px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer__brand .cobrand { margin-bottom: 16px; }
.footer__brand p { color: var(--fg-3); font-size: 14px; max-width: 42ch; }
.footer__col .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-4); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--fg-2); transition: color .3s; }
.footer__col a:hover { color: var(--blue); }
.footer__bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom span, .footer__bottom a { font-size: 12.5px; color: var(--fg-4); }
.footer__bottom a { color: var(--fg-2); font-weight: 600; }
.footer__bottom a:hover { color: var(--blue); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .linha__console { grid-template-columns: 1fr; }
  .frentes__grid { grid-template-columns: repeat(2, 1fr); }
  .port__grid { grid-template-columns: repeat(2, 1fr); }
  .makers__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { padding: 14px 22px; }
  .nav.is-scrolled { padding: 11px 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .numeros__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .frentes__grid { grid-template-columns: 1fr; }
  .port__grid { grid-template-columns: 1fr; }
  .focus-mode .frente, .focus-mode .site-card { transition: opacity .45s var(--ease), transform .5s var(--ease); will-change: opacity, transform; }
  .focus-mode .frente:not(.is-focus), .focus-mode .site-card:not(.is-focus) { opacity: .36; transform: scale(.94); }
  .focus-mode .frente.is-focus, .focus-mode .site-card.is-focus { opacity: 1; transform: scale(1); }
}
@media (max-width: 560px) {
  .numeros__grid { grid-template-columns: 1fr; }
  .feed__list { height: 340px; }
  .cobrand .lp { height: 32px; } .cobrand .li { height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
