/* ============================================================
   MSL DIGITAL — style.css v41
   Archivo · túnel 3D · parallax máximo
   ============================================================ */

:root {
  --bg: #0A0908;
  --bg2: #0F0E0C;
  --ink: #EDE8DE;
  --ink-dim: #97917F;
  --gold: #C9A961;
  --gold-hi: #E4C87E;
  --line: rgba(237, 232, 222, 0.12);
  --line-hi: rgba(201, 169, 97, 0.45);
  --font-d: 'Archivo', 'Arial Black', sans-serif;
  --font-t: 'Instrument Sans', 'Helvetica Neue', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  --pad: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

::selection { background: var(--gold); color: #000; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }
.gold { color: var(--gold); }

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: -50%; z-index: 99; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); } 25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); } 75% { transform: translate(-3%, -3%); } 100% { transform: translate(2%, 2%); }
}

/* ============ DECOR FLUTUANTE (parallax) ============ */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-coord { font-family: var(--font-m); font-size: 11px; letter-spacing: .3em; color: rgba(201,169,97,.35); top: 60px; right: var(--pad); writing-mode: vertical-rl; }
.deco-orb {
  width: 340px; height: 340px; border-radius: 50%; right: -120px; top: 30%;
  background: radial-gradient(circle, rgba(201,169,97,.14) 0%, transparent 65%);
  filter: blur(10px);
}
.deco-plus { font-family: var(--font-d); font-weight: 300; font-size: 130px; color: rgba(201,169,97,.1); top: 40px; right: 10%; line-height: 1; }
.deco-ring {
  width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(201,169,97,.14);
  left: -180px; bottom: -100px; animation: slowSpin 40s linear infinite;
}
.deco-ring::after { content: ''; position: absolute; top: 12px; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); opacity: .5; }
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* ============ CURSOR ============ */
#cursor {
  position: fixed; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); z-index: 200; pointer-events: none;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  display: flex; align-items: center; justify-content: center;
  transition: width .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1), background .3s;
}
#cursor.big { width: 88px; height: 88px; background: var(--ink); }
#cursor.txt { width: 96px; height: 96px; background: var(--gold); mix-blend-mode: normal; }
#cursorLabel { font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; color: #000; font-weight: 700; opacity: 0; white-space: nowrap; }
#cursor.txt #cursorLabel { opacity: 1; }
@media (pointer: coarse) { #cursor { display: none; } }

/* ============ PRELOADER ============ */
#loader {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--pad); gap: 18px;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
}
#loader.done { transform: translateY(-101%); }
.loader-row { display: flex; justify-content: space-between; align-items: flex-end; }
.loader-name { font-family: var(--font-d); font-weight: 600; font-size: clamp(22px, 3vw, 34px); letter-spacing: .02em; }
.loader-name em { color: var(--gold); }
.loader-count { font-family: var(--font-d); font-weight: 700; font-size: clamp(60px, 12vw, 160px); line-height: .9; color: var(--gold); }
.loader-bar { height: 1px; background: var(--line); position: relative; }
.loader-bar span { position: absolute; inset: 0; right: auto; width: 0%; background: var(--gold); }

/* ============ NAV ============ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad); mix-blend-mode: difference;
  transition: transform .45s ease;
}
#nav.hide { transform: translateY(-110%); }
.nav-logo { font-family: var(--font-d); font-weight: 700; font-size: 21px; letter-spacing: .02em; }
.nav-logo em { color: var(--gold); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-family: var(--font-m); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; transition: opacity .25s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-m); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: 100px; padding: 11px 22px; transition: background .3s, color .3s;
}
.nav-cta-dot { width: 7px; height: 7px; border-radius: 50%; background: #37D67A; animation: pulseDot 1.6s infinite; }
@keyframes pulseDot { 50% { opacity: .3; } }
@media (max-width: 960px) { .nav-links { display: none; } }

/* ============ HERO ============ */
#hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#gl { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-frame .hf {
  position: absolute; z-index: 5; font-family: var(--font-m); font-size: 11.5px;
  letter-spacing: .16em; color: var(--ink-dim); text-transform: uppercase;
}
.hf-tl { top: 86px; left: var(--pad); }
.hf-tr { top: 86px; right: var(--pad); }
.hf-bl { bottom: 34px; left: var(--pad); animation: blink 2.4s infinite; }
.hf-br { bottom: 34px; right: var(--pad); color: var(--gold); }
@keyframes blink { 50% { opacity: .3; } }

.hero-center { position: relative; z-index: 6; text-align: center; padding: 0 var(--pad); }
.hero-kicker {
  font-family: var(--font-m); font-size: 12px; letter-spacing: .26em; color: var(--ink-dim);
  margin-bottom: 30px; opacity: 0;
}
.hero-kicker span { color: #37D67A; }
.hero-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(54px, 12.5vw, 205px);
  line-height: .95; letter-spacing: -.02em; text-transform: uppercase;
}
.ht-line { display: block; overflow: hidden; padding-bottom: .05em; margin-bottom: -.05em; }
.ht-word { display: inline-block; transform: translateY(115%); }
.ht-outline { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero-sub { margin-top: 38px; font-size: clamp(16px, 1.6vw, 21px); color: var(--ink-dim); line-height: 1.65; opacity: 0; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-ctas { margin-top: 42px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; opacity: 0; }

.btn-solid {
  font-family: var(--font-d); font-weight: 600; font-size: 17px;
  background: var(--gold); color: #0A0908; padding: 18px 40px; border-radius: 100px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, box-shadow .3s;
  display: inline-block; will-change: transform;
}
.btn-solid:hover { background: var(--gold-hi); box-shadow: 0 14px 50px rgba(201,169,97,.28); }
.btn-line {
  font-family: var(--font-d); font-weight: 500; font-size: 17px;
  border: 1px solid var(--line); color: var(--ink); padding: 18px 40px; border-radius: 100px;
  transition: border-color .3s; display: inline-block; will-change: transform;
}
.btn-line:hover { border-color: var(--gold); }

/* ============ MARQUEE ============ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 20px 0; background: var(--bg2); }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: marq 26s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--font-d); font-weight: 500; font-size: 20px; letter-spacing: .12em; color: var(--ink-dim); text-transform: uppercase; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============ BASE SEÇÕES ============ */
section { padding: clamp(90px, 12vw, 170px) var(--pad); position: relative; }
.mono-tag { display: block; font-family: var(--font-m); font-size: 12px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; }
.section-head { margin-bottom: clamp(50px, 7vw, 90px); position: relative; z-index: 1; }
.h2 {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 6.6vw, 104px); line-height: .98; letter-spacing: -.015em;
  will-change: transform;
}
.h2-sm { font-family: var(--font-d); font-weight: 700; font-size: clamp(28px, 4.2vw, 58px); line-height: 1.06; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-dim); max-width: 560px; margin-top: 26px; }
.head-note { margin-top: 24px; color: var(--ink-dim); max-width: 620px; font-size: 16.5px; }

/* ============ MANIFESTO ============ */
#manifesto { max-width: 1200px; margin: 0 auto; }
.manifesto-text {
  font-family: var(--font-d); font-weight: 500;
  font-size: clamp(28px, 4.4vw, 64px); line-height: 1.2; letter-spacing: -.01em;
}
.manifesto-text .mw { color: rgba(237, 232, 222, .15); transition: color .3s; }
.manifesto-text .mw.lit { color: var(--ink); }
.manifesto-text .mw.gold-w.lit { color: var(--gold); }

/* ============ NÚMEROS ============ */
#numeros { padding-top: 0; padding-bottom: 0; }
.num-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.num-item { background: var(--bg); padding: clamp(28px, 3.4vw, 52px) clamp(18px, 2vw, 34px); transition: background .35s; }
.num-item:hover { background: var(--bg2); }
.num-item em { display: block; font-family: var(--font-d); font-weight: 800; font-size: clamp(34px, 4.6vw, 72px); line-height: 1; color: var(--gold); }
.num-item span { display: block; margin-top: 12px; font-family: var(--font-m); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); }
@media (max-width: 860px) { .num-strip { grid-template-columns: 1fr 1fr; } }

/* ============ BRASIL (globo 3D — limpo) ============ */
#brasil { }
.brasil-globe-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: -20px;
}
.green-dot { color: #37D67A; font-weight: 600; }
#globeViz {
  width: min(100%, 720px);
  height: min(100vw, 720px);
  margin: 0 auto;
  display: block;
}
.globe-caption {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
}

/* ============ SERVIÇOS (accordion) ============ */
.svc-list { border-top: 1px solid var(--line); position: relative; z-index: 1; }
.svc { border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.svc::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(201,169,97,.08), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.svc:hover::before, .svc.open::before { opacity: 1; }
.svc-head {
  width: 100%; display: grid; grid-template-columns: 70px 1fr auto 60px; align-items: center; gap: 24px;
  padding: clamp(26px, 3.6vw, 44px) 0; background: none; border: none; color: inherit;
  font-family: inherit; text-align: left; cursor: pointer; position: relative; z-index: 1;
}
.svc-idx { font-family: var(--font-m); font-size: 14px; color: var(--gold); }
.svc-name {
  font-family: var(--font-d); font-weight: 700; font-size: clamp(24px, 3.8vw, 52px);
  text-transform: uppercase; line-height: 1; transition: transform .4s cubic-bezier(.16,1,.3,1), color .3s;
}
.svc:hover .svc-name, .svc.open .svc-name { transform: translateX(14px); color: var(--gold); }
.svc-tag { font-family: var(--font-m); font-size: 12.5px; color: var(--ink-dim); letter-spacing: .08em; }
.svc-arrow {
  font-size: 34px; font-weight: 300; justify-self: end; color: var(--gold);
  transition: transform .45s cubic-bezier(.16,1,.3,1); line-height: 1;
}
.svc.open .svc-arrow { transform: rotate(45deg); }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .65s cubic-bezier(.6, 0, .2, 1); position: relative; z-index: 1; }
.svc.open .svc-body { max-height: 900px; }
.svc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); padding: 6px 0 34px; }
.svc-cols h4 { font-family: var(--font-m); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.svc-cols p { color: var(--ink-dim); font-size: 15.5px; }
.svc-body .btn-solid { margin-bottom: 38px; font-size: 15px; padding: 14px 32px; }
@media (max-width: 860px) {
  .svc-head { grid-template-columns: 40px 1fr 40px; }
  .svc-tag { display: none; }
  .svc-cols { grid-template-columns: 1fr; }
}

/* ============ SHOWCASE ============ */
#trabalho { padding-bottom: 0; }
.show-pin { overflow: hidden; }
.show-track { display: flex; gap: clamp(24px, 3vw, 56px); width: max-content; padding: 10px 0 90px; will-change: transform; }
.show-card { width: clamp(320px, 42vw, 620px); flex: none; }
.sc-browser {
  border: 1px solid var(--line); background: var(--bg2); overflow: hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .4s;
  transform-style: preserve-3d;
}
.show-card:hover .sc-browser { border-color: var(--line-hi); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.sc-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.sc-bar i { width: 9px; height: 9px; border-radius: 50%; background: #3a352c; }
.sc-bar span { margin-left: 10px; font-family: var(--font-m); font-size: 11.5px; color: var(--ink-dim); }
.sc-body { aspect-ratio: 16/10.2; padding: clamp(20px, 2.6vw, 36px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.sc-body b { font-family: var(--font-d); font-size: 15px; letter-spacing: .04em; }
.sc-body h3 { font-family: var(--font-d); font-weight: 600; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.12; }
.sc-cta { align-self: flex-start; font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 100px; background: var(--gold); color: #000; }
.sc-cta-dark { background: #E8FF47; }
.sc-cta-line { background: transparent; border: 1px solid var(--line-hi); color: var(--ink); }
.sc-stats { display: flex; gap: 18px; font-family: var(--font-m); font-size: 11.5px; color: var(--ink-dim); }
.sc-clinica { background: radial-gradient(120% 120% at 85% 10%, #1d1710 0%, #0D0B09 60%); }
.sc-clinica b { color: var(--gold); }
.sc-gym { background: linear-gradient(160deg, #101010 0%, #0A0A0A 100%); }
.sc-gym b { color: #E8FF47; }
.sc-gym h3 { font-weight: 800; letter-spacing: .01em; }
.sc-adv { background: linear-gradient(160deg, #10131a 0%, #0A0C10 100%); }
.sc-adv b { color: #8FA8CC; letter-spacing: .18em; }
.sc-saas { background: linear-gradient(160deg, #0d1410 0%, #090C0A 100%); gap: 18px; }
.sc-saas b { color: #37D67A; }
.sc-kpis { display: flex; gap: 16px; }
.sc-kpis span { flex: 1; border: 1px solid rgba(55, 214, 122, .18); padding: 12px; font-size: 11px; color: var(--ink-dim); }
.sc-kpis i { display: block; font-style: normal; font-family: var(--font-d); font-size: clamp(15px, 1.7vw, 22px); color: var(--ink); margin-bottom: 4px; }
.sc-chart { display: flex; gap: 8px; align-items: flex-end; height: 70px; }
.sc-chart i { flex: 1; height: var(--h); background: linear-gradient(to top, rgba(55,214,122,.15), rgba(55,214,122,.7)); }
.sc-meta { display: flex; gap: 18px; margin-top: 22px; align-items: baseline; }
.sc-num { font-family: var(--font-m); font-size: 13px; color: var(--gold); }
.sc-meta h3 { font-family: var(--font-d); font-weight: 600; font-size: 22px; }
.sc-meta p { font-size: 14.5px; color: var(--ink-dim); max-width: 330px; }

/* ============ COMO FUNCIONA (passos) ============ */
#como { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { list-style: none; max-width: 1100px; position: relative; z-index: 1; counter-reset: none; }
.step {
  display: grid; grid-template-columns: 110px 1fr 90px; gap: clamp(20px, 3vw, 44px); align-items: start;
  padding: clamp(30px, 4vw, 50px) 0; border-bottom: 1px solid var(--line); position: relative;
}
.step-n {
  font-family: var(--font-d); font-weight: 800; font-size: clamp(48px, 6vw, 96px); line-height: .9;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold); transition: color .4s;
}
.step:hover .step-n { color: var(--gold); }
.step h3 { font-family: var(--font-d); font-weight: 700; font-size: clamp(21px, 2.4vw, 32px); margin-bottom: 10px; }
.step p { color: var(--ink-dim); max-width: 620px; }
.step-time { font-family: var(--font-m); font-size: 12px; letter-spacing: .16em; color: var(--gold); justify-self: end; padding-top: 10px; }
.como-cta { margin-top: 50px; }
@media (max-width: 700px) { .step { grid-template-columns: 64px 1fr; } .step-time { display: none; } }

/* ============ QUEM FAZ ============ */
.quem-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 110px); align-items: center; max-width: 1350px; margin: 0 auto; }
.quem-visual { position: relative; perspective: 1200px; }
.quem-card {
  aspect-ratio: 3/4; max-width: 440px; border: 1px solid var(--line-hi); background:
    radial-gradient(140% 100% at 20% 0%, #17130d 0%, #0C0B09 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 3vw, 44px);
  gap: 10px; transform: rotateY(6deg) rotateX(-2deg); transition: transform .2s ease-out;
  box-shadow: -30px 50px 100px rgba(0,0,0,.5); position: relative; overflow: hidden;
}
.quem-card::before {
  content: 'MSL'; position: absolute; top: -30px; right: -20px;
  font-family: var(--font-d); font-weight: 800; font-size: 190px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,169,97,.16);
}
.qc-label { font-family: var(--font-m); font-size: 11px; letter-spacing: .24em; color: var(--gold); }
.qc-name { font-family: var(--font-d); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 1; }
.qc-role { font-family: var(--font-m); font-size: 12.5px; color: var(--ink-dim); letter-spacing: .1em; }
.qc-line { height: 1px; background: var(--line-hi); margin: 14px 0; }
.qc-quote { font-size: 16px; color: var(--ink-dim); font-style: italic; }
.quem-orb { left: -140px; top: 55%; right: auto; }
.quem-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 38px; }
.quem-tags span {
  font-family: var(--font-m); font-size: 12px; letter-spacing: .06em; color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; transition: border-color .3s, color .3s;
}
.quem-tags span:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 960px) { .quem-grid { grid-template-columns: 1fr; } .quem-card { transform: none; } }

/* ============ SAAS ============ */
.saas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; max-width: 1350px; margin: 0 auto; }
.saas-list { margin: 30px 0 40px; list-style: none; }
.saas-list li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-dim); font-size: 16px; }
.saas-list li::before { content: '→ '; color: var(--gold); font-family: var(--font-m); }
.saas-price { display: block; margin-top: 18px; font-family: var(--font-m); font-size: 13px; color: var(--ink-dim); }
.saas-price b { color: var(--gold); }
.saas-visual { perspective: 1400px; }
.dash {
  background: #0D0C0A; border: 1px solid var(--line); padding: clamp(20px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
  transform: rotateY(-10deg) rotateX(4deg);
  box-shadow: 40px 60px 120px rgba(0,0,0,.55);
  transition: transform .2s ease-out;
}
.dash-top { display: flex; justify-content: space-between; font-family: var(--font-m); font-size: 12.5px; }
.dash-top b { color: #37D67A; }
.dash-top span { color: var(--ink-dim); }
.dash-kpis { display: flex; gap: 14px; }
.dash-kpis > div { flex: 1; border: 1px solid var(--line); padding: 16px 14px; }
.dash-kpis em { display: block; font-family: var(--font-d); font-weight: 700; font-size: clamp(17px, 1.9vw, 26px); }
.dash-kpis span { font-size: 11.5px; color: var(--ink-dim); font-family: var(--font-m); }
.dash-chart { display: flex; gap: 9px; align-items: flex-end; height: 110px; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.dash-chart i { flex: 1; height: var(--h); background: linear-gradient(to top, rgba(201,169,97,.12), rgba(201,169,97,.85)); transform: scaleY(0); transform-origin: bottom; }
.dash-chart.play i { animation: barUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.dash-chart.play i:nth-child(2) { animation-delay: .08s; } .dash-chart.play i:nth-child(3) { animation-delay: .16s; }
.dash-chart.play i:nth-child(4) { animation-delay: .24s; } .dash-chart.play i:nth-child(5) { animation-delay: .32s; }
.dash-chart.play i:nth-child(6) { animation-delay: .40s; } .dash-chart.play i:nth-child(7) { animation-delay: .48s; }
@keyframes barUp { to { transform: scaleY(1); } }
.dash-row { display: flex; justify-content: space-between; font-family: var(--font-m); font-size: 12px; color: var(--ink-dim); border: 1px solid var(--line); padding: 12px 14px; }
.dash-row span:first-child { color: #37D67A; }
@media (max-width: 960px) { .saas-inner { grid-template-columns: 1fr; } .dash { transform: none; } }

/* ============ PLANOS ============ */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); position: relative; z-index: 1; }
.plan { background: var(--bg); padding: clamp(28px, 2.6vw, 42px) clamp(22px, 2vw, 32px); display: flex; flex-direction: column; position: relative; transition: background .35s; }
.plan:hover { background: var(--bg2); }
.plan-hot { background: var(--bg2); outline: 1px solid var(--gold); outline-offset: -1px; }
.plan-badge {
  position: absolute; top: 0; right: 0; background: var(--gold); color: #000;
  font-family: var(--font-m); font-size: 10px; letter-spacing: .14em; font-weight: 700; padding: 7px 13px;
}
.plan header { display: flex; flex-direction: column; gap: 5px; margin-bottom: 26px; }
.plan-name { font-family: var(--font-d); font-weight: 700; font-size: 21px; letter-spacing: .04em; }
.plan-for { font-family: var(--font-m); font-size: 11.5px; color: var(--ink-dim); letter-spacing: .08em; text-transform: uppercase; }
.plan-price { font-family: var(--font-d); font-weight: 800; font-size: clamp(38px, 3.4vw, 52px); line-height: 1; margin-bottom: 26px; }
.plan-price i { font-size: .42em; font-style: normal; color: var(--gold); margin-right: 4px; vertical-align: super; }
.plan-price b { color: var(--gold); }
.plan-price span { display: block; font-family: var(--font-m); font-weight: 400; font-size: 11.5px; color: var(--ink-dim); margin-top: 10px; letter-spacing: .04em; }
.plan ul { list-style: none; flex: 1; margin-bottom: 30px; }
.plan li { font-size: 14px; color: var(--ink-dim); padding: 9px 0; border-bottom: 1px solid var(--line); }
.plan li:first-child { color: var(--ink); }
.plan-cta {
  font-family: var(--font-d); font-weight: 600; font-size: 15.5px; text-align: center;
  border: 1px solid var(--line-hi); padding: 15px; border-radius: 100px; transition: background .3s, color .3s;
}
.plan-cta:hover { background: var(--gold); color: #000; }
.plan-cta-hot { background: var(--gold); color: #000; }
.plan-cta-hot:hover { background: var(--gold-hi); }
@media (max-width: 1100px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } }

.guarantee {
  margin-top: 60px; border: 1px solid var(--line-hi); padding: clamp(28px, 4vw, 50px);
  display: flex; gap: clamp(24px, 4vw, 60px); align-items: center; position: relative; z-index: 1;
}
.g-num { font-family: var(--font-d); font-weight: 800; font-size: clamp(80px, 10vw, 150px); line-height: .9; color: var(--gold); flex: none; }
.guarantee h3 { font-family: var(--font-d); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); margin-bottom: 10px; }
.guarantee p { color: var(--ink-dim); max-width: 640px; }
@media (max-width: 620px) { .guarantee { flex-direction: column; align-items: flex-start; } }

/* ============ CALCULADORA ============ */
#calc { padding-top: 0; }
.calc-box { max-width: 900px; margin: 0 auto; border: 1px solid var(--line); padding: clamp(30px, 5vw, 64px); background: var(--bg2); }
.calc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 36px 0; }
.calc-fields label { font-family: var(--font-m); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); display: flex; flex-direction: column; gap: 10px; }
.calc-fields input {
  background: transparent; border: none; border-bottom: 1px solid var(--line-hi); color: var(--ink);
  font-family: var(--font-d); font-size: clamp(30px, 4vw, 48px); font-weight: 700; padding: 6px 0; outline: none; width: 100%;
}
.calc-out { font-size: clamp(20px, 2.4vw, 30px); }
.calc-out b { font-family: var(--font-d); font-weight: 800; font-size: clamp(34px, 5vw, 64px); color: var(--gold); display: inline-block; margin: 0 10px; }
.calc-note { margin-top: 18px; color: var(--ink-dim); }
.calc-note b { color: var(--ink); }
@media (max-width: 620px) { .calc-fields { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 900px; }
.fq { border-bottom: 1px solid var(--line); }
.fq summary {
  cursor: pointer; list-style: none; font-family: var(--font-d); font-weight: 600;
  font-size: clamp(19px, 2.2vw, 28px); padding: 28px 0; display: flex; justify-content: space-between; align-items: center;
}
.fq summary::-webkit-details-marker { display: none; }
.fq summary::after { content: '+'; font-size: 30px; color: var(--gold); transition: transform .35s; flex: none; margin-left: 20px; }
.fq[open] summary::after { transform: rotate(45deg); }
.fq p { color: var(--ink-dim); padding: 0 0 28px; max-width: 720px; }

/* ============ CTA FINAL ============ */
#final { text-align: center; padding-bottom: clamp(90px, 10vw, 150px); }
.final-cta { display: inline-block; }
.fc-line {
  display: block; font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  font-size: clamp(56px, 13.5vw, 225px); line-height: .95; letter-spacing: -.02em;
  transition: letter-spacing .5s cubic-bezier(.16,1,.3,1);
}
.fc-gold { color: transparent; -webkit-text-stroke: 2px var(--gold); transition: color .45s, letter-spacing .5s cubic-bezier(.16,1,.3,1); }
.final-cta:hover .fc-line { letter-spacing: .005em; }
.final-cta:hover .fc-gold { color: var(--gold); }
.final-sub { margin-top: 36px; font-family: var(--font-m); font-size: 13px; color: var(--ink-dim); letter-spacing: .08em; }

/* ============ FOOTER ============ */
#footer { border-top: 1px solid var(--line); padding: clamp(50px, 6vw, 80px) var(--pad); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; align-items: start; }
.foot-logo { font-family: var(--font-d); font-weight: 700; font-size: clamp(24px, 3vw, 40px); }
.foot-logo em { color: var(--gold); }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col a { color: var(--ink-dim); font-size: 15px; transition: color .25s; }
.foot-col a:hover { color: var(--gold); }
.foot-col .mono-tag { margin-bottom: 6px; }
.foot-legal { font-family: var(--font-m); font-size: 12px; color: var(--ink-dim); line-height: 1.8; text-align: right; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-legal { text-align: left; grid-column: 1 / -1; } }

/* ============ STICKY WA (mobile) ============ */
#stickyWa {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: #25D366; color: #04140a; font-family: var(--font-d); font-weight: 700;
  text-align: center; padding: 17px; border-radius: 100px; font-size: 16px;
  transform: translateY(140%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
#stickyWa.on { transform: none; }
@media (min-width: 861px) { #stickyWa { display: none; } }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .grain, .marquee-track, .bs-marq, .deco-ring { animation: none; }
  .ht-word, .hero-sub, .hero-ctas, .hero-kicker { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   v43 — menu mobile · abas macOS · depoimentos · FAB · mobile
   ============================================================ */

/* ---- botão hamburguer ---- */
#menuBtn {
  display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px; z-index: 101;
}
#menuBtn span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s, opacity .35s; }
#menuBtn.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
#menuBtn.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
@media (max-width: 960px) {
  #menuBtn { display: flex; }
  #nav .nav-cta { display: none; }
}

/* ---- menu mobile fullscreen ---- */
#mobileMenu {
  position: fixed; inset: 0; z-index: 98; background: rgba(10,9,8,.97);
  backdrop-filter: blur(14px); display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; gap: 8px; padding: 90px var(--pad) 60px;
  transform: translateY(-102%); transition: transform .55s cubic-bezier(.76, 0, .24, 1);
}
#mobileMenu.open { transform: none; }
#mobileMenu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
#mobileMenu nav a {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 9vw, 54px); line-height: 1.25; color: var(--ink);
  border-bottom: 1px solid var(--line); padding: 6px 0;
}
#mobileMenu nav a:active { color: var(--gold); }
body.menu-open { overflow: hidden; }

/* ---- janela macOS com abas ---- */
.macwin {
  border: 1px solid var(--line); background: var(--bg2); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5); position: relative; z-index: 1;
}
.mw-titlebar { display: flex; align-items: center; gap: 18px; background: #141210; border-bottom: 1px solid var(--line); padding: 0 16px; }
.mw-dots { display: flex; gap: 8px; padding: 16px 0; flex: none; }
.mw-dots i { width: 12px; height: 12px; border-radius: 50%; }
.mw-red { background: #FF5F57; } .mw-yellow { background: #FEBC2E; } .mw-green { background: #28C840; }
.mw-tabs { display: flex; align-items: flex-end; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.mw-tabs::-webkit-scrollbar { display: none; }
.mw-tab {
  font-family: var(--font-m); font-size: 12.5px; letter-spacing: .04em; color: var(--ink-dim);
  background: transparent; border: 1px solid transparent; border-bottom: none; cursor: pointer;
  padding: 12px 22px 13px; border-radius: 10px 10px 0 0; white-space: nowrap; transition: background .25s, color .25s;
}
.mw-tab:hover { color: var(--ink); background: rgba(237,232,222,.04); }
.mw-tab.on { background: var(--bg2); color: var(--gold); border-color: var(--line); position: relative; top: 1px; }
.mw-tab-plus { color: var(--ink-dim); font-size: 17px; padding: 0 10px; }
.mw-body { position: relative; }
.mw-pane {
  display: none; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 3vw, 48px);
  padding: clamp(22px, 3vw, 44px); align-items: center;
}
.mw-pane.on { display: grid; animation: paneIn .5s cubic-bezier(.16,1,.3,1); }
@keyframes paneIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.mw-shot { border: 1px solid var(--line); background: var(--bg); aspect-ratio: 16/10; overflow: hidden; }
.mw-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mw-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-m); font-size: 13px; color: var(--ink-dim);
  border: 2px dashed rgba(201,169,97,.3); line-height: 2;
}
.mw-placeholder em { color: var(--gold); }
.mw-info h3 { font-family: var(--font-d); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); margin-bottom: 14px; }
.mw-desc { color: var(--ink-dim); margin-bottom: 22px; }
.mw-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.mw-meta span {
  font-family: var(--font-m); font-size: 10.5px; letter-spacing: .14em; color: var(--gold);
  border: 1px solid var(--line-hi); padding: 6px 12px; border-radius: 100px;
}
@media (max-width: 860px) { .mw-pane { grid-template-columns: 1fr; } }

/* ---- depoimentos (carrossel infinito) ---- */
#prova { overflow: hidden; padding-left: 0; padding-right: 0; }
#prova .section-head { padding: 0 var(--pad); }
.depo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.depo-track { display: flex; gap: 22px; width: max-content; animation: depoScroll 55s linear infinite; }
.depo-marquee:hover .depo-track { animation-play-state: paused; }
@keyframes depoScroll { to { transform: translateX(-50%); } }
.depo {
  width: min(400px, 84vw); flex: none; border: 1px solid var(--line); background: var(--bg2);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px;
}
.depo blockquote { font-size: 16.5px; line-height: 1.6; color: var(--ink); }
.depo blockquote::before { content: '★★★★★'; display: block; color: var(--gold); letter-spacing: .3em; font-size: 13px; margin-bottom: 12px; }
.depo figcaption { font-family: var(--font-m); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); }

/* ---- FAB WhatsApp ---- */
#waFab { position: fixed; right: 26px; bottom: 26px; z-index: 92; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #04140a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5);
  animation: fabPulse 2.2s infinite; transition: transform .3s;
}
.fab-btn:hover { transform: scale(1.08); }
@keyframes fabPulse { 0% { box-shadow: 0 8px 30px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5); } 100% { box-shadow: 0 8px 30px rgba(0,0,0,.45), 0 0 0 22px rgba(37,211,102,0); } }
.fab-bubble {
  background: var(--bg2); border: 1px solid var(--line-hi); padding: 16px 40px 16px 18px;
  max-width: 260px; position: relative; border-radius: 14px 14px 2px 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(12px) scale(.95); pointer-events: none;
  transition: opacity .4s, transform .4s cubic-bezier(.16,1,.3,1);
}
.fab-bubble.show { opacity: 1; transform: none; pointer-events: auto; }
.fab-bubble p { font-size: 14px; line-height: 1.5; }
.fab-bubble strong { color: var(--gold); font-size: 12.5px; font-family: var(--font-m); letter-spacing: .06em; }
.fab-close {
  position: absolute; top: 8px; right: 8px; background: none; border: none; color: var(--ink-dim);
  cursor: pointer; font-size: 13px; padding: 4px;
}
@media (max-width: 860px) { #waFab { display: none; } }

/* ---- MOBILE: refinos gerais ---- */
@media (max-width: 860px) {
  /* showcase vira swipe com snap */
  .show-pin { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 10px; }
  .show-track { padding: 10px var(--pad) 50px; }
  .show-card { width: 82vw; scroll-snap-align: center; }

  /* alvos de toque maiores */
  .svc-head { padding: 24px 0; }
  .fq summary { padding: 24px 0; }
  .step { padding: 26px 0; }

  /* hero: sub some mais cedo pra dar palco ao 3D */
  .hero-sub br { display: none; }
  .hf-tl, .hf-tr { display: none; }

  /* respiro menor entre seções */
  section { padding-top: 80px; padding-bottom: 80px; }

  /* sticky CTA respeita área segura do iPhone */
  #stickyWa { bottom: calc(14px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   v44 — o pacote surreal
   ============================================================ */

/* ---- rastro líquido (canvas criado via JS) ---- */
#trail { position: fixed; inset: 0; z-index: 94; pointer-events: none; mix-blend-mode: screen; }

/* ---- wipe dourado ---- */
#wipe {
  position: fixed; top: -10%; bottom: -10%; left: 0; width: 46vw; z-index: 96; pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(201,169,97,.16) 22%, rgba(228,200,126,.6) 50%, rgba(201,169,97,.16) 78%, transparent 100%);
  transform: translateX(-135%) skewX(-14deg); mix-blend-mode: screen; filter: blur(2px);
}

/* ---- vinheta de foco ---- */
#vignette {
  position: fixed; inset: 0; z-index: 93; pointer-events: none; opacity: 0;
  background: radial-gradient(75% 75% at 50% 50%, transparent 55%, rgba(0,0,0,.75) 100%);
  transition: opacity .25s;
}

/* ---- trilho de progresso ---- */
#rail { position: fixed; right: 26px; top: 50%; transform: translateY(-50%); height: 34vh; z-index: 92; pointer-events: none; }
#rail .rail-track { position: absolute; top: 0; bottom: 0; right: 0; width: 1px; background: var(--line); }
#rail .rail-fill { position: absolute; top: 0; right: 0; width: 1px; height: 0%; background: var(--gold); box-shadow: 0 0 12px rgba(201,169,97,.8); }
#rail .rail-label {
  position: absolute; right: 12px; top: 50%; transform: rotate(180deg) translateY(50%);
  writing-mode: vertical-rl; font-family: var(--font-m); font-size: 10.5px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--ink-dim); white-space: nowrap;
}
@media (max-width: 960px) { #rail { display: none; } }

/* ---- números gigantes de fundo ---- */
.sec-num-bg {
  position: absolute; right: -2vw; top: 4%; z-index: 0; pointer-events: none;
  font-family: var(--font-d); font-weight: 800; font-size: 34vw; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(201,169,97,.07);
}
section { isolation: isolate; }

/* ---- aurora dourada respirando ---- */
#manifesto::before, #quem::before, #final::before {
  content: ''; position: absolute; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 30%, rgba(201,169,97,.09), transparent 70%),
    radial-gradient(30% 26% at 78% 60%, rgba(228,200,126,.06), transparent 70%),
    radial-gradient(26% 22% at 55% 85%, rgba(55,214,122,.03), transparent 70%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, -4%) scale(1.12); }
  100% { transform: translate(-3%, 3%) scale(1.05); }
}

/* ---- brilho varrendo os títulos ---- */
.h2 { position: relative; }
.h2::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255,240,200,.22) 50%, transparent 62%);
  background-size: 300% 100%; background-position: 130% 0;
  mix-blend-mode: overlay; animation: shine 7s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { background-position: 130% 0; }
  75%, 100% { background-position: -130% 0; }
}

/* ---- macwin premium ---- */
.macwin { border-radius: 14px; border-color: rgba(237,232,222,.16); }
.mw-titlebar { border-radius: 14px 14px 0 0; }
.tabdot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 9px; }
.td-gold { background: var(--gold); } .td-green { background: #37D67A; } .td-blue { background: #6CA0F6; }
.mw-urlbar {
  display: flex; align-items: center; gap: 16px; padding: 9px 18px;
  background: #100E0C; border-bottom: 1px solid var(--line);
  font-family: var(--font-m); font-size: 12px; color: var(--ink-dim);
}
.mw-nav-arrows { letter-spacing: .35em; font-size: 15px; }
.mw-url { flex: 1; text-align: center; background: rgba(237,232,222,.05); border-radius: 8px; padding: 7px 14px; }
.mw-url em { color: var(--gold); }
.mw-share { font-size: 14px; }
.mw-pane { position: relative; overflow: hidden; }
.mw-ghost {
  position: absolute; right: -10px; bottom: -40px; z-index: 0; pointer-events: none;
  font-family: var(--font-d); font-weight: 800; font-size: clamp(140px, 20vw, 300px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,169,97,.09);
}
.mw-shot { position: relative; z-index: 1; border-radius: 10px; transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s; }
.mw-shot:hover { transform: scale(1.025) rotate(-.4deg); box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.mw-shot img { transition: transform .8s cubic-bezier(.16,1,.3,1); }
.mw-shot:hover img { transform: scale(1.06); }
.mw-info { position: relative; z-index: 1; }
/* placeholder skeleton com shimmer */
.mw-placeholder { position: relative; flex-direction: column; align-items: flex-start; gap: 14px; padding: 12%; overflow: hidden; }
.mw-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(237,232,222,.05) 50%, transparent 70%);
  background-size: 250% 100%; animation: shimmer 2.4s linear infinite;
}
@keyframes shimmer { from { background-position: 130% 0; } to { background-position: -130% 0; } }
.mwp-bar { width: 38%; height: 14px; background: rgba(201,169,97,.22); border-radius: 4px; }
.mwp-line { height: 9px; background: rgba(237,232,222,.1); border-radius: 4px; }
.w70 { width: 70%; } .w45 { width: 45%; }
.mwp-btn { width: 120px; height: 30px; background: rgba(201,169,97,.3); border-radius: 100px; margin-top: 6px; }
.mwp-hint { position: absolute; bottom: 14px; right: 16px; font-family: var(--font-m); font-size: 10.5px; color: var(--ink-dim); }
.mwp-hint em, .mw-placeholder em { color: var(--gold); }
.mw-result { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; padding: 14px 18px; border: 1px solid var(--line-hi); }
.mw-result em { font-family: var(--font-d); font-weight: 800; font-size: clamp(26px, 3vw, 40px); color: var(--gold); line-height: 1; }
.mw-result span { font-size: 12.5px; color: var(--ink-dim); font-family: var(--font-m); }
.mw-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mw-actions .btn-solid, .mw-actions .btn-line { font-size: 14.5px; padding: 13px 26px; }

/* ---- stack ---- */
.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); position: relative; z-index: 1; }
.stack-item { background: var(--bg); padding: clamp(26px, 3vw, 40px); position: relative; overflow: hidden; transition: background .35s; }
.stack-item:hover { background: var(--bg2); }
.stack-item em {
  display: block; font-size: 30px; color: var(--gold); margin-bottom: 18px;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.stack-item:hover em { transform: translateY(-4px) scale(1.15) rotate(-6deg); }
.stack-item h3 { font-family: var(--font-d); font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.stack-item p { color: var(--ink-dim); font-size: 15px; }
.stack-item::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.stack-item:hover::after { transform: scaleX(1); }
@media (max-width: 960px) { .stack-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .stack-grid { grid-template-columns: 1fr; } }

/* ---- captura de lead ---- */
.lead-box {
  max-width: 900px; margin: 26px auto 0; border: 1px solid var(--line-hi);
  background: linear-gradient(120deg, rgba(201,169,97,.07), transparent 55%), var(--bg2);
  padding: clamp(28px, 4vw, 50px); display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 3vw, 50px); align-items: center; position: relative; z-index: 1;
}
.lead-copy h3 { font-family: var(--font-d); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); margin-bottom: 12px; }
.lead-copy p { color: var(--ink-dim); font-size: 15.5px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form input {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-m); font-size: 15px; padding: 16px 18px; border-radius: 100px; outline: none;
  transition: border-color .3s;
}
.lead-form input:focus { border-color: var(--gold); }
.lead-form .btn-solid { border: none; cursor: pointer; font-size: 16px; }
@media (max-width: 860px) { .lead-box { grid-template-columns: 1fr; } }

/* ---- easter egg toast ---- */
.egg-toast {
  position: fixed; left: 50%; bottom: 40px; transform: translate(-50%, 140%); z-index: 250;
  background: var(--gold); color: #0A0908; font-size: 15px; font-weight: 600;
  padding: 16px 28px; border-radius: 100px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transition: transform .6s cubic-bezier(.16,1,.3,1); max-width: 90vw; text-align: center;
}
.egg-toast.on { transform: translate(-50%, 0); }

/* ---- status bar do rodapé ---- */
.foot-status {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: clamp(36px, 5vw, 60px); padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--font-m); font-size: 11px; letter-spacing: .14em; color: var(--ink-dim);
}
.foot-status b { color: var(--gold); font-weight: 500; }
.fs-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #37D67A; margin-right: 8px; animation: pulseDot 1.6s infinite; }
.fs-hint { color: rgba(201,169,97,.5); }

/* hero: sem seleção de texto (pro segurar-pra-mergulhar) */
#hero { user-select: none; -webkit-user-select: none; }

/* ============ v45 — Archivo expandida nos displays ============ */
.hero-title, .h2, .h2-sm, .fc-line, .loader-name, .loader-count,
.proc-day, .svc-name, .step-n, .qc-name, .g-num, .plan-price,
.num-item em, .mw-info h3, .mw-ghost, .sec-num-bg, .foot-logo {
  font-stretch: 110%;
  letter-spacing: -.01em;
}

/* ============================================================
   v49 — 3D NO SITE INTEIRO + pacote touch
   ============================================================ */

/* fundo 3D contínuo atrás de tudo */
#glbg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
main, footer, #nav, .marquee { position: relative; z-index: 1; }

/* ---- showcase cilíndrico ---- */
.cyl { perspective: 1500px; height: 74vh; min-height: 560px; position: relative; }
.cyl-track {
  position: absolute; inset: 0; transform-style: preserve-3d;
  display: block; width: auto; padding: 0; will-change: transform;
}
.cyl .show-card {
  position: absolute; left: 50%; top: 50%;
  width: min(46vw, 640px); will-change: transform, opacity, filter;
}

/* ---- planos em levitação 3D ---- */
.plans { perspective: 1600px; }
.plan {
  transition: transform .55s cubic-bezier(.16,1,.3,1), background .35s, box-shadow .55s;
  will-change: transform;
}
.plan-hot { transform: translateZ(20px) translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.plan:hover {
  transform: translateZ(44px) translateY(-14px);
  box-shadow: 0 44px 90px rgba(0,0,0,.55), 0 0 40px rgba(201,169,97,.12);
  z-index: 2;
}
.plans:has(.plan:hover) .plan:not(:hover) { transform: translateZ(-14px) scale(.985); }
.plans:has(.plan:hover) .plan-hot:not(:hover) { transform: translateZ(-6px) scale(.985); }

/* ---- números dos passos com profundidade de metal ---- */
.step { perspective: 800px; }
.step-n {
  text-shadow:
    1px 1px 0 rgba(201,169,97,.35), 2px 2px 0 rgba(201,169,97,.25),
    3px 3px 0 rgba(201,169,97,.16), 5px 5px 14px rgba(0,0,0,.5);
}

/* ---- dashboard SaaS em camadas 3D ---- */
.dash { transform-style: preserve-3d; }
.dash-top   { transform: translateZ(20px); }
.dash-kpis  { transform: translateZ(46px); }
.dash-chart { transform: translateZ(30px); }
.dash-row   { transform: translateZ(58px); }
.dash-kpis > div, .dash-row { background: rgba(13,12,10,.88); }

/* ---- portal no CTA final ---- */
#final { perspective: 900px; }
.final-cta { position: relative; }
.portal { position: absolute; inset: -20% -10%; pointer-events: none; opacity: 0; transition: opacity .5s; }
.final-cta:hover .portal, .final-cta:focus .portal { opacity: 1; }
.portal i {
  position: absolute; left: 50%; top: 50%; width: 30vw; height: 30vw; max-width: 480px; max-height: 480px;
  border: 1px solid rgba(201,169,97,.5); border-radius: 50%;
  transform: translate(-50%, -50%) scale(.1);
  animation: portalZoom 2.2s linear infinite;
}
.portal i:nth-child(2) { animation-delay: .55s; }
.portal i:nth-child(3) { animation-delay: 1.1s; }
.portal i:nth-child(4) { animation-delay: 1.65s; }
@keyframes portalZoom {
  0% { transform: translate(-50%, -50%) scale(.08); opacity: 0; }
  25% { opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* ---- PACOTE TOUCH (mobile físico e vivo) ---- */
@media (pointer: coarse) {
  .plan:active, .svc:active, .depo:active, .num-item:active,
  .stack-item:active, .show-card:active, .fq:active, .step:active {
    transform: scale(.965);
    transition: transform .12s ease;
  }
  .btn-solid:active, .plan-cta:active, #stickyWa:active { transform: scale(.94); }
  /* card focado no swipe cresce */
  .show-card.focus .sc-browser { border-color: var(--line-hi); transform: scale(1.03); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
}

/* ============================================================
   v50 — PASSE DE ACABAMENTO
   corrige cortes de texto, shine bugado, cursor; encaixe fino
   ============================================================ */

/* 1. MATA o shine em bloco (bugava no Safari como retângulo claro).
      Brilho agora vive DENTRO das letras douradas — impossível vazar. */
.h2::after { display: none !important; }
.h2 .gold, .h2-sm .gold, .calc-out b {
  background: linear-gradient(105deg, #C9A961 38%, #F2DFAC 50%, #C9A961 62%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: goldSweep 6.5s ease-in-out infinite;
}
@keyframes goldSweep {
  0%, 45% { background-position: 115% 0; }
  70%, 100% { background-position: -115% 0; }
}

/* 2. cursor hover: de bola-fantasma pra anel de mira elegante */
#cursor.big {
  width: 58px; height: 58px;
  background: transparent;
  border: 1.5px solid var(--gold);
  mix-blend-mode: normal;
  box-shadow: 0 0 24px rgba(201,169,97,.25), inset 0 0 12px rgba(201,169,97,.08);
}

/* 3. tipografia respirando — nada encosta em borda */
.h2 { font-size: clamp(40px, 6.2vw, 98px); line-height: 1.02; }
.section-head { padding-right: 3vw; }
.section-head .h2 { max-width: 18ch; }
.head-note { font-size: 17px; line-height: 1.7; margin-top: 26px; }
.lead { line-height: 1.75; }
:root { --pad: clamp(22px, 5.5vw, 110px); }

/* números de fundo mais discretos (clean) */
.sec-num-bg { font-size: 26vw; -webkit-text-stroke: 1px rgba(201,169,97,.05); top: 8%; }

/* 4. detalhes de capricho */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a251c; border-radius: 100px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
html { scrollbar-width: thin; scrollbar-color: #2a251c var(--bg); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* placar consistente de botões */
.plan-cta, .btn-line, .btn-solid { white-space: nowrap; }

/* marquee mais discreto e elegante */
.marquee-track span { font-size: 17px; opacity: .8; }

/* 5. MOBILE — encaixe fino */
@media (max-width: 860px) {
  .hero-title { font-size: clamp(44px, 13.5vw, 76px); line-height: 1; }
  .hero-sub { font-size: 15.5px; margin-top: 28px; padding: 0 4px; }
  .hero-ctas { margin-top: 32px; }
  .hero-ctas .btn-solid, .hero-ctas .btn-line { padding: 16px 28px; font-size: 15.5px; }
  .hf { font-size: 10px !important; }

  .h2 { font-size: clamp(32px, 9.4vw, 44px); max-width: 100%; }
  .section-head { padding-right: 0; margin-bottom: 40px; }
  .head-note { font-size: 15.5px; }
  .mono-tag { font-size: 11px; margin-bottom: 18px; }
  .sec-num-bg { font-size: 44vw; opacity: .7; }

  .manifesto-text { font-size: clamp(24px, 6.8vw, 32px); }
  .num-item em { font-size: clamp(30px, 9vw, 44px); }
  .proc-day, .g-num { font-size: clamp(80px, 22vw, 120px); }
  .step-n { font-size: clamp(40px, 12vw, 58px); }
  .step h3 { font-size: 19px; }
  .step p { font-size: 14.5px; }

  .plan { padding: 26px 20px; }
  .plan-price { font-size: 40px; }
  .plan:hover, .plan-hot { transform: none; }           /* levitação só no desktop */
  .guarantee { padding: 26px 20px; gap: 18px; }
  .guarantee h3 { font-size: 20px; }
  .guarantee p { font-size: 14.5px; }

  .calc-box { padding: 26px 20px; }
  .calc-out { font-size: 17px; }
  .calc-out b { font-size: 34px; }
  .fq summary { font-size: 17.5px; }
  .fq p { font-size: 15px; }

  .mw-info h3 { font-size: 21px; }
  .mw-desc { font-size: 14.5px; }
  .mw-actions .btn-solid, .mw-actions .btn-line { padding: 12px 20px; font-size: 13.5px; }
  .depo { padding: 22px 20px; }
  .depo blockquote { font-size: 15px; }

  .fc-line { font-size: clamp(46px, 15vw, 72px); }
  .final-sub { font-size: 11px; padding: 0 16px; }
  .foot-logo { font-size: 22px; }
  .foot-status { font-size: 9.5px; gap: 10px; }

  /* fundo 3D mais leve visualmente no celular */
  #glbg { opacity: .7; }
}

/* telas gigantes: conteúdo não se perde */
@media (min-width: 1800px) {
  .section-head, .svc-list, .steps, .plans, .faq-list, .macwin,
  .quem-grid, .saas-inner, .stack-grid, .num-strip, .brasil-globe-wrap {
    max-width: 1560px; margin-left: auto; margin-right: auto;
  }
}

/* ============================================================
   v51 — moedas · dolly zoom · assinatura
   ============================================================ */

/* ---- pilha de moedas no plano Premium ---- */
.coins {
  position: absolute; right: 18px; bottom: 74px; width: 58px; z-index: 3;
  pointer-events: none; display: flex; flex-direction: column-reverse; align-items: center;
}
.coins i {
  width: 52px; height: 13px; border-radius: 50%;
  background: linear-gradient(180deg, #E8CE8F 0%, #C9A961 45%, #8A6F35 100%);
  box-shadow: 0 2px 0 #6d5628, 0 4px 8px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,245,215,.65);
  margin-top: -5px; opacity: 0;
}
.coins i:nth-child(odd) { transform: translateX(2px); }
.coins b {
  position: absolute; right: -20px; bottom: 2px;
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #F2DFAC, #C9A961 55%, #8A6F35);
  border: 2px solid #8A6F35;
  color: #4d3c17; font-family: var(--font-d); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(12deg); box-shadow: 0 4px 12px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,245,215,.7);
  opacity: 0;
}
@media (max-width: 860px) { .coins { bottom: 64px; right: 10px; transform: scale(.85); } }

/* ---- assinatura Lacerda ---- */
.assinatura { margin-top: 18px; position: relative; width: fit-content; transform: rotate(-4deg); }
.ass-nome {
  font-family: 'Mr Dafoe', cursive; font-size: clamp(38px, 4vw, 54px); line-height: 1;
  color: var(--gold); display: inline-block;
  text-shadow: 0 1px 0 rgba(138,111,53,.8), 0 3px 6px rgba(0,0,0,.55), 0 0 26px rgba(201,169,97,.25);
  clip-path: inset(0 100% -20% 0);
  transition: clip-path 1.5s cubic-bezier(.5, 0, .3, 1);
}
.ass-traco { width: min(220px, 100%); height: 24px; display: block; margin-top: -6px; }
.ass-traco path {
  stroke: var(--gold); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  transition: stroke-dashoffset .9s ease 1.4s;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.5));
}
.assinatura.in .ass-nome { clip-path: inset(0 -10% -20% 0); }
.assinatura.in .ass-traco path { stroke-dashoffset: 0; }

/* ============ v52 — hero contido, letreiro limpo ============ */
.hero-title { font-size: clamp(50px, 11vw, 180px); }
.ht-line { white-space: nowrap; }
.hero-center { width: 100%; max-width: 1700px; }
.marquee-track span { padding: 0; }

/* ============================================================
   v53 — VITRINE 3D COMPLETA + glow interativo
   ============================================================ */

/* ---- painel de navegação da vitrine ---- */
.show-ui {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); z-index: 10;
}
.show-arrow {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(10,9,8,.6); border: 1px solid var(--line-hi); color: var(--gold);
  font-size: 26px; line-height: 1; backdrop-filter: blur(8px);
  transition: background .3s, transform .3s;
  display: flex; align-items: center; justify-content: center; padding-bottom: 3px;
}
.show-arrow:hover { background: var(--gold); color: #0A0908; transform: scale(1.08); }
.show-info { text-align: center; min-width: 260px; }
.show-info em {
  font-family: var(--font-d); font-weight: 800; font-size: 30px; color: var(--ink); line-height: 1;
}
.show-info em i { font-style: normal; font-size: 16px; color: var(--ink-dim); font-weight: 500; }
.show-info span {
  display: block; font-family: var(--font-m); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-top: 6px;
}
.show-info span.flip { animation: nameFlip .45s cubic-bezier(.16,1,.3,1); }
@keyframes nameFlip {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: none; }
}
.show-prog {
  width: 200px; height: 2px; background: var(--line); margin: 12px auto 0;
  border-radius: 100px; overflow: hidden;
}
.show-prog b { display: block; height: 100%; width: 0; background: var(--gold); box-shadow: 0 0 10px rgba(201,169,97,.8); }
.show-hint {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-m); font-size: 11px; letter-spacing: .24em; color: var(--ink-dim);
  z-index: 10; transition: opacity .5s; animation: blink 2.4s infinite;
}

/* ---- reflexo de chão + spotlight na vitrine ---- */
.cyl .sc-browser {
  -webkit-box-reflect: below 14px linear-gradient(transparent 58%, rgba(0,0,0,.3));
}
.cyl::before {
  content: ''; position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: 68vw; height: 46vh; pointer-events: none; z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,169,97,.09), transparent 70%);
}

/* ---- MOBILE: deck vertical com entrada 3D ---- */
.deck { overflow: visible !important; scroll-snap-type: none; perspective: 900px; }
.deck .show-track {
  display: flex; flex-direction: column; gap: 44px;
  width: 100%; padding: 10px var(--pad) 40px; transform: none !important;
}
.deck .show-card { width: 100%; scroll-snap-align: none; }
.deck-card {
  opacity: 0; transform: rotateX(16deg) translateY(60px) scale(.96);
  transform-origin: 50% 100%;
  transition: opacity .7s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}
.deck-card.deck-in { opacity: 1; transform: none; }

/* ---- glow que segue o mouse ---- */
.has-glow { position: relative; }
.glow-spot {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0; transition: opacity .35s;
  background: radial-gradient(240px circle at var(--gx, 50%) var(--gy, 50%), rgba(201,169,97,.13), transparent 65%);
}
.has-glow:hover .glow-spot { opacity: 1; }

/* ---- shine dourado nos botões ---- */
.btn-solid, .plan-cta-hot { position: relative; overflow: hidden; }
.btn-solid::after, .plan-cta-hot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,248,225,.55) 50%, transparent 65%);
  transform: translateX(-130%) skewX(-16deg);
  transition: transform .7s ease;
}
.btn-solid:hover::after, .plan-cta-hot:hover::after { transform: translateX(130%) skewX(-16deg); }

/* ============================================================
   v57 — tinta · portal · cinema · pêndulo · ao vivo
   ============================================================ */

/* portal de transição de página */
#pagePortal {
  position: fixed; z-index: 260; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, #E4C87E 0%, #C9A961 40%, #0A0908 78%);
}

/* modo cinema */
#cinemaOverlay {
  position: fixed; inset: 0; z-index: 250; background: rgba(6,5,4,.9);
  backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transition: opacity .45s;
}
#cinemaOverlay.on { opacity: 1; pointer-events: auto; }
#cinemaClose {
  position: absolute; top: 24px; right: 28px; z-index: 252; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 18px;
  background: rgba(10,9,8,.6); border: 1px solid var(--line-hi); color: var(--gold);
  transition: background .3s, color .3s;
}
#cinemaClose:hover { background: var(--gold); color: #0A0908; }
.cinema-clone { box-shadow: 0 60px 160px rgba(0,0,0,.8), 0 0 80px rgba(201,169,97,.15); border-color: var(--line-hi) !important; }
.cinema-clone .sc-body { aspect-ratio: auto; height: calc(100% - 43px); }

/* pêndulo nos ícones da stack */
.stack-item em { transform-origin: 50% -10px; }
.stack-item:hover em {
  transform: none;
  animation: pendulum 1.5s cubic-bezier(.36, .07, .19, .97);
}
@keyframes pendulum {
  0% { rotate: 0deg; } 18% { rotate: 24deg; } 42% { rotate: -15deg; }
  64% { rotate: 9deg; } 82% { rotate: -4deg; } 100% { rotate: 0deg; }
}

/* visitantes ao vivo */
#liveViewers { color: var(--ink-dim); font-weight: 500; }

/* ============================================================
   v58 — foto no quem-card + projetos ao vivo nas abas
   ============================================================ */

/* retrato do fundador: foto de fundo com luz de estúdio */
.qc-foto {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 25%;
  filter: saturate(.85) contrast(1.08) brightness(.88);
  z-index: 0;
}
.quem-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,9,8,.12) 0%, rgba(10,9,8,.35) 45%, rgba(10,9,8,.88) 82%, rgba(10,9,8,.96) 100%);
}
.quem-card > * { position: relative; z-index: 1; }
.quem-card::before { z-index: 1; opacity: .5; }
.quem-card { border-color: var(--line-hi); }

/* screenshot preview clicável dentro das abas do Mac */
.mw-preview {
  display: block; position: relative; overflow: hidden;
  border-radius: 8px; aspect-ratio: 16/10;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.mw-preview img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  image-rendering: -webkit-optimize-contrast;
}
.mw-preview:hover img { transform: scale(1.03); }
.mw-preview-tag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-m); font-size: 10px; letter-spacing: .16em;
  background: rgba(10,9,8,.7); color: #37D67A; border: 1px solid rgba(55,214,122,.5);
  padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background .25s, color .25s, border-color .25s;
}
.mw-preview:hover .mw-preview-tag {
  background: #37D67A; color: #000; border-color: #37D67A;
}
.mw-shot:has(.mw-preview) { aspect-ratio: unset; overflow: visible; border: none; background: none; }   /* iframe navegável: sem zoom no hover */

/* ============================================================
   v59 — PERFORMANCE PASS (liso no desktop e no mobile)
   ============================================================ */

/* vitrine: fora o reflexo espelhado (dobrava o custo de cada card).
   Sombra de contato barata no lugar — mesma sensação de chão. */
.cyl .sc-browser { -webkit-box-reflect: none !important; }
.cyl .show-card::after {
  content: ''; position: absolute; left: 8%; right: 8%; bottom: -26px; height: 26px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,0,0,.55), transparent 75%);
  pointer-events: none;
}
.show-card, .sc-browser { contain: layout paint; }

/* globo: compacto, sem ocupar a tela inteira */
#brasil { padding-top: clamp(70px, 8vw, 110px); padding-bottom: clamp(60px, 7vw, 100px); }
#brasil .section-head { margin-bottom: 24px; }
#globeViz { max-width: 440px; }
.brasil-globe-wrap { margin-top: -10px; }
@media (max-width: 860px) { #globeViz { max-width: min(78vw, 340px); } }

/* mobile: corta o que pesa e não aparece */
@media (max-width: 860px) {
  .grain { animation: none; }                 /* grão estático — repaint zero */
  .sec-num-bg { display: none; }              /* números gigantes de fundo */
  #manifesto::before, #quem::before, #final::before { animation: none; }
  .show-arrow { backdrop-filter: none; background: rgba(10,9,8,.85); }
  #vignette { display: none; }
  .deco-ring { animation: none; }
}

/* economia universal */
@media (prefers-reduced-motion: reduce) {
  .grain, .marquee-track, .deco-ring, .portal i { animation: none !important; }
}
