:root {
  --ink: #050506;
  --coal: #0b0c0e;
  --coal-2: #131417;
  --paper: #f4f4f5;
  --paper-2: #eaeaec;
  --text-ice: #f1f2f4;
  --text-dim: rgba(241, 242, 244, 0.6);
  --text-ink: #17181b;
  --text-ink-dim: rgba(23, 24, 27, 0.6);
  --silver: #d6d9df;
  --silver-deep: #6c7078;
  --glow: rgba(214, 217, 223, 0.28);
  --line: rgba(241, 242, 244, 0.1);
  --line-dark: rgba(23, 24, 27, 0.1);
  --serif: "Instrument Serif", "Canela", "PP Editorial", Georgia, serif;
  --sans: "Neue Montreal", "Suisse Int'l", "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: thin; scrollbar-color: rgba(214,217,223,.3) transparent; scrollbar-gutter: stable; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--text-ice);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(214, 217, 223, 0.22); color: #fff; }

.container { width: min(1200px, calc(100% - 4rem)); margin-inline: auto; }

/* ---------- utilities ---------- */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 2rem;
}
.section--light .eyebrow { color: var(--silver-deep); }

.title-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.title-serif em, .manifesto__text em, .cta__title em, .hero__title em {
  font-style: italic;
  color: var(--silver);
}
.section--light .title-serif em, .manifesto__text em { color: var(--text-ink); }

.glass {
  background: linear-gradient(145deg, rgba(241,242,244,0.07), rgba(241,242,244,0.02));
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(241, 242, 244, 0.1);
  border-radius: 24px;
}
.glass-light {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(23, 24, 27, 0.07);
  border-radius: 24px;
}

/* word-split reveal */
.w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  /* respiro p/ descendentes (ç, g, j, p, q) que o overflow hidden cortava */
  padding-bottom: 0.14em; margin-bottom: -0.14em;
}
.w .wi { display: inline-block; transform: translateY(115%); }

/* ---------- grain & cursor ---------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); }
  40% { transform: translate(3%,-4%); } 60% { transform: translate(-3%,-2%); }
  80% { transform: translate(4%,4%); }
}

.cursor { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); }
.cursor.is-active { opacity: 1; }
.cursor__dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--silver);
}
.cursor__ring {
  position: absolute; top: -21px; left: -21px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(214, 217, 223, 0.4);
  display: grid; place-items: center;
  font-size: 0.5625rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-ice); white-space: nowrap;
  transition: width .5s var(--ease), height .5s var(--ease), top .5s var(--ease), left .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.cursor.is-hover .cursor__ring {
  width: 72px; height: 72px; top: -36px; left: -36px;
  background: rgba(214, 217, 223, 0.08);
  backdrop-filter: blur(4px);
}
.cursor.has-text .cursor__ring {
  width: 88px; height: 88px; top: -44px; left: -44px;
  background: rgba(11, 12, 14, 0.55);
  border-color: rgba(214, 217, 223, 0.55);
  backdrop-filter: blur(8px);
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 400;
  background: var(--ink);
  display: grid; place-items: center; place-content: center; gap: 1.2rem;
}
.intro__logo { width: 96px; border-radius: 50%; box-shadow: 0 0 80px var(--glow); }

/* ---------- nav (layout DNCS, paleta monocromática) ---------- */
.nav {
  position: fixed; top: clamp(0.8rem, 2vw, 1.4rem); left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(1360px, calc(100% - 2rem));
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.7rem 0.8rem 0.7rem 1.4rem;
  border-radius: 100px;
  background: rgba(11, 12, 14, 0.42);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(241, 242, 244, 0.08);
  transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s var(--ease);
}
.nav.is-scrolled {
  padding: 0.5rem 0.6rem 0.5rem 1.2rem;
  background: rgba(8, 8, 9, 0.66);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 20px 60px -30px rgba(0, 0, 0, 0.9);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__brand img { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 0 20px var(--glow); transition: transform .6s var(--ease); }
.nav__brand:hover img { transform: scale(1.05); }
.nav__brand-text { display: flex; align-items: baseline; gap: 0.45rem; }
.nav__brand-mark { font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.08em; white-space: nowrap; }
.nav__brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.nav__links { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  position: relative; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-dim);
  padding: 0.3rem 0;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--silver);
  transition: width .4s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text-ice); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta {
  position: relative; overflow: hidden;
  padding: 0.68rem 1.4rem; border-radius: 100px;
  background: linear-gradient(180deg, #ffffff, #b9bdc6);
  color: #0a0b0d; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: box-shadow .4s var(--ease);
}
.nav__cta span { position: relative; z-index: 2; }
.nav__cta:hover { box-shadow: 0 12px 34px -12px rgba(214, 217, 223, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.7); }
.nav__burger { display: none; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, #ffffff 0%, #b9bdc6 100%);
  color: #0a0b0d;
  box-shadow: 0 10px 40px rgba(214, 217, 223, 0.2);
}
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.7), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.btn--primary:hover { box-shadow: 0 16px 60px rgba(214, 217, 223, 0.32); }
.btn--primary:hover::after { opacity: 1; }
.btn--ghost { border: 1px solid rgba(241, 242, 244, 0.22); color: var(--text-ice); }
.btn--ghost:hover { border-color: rgba(214, 217, 223, 0.6); color: var(--silver); }
/* accent AdvTrack — única cor do site, ciano herdado da landing do AdvTrack */
.btn--advtrack {
  background: linear-gradient(135deg, #4ec8ff 0%, #1b9de8 100%);
  color: #041018;
  animation: advtrack-glow 2.8s ease-in-out infinite;
}
.btn--advtrack::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.5), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.btn--advtrack:hover { filter: brightness(1.1) saturate(1.15); }
.btn--advtrack:hover::after { opacity: 1; }
@keyframes advtrack-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(78, 200, 255, 0.4), 0 10px 40px rgba(78, 200, 255, 0.28); }
  50% { box-shadow: 0 0 38px rgba(78, 200, 255, 0.7), 0 14px 64px rgba(78, 200, 255, 0.45); }
}
.btn--glass {
  background: rgba(241, 242, 244, 0.07);
  border: 1px solid rgba(241, 242, 244, 0.14);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.5rem; font-size: 0.8125rem;
}
.btn--glass:hover { background: rgba(214, 217, 223, 0.14); border-color: rgba(214, 217, 223, 0.4); }
.btn--xl { padding: 1.25rem 3rem; font-size: 1rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  background: radial-gradient(140% 100% at 50% 0%, var(--coal-2) 0%, var(--ink) 62%);
}
.hero__bg { position: absolute; inset: 0; }
.hero__aurora { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.hero__aurora--a {
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  left: -12%; top: -20%;
  background: radial-gradient(circle, rgba(150, 155, 165, 0.16), transparent 65%);
}
.hero__aurora--b {
  width: 50vw; height: 50vw; max-width: 760px; max-height: 760px;
  right: -14%; bottom: -28%;
  background: radial-gradient(circle, rgba(214, 217, 223, 0.1), transparent 65%);
}
.hero__grid {
  position: absolute; inset: -10%;
  background-image:
    linear-gradient(rgba(241,242,244,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,242,244,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero__particles { position: absolute; inset: 0; }
.hero__particles i {
  position: absolute; display: block;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(214, 217, 223, 0.5);
  box-shadow: 0 0 8px rgba(214, 217, 223, 0.55);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 50% 50%, transparent 55%, rgba(5, 5, 6, 0.75) 100%);
}
.hero__content { position: relative; text-align: center; padding: 7rem 2rem 9rem; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero__title .line {
  display: block; overflow: hidden;
  /* respiro p/ descendentes (g, j) que o line-height 0.98 + overflow hidden cortava */
  padding-bottom: 0.14em; margin-bottom: -0.14em;
}
.hero__title .line > * , .hero__title .line { will-change: transform; }
.hero__sub {
  max-width: 34rem; margin: 2.6rem auto 0;
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  font-weight: 300; color: var(--text-dim);
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 0.8rem;
  font-size: 0.625rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-dim);
}
.hero__scroll-line { width: 1px; height: 56px; background: var(--line); overflow: hidden; }
.hero__scroll-line i { display: block; width: 100%; height: 40%; background: var(--silver); animation: scrollhint 2.4s var(--ease) infinite; }
@keyframes scrollhint { 0% { transform: translateY(-110%); } 60%, 100% { transform: translateY(280%); } }

/* ---------- light sections ---------- */
.section--light { background: var(--paper); color: var(--text-ink); }

/* ---------- manifesto ---------- */
.manifesto { padding: clamp(7rem, 16vh, 12rem) 0; }
.manifesto__text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.22;
  max-width: 26ch;
}
.manifesto__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  margin-top: 5.5rem; padding-top: 3rem;
  border-top: 1px solid var(--line-dark);
}
.manifesto__meta strong { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.5rem; }
.manifesto__meta span { font-size: 0.875rem; font-weight: 300; color: var(--text-ink-dim); }

/* ---------- stats ---------- */
.stats {
  background: linear-gradient(180deg, var(--coal) 0%, var(--ink) 100%);
  padding: clamp(5rem, 12vh, 8rem) 0;
  border-block: 1px solid var(--line);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--text-ice);
}
.stat__label {
  display: block; margin-top: 0.9rem;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- modules ---------- */
.modules { padding: clamp(7rem, 16vh, 12rem) 0; }
.modules__head { margin-bottom: 4.5rem; }
.modules__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.module {
  position: relative;
  padding: 2.6rem 2.2rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform .8s var(--ease), box-shadow .8s var(--ease), border-color .8s var(--ease);
  will-change: transform;
}
.module:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(23, 24, 27, 0.12);
  border-color: rgba(23, 24, 27, 0.28);
}
.module::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(300px 200px at var(--mx, 50%) var(--my, 0%), rgba(23, 24, 27, 0.06), transparent 70%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.module:hover::before { opacity: 1; }
.module__index {
  position: absolute; top: 1.6rem; right: 1.8rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: rgba(23, 24, 27, 0.25);
}
.module__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(23, 24, 27, 0.08), rgba(23, 24, 27, 0.03));
  border: 1px solid rgba(23, 24, 27, 0.14);
  margin-bottom: 1.8rem;
}
.module__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--text-ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.module h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.7rem; }
.module p { font-size: 0.875rem; font-weight: 300; color: var(--text-ink-dim); }
.module--accent {
  background: linear-gradient(150deg, var(--coal) 0%, var(--coal-2) 100%);
  border-color: rgba(214, 217, 223, 0.18);
  color: var(--text-ice);
}
.module--accent .module__index { color: rgba(241, 242, 244, 0.3); }
.module--accent .module__icon { background: rgba(214, 217, 223, 0.1); border-color: rgba(214, 217, 223, 0.28); }
.module--accent .module__icon svg { stroke: var(--silver); }
.module--accent p { color: var(--text-dim); }
.module--accent:hover { box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4); }

/* ---------- panel (pinned dashboard) ---------- */
.panel { position: relative; background: var(--ink); }
.panel__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3rem;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.panel__head { text-align: center; display: grid; justify-items: center; }
.panel__head .title-serif { max-width: none; }
.dashboard {
  width: min(1080px, 100%);
  padding: 1.4rem;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.55), 0 0 90px rgba(214, 217, 223, 0.05);
  transform-origin: center top;
  will-change: transform;
}
.dashboard__bar {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.2rem 0.4rem 1.2rem;
  font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-dim);
}
.dashboard__bar img { width: 26px; height: 26px; border-radius: 50%; }
.dashboard__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(241,242,244,0.14); }
.dashboard__bar i:first-of-type { margin-left: auto; }
.dashboard__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.kpi {
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: rgba(241, 242, 244, 0.04);
  border: 1px solid rgba(241, 242, 244, 0.07);
  display: grid; gap: 0.3rem;
}
.kpi__label { font-size: 0.6563rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.kpi__value { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.kpi__delta { font-size: 0.6875rem; color: var(--text-dim); }
.kpi__delta.up { color: var(--silver); }
.dashboard__body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.9rem; margin-top: 0.9rem; }
.chart, .feed {
  padding: 1.3rem;
  border-radius: 16px;
  background: rgba(241, 242, 244, 0.04);
  border: 1px solid rgba(241, 242, 244, 0.07);
}
.chart__title { display: block; font-size: 0.6563rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.2rem; }
.chart__bars { display: flex; align-items: flex-end; gap: 6px; height: 150px; }
.chart__bars i {
  flex: 1; height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, rgba(226, 229, 234, 0.85), rgba(140, 145, 155, 0.22));
  transform-origin: bottom;
}
.feed__row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.7rem; align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(241, 242, 244, 0.05);
  font-size: 0.75rem;
}
.feed__row:last-child { border-bottom: 0; }
.feed__row b { color: var(--silver); font-weight: 500; font-size: 0.6875rem; letter-spacing: 0.06em; }
.feed__row span { color: var(--text-dim); font-weight: 300; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed__row em { font-style: normal; color: rgba(241, 242, 244, 0.35); font-size: 0.6563rem; }

/* ---------- journey (horizontal) ---------- */
.journey { position: relative; background: linear-gradient(180deg, var(--ink), var(--coal) 55%, var(--ink)); }
.journey__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: 4rem;
  overflow: hidden;
  padding: 6rem 0;
}
.journey__head { width: min(1200px, calc(100% - 4rem)); margin-inline: auto; }
.journey__track {
  display: flex; gap: 1.5rem;
  padding-inline: max(2rem, calc((100vw - 1200px) / 2));
  width: max-content;
  will-change: transform;
}
.step {
  width: clamp(280px, 30vw, 380px);
  padding: 2.8rem 2.4rem;
  flex-shrink: 0;
}
.step span {
  font-family: var(--serif); font-style: italic;
  font-size: 2.6rem; color: rgba(214, 217, 223, 0.4);
  display: block; margin-bottom: 2.2rem; line-height: 1;
}
.step h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.8rem; }
.step p { font-size: 0.875rem; font-weight: 300; color: var(--text-dim); }
.step--final { background: linear-gradient(150deg, rgba(214, 217, 223, 0.12), rgba(140, 145, 155, 0.04)); border-color: rgba(214, 217, 223, 0.3); }
.step--final span { color: #ffffff; }

/* ---------- voices ---------- */
.voices { padding: clamp(7rem, 16vh, 12rem) 0; background: var(--paper-2); overflow: hidden; }
.voices__marquee { margin-top: 4.5rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.voices__row { display: flex; gap: 1.5rem; width: max-content; animation: marquee 55s linear infinite; }
.voices__marquee:hover .voices__row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.voice { width: clamp(300px, 34vw, 420px); padding: 2.4rem 2.2rem; flex-shrink: 0; }
.voice p { font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; color: var(--text-ink); }
.voice footer { margin-top: 1.8rem; display: grid; }
.voice footer b { font-size: 0.875rem; font-weight: 600; }
.voice footer span { font-size: 0.75rem; color: var(--text-ink-dim); letter-spacing: 0.04em; }
.voices__trust {
  display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 5rem;
  font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-ink-dim);
}
.voices__trust i { width: 4px; height: 4px; border-radius: 50%; background: rgba(23, 24, 27, 0.4); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  min-height: 92svh;
  display: grid; place-items: center; place-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 6rem 2rem;
  background: radial-gradient(120% 120% at 50% 110%, var(--coal-2) 0%, var(--ink) 60%);
  overflow: hidden;
}
.cta__glow {
  position: absolute; left: 50%; bottom: -30%;
  width: 70vw; height: 60vh; max-width: 1000px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(214, 217, 223, 0.12), transparent 65%);
  filter: blur(70px);
}
.cta__title {
  position: relative;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 7.4vw, 6.4rem);
  line-height: 1.04; letter-spacing: -0.015em;
  max-width: 16ch;
}
.cta .btn { margin-top: 1.6rem; position: relative; }
.cta__hint { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 5rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer__brand img { width: 72px; height: 72px; border-radius: 50%; box-shadow: 0 0 24px var(--glow); margin-bottom: 1rem; }
.footer__brand span { font-family: var(--serif); font-size: 1.3rem; }
.footer__brand p { margin-top: 0.8rem; font-size: 0.8125rem; font-weight: 300; color: var(--text-dim); max-width: 24ch; }
.footer__col { display: grid; gap: 0.7rem; align-content: start; }
.footer__col b { font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.footer__col a { font-size: 0.875rem; color: rgba(241, 242, 244, 0.75); transition: color .4s var(--ease); }
.footer__col a:hover { color: var(--silver); }
.footer__base {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 4.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem; color: rgba(241, 242, 244, 0.4);
}

/* ---------- menu mobile ---------- */
.menu {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-content: center; gap: 2rem;
  background: rgba(5, 5, 6, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu a { font-family: var(--serif); font-size: 2.2rem; text-align: center; color: var(--text-ice); }
.menu .menu__login { font-family: var(--sans); font-size: 0.9375rem; letter-spacing: 0.08em; color: var(--silver); margin-top: 1rem; }

/* ---------- AdvTrack reservation modal (tema navy/ciano do AdvTrack) ---------- */
.atmodal {
  --at-ink: #04070e;
  --at-navy: #071120;
  --at-navy-2: #0a1728;
  --at-cyan: #4ec8ff;
  --at-cyan-deep: #1b9de8;
  --at-text: #e9f1fa;
  --at-dim: rgba(233, 241, 250, 0.62);
  position: fixed; inset: 0; z-index: 250;
  display: grid; place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s .5s;   /* some da árvore só após o fade dos filhos */
}
.atmodal.is-open { pointer-events: auto; visibility: visible; transition: visibility 0s; }
.atmodal [hidden] { display: none !important; }
.atmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 7, 14, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity .5s var(--ease);   /* fade no próprio vidro: o blur acompanha em vez de "estalar" */
}
.atmodal.is-open .atmodal__backdrop { opacity: 1; }
.atmodal__card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100svh - 3rem);
  overflow: hidden auto;
  background: linear-gradient(165deg, rgba(10, 23, 40, 0.6) 0%, rgba(4, 7, 14, 0.68) 70%);
  backdrop-filter: blur(42px) saturate(180%);
  -webkit-backdrop-filter: blur(42px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 2.6rem 2.4rem 2.4rem;
  color: var(--at-text);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(78, 200, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(78, 200, 255, 0.08);
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: transform .6s var(--ease), opacity .5s var(--ease);
}
.atmodal.is-open .atmodal__card { transform: none; opacity: 1; }
.atmodal__aurora {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 130%; height: 70%;
  background: radial-gradient(ellipse, rgba(78, 200, 255, 0.16), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.atmodal__close {
  /* sticky mede o inset a partir do padding-box do card: -1.5rem = canto visual 1.1rem
     e mantém o X à vista quando o card rola em telas baixas */
  position: sticky; top: -1.5rem;
  z-index: 2;
  margin: -1.5rem -1.3rem -0.875rem auto;   /* -0.875rem devolve ao fluxo os 38px de altura menos o recuo */
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(233, 241, 250, 0.1), rgba(233, 241, 250, 0.04));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--at-dim); cursor: pointer;
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.atmodal__close:hover { color: var(--at-cyan); border-color: rgba(78, 200, 255, 0.5); background: rgba(78, 200, 255, 0.08); }
.atmodal__close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.atmodal__head { position: relative; display: flex; align-items: center; gap: 0.65rem; font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; margin-bottom: 1.9rem; }
.atmodal__head img { width: 32px; border-radius: 8px; box-shadow: 0 0 20px rgba(78, 200, 255, 0.35); }
.atmodal__eyebrow { position: relative; font-size: 0.6563rem; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--at-cyan); margin-bottom: 1rem; }
.atmodal__title { position: relative; font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 4vw, 2.2rem); line-height: 1.12; letter-spacing: -0.01em; }
.atmodal__title em { font-style: italic; color: var(--at-cyan); }
.atmodal__sub { position: relative; margin-top: 0.9rem; font-size: 0.875rem; font-weight: 300; color: var(--at-dim); }
.atmodal__form { position: relative; display: grid; gap: 1.1rem; margin-top: 1.9rem; }
.atfield { display: grid; gap: 0.45rem; }
.atfield span { font-size: 0.6563rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--at-dim); }
.atfield input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(233, 241, 250, 0.09), rgba(233, 241, 250, 0.035));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--at-text);
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 400;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(4, 7, 14, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.atfield input::placeholder { color: rgba(233, 241, 250, 0.55); }
.atfield input:focus {
  border-color: rgba(78, 200, 255, 0.6);
  background: linear-gradient(180deg, rgba(78, 200, 255, 0.11), rgba(78, 200, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 4px rgba(78, 200, 255, 0.14),
    0 0 26px rgba(78, 200, 255, 0.25);
}
.atmodal__error { font-size: 0.8125rem; color: #ffb4a8; }
.atmodal__submit {
  padding: 1rem 2rem; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--at-cyan) 0%, var(--at-cyan-deep) 100%);
  color: #041018;
  box-shadow:
    0 10px 40px rgba(78, 200, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(4, 16, 24, 0.2);
  transition: box-shadow .5s var(--ease), filter .5s var(--ease);
}
.atmodal__submit:hover {
  box-shadow:
    0 14px 60px rgba(78, 200, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(4, 16, 24, 0.2);
  filter: brightness(1.06);
}
.atmodal__hint { font-size: 0.6875rem; letter-spacing: 0.06em; color: var(--at-dim); text-align: center; }
.atmodal__success { position: relative; display: grid; justify-items: center; text-align: center; gap: 0.7rem; padding: 1.4rem 0 0.4rem; }
.atmodal__check {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(78, 200, 255, 0.1);
  border: 1px solid rgba(78, 200, 255, 0.45);
  box-shadow: 0 0 40px rgba(78, 200, 255, 0.35);
  margin-bottom: 0.6rem;
}
.atmodal__check svg { width: 26px; height: 26px; stroke: var(--at-cyan); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.atmodal__success h4 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; }
.atmodal__success p { font-size: 0.875rem; font-weight: 300; color: var(--at-dim); max-width: 32ch; }
.atmodal__success b { color: var(--at-cyan); font-weight: 500; }
.atmodal__wa {
  display: inline-block;
  margin-top: 0.9rem; padding: 0.95rem 2.4rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--at-cyan) 0%, var(--at-cyan-deep) 100%);
  color: #041018; font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow:
    0 10px 40px rgba(78, 200, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: box-shadow .5s var(--ease), filter .5s var(--ease);
}
.atmodal__wa:hover {
  filter: brightness(1.06);
  box-shadow:
    0 14px 60px rgba(78, 200, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.atmodal__done {
  margin-top: 0.9rem; padding: 0.8rem 2.2rem; border-radius: 999px;
  border: 1px solid rgba(78, 200, 255, 0.4);
  background: linear-gradient(180deg, rgba(78, 200, 255, 0.1), rgba(78, 200, 255, 0.03));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--at-cyan); font-family: var(--sans); font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: background .4s var(--ease);
}
.atmodal__done:hover { background: rgba(78, 200, 255, 0.12); }
body.atmodal-lock { overflow: hidden; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .modules__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 3.5rem 2rem; }
  .dashboard__body { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav { padding-right: 1rem; }
  .nav__brand-mark { font-size: 1.1rem; }
  .nav__brand img { width: 36px; height: 36px; }
  .nav__burger {
    display: grid; gap: 5px; margin-left: auto;
    background: none; border: 0; padding: 0.6rem; cursor: pointer;
  }
  .nav__burger span { width: 22px; height: 1.5px; background: var(--text-ice); transition: transform .5s var(--ease), opacity .5s var(--ease); }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
}
@media (max-width: 720px) {
  .modules__grid { grid-template-columns: 1fr; }
  .manifesto__meta { grid-template-columns: 1fr; gap: 2rem; }
  .dashboard__kpis { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__scroll { display: none; }
}

@media (max-height: 660px) { .hero__scroll { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0.01ms !important; }
  .w .wi { transform: none; }
}
