/* ═══════════════════════════════════════════════════════════════
   SILVA MARKETING — direção de arte: tech premium / noite violeta
   Display: Instrument Serif · UI: Instrument Sans · Dados: DM Mono
   ═══════════════════════════════════════════════════════════════ */

:root {
  --void: #050308;
  --bg: #07040e;
  --bg-2: #0a0614;
  --surface: #100a1c;
  --surface-2: #171029;
  --glass: rgba(255, 255, 255, 0.04);
  --line: rgba(201, 194, 220, 0.1);
  --line-2: rgba(201, 194, 220, 0.2);

  --violet: #8b5cf6;
  --violet-soft: #a78bfa;
  --violet-deep: #4c1d95;
  --plum: #3d2260;

  --silver: #c9c2b8;
  --champagne: #ece5d6;
  --text: #f3f0ea;
  --muted: #918aa3;
  --green: #4ade80;
  --amber: #fbbf24;

  --ivory: #efebe1;
  --ink: #120c1e;
  --ink-2: #574f66;
  --line-ink: rgba(18, 12, 30, 0.13);

  --d: "Instrument Serif", Georgia, serif;
  --s: "Instrument Sans", -apple-system, "Helvetica Neue", sans-serif;
  --m: "DM Mono", "SF Mono", monospace;

  --w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 34px; }

h1, h2, h3, h4 { font-family: var(--d); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.05; }
h3 { line-height: 1.2; }
em { font-style: normal; }

.accent {
  background: linear-gradient(96deg, var(--violet-soft) 0%, #f0eadd 42%, var(--violet-soft) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
@keyframes sheen { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }

.kicker {
  font-family: var(--m);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 20px;
}
.mono { font-family: var(--m); letter-spacing: 0.08em; }

.lead { margin-top: 24px; font-size: 1.09rem; color: var(--muted); max-width: 62ch; }
.lead strong, .stmt-grid strong { color: var(--champagne); font-weight: 600; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.09s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.27s; }
.reveal.d4 { transition-delay: 0.36s; }
.reveal.d5 { transition-delay: 0.45s; }

/* ─── Pill ─── */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--m); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  backdrop-filter: blur(12px);
  margin-bottom: 30px;
}
.pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ─── Botões ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--s); font-weight: 600; font-size: 0.93rem;
  letter-spacing: 0.005em;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.btn-lg { padding: 17px 34px; font-size: 0.98rem; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn span { transition: transform 0.3s var(--ease); }
.btn:hover span { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #ddd8ea 55%, #b9b0d4);
  color: #0d0718;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset, 0 16px 44px -18px rgba(167,139,250,0.75);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.55) inset, 0 22px 60px -18px rgba(167,139,250,0.95); }

.btn-glass, .nav-right .btn-sm {
  background: var(--glass);
  border: 1px solid var(--line-2);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-glass:hover, .nav-right .btn-sm:hover { border-color: var(--violet-soft); background: rgba(139,92,246,0.12); }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: padding 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(7, 4, 14, 0.75);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { max-width: var(--w); margin: 0 auto; padding: 0 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { height: 38px; border-radius: 8px; display: block; }
.brand-word {
  font-family: var(--d); font-size: 1.28rem; letter-spacing: 0.1em;
  color: var(--champagne); line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.brand-word small {
  font-family: var(--s); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.42em; color: var(--silver); opacity: 0.75;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.25s ease; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--violet-soft); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; }

/* ═══════════════ HERO ═══════════════ */
.hero { position: relative; padding: 150px 0 0; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.floor {
  position: absolute; left: -25%; right: -25%; bottom: -10%; height: 70%;
  background-image:
    linear-gradient(rgba(167,139,250,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.16) 1px, transparent 1px);
  background-size: 62px 62px;
  transform: perspective(520px) rotateX(69deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, black 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 72%);
  animation: floor-run 9s linear infinite;
  opacity: 0.55;
}
@keyframes floor-run { from { background-position: 0 0; } to { background-position: 0 62px; } }

.aurora { position: absolute; border-radius: 50%; filter: blur(90px); }
.a1 {
  width: 900px; height: 620px; top: -18%; left: 46%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.42), transparent 68%);
  animation: drift 17s ease-in-out infinite alternate;
}
.a2 {
  width: 620px; height: 520px; top: 22%; right: -8%;
  background: radial-gradient(circle, rgba(76,29,149,0.5), transparent 70%);
  animation: drift2 21s ease-in-out infinite alternate;
}
.a3 {
  width: 1000px; height: 620px; left: 50%; bottom: -40%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.34), transparent 68%);
  filter: blur(90px); position: absolute; border-radius: 50%;
}
@keyframes drift {
  from { transform: translateX(-50%) translateY(0) scale(1); }
  to   { transform: translateX(-44%) translateY(36px) scale(1.11); }
}
@keyframes drift2 {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.14); }
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 30%, transparent 40%, var(--bg) 88%);
}

.hero-inner { position: relative; max-width: var(--w); margin: 0 auto; padding: 0 34px; }
.hero-head { max-width: 860px; }
.hero-h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 28px;
}
.hero-h1 span { display: block; }
.hero-lead { max-width: 620px; font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--muted); margin-bottom: 38px; }
.hero-lead strong { color: var(--champagne); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* métricas do hero */
.hero-metrics {
  position: relative;
  max-width: var(--w); margin: 0 auto; padding: 54px 34px 70px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.hm { display: flex; flex-direction: column; gap: 5px; }
.hm b { font-family: var(--d); font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--champagne); line-height: 1; }
.hm span { font-size: 0.83rem; color: var(--muted); }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015); overflow: hidden; padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.ticker-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: run 40s linear infinite; }
.ticker-track span { font-family: var(--m); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); opacity: 0.6; white-space: nowrap; }
.ticker-track i { color: var(--violet); font-size: 0.5rem; font-style: normal; }
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════ SEÇÕES ═══════════════ */
.sec { padding: 130px 0; position: relative; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 760px; margin-bottom: 66px; }

/* ─── Statement (ivory) ─── */
.statement { background: var(--ivory); color: var(--ink); padding: 130px 0; }
.statement .kicker { color: #6d5a2f; }
.stmt {
  font-size: clamp(2.4rem, 5.6vw, 4.9rem); line-height: 1.04;
  letter-spacing: -0.025em; max-width: 1050px; margin-bottom: 60px;
}
.stmt span { display: block; }
.stmt .off { color: rgba(18,12,30,0.28); }
.statement .accent {
  background: linear-gradient(96deg, #6d28d9, #1c1230 55%, #6d28d9);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
.stmt-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 70px; align-items: start; }
.stmt-grid p { color: var(--ink-2); font-size: 1.06rem; }
.stmt-grid p + p { margin-top: 18px; }
.stmt-grid strong { color: var(--ink); }
.stmt-side { border-left: 1px solid var(--line-ink); padding-left: 34px; }
.ss-num { font-family: var(--d); font-size: clamp(3rem, 6vw, 4.6rem); color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.ss-num em { color: rgba(18,12,30,0.3); font-size: 0.5em; margin: 0 4px; }
.stmt-side p { margin-top: 12px; font-size: 0.92rem; max-width: 24ch; }

/* ─── Camadas ─── */
.layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.layer {
  background: linear-gradient(170deg, var(--surface), rgba(8,5,16,0.6));
  border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px 38px;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.4s ease, box-shadow 0.45s ease;
}
.layer::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.layer:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 40px 80px -44px rgba(0,0,0,0.95), 0 0 60px -30px rgba(139,92,246,0.55); }
.layer:hover::after { opacity: 1; }
.layer.feature { background: linear-gradient(170deg, rgba(76,29,149,0.3), rgba(10,6,20,0.85) 70%); border-color: rgba(139,92,246,0.3); }
.layer-ico { width: 46px; height: 46px; color: var(--violet-soft); margin-bottom: 24px; }
.layer-ico svg { width: 100%; height: 100%; }
.layer-n { font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.layer h3 { font-size: 1.6rem; color: var(--champagne); margin-bottom: 12px; }
.layer p { font-size: 0.94rem; color: var(--muted); margin-bottom: 22px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--line); padding-top: 20px; }
.ticks li { font-size: 0.86rem; color: var(--silver); display: flex; gap: 10px; align-items: baseline; }
.ticks li::before { content: "✓"; color: var(--violet-soft); font-size: 0.8rem; }

/* ─── IA ─── */
.ia-real { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.iafig {
  background: linear-gradient(168deg, var(--surface), var(--void));
  border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 44px 90px -44px rgba(0,0,0,0.95), 0 0 60px -30px rgba(232,121,249,0.45);
  transition: transform 0.42s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}
.iafig:hover {
  transform: translateY(-5px);
  border-color: rgba(232,121,249,0.42);
  box-shadow: 0 44px 90px -40px rgba(0,0,0,0.95), 0 0 66px -26px rgba(232,121,249,0.65);
}
.iafig-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.03);
}
.iafig-top .live { margin-left: 0; }
.iafig-top em {
  font-style: normal; font-family: var(--m); font-size: 0.58rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.iafig img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.iafig figcaption { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; }
.iafig figcaption b { font-family: var(--d); font-weight: 400; font-size: 1.35rem; color: var(--champagne); line-height: 1.2; }
.iafig figcaption span { font-size: 0.88rem; color: var(--muted); }

.ia-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ia-card {
  background: linear-gradient(165deg, var(--surface), rgba(8,5,16,0.7));
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px;
  transition: transform 0.4s var(--ease), border-color 0.35s ease;
}
.ia-card:hover { transform: translateY(-5px); border-color: rgba(167,139,250,0.35); }
.ia-tag {
  font-family: var(--m); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet-soft); display: block; margin-bottom: 10px;
}
.ia-card h3 { font-size: 1.28rem; color: var(--champagne); margin-bottom: 9px; }
.ia-card p { font-size: 0.89rem; color: var(--muted); }
.ia-stat { display: flex; align-items: baseline; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.ia-stat b { font-family: var(--d); font-size: 1.5rem; color: var(--violet-soft); }
.ia-stat span { font-size: 0.76rem; color: var(--muted); }

@media (max-width: 1000px) {
  .ia-real { grid-template-columns: 1fr; }
  .ia-cards { grid-template-columns: 1fr; }
}

/* ─── Dados / flow ─── */
.flow {
  background: linear-gradient(160deg, var(--surface), var(--void));
  border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 44px 90px -46px rgba(0,0,0,0.9);
}
.flow-head {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.flow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; padding: 30px 24px 34px; }
.fstep { display: flex; flex-direction: column; gap: 4px; padding: 0 16px; }
.fstep span { font-family: var(--m); font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fstep b { font-family: var(--d); font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--champagne); line-height: 1.1; }
.fstep.win b { color: var(--green); }
.fstep em { font-style: normal; font-size: 0.74rem; color: var(--muted); }
.fbar { margin-top: 10px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; }
.fbar i { display: block; height: 100%; background: linear-gradient(90deg, var(--violet-deep), var(--violet-soft)); }
.fstep.win .fbar i { background: linear-gradient(90deg, var(--violet), var(--green)); }
.farrow { align-self: center; color: var(--line-2); padding-bottom: 12px; }
.flow-foot { border-top: 1px solid var(--line); padding: 16px 24px; font-size: 0.88rem; color: var(--silver); }
.flow-foot i { color: var(--violet); font-style: normal; font-size: 0.55rem; margin-right: 10px; }

.dgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.dcard { background: var(--bg-2); padding: 30px 26px 34px; transition: background 0.35s ease; }
.dcard:hover { background: var(--surface); }
.dcard > span { font-family: var(--m); font-size: 0.66rem; letter-spacing: 0.18em; color: var(--violet-soft); display: block; margin-bottom: 18px; }
.dcard h3 { font-size: 1.15rem; color: var(--champagne); margin-bottom: 9px; }
.dcard p { font-size: 0.88rem; color: var(--muted); }

/* ─── Engenharia ─── */
.eng-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eng {
  background: linear-gradient(168deg, var(--surface), rgba(8,5,16,0.72));
  border: 1px solid var(--line); border-radius: 15px; padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 9px; position: relative; overflow: hidden;
  transition: transform 0.42s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}
.eng::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.eng:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: 0 34px 68px -38px rgba(0,0,0,0.95), 0 0 50px -28px rgba(139,92,246,0.5); }
.eng:hover::after { opacity: 1; }
.eng-t { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.eng-t > span { font-family: var(--m); font-size: 0.55rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--silver); }
.eng-t .live { font-size: 0.48rem; }
.eng h3 { font-size: 1.08rem; color: var(--champagne); }
.eng p { font-size: 0.85rem; color: var(--muted); flex: 1; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; padding-top: 14px; border-top: 1px solid var(--line); }
.chips span {
  font-family: var(--m); font-size: 0.53rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 4px 9px;
}

.sixd {
  margin-top: 60px; display: grid; grid-template-columns: auto 1fr; gap: 46px; align-items: center;
  background: linear-gradient(120deg, rgba(76,29,149,0.34), rgba(16,10,28,0.7) 62%);
  border: 1px solid rgba(139,92,246,0.28); border-radius: 20px; padding: 44px 50px;
}
.sixd-mark {
  font-family: var(--d); font-size: clamp(3.4rem, 7vw, 5.6rem); line-height: 0.9;
  display: flex; align-items: baseline; gap: 2px; white-space: nowrap;
  background: linear-gradient(100deg, #8b5cf6, #fff 42%, #a78bfa 78%, #f0eadd);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: sheen 9s ease-in-out infinite;
}
.sixd-mark em { font-size: 0.5em; }
.sixd-mark b { font-weight: 400; margin-left: 12px; }
.sixd h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--champagne); margin-bottom: 12px; }
.sixd p { font-size: 0.98rem; color: var(--muted); max-width: 64ch; }

/* ─── Saúde ─── */
.med { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 70px; align-items: start; }
.med-list { list-style: none; margin-top: 38px; }
.med-list li { padding: 20px 0; border-top: 1px solid var(--line); font-size: 0.94rem; color: var(--muted); }
.med-list li:last-child { border-bottom: 1px solid var(--line); }
.med-list b { display: block; color: var(--champagne); font-weight: 600; font-size: 1rem; margin-bottom: 3px; font-family: var(--s); }
.med-quote {
  position: sticky; top: 110px;
  background: linear-gradient(165deg, var(--surface-2), rgba(8,5,16,0.8));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 38px;
}
.qm { font-family: var(--d); font-size: 4rem; line-height: 0.5; color: var(--violet-soft); display: block; margin-bottom: 22px; }
.med-quote blockquote { font-family: var(--d); font-size: 1.45rem; line-height: 1.35; color: var(--champagne); }
.med-quote blockquote em { border-bottom: 1px solid var(--violet-soft); }
.med-quote cite {
  display: block; margin-top: 22px; font-style: normal; font-family: var(--m);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.badges span { font-size: 0.75rem; color: var(--silver); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }

/* ─── Comparativo ─── */
.compare { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 0.85fr 1fr 1.15fr; }
.cmp-head {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--line);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.cmp-head .cmp-c { color: var(--muted); padding: 16px 22px; }
.cmp-head .cmp-c.win { color: var(--violet-soft); }
.cmp-row { border-bottom: 1px solid var(--line); transition: background 0.3s ease; }
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(139,92,246,0.05); }
.cmp-c { padding: 17px 22px; font-size: 0.92rem; color: var(--muted); display: flex; align-items: center; }
.cmp-c.lbl { font-family: var(--m); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); }
.cmp-c.win { color: var(--text); background: linear-gradient(90deg, rgba(139,92,246,0.09), transparent); font-weight: 500; position: relative; }
.cmp-row .cmp-c.win::before { content: "✓"; color: var(--green); margin-right: 11px; font-size: 0.85rem; }

/* ─── Valor ─── */
.value {
  margin-top: 26px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center;
  background: linear-gradient(150deg, rgba(76,29,149,0.22), rgba(16,10,28,0.5));
  border: 1px solid var(--line); border-radius: 20px; padding: 48px 50px;
}
.value-head h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--champagne); margin-bottom: 12px; }
.value-head p { font-size: 0.95rem; color: var(--muted); }
.value-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.value-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.89rem; color: var(--silver); }
.value-list i {
  flex: 0 0 auto; width: 16px; height: 16px; border-radius: 50%; margin-top: 3px;
  background: rgba(139,92,246,0.2); border: 1px solid rgba(167,139,250,0.4); position: relative;
}
.value-list i::after {
  content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: var(--violet-soft); font-style: normal;
}

/* ─── Processo ─── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.step { position: relative; padding-top: 32px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: -34px; height: 1px; background: var(--line-2); }
.step:last-child::before { right: 0; }
.step::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--violet-soft); box-shadow: 0 0 16px var(--violet);
}
.step > span { font-family: var(--m); font-size: 0.68rem; letter-spacing: 0.18em; color: var(--muted); display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.25rem; color: var(--champagne); margin-bottom: 10px; }
.step p { font-size: 0.89rem; color: var(--muted); }

/* ─── FAQ ─── */
.faq-wrap { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 70px; align-items: start; }
.faq-head { position: sticky; top: 120px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 22px; padding: 24px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.14rem; color: var(--champagne); transition: color 0.25s ease; }
.faq-item summary:hover h3 { color: #fff; }
.fi { position: relative; flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--line-2); border-radius: 50%; transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s; }
.fi::before, .fi::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--silver); transform: translate(-50%,-50%); }
.fi::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] .fi { transform: rotate(45deg); border-color: var(--violet-soft); background: rgba(139,92,246,0.12); }
.faq-item > p { padding: 0 54px 26px 0; font-size: 0.94rem; color: var(--muted); max-width: 64ch; }

/* ─── CTA ─── */
.cta { position: relative; padding: 150px 0; text-align: center; overflow: hidden; border-top: 1px solid var(--line); }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; max-width: 900px; }
.cta h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); line-height: 1.1; margin-bottom: 26px; }
.cta-inner > p { color: var(--muted); max-width: 600px; margin: 0 auto 38px; font-size: 1.03rem; }
.cta-inner > p.cta-note { margin: 22px auto 0; font-size: .84rem; letter-spacing: .01em; opacity: .72; }
.cta .hero-cta { justify-content: center; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--line); background: var(--void); padding: 74px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; padding-bottom: 58px; }
.foot-desc { margin-top: 20px; font-size: 0.88rem; color: var(--muted); max-width: 340px; }
.foot-col h4 {
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-soft); margin-bottom: 18px; font-weight: 400;
}
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.25s; }
.foot-col a:hover { color: var(--champagne); }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 22px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted);
}

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1100px) {
  .con-split { grid-template-columns: 1fr; }
  .layers { grid-template-columns: 1fr; }
  .ia-grid { grid-template-columns: 1fr; }
  .eng-grid { grid-template-columns: repeat(2, 1fr); }
  .dgrid { grid-template-columns: repeat(2, 1fr); }
  .med { grid-template-columns: 1fr; gap: 48px; }
  .med-quote { position: static; }
  .faq-wrap { grid-template-columns: 1fr; gap: 42px; }
  .faq-head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { right: 0; }
  .stmt-grid { grid-template-columns: 1fr; gap: 34px; }
  .stmt-side { border-left: none; border-top: 1px solid var(--line-ink); padding-left: 0; padding-top: 26px; }
  .value { grid-template-columns: 1fr; gap: 32px; padding: 38px 34px; }
  .flow-track { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .farrow { display: none; }
  .float { display: none; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .sixd { grid-template-columns: 1fr; gap: 22px; padding: 34px 30px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .wrap, .nav-inner, .hero-inner, .hero-metrics { padding-left: 22px; padding-right: 22px; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(5,3,8,0.97); backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; gap: 26px; z-index: 150;
    transform: translateY(-100%); visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s;
  }
  .nav-links.open { transform: none; visibility: visible; }
  .nav-links a { font-size: 1.2rem; color: var(--text); }
  .burger {
    display: flex; flex-direction: column; gap: 6px; background: none; border: none;
    cursor: pointer; z-index: 200; padding: 8px;
  }
  .burger span { width: 24px; height: 1.5px; background: var(--champagne); transition: transform 0.35s var(--ease); display: block; }
  .burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav-right .btn-sm { display: none; }

  .hero { padding-top: 116px; }
  .hero-stage { margin-top: 54px; }
  .console-body { padding: 18px 16px 22px; }
  .con-kpis { grid-template-columns: repeat(2, 1fr); }
  .sec, .statement, .cta { padding: 84px 0; }
  .sec-head { margin-bottom: 44px; }
  .pwin-body { grid-template-columns: 1fr; min-height: 0; }
  .pnav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); padding: 12px 14px; gap: 6px; }
  .pnav-logo { display: none; }
  .pnav a { border-left: none; border-radius: 100px; padding: 6px 13px; white-space: nowrap; font-size: 0.74rem; }
  .pnav a.on { border-left: none; }
  .pkpis { grid-template-columns: repeat(2, 1fr); }
  .pcols { grid-template-columns: 1fr; }
  .eng-grid, .dgrid, .steps, .value-list { grid-template-columns: 1fr; }
  .dgrid { border-radius: 12px; }
  .flow-track { grid-template-columns: 1fr; gap: 22px; padding: 22px 18px 26px; }
  .fstep { padding: 0; }
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: 1fr; padding: 8px 0; }
  .cmp-c { padding: 8px 18px; }
  .cmp-c.lbl { padding-top: 14px; color: var(--violet-soft); }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-base { flex-direction: column; gap: 10px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; padding-top: 44px; padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.01s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ─── Ciclo completo ─── */
.cycle {
  margin-top: 26px;
  background: linear-gradient(150deg, rgba(76,29,149,0.2), rgba(16,10,28,0.55));
  border: 1px solid var(--line); border-radius: 20px;
  padding: 44px 48px 48px;
}
.cycle-head { max-width: 780px; margin-bottom: 40px; }
.cycle-head h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: var(--champagne); margin-bottom: 14px; line-height: 1.15; }
.cycle-head p { font-size: 0.96rem; color: var(--muted); }
.cycle-track {
  list-style: none;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.cycle-track li {
  position: relative; padding-top: 26px;
  display: flex; flex-direction: column; gap: 7px;
}
.cycle-track li::before {
  content: ""; position: absolute; top: 0; left: 0; right: -22px; height: 1px;
  background: linear-gradient(90deg, var(--violet), rgba(139,92,246,0.15));
}
.cycle-track li:last-child::before { right: 0; }
.cycle-track li::after {
  content: ""; position: absolute; top: -3px; left: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--violet-soft); box-shadow: 0 0 12px var(--violet);
}
.cycle-track span { font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--muted); }
.cycle-track b { font-size: 0.96rem; color: var(--champagne); font-weight: 600; line-height: 1.25; }
.cycle-track em { font-style: normal; font-size: 0.82rem; color: var(--muted); }

@media (max-width: 1100px) {
  .cycle-track { grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
  .cycle-track li:nth-child(3)::before { right: 0; }
}
@media (max-width: 820px) {
  .cycle { padding: 32px 26px 36px; }
  .cycle-track { grid-template-columns: 1fr; gap: 22px; }
  .cycle-track li::before { right: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO v2 — globo sangrando pela direita
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 0;
}
.hero .hero-inner { width: 100%; }
.hero-head { max-width: 640px; position: relative; z-index: 3; }

.globe-holder {
  position: absolute;
  top: 50%;
  right: -16vw;
  transform: translateY(-52%);
  width: min(1180px, 92vw);
  height: min(1180px, 92vw);
  z-index: 1;
  pointer-events: none;
}
.globe-holder canvas { width: 100%; height: 100%; display: block; }

/* o texto precisa vencer o globo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg, var(--bg) 16%, rgba(7,4,14,0.82) 34%, rgba(7,4,14,0.25) 52%, transparent 66%);
}

.hero-reach {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}
.hero-reach b { color: var(--champagne); font-weight: 600; }
.hero-reach i {
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: blink 2.4s ease-in-out infinite;
}

.hero-metrics { position: relative; z-index: 3; }

@media (max-width: 1100px) {
  .globe-holder { right: -32vw; width: min(900px, 120vw); height: min(900px, 120vw); opacity: 0.75; }
  .hero::after { background: linear-gradient(100deg, var(--bg) 24%, rgba(7,4,14,0.9) 46%, rgba(7,4,14,0.35) 68%, transparent 84%); }
}
@media (max-width: 820px) {
  .hero { min-height: auto; padding-bottom: 0; }
  .globe-holder {
    top: auto; bottom: -14vh; right: -30vw;
    width: 150vw; height: 150vw;
    transform: none;
    opacity: 0.5;
  }
  .hero::after { background: linear-gradient(180deg, var(--bg) 30%, rgba(7,4,14,0.75) 62%, transparent 100%); }
  .hero-reach { font-size: 0.8rem; }
}

/* ─── Ajuste de proporção hero × globo ─── */
.hero-head { max-width: 700px; }
.hero-h1 { font-size: clamp(2.6rem, 4.7vw, 4.4rem); }
.globe-holder {
  right: -20vw;
  width: min(980px, 76vw);
  height: min(980px, 76vw);
}
.hero::after {
  background: linear-gradient(98deg, var(--bg) 20%, rgba(7,4,14,0.94) 40%, rgba(7,4,14,0.5) 56%, transparent 72%);
}
@media (max-width: 1100px) {
  .globe-holder { right: -34vw; width: min(880px, 110vw); height: min(880px, 110vw); }
}

/* linha de praças: precisa fluir como texto, não como flex */
.hero-reach { display: block; }
.hero-reach i { display: inline-block; margin-right: 9px; vertical-align: middle; }
.globe-holder { right: -16vw; }

/* ═══════════════════════════════════════════════════════════════
   CAMADA NEON — cor e destaque no restante do site
   ═══════════════════════════════════════════════════════════════ */
:root {
  --cyan: #22d3ee;
  --magenta: #e879f9;
  --amber2: #fb923c;
  --lime: #4ade80;
}

/* Acento tricolor nos títulos */
.accent {
  background: linear-gradient(96deg, var(--cyan) 0%, var(--violet-soft) 30%, #fff 50%, var(--magenta) 72%, var(--cyan) 100%);
  background-size: 260% auto;
  /* o shorthand `background` reseta o clip — precisa reaplicar aqui */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 11s ease-in-out infinite;
}
.statement .accent {
  background: linear-gradient(96deg, #0891b2, #6d28d9 40%, #1c1230 58%, #c026d3 82%, #0891b2);
  background-size: 260% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Kicker com brilho */
.kicker {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(34, 211, 238, 0.55);
}
.statement .kicker { color: #a16207; text-shadow: none; }

/* Pill e badges ao vivo */
.pill {
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: 0 0 26px -8px rgba(34, 211, 238, 0.5), inset 0 0 20px -14px rgba(34, 211, 238, 0.7);
}
.live { text-shadow: 0 0 14px rgba(74, 222, 128, 0.8); }
.live b { box-shadow: 0 0 14px var(--lime), 0 0 26px rgba(74, 222, 128, 0.6); }

/* CTA principal com halo neon */
.btn-primary {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.45) inset,
    0 14px 44px -16px rgba(167,139,250,0.9),
    0 0 40px -14px rgba(34,211,238,0.55);
}
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 22px 60px -16px rgba(232,121,249,0.95),
    0 0 60px -12px rgba(34,211,238,0.8);
}
.btn-glass:hover, .nav-right .btn-sm:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 30px -10px rgba(34, 211, 238, 0.75);
}
.nav-links a::after { background: linear-gradient(90deg, var(--cyan), var(--magenta)); box-shadow: 0 0 10px var(--cyan); }

/* Cards: linha superior e glow em neon */
.layer::after, .eng::after {
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.7);
}
.layer:hover, .eng:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 34px 70px -38px rgba(0,0,0,0.95), 0 0 54px -24px rgba(34, 211, 238, 0.55);
}
.layer.feature { border-color: rgba(232, 121, 249, 0.38); box-shadow: 0 0 60px -32px rgba(232,121,249,0.6); }
.layer.feature .layer-ico { color: var(--magenta); filter: drop-shadow(0 0 12px rgba(232,121,249,0.7)); }
.layer-ico { filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.55)); }
.ia-card:hover { border-color: rgba(232, 121, 249, 0.45); box-shadow: 0 0 46px -22px rgba(232, 121, 249, 0.6); }
.ia-tag { color: var(--magenta); text-shadow: 0 0 16px rgba(232,121,249,0.6); }
.ia-stat b { color: var(--cyan); text-shadow: 0 0 20px rgba(34,211,238,0.6); }

/* Dados: barras e gráficos em neon */
.pbar i, .fbar i, .f-bar i { background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 12px rgba(34,211,238,0.7); }
.pfunnel li.win .pbar i, .fstep.win .fbar i { background: linear-gradient(90deg, var(--magenta), var(--lime)); box-shadow: 0 0 14px rgba(74,222,128,0.8); }
.pchart span { background: linear-gradient(180deg, var(--violet), rgba(34,211,238,0.16)); }
.pchart span.peak {
  background: linear-gradient(180deg, var(--cyan), rgba(34,211,238,0.24));
  box-shadow: 0 0 24px rgba(34,211,238,0.85);
}
.dcard > span { color: var(--magenta); text-shadow: 0 0 16px rgba(232,121,249,0.55); }
.dcard:hover { background: var(--surface); box-shadow: inset 0 0 40px -24px rgba(34,211,238,0.7); }
.flow-foot i { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
.fstep.win b, .con-kpi i.up, .pkpi i.up { text-shadow: 0 0 14px rgba(74,222,128,0.6); }

/* Painéis e console */
.pwin, .console, .ia-chat {
  box-shadow: 0 50px 100px -46px rgba(0,0,0,0.95), 0 0 80px -34px rgba(139,92,246,0.55), 0 0 120px -50px rgba(34,211,238,0.5);
}
.ptab.active { box-shadow: 0 0 26px -8px rgba(34,211,238,0.85); }
.pnav a.on { background: linear-gradient(90deg, rgba(34,211,238,0.16), transparent); border-left-color: var(--cyan); box-shadow: inset 0 0 20px -14px var(--cyan); }
.pnav-logo, .ava { background: linear-gradient(135deg, var(--cyan), var(--magenta)); box-shadow: 0 0 20px -4px rgba(232,121,249,0.8); }
.msg.out { border-color: rgba(232,121,249,0.4); box-shadow: 0 0 26px -14px rgba(232,121,249,0.8); }
.chat-foot { background: rgba(74,222,128,0.07); text-shadow: 0 0 12px rgba(74,222,128,0.6); }
.plist em.ok { box-shadow: 0 0 14px -6px rgba(74,222,128,0.9); }
.plist em.live2 { box-shadow: 0 0 14px -6px rgba(167,139,250,0.9); }
.mpin.live { box-shadow: 0 0 12px var(--lime); }

/* Selo 6D/7D e comparativo */
.sixd {
  border-color: rgba(232,121,249,0.32);
  background: linear-gradient(120deg, rgba(76,29,149,0.4), rgba(8,80,110,0.22) 55%, rgba(16,10,28,0.7));
  box-shadow: 0 0 80px -40px rgba(232,121,249,0.7);
}
.sixd-mark {
  background: linear-gradient(100deg, var(--cyan), #fff 40%, var(--magenta) 72%, var(--cyan));
  background-size: 260% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(232,121,249,0.5));
}
.cmp-head .cmp-c.win { color: var(--cyan); text-shadow: 0 0 16px rgba(34,211,238,0.6); }
.cmp-c.win { background: linear-gradient(90deg, rgba(34,211,238,0.11), transparent); }
.cmp-row .cmp-c.win::before { text-shadow: 0 0 12px rgba(74,222,128,0.9); }
.cmp-row:hover { background: rgba(34,211,238,0.06); }
.value { border-color: rgba(34,211,238,0.24); box-shadow: 0 0 70px -40px rgba(34,211,238,0.6); }
.value-list i { border-color: rgba(34,211,238,0.55); background: rgba(34,211,238,0.14); box-shadow: 0 0 12px -4px rgba(34,211,238,0.8); }
.value-list i::after { color: var(--cyan); }

/* Processo, ciclo e FAQ */
.step::after, .cycle-track li::after { background: var(--cyan); box-shadow: 0 0 16px var(--cyan), 0 0 30px rgba(34,211,238,0.6); }
.step::before { background: linear-gradient(90deg, var(--cyan), rgba(34,211,238,0.1)); }
.cycle-track li::before { background: linear-gradient(90deg, var(--magenta), rgba(232,121,249,0.12)); }
.cycle-track li::after { background: var(--magenta); box-shadow: 0 0 16px var(--magenta); }
.cycle { border-color: rgba(232,121,249,0.22); }
.faq-item[open] .fi { border-color: var(--cyan); background: rgba(34,211,238,0.14); box-shadow: 0 0 20px -6px rgba(34,211,238,0.9); }
.qm { color: var(--magenta); text-shadow: 0 0 24px rgba(232,121,249,0.6); }
.med-quote blockquote em { border-bottom-color: var(--cyan); }
.badges span:hover { border-color: var(--cyan); color: var(--cyan); }

/* Ticker e rodapé */
.ticker-track i { color: var(--magenta); text-shadow: 0 0 10px var(--magenta); }
.foot-col h4 { color: var(--cyan); text-shadow: 0 0 14px rgba(34,211,238,0.5); }

/* Métricas do hero com brilho */
.hm b { text-shadow: 0 0 30px rgba(167,139,250,0.45); }
.hero-reach i { box-shadow: 0 0 14px var(--lime), 0 0 26px rgba(74,222,128,0.55); }

/* CTA final */
.cta { border-top-color: rgba(34,211,238,0.2); }

/* 3 métricas no hero (saiu o 24/7) */
.hero-metrics { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .hero-metrics { grid-template-columns: 1fr 1fr; } }

/* o globo agora é interativo — precisa receber ponteiro */
.globe-holder { pointer-events: none; }
.globe-holder canvas { pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════════
   HERO MOBILE — conteúdo centralizado, globo abaixo sem colidir
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 104px 0 0;
    text-align: center;
  }
  .hero-head { max-width: 100%; }

  .pill {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.5;
  }
  .hero-h1 { font-size: clamp(2.1rem, 8.4vw, 3rem); }
  .hero-lead { margin-left: auto; margin-right: auto; max-width: 34ch; }

  /* botões: mesma largura, centralizados */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero-reach {
    margin-left: auto;
    margin-right: auto;
    max-width: 40ch;
    text-align: center;
  }

  /* métricas centralizadas, acima do globo */
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
    padding-top: 38px;
    padding-bottom: 0;
    text-align: center;
  }
  .hm { align-items: center; }
  .hm b { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hm span { font-size: 0.72rem; line-height: 1.35; }

  /* o globo passa a ser uma calota decorativa no rodapé do hero:
     ocupa espaço próprio no fluxo, sem passar por baixo do texto */
  /* o hero é flex-column: a ordem manda o globo para depois do conteúdo */
  .hero-inner { order: 1; }
  .hero-metrics { order: 2; }
  .globe-holder {
    order: 3;
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 170vw;
    height: 170vw;
    margin-top: 34px;
    margin-bottom: -105vw;   /* mostra só a calota superior */
    z-index: 1;
    /* esmaece a borda de cima para o globo nascer do fundo */
    mask-image: radial-gradient(circle at 50% 50%, black 58%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 58%, transparent 72%);
  }
  /* sem o véu diagonal: no mobile o texto não fica mais sobre o globo */
  .hero::after { display: none; }

  /* respiro entre a calota do globo e a seção seguinte */
  .hero + .ticker { margin-top: 0; }
}

@media (max-width: 420px) {
  .hero-metrics { grid-template-columns: 1fr; gap: 20px; }
  .hm span { font-size: 0.78rem; }
}


}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE — sistemas reais, painel inteiro, troca com transição
   ═══════════════════════════════════════════════════════════════ */
.sc { margin-top: 96px; }
.sc-head { max-width: 760px; margin-bottom: 34px; }
.sc-head h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--champagne); margin-bottom: 14px; line-height: 1.15; }
.sc-head p { font-size: 0.97rem; color: var(--muted); }

/* abas */
.sc-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sc-tab {
  font-family: var(--m); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--glass); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 20px; cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.sc-tab:hover { color: var(--text); border-color: var(--line-2); }
.sc-tab.active {
  color: #06040d; background: linear-gradient(135deg, #fff, #a5e9f5);
  border-color: transparent; font-weight: 500;
  box-shadow: 0 0 30px -8px rgba(34,211,238,0.9);
}

/* palco */
.sc-stage { position: relative; perspective: 1800px; }
.sc-halo {
  position: absolute; inset: -12% -8% -20% -8%;
  background: radial-gradient(ellipse 55% 55% at 50% 45%, rgba(34,211,238,0.24), transparent 68%),
              radial-gradient(ellipse 45% 45% at 70% 60%, rgba(232,121,249,0.2), transparent 70%);
  filter: blur(56px); pointer-events: none;
}
.sc-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,194,220,0.22);
  background: linear-gradient(168deg, var(--surface), var(--void));
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.09) inset,
    0 60px 120px -50px rgba(0,0,0,0.98),
    0 0 90px -34px rgba(34,211,238,0.55),
    0 0 140px -60px rgba(232,121,249,0.5);
  transform: rotateX(7deg);
  transform-origin: center top;
  transition: transform 0.6s var(--ease);
}
.sc-stage:hover .sc-frame { transform: rotateX(2deg); }

.sc-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  font-family: var(--m); font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  position: relative; z-index: 3;
}
.sc-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.sc-bar i:first-child { background: rgba(255,107,107,0.5); }
.sc-bar i:nth-child(2) { background: rgba(251,191,36,0.5); }
.sc-bar i:nth-child(3) { background: rgba(74,222,128,0.5); }
.sc-label { margin-left: 12px; }

/* telas empilhadas com crossfade */
.sc-screens { position: relative; aspect-ratio: 1760 / 1000; background: #06040d; overflow: hidden; }
.sc-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left;
  opacity: 0; transform: scale(1.04); filter: blur(10px) saturate(1.15);
  transition: opacity 0.75s var(--ease), transform 1.1s var(--ease), filter 0.75s var(--ease);
}
.sc-img.active { opacity: 1; transform: none; filter: none; }

/* varredura luminosa na troca */
.sc-scan {
  position: absolute; inset: 0 auto 0 -30%; width: 26%;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.16), rgba(255,255,255,0.3), rgba(232,121,249,0.16), transparent);
  opacity: 0; pointer-events: none; z-index: 2;
}
.sc-frame.swapping .sc-scan { animation: sc-sweep 0.85s var(--ease); }
@keyframes sc-sweep {
  0% { left: -30%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 108%; opacity: 0; }
}

/* cantos técnicos */
.sc-c { position: absolute; width: 22px; height: 22px; z-index: 4; pointer-events: none; opacity: 0.85; }
.sc-c::before, .sc-c::after { content: ""; position: absolute; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.sc-c::before { width: 100%; height: 1px; }
.sc-c::after { width: 1px; height: 100%; }
.sc-c.tl { top: 10px; left: 10px; }
.sc-c.tr { top: 10px; right: 10px; }
.sc-c.tr::before { right: 0; } .sc-c.tr::after { right: 0; }
.sc-c.bl { bottom: 10px; left: 10px; }
.sc-c.bl::before { bottom: 0; } .sc-c.bl::after { bottom: 0; }
.sc-c.br { bottom: 10px; right: 10px; }
.sc-c.br::before { bottom: 0; right: 0; } .sc-c.br::after { bottom: 0; right: 0; }

/* reflexo no "chão" */
.sc-reflect {
  height: 90px; margin: 0 6% ;
  background: linear-gradient(rgba(34,211,238,0.18), transparent 70%);
  filter: blur(22px); border-radius: 50%;
  transform: translateY(-14px);
}

/* KPIs que trocam junto */
.sc-meta { position: relative; min-height: 96px; margin-top: 6px; }
.sc-set {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  border-top: 1px solid var(--line); padding-top: 22px;
}
.sc-set.active { opacity: 1; transform: none; pointer-events: auto; }
.sc-set div { display: flex; flex-direction: column; gap: 4px; }
.sc-set b {
  font-family: var(--d); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  color: var(--champagne); line-height: 1;
  text-shadow: 0 0 26px rgba(34,211,238,0.35);
}
.sc-set span { font-size: 0.8rem; color: var(--muted); }

/* barra de progresso do autoplay */
.sc-barline { height: 2px; background: rgba(201,194,220,0.1); border-radius: 2px; overflow: hidden; margin-top: 26px; }
.sc-barline i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--violet-soft), var(--magenta));
  box-shadow: 0 0 12px rgba(34,211,238,0.8);
}

@media (max-width: 900px) {
  .sc { margin-top: 64px; }
  .sc-frame { transform: none; }
  .sc-set { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sc-meta { min-height: 150px; }
  .sc-reflect { height: 50px; }
  .sc-c { width: 14px; height: 14px; }
}
@media (max-width: 520px) {
  .sc-tab { font-size: 0.58rem; padding: 8px 14px; }
  .sc-set { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ENTREGÁVEIS — o que a agência faz além do sistema
   ═══════════════════════════════════════════════════════════════ */
.deliv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dv {
  background: linear-gradient(168deg, var(--surface), rgba(8,5,16,0.72));
  border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.42s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}
.dv::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  box-shadow: 0 0 14px rgba(34,211,238,0.7);
  opacity: 0; transition: opacity 0.4s ease;
}
.dv:hover {
  transform: translateY(-5px);
  border-color: rgba(34,211,238,0.38);
  box-shadow: 0 34px 68px -38px rgba(0,0,0,0.95), 0 0 52px -26px rgba(34,211,238,0.5);
}
.dv:hover::after { opacity: 1; }
.dv-ico {
  display: block; width: 34px; height: 34px; margin-bottom: 20px;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(34,211,238,0.55));
}
.dv-ico svg { width: 100%; height: 100%; }
.dv h3 { font-size: 1.32rem; color: var(--champagne); margin-bottom: 11px; }
.dv p { font-size: 0.9rem; color: var(--muted); }
.dv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.dv-tags span {
  font-family: var(--m); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px;
}
.deliv-foot {
  margin-top: 30px; display: flex; align-items: center; gap: 12px;
  font-size: 0.96rem; color: var(--silver);
}
.deliv-foot i {
  flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 14px var(--magenta);
}

@media (max-width: 1100px) { .deliv { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .deliv { grid-template-columns: 1fr; } .deliv-foot { align-items: flex-start; } }

/* ─── Logo oficial ─── */
.brand-logo { height: 42px; width: auto; display: block; border-radius: 0; }
.nav.scrolled .brand-logo { height: 36px; transition: height 0.4s var(--ease); }
.foot-logo { height: 46px; margin-bottom: 4px; }
@media (max-width: 820px) { .brand-logo { height: 34px; } }

/* ─── Saúde: seção de autoridade, com mais presença ─── */
#saude { position: relative; overflow: hidden; }
#saude::before {
  content: ""; position: absolute; top: -20%; left: -10%;
  width: 760px; height: 620px; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(34,211,238,0.16), transparent 68%);
  filter: blur(60px);
}
#saude .wrap { position: relative; }

/* ─── Hero: métricas alinhadas ao texto e véu mais suave ─── */
.hero-metrics {
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 46px;
  padding-bottom: 76px;
}
.hero-inner, .hero-metrics { padding-left: 34px; padding-right: 34px; }
.hero-metrics { max-width: calc(700px + 68px); }

/* véu com degradê longo: o texto ganha o fundo sem criar borda visível */
.hero::after {
  background:
    linear-gradient(100deg,
      var(--bg) 8%,
      rgba(7,4,14,0.97) 24%,
      rgba(7,4,14,0.88) 36%,
      rgba(7,4,14,0.7) 46%,
      rgba(7,4,14,0.46) 56%,
      rgba(7,4,14,0.24) 66%,
      rgba(7,4,14,0.08) 76%,
      transparent 86%);
}

@media (max-width: 1100px) {
  .hero::after {
    background:
      linear-gradient(100deg,
        var(--bg) 14%,
        rgba(7,4,14,0.96) 32%,
        rgba(7,4,14,0.82) 46%,
        rgba(7,4,14,0.55) 60%,
        rgba(7,4,14,0.25) 74%,
        transparent 88%);
  }
}
@media (max-width: 820px) {
  .hero-metrics { max-width: 100%; margin: 0 auto; }
  .hero::after { display: none; }
}

/* o canvas é um retângulo: sem máscara, as estrelas e o halo desenham uma
   borda visível onde ele termina */
.globe-holder canvas {
  mask-image: radial-gradient(circle at 50% 50%, #000 52%, rgba(0,0,0,0.85) 62%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 52%, rgba(0,0,0,0.85) 62%, transparent 76%);
}

/* ─── Especialidades de saúde já atendidas ─── */
.specs { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.specs-h {
  display: block; font-family: var(--m); font-size: 0.58rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan);
  text-shadow: 0 0 16px rgba(34,211,238,0.5); margin-bottom: 16px;
}
.specs ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.specs li {
  font-size: 0.78rem; color: var(--silver);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 15px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.specs li:hover {
  color: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 20px -6px rgba(34,211,238,0.8);
}

/* métricas do hero: mesmo container do texto, alinhadas à esquerda */
.hero-metrics {
  max-width: var(--w);
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 26px;
  justify-content: start;
}
@media (max-width: 820px) {
  .hero-metrics { grid-template-columns: 1fr 1fr; justify-content: stretch; padding-left: 22px; padding-right: 22px; }
}

/* ─── A máquina: cards com mais presença ─── */
.layers { gap: 22px; }
.layer { padding: 38px 34px 40px; }
.layer-ico {
  width: 52px; height: 52px; margin-bottom: 26px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(150deg, rgba(34,211,238,0.1), rgba(139,92,246,0.06));
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(34,211,238,0.4));
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.4s var(--ease);
}
.layer-ico svg { width: 30px; height: 30px; }
.layer:hover .layer-ico { transform: translateY(-3px); border-color: rgba(34,211,238,0.5); }
.layer.feature .layer-ico {
  color: var(--magenta);
  background: linear-gradient(150deg, rgba(232,121,249,0.14), rgba(139,92,246,0.08));
  border-color: rgba(232,121,249,0.3);
  filter: drop-shadow(0 0 16px rgba(232,121,249,0.5));
}
.layer-n {
  display: inline-block; font-size: 0.56rem; letter-spacing: 0.22em;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px;
  padding: 5px 12px; margin-bottom: 14px;
}
.layer.feature .layer-n { color: var(--magenta); border-color: rgba(232,121,249,0.35); }
.ticks li::before {
  content: "";
  flex: 0 0 auto; width: 15px; height: 15px; border-radius: 50%; margin-top: 4px;
  background: rgba(34,211,238,0.14); border: 1px solid rgba(34,211,238,0.45);
  box-shadow: 0 0 10px -3px rgba(34,211,238,0.8);
}
.ticks li { align-items: flex-start; position: relative; }
.ticks li::after {
  content: "✓"; position: absolute; left: 3.5px; top: 4px;
  font-size: 0.5rem; color: var(--cyan);
}
.layer.feature .ticks li::before { background: rgba(232,121,249,0.14); border-color: rgba(232,121,249,0.45); box-shadow: 0 0 10px -3px rgba(232,121,249,0.8); }
.layer.feature .ticks li::after { color: var(--magenta); }

/* ─── IA: conversas em largura total, para o texto ficar legível ─── */
.ia-real { grid-template-columns: 1fr; gap: 26px; margin-bottom: 26px; }
.iafig img { border-bottom: none; }
.iafig figcaption {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 10px 40px;
  align-items: baseline;
  padding: 22px 26px 26px;
  border-top: 1px solid var(--line);
}
.iafig figcaption b { font-size: 1.45rem; }
.iafig figcaption span { font-size: 0.92rem; }
.iafig-top { padding: 14px 24px; }

@media (max-width: 900px) {
  .iafig figcaption { grid-template-columns: 1fr; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   ANCORAGEM — quanto custa montar a estrutura internamente
   ═══════════════════════════════════════════════════════════════ */
.anchor {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(16,10,28,0.9), rgba(8,5,16,0.75));
}
.anchor-head { padding: 44px 46px 30px; max-width: 800px; }
.anchor-head h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--champagne); margin-bottom: 14px; line-height: 1.15; }
.anchor-head p { font-size: 0.94rem; color: var(--muted); }

.anchor-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; border-top: 1px solid var(--line); }
.anc-list { padding: 28px 46px 34px; border-right: 1px solid var(--line); }
.anc-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px dashed rgba(201,194,220,0.1);
}
.anc-row span { font-size: 0.94rem; color: var(--muted); }
.anc-row b { font-family: var(--m); font-size: 0.95rem; color: var(--silver); white-space: nowrap; }
.anc-row.total {
  margin-top: 10px; padding-top: 20px;
  border-bottom: none; border-top: 1px solid var(--line-2);
}
.anc-row.total span { color: var(--champagne); font-weight: 600; font-size: 1rem; }
.anc-row.total b {
  font-family: var(--d); font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--amber);
  text-shadow: 0 0 26px rgba(251,191,36,0.4);
}

.anc-side { padding: 28px 44px 34px; display: flex; flex-direction: column; gap: 24px; }
.anc-big {
  background: linear-gradient(150deg, rgba(251,191,36,0.12), rgba(232,121,249,0.08));
  border: 1px solid rgba(251,191,36,0.25); border-radius: 16px; padding: 24px 26px;
}
.anc-lbl {
  font-family: var(--m); font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 8px;
}
.anc-big b {
  font-family: var(--d); font-weight: 400; display: block;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1; color: #fff;
  text-shadow: 0 0 34px rgba(251,191,36,0.35);
}
.anc-big em { font-style: normal; display: block; margin-top: 10px; font-size: 0.86rem; color: var(--muted); }

.anc-risks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.anc-risks li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.89rem; color: var(--muted); }
.anc-risks b { color: var(--champagne); font-weight: 600; }
.anc-risks i {
  flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px;
  background: var(--amber); box-shadow: 0 0 10px rgba(251,191,36,0.8);
}

.anc-close { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.anc-close span {
  font-family: var(--m); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); text-shadow: 0 0 16px rgba(34,211,238,0.5); display: block; margin-bottom: 10px;
}
.anc-close p { font-size: 0.95rem; color: var(--text); margin-bottom: 20px; }

@media (max-width: 1000px) {
  .anchor-grid { grid-template-columns: 1fr; }
  .anc-list { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 820px) {
  .anchor-head { padding: 32px 26px 24px; }
  .anc-list, .anc-side { padding: 24px 26px 30px; }
}

/* o bloco encolhia para o tamanho do conteúdo e era centralizado pelo margin
   auto; forçar largura total faz as colunas nascerem na mesma origem do texto */
.hero-metrics { width: 100%; box-sizing: border-box; }

/* ─── Mobile: globo volta para a primeira dobra, como camada de fundo ─── */
@media (max-width: 820px) {
  .hero { position: relative; padding-top: 96px; }
  .globe-holder {
    position: absolute;
    order: 0;
    top: 46%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%);
    width: 132vw;
    height: 132vw;
    margin: 0;
    opacity: .34;
    z-index: 0;
    pointer-events: none;                 /* no mobile o texto vem antes do toque */
    mask-image: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,.5) 62%, transparent 76%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 46%, rgba(0,0,0,.5) 62%, transparent 76%);
  }
  .globe-holder canvas { mask-image: none; -webkit-mask-image: none; }
  .hero-inner { position: relative; z-index: 3; }
  .hero-metrics { position: relative; z-index: 3; padding-bottom: 56px; }
  /* legibilidade do texto sobre o globo */
  .hero::before {
    content: "";
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse 92% 46% at 50% 42%, rgba(7,4,14,.82), rgba(7,4,14,.45) 60%, transparent 82%);
  }
}
