:root {
  --black: #000;
  --blue: #0263fa;
  --blue-light: #3b8cff;
  --cyan: #38d7ff;
  --white: #fff;
  --off-white: #f1f4f8;
  --muted: #a9b1bd;
  --border: rgba(255,255,255,.12);
  --header-height: 84px;
  --page-x: clamp(24px, 6vw, 96px);
  --content-max: 1280px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(2,99,250,.75); color: #fff; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(0,0,0,.72);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  color: var(--blue-light);
  background: linear-gradient(145deg, rgba(2,99,250,.16), rgba(255,255,255,.02));
  box-shadow: inset 0 0 18px rgba(2,99,250,.08), 0 0 25px rgba(2,99,250,.08);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-name { font-family: Manrope, sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -.04em; }
.brand-name span { color: var(--blue-light); }

.header-cta,
.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.header-cta { background: rgba(255,255,255,.055); }
.header-cta svg,
.primary-button svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.header-cta:hover,
.header-cta:focus-visible { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); transform: translateY(-2px); }
.header-cta:hover svg,
.primary-button:hover svg { transform: translateX(3px); }

.page-shell { scroll-snap-type: y proximity; }
.panel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 660px;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.panel::after {
  content: attr(data-section);
  position: absolute;
  z-index: 4;
  right: var(--page-x);
  bottom: 32px;
  color: rgba(255,255,255,.2);
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}
.video-background,
.dark-overlay,
.ambient-grid,
.ambient-ring,
.funnel-guide,
.growth-lines,
.final-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.video-background { z-index: 0; background: #000; }
.dark-overlay { z-index: 1; }
.panel-hero .dark-overlay {
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.96) 40%, rgba(0,0,0,.66) 67%, rgba(0,0,0,.82) 100%), linear-gradient(180deg, rgba(0,0,0,.2), #000 100%);
}
.panel-journey .dark-overlay,
.panel-impact .dark-overlay,
.panel-final .dark-overlay {
  background: radial-gradient(circle at 50% 52%, rgba(2,99,250,.07), transparent 38%), linear-gradient(180deg, rgba(0,0,0,.82), #000 100%);
}
.panel-funnel .dark-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.94) 56%, #000 100%), linear-gradient(180deg, rgba(0,0,0,.2), #000 100%);
}

.section-content {
  position: relative;
  z-index: 5;
  width: min(100%, var(--content-max));
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 42px) var(--page-x) 72px;
  display: flex;
  align-items: center;
}
.content-left { justify-content: flex-start; }
.content-center { justify-content: center; text-align: center; }
.content-right { justify-content: flex-end; }
.content-block { position: relative; width: 100%; }
.hero-copy { max-width: 790px; }
.journey-copy { max-width: 980px; }
.funnel-copy { max-width: 700px; }
.impact-copy { max-width: 1060px; }
.final-copy { max-width: 920px; }

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px rgba(56,215,255,.5);
}
.display-title,
.section-title {
  margin: 0;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.display-title {
  max-width: 760px;
  font-size: clamp(46px, 5.3vw, 82px);
  line-height: .99;
}
.section-title {
  font-size: clamp(38px, 4.25vw, 66px);
  line-height: 1.04;
}
.final-title { font-size: clamp(40px, 4.55vw, 70px); }
.gradient-text {
  color: var(--blue-light);
  background: linear-gradient(100deg, #78aaff 5%, #1976ff 54%, #54dcff 98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(2,99,250,.16));
}
.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}
.lead.compact { max-width: 760px; margin-inline: auto; }
.content-right .lead.compact { margin-inline: 0; }

.hero-actions { margin-top: 36px; }
.primary-button {
  min-height: 58px;
  padding: 0 26px;
  background: var(--blue);
  border-color: rgba(118,174,255,.4);
  box-shadow: 0 12px 36px rgba(2,99,250,.22), inset 0 1px 0 rgba(255,255,255,.2);
  font-size: 14px;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.primary-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255,255,255,.18) 46%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-3px);
  background: #126fff;
  box-shadow: 0 16px 44px rgba(2,99,250,.34), inset 0 1px 0 rgba(255,255,255,.25);
}
.primary-button:hover::before { transform: translateX(120%); }
.primary-button.large { min-height: 64px; padding-inline: 30px; }
.microcopy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.5;
}
.microcopy i { width: 3px; height: 3px; border-radius: 50%; background: var(--blue-light); box-shadow: 0 0 8px rgba(59,140,255,.8); }
.microcopy.standalone { display: block; margin-top: 17px; }

.scroll-cue {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--blue-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.35; transform:scaleY(.55); transform-origin:top; } 50% { opacity:1; transform:scaleY(1); } }

.ambient-grid {
  z-index: 2;
  opacity: .23;
  background-image: linear-gradient(rgba(80,148,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(80,148,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 74% 48%, #000 0%, transparent 58%);
  mask-image: radial-gradient(circle at 74% 48%, #000 0%, transparent 58%);
  transform: perspective(850px) rotateY(-15deg) translateX(12%);
}
.ambient-grid::before,
.ambient-grid::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(54,136,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(2,99,250,.08), inset 0 0 50px rgba(2,99,250,.04);
}
.ambient-grid::before { width: 370px; height: 370px; right: 7%; top: 22%; }
.ambient-grid::after { width: 230px; height: 230px; right: 12%; top: 31%; }

.ambient-ring {
  z-index: 2;
  inset: 50% auto auto 50%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(59,140,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(2,99,250,.035), inset 0 0 100px rgba(2,99,250,.025);
}
.ambient-ring::before,
.ambient-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(56,215,255,.08);
  border-radius: inherit;
}
.ambient-ring::after { inset: 28%; border-style: solid; }

.journey-flow {
  width: min(100%, 980px);
  margin: clamp(46px, 7vh, 82px) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.journey-flow li {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  color: var(--off-white);
  font-family: Manrope, sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.journey-flow li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(89,158,255,.75);
  border-radius: 50%;
  background: #020712;
  box-shadow: 0 0 16px rgba(2,99,250,.65);
  transform: translate(-50%,-50%);
}
.journey-flow li:first-child::before { left: 5%; }
.journey-flow li::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(2,99,250,.75), rgba(56,215,255,.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}
.journey-flow li:last-child::after { width: 94%; }
.journey-flow.is-visible li::after { transform: scaleX(1); }
.journey-flow li:nth-child(2)::after { transition-delay:.15s; }
.journey-flow li:nth-child(3)::after { transition-delay:.3s; }
.journey-flow li:nth-child(4)::after { transition-delay:.45s; }
.journey-flow span { padding: 9px 13px; background: rgba(0,0,0,.85); }

.funnel-guide { z-index: 2; width: 48%; right: auto; opacity: .48; }
.funnel-guide span {
  position: absolute;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,99,250,.5), rgba(56,215,255,.2), transparent);
  filter: drop-shadow(0 0 8px rgba(2,99,250,.45));
  transform: rotate(-8deg);
}
.funnel-guide span:nth-child(1){ width:72%; top:36%; }
.funnel-guide span:nth-child(2){ width:54%; top:50%; left:22%; }
.funnel-guide span:nth-child(3){ width:30%; top:64%; left:36%; }

.strategy-steps {
  position: relative;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
.strategy-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 15px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgba(56,215,255,.16));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s var(--ease) .15s;
}
.strategy-steps.is-visible::before { transform: scaleY(1); }
.strategy-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 20px;
  padding: 0 0 22px;
}
.strategy-steps li:last-child { padding-bottom: 0; }
.step-number {
  position: relative;
  z-index: 2;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(78,151,255,.45);
  border-radius: 50%;
  background: #02050a;
  color: var(--blue-light);
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(2,99,250,.15);
}
.strategy-steps h3 { margin: 3px 0 6px; color: var(--off-white); font-family: Manrope,sans-serif; font-size: 17px; letter-spacing: -.02em; }
.strategy-steps p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.55; }

.growth-lines { z-index: 2; opacity: .35; }
.growth-lines span {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,99,250,.28), rgba(56,215,255,.12), transparent);
  transform: rotate(-4deg);
}
.growth-lines span:nth-child(1){ top:62%; }
.growth-lines span:nth-child(2){ top:68%; transform:rotate(-7deg); opacity:.65; }
.growth-lines span:nth-child(3){ top:74%; transform:rotate(-10deg); opacity:.35; }

.impact-orbit {
  max-width: 990px;
  margin: clamp(44px, 6vh, 70px) auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}
.impact-orbit li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 12px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .3s ease;
}
.impact-orbit.is-visible li { opacity:1; transform:translateY(0); }
.impact-orbit li:nth-child(2){ transition-delay:.12s; }
.impact-orbit li:nth-child(3){ transition-delay:.24s; }
.impact-orbit li:nth-child(4){ transition-delay:.36s; }
.impact-orbit li:hover { border-color: rgba(65,145,255,.28); }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-light); box-shadow: 0 0 13px rgba(59,140,255,.85); }

.final-glow {
  z-index: 2;
  inset: 48% auto auto 50%;
  width: min(75vw, 900px);
  height: 320px;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse at center, rgba(2,99,250,.11), rgba(2,99,250,.03) 36%, transparent 70%);
  filter: blur(12px);
}
.final-action { margin-top: 36px; }
.signature {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 26px;
  width: calc(100% - (var(--page-x) * 2));
  max-width: calc(var(--content-max) - (var(--page-x) * 2));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.signature span { color: rgba(255,255,255,.78); font-family: Manrope,sans-serif; font-size: 13px; font-weight: 800; }
.signature p { margin: 0; color: rgba(255,255,255,.34); font-size: 11px; letter-spacing: .02em; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-group .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .24s; }
.reveal-group .reveal:nth-child(5) { transition-delay: .32s; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --page-x: clamp(24px, 5vw, 48px); }
  .panel { min-height: 700px; }
  .display-title { font-size: clamp(44px, 7vw, 66px); }
  .section-title { font-size: clamp(38px, 6vw, 58px); }
  .hero-copy { max-width: 700px; }
  .funnel-copy { max-width: 650px; }
  .ambient-grid { transform: none; opacity:.14; }
  .funnel-guide { opacity:.23; width:60%; }
}

@media (max-width: 720px) {
  :root { --header-height: 72px; --page-x: 22px; }
  .site-header { padding-inline: 20px; }
  .site-header.is-scrolled { height: 64px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 17px; }
  .header-cta { min-height: 43px; padding: 0 14px; font-size: 0; gap:0; }
  .header-cta::before { content:"Projeto"; font-size:12px; }
  .header-cta svg { margin-left:8px; }

  .page-shell { scroll-snap-type: y proximity; }
  .panel {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    overflow: clip;
  }
  .panel::after { right: 22px; bottom: 17px; }
  .section-content {
    min-height: 100vh;
    min-height: 100svh;
    padding: calc(var(--header-height) + 32px) var(--page-x) 74px;
  }
  .content-center { text-align: left; justify-content: flex-start; }
  .content-left,
  .content-right { justify-content: flex-start; }
  .content-block { max-width: none; }
  .eyebrow { margin-bottom: 17px; font-size: 10px; letter-spacing: .15em; }
  .eyebrow::before { width:20px; margin-right:9px; }
  .display-title { font-size: clamp(37px, 11.2vw, 53px); line-height: 1.02; }
  .section-title,
  .final-title { font-size: clamp(34px, 9.4vw, 47px); line-height:1.06; }
  .lead,
  .lead.compact,
  .content-right .lead.compact { margin: 22px 0 0; font-size: 16px; line-height:1.55; }
  .hero-actions { margin-top: 29px; }
  .primary-button { width:100%; min-height:56px; padding-inline:18px; font-size:12px; }
  .primary-button.large { min-height:60px; padding-inline:18px; }
  .microcopy { justify-content:flex-start; gap:7px; font-size:10px; }
  .scroll-cue { display:none; }

  .panel-hero .dark-overlay,
  .panel-funnel .dark-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.9) 58%, rgba(0,0,0,.96) 100%);
  }
  .ambient-grid { opacity:.09; background-size:46px 46px; -webkit-mask-image:radial-gradient(circle at 70% 70%, #000, transparent 62%); mask-image:radial-gradient(circle at 70% 70%, #000, transparent 62%); }
  .ambient-grid::before { width:260px; height:260px; top:52%; right:-80px; }
  .ambient-grid::after { width:150px; height:150px; top:59%; right:-24px; }
  .ambient-ring { width:112vw; opacity:.6; }

  .journey-flow {
    margin-top: 38px;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
  }
  .journey-flow li { min-height:52px; justify-items:start; padding-left:18px; }
  .journey-flow li::before { left:0!important; }
  .journey-flow li::after { width:100%!important; }
  .journey-flow li:nth-child(2)::after { background:transparent; }
  .journey-flow li:nth-child(3)::after { transition-delay:.2s; }
  .journey-flow span { padding:8px 11px; font-size:13px; }

  .funnel-guide { width:100%; opacity:.16; }
  .strategy-steps { margin-top:28px; }
  .strategy-steps li { gap:14px; padding-bottom:17px; }
  .strategy-steps h3 { font-size:15px; }
  .strategy-steps p { font-size:12px; }

  .growth-lines { opacity:.18; }
  .impact-orbit { margin-top:34px; justify-content:flex-start; gap:10px; }
  .impact-orbit li { min-height:44px; padding:0 14px; font-size:12px; backdrop-filter:none; }

  .final-action { margin-top:30px; }
  .signature {
    bottom:20px;
    width:calc(100% - 44px);
    flex-direction:column;
    align-items:flex-start;
    gap:5px;
  }
  .signature p { line-height:1.4; }
}

@media (max-width: 420px) {
  .display-title { font-size: clamp(34px, 10.8vw, 44px); }
  .section-title,
  .final-title { font-size: clamp(31px, 9vw, 40px); }
  .journey-flow { grid-template-columns:1fr; gap:9px; }
  .journey-flow li { min-height:42px; }
  .journey-flow li:nth-child(2)::after { background:linear-gradient(90deg, rgba(2,99,250,.75), rgba(56,215,255,.25)); }
  .panel-impact .section-content { padding-bottom:96px; }
}

@media (max-height: 760px) and (min-width: 721px) {
  .section-content { padding-top: calc(var(--header-height) + 22px); padding-bottom:48px; }
  .eyebrow { margin-bottom:14px; }
  .display-title { font-size:clamp(42px,4.6vw,68px); }
  .section-title { font-size:clamp(34px,3.7vw,54px); }
  .lead { margin-top:18px; font-size:16px; line-height:1.5; }
  .hero-actions { margin-top:24px; }
  .journey-flow { margin-top:36px; }
  .strategy-steps { margin-top:24px; }
  .strategy-steps li { padding-bottom:14px; }
  .impact-orbit { margin-top:34px; }
  .final-action { margin-top:26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
  .reveal, .impact-orbit li { opacity:1; transform:none; filter:none; }
  .journey-flow li::after, .strategy-steps::before { transform:none; }
}

/* =========================================================
   VÍDEO CONTROLADO PELA ROLAGEM
   Uma única mídia fixa acompanha toda a narrativa da página.
   ========================================================= */
.scroll-video-stage {
  --video-shift: -7px;
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
  contain: layout paint style;
  transform: translateZ(0);
  isolation: isolate;
}
.scroll-video {
  position: absolute;
  z-index: 0;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: translate3d(0, var(--video-shift), 0) scale(1.025);
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition: opacity .65s ease;
}
.scroll-video-stage.is-ready .scroll-video { opacity: .88; }
.scroll-video-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 22%, rgba(0,0,0,.08) 56%, rgba(0,0,0,.56) 100%),
    linear-gradient(180deg, rgba(0,0,0,.34) 0%, transparent 18%, transparent 78%, rgba(0,0,0,.6) 100%);
}
.page-shell {
  position: relative;
  z-index: 1;
}
.panel { background: transparent; }
.video-background { background: transparent; }

/* O vídeo substitui os desenhos de fundo mais fortes, mantendo apenas
   alguns detalhes técnicos quase imperceptíveis. */
.video-ready .ambient-grid { opacity: .075; }
.video-ready .ambient-ring { opacity: .38; }
.video-ready .funnel-guide,
.video-ready .growth-lines { opacity: .12; }

.panel-hero .dark-overlay {
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.97) 35%, rgba(0,0,0,.72) 57%, rgba(0,0,0,.3) 78%, rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.12) 58%, rgba(0,0,0,.72) 100%);
}
.panel-journey .dark-overlay,
.panel-impact .dark-overlay,
.panel-final .dark-overlay {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.3) 0%, rgba(0,0,0,.54) 45%, rgba(0,0,0,.8) 100%),
    linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.18) 46%, rgba(0,0,0,.82) 100%);
}
.panel-funnel .dark-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.46) 40%, rgba(0,0,0,.9) 67%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.12) 50%, rgba(0,0,0,.78) 100%);
}

@media (max-width: 720px) {
  .scroll-video-stage { --video-shift: -4px; }
  .scroll-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    transform: translate3d(0, var(--video-shift), 0) scale(1.012);
  }
  .scroll-video-stage.is-ready .scroll-video { opacity: .78; }
  .scroll-video-vignette {
    background:
      radial-gradient(ellipse at 50% 52%, transparent 15%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.72) 100%),
      linear-gradient(180deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.32) 30%, rgba(0,0,0,.2) 67%, rgba(0,0,0,.84) 100%);
  }
  .panel-hero .dark-overlay,
  .panel-funnel .dark-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.46) 67%, rgba(0,0,0,.9) 100%),
      linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.38) 72%, rgba(0,0,0,.6));
  }
  .panel-journey .dark-overlay,
  .panel-impact .dark-overlay,
  .panel-final .dark-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.54) 45%, rgba(0,0,0,.82) 100%),
      radial-gradient(circle at 50% 53%, rgba(0,0,0,.08), rgba(0,0,0,.66) 78%);
  }
  .video-ready .ambient-grid,
  .video-ready .ambient-ring,
  .video-ready .funnel-guide,
  .video-ready .growth-lines { opacity: .055; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-video { transform: none; transition: none; }
  .scroll-video-stage.is-ready .scroll-video { opacity: .62; }
  .scroll-video-stage {
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* =========================================================
   AJUSTE V4 — CONTRASTE LIMPO SOBRE O VÍDEO
   Uma única película fixa reduz o destaque do vídeo. Não há
   fundos por seção nem sombras pesadas aplicadas aos textos.
   ========================================================= */
.site-header,
.site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled {
  height: 72px;
}

/* Película global, barata para a GPU e uniforme em toda a página. */
.scroll-video-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 4, 12, .22) 0%, rgba(0, 0, 0, .16) 46%, rgba(0, 2, 8, .24) 100%);
}

.dark-overlay,
.scroll-video-vignette {
  display: none !important;
  background: transparent !important;
}

.scroll-video-stage.is-ready .scroll-video {
  opacity: .90;
}

.video-ready .ambient-grid,
.video-ready .ambient-ring,
.video-ready .funnel-guide,
.video-ready .growth-lines,
.video-ready .final-glow {
  opacity: 0;
}

/* O contraste vem do fundo, não de uma mancha escura em cada letra. */
.content-block,
.brand,
.header-cta,
.signature {
  text-shadow: none;
  filter: none;
}

/* Entrada mais limpa: menos desfoque e deslocamento menor. */
.reveal {
  transform: translate3d(0, 18px, 0);
  filter: blur(3px);
  transition:
    opacity .72s var(--ease),
    transform .72s var(--ease),
    filter .72s var(--ease);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.header-cta {
  background: rgba(255, 255, 255, .055);
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
    --page-x: 21px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
    padding-inline: 18px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .brand-mark svg {
    width: 17px;
    height: 17px;
  }

  .brand-name {
    font-size: 16px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .055);
  }

  .scroll-video-stage::after {
    background:
      linear-gradient(180deg, rgba(0, 4, 12, .30) 0%, rgba(0, 0, 0, .22) 48%, rgba(0, 2, 8, .32) 100%);
  }

  .scroll-video-stage.is-ready .scroll-video {
    opacity: .92;
  }

  .panel {
    min-height: 100svh;
  }

  .section-content {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 58px;
  }

  .panel-hero .section-content {
    padding-top: calc(var(--header-height) + 35px);
  }

  .content-block {
    max-width: 100%;
  }

  .reveal {
    transform: translate3d(0, 13px, 0);
    filter: none;
    transition:
      opacity .62s var(--ease),
      transform .62s var(--ease);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .display-title {
    max-width: 350px;
    font-size: clamp(34px, 9.9vw, 43px);
    line-height: 1.01;
    letter-spacing: -.045em;
  }

  .section-title,
  .final-title {
    max-width: 355px;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.04;
    letter-spacing: -.043em;
  }

  .lead,
  .lead.compact,
  .content-right .lead.compact {
    max-width: 350px;
    margin-top: 17px;
    font-size: 14px;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .primary-button,
  .primary-button.large {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    padding-inline: 17px;
    font-size: 11px;
  }

  .microcopy {
    max-width: 340px;
    margin-top: 12px;
    gap: 6px;
    font-size: 9px;
    line-height: 1.45;
  }

  .journey-flow {
    max-width: 350px;
    margin-top: 27px;
    gap: 10px 0;
  }

  .journey-flow li {
    min-height: 42px;
  }

  .journey-flow span {
    padding: 7px 10px;
    font-size: 12px;
    background: rgba(255, 255, 255, .035);
  }

  .strategy-steps {
    max-width: 355px;
    margin-top: 21px;
  }

  .strategy-steps li {
    gap: 12px;
    padding-bottom: 12px;
  }

  .strategy-steps h3 {
    font-size: 14px;
  }

  .strategy-steps p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.38;
  }

  .step-number {
    font-size: 9px;
  }

  .impact-orbit {
    max-width: 355px;
    margin-top: 23px;
    justify-content: flex-start;
    gap: 7px;
  }

  .impact-orbit li {
    min-height: 38px;
    padding-inline: 11px;
    border-color: rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .035);
    font-size: 10px;
  }

  .final-action {
    margin-top: 22px;
  }

  .signature {
    bottom: 14px;
    width: calc(100% - 42px);
    padding-top: 11px;
  }

  .signature span {
    font-size: 11px;
  }

  .signature p {
    max-width: 330px;
    font-size: 9px;
  }

  .panel::after {
    right: 20px;
    bottom: 14px;
    font-size: 9px;
  }

  .panel-final::after {
    display: none;
  }

  .scroll-video {
    object-position: center center;
    transform: translate3d(0, var(--video-shift), 0) scale(1.005);
  }
}

@media (max-width: 420px) {
  .section-content {
    padding-top: calc(var(--header-height) + 25px);
    padding-bottom: 52px;
  }

  .display-title {
    font-size: clamp(32px, 9.7vw, 39px);
  }

  .section-title,
  .final-title {
    font-size: clamp(28px, 8.2vw, 35px);
  }

  .journey-flow {
    grid-template-columns: 1fr 1fr;
  }

  .panel-funnel .lead {
    max-width: 330px;
  }
}

@media (max-width: 360px), (max-height: 700px) and (max-width: 720px) {
  .section-content {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 44px;
  }

  .display-title {
    font-size: 31px;
  }

  .section-title,
  .final-title {
    font-size: 27px;
  }

  .lead,
  .lead.compact,
  .content-right .lead.compact {
    margin-top: 13px;
    font-size: 13px;
  }

  .hero-actions,
  .final-action {
    margin-top: 17px;
  }

  .journey-flow,
  .strategy-steps,
  .impact-orbit {
    margin-top: 17px;
  }

  .strategy-steps li {
    padding-bottom: 8px;
  }
}


@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
}

/* =========================================================
   AJUSTE V5 — NOVA IDENTIDADE E NOVO VÍDEO
   Logo oficial em PNG e composição mobile dedicada.
   ========================================================= */
.brand {
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(132px, 11vw, 158px);
  height: auto;
  object-fit: contain;
}

.signature {
  gap: 12px;
}

.signature-logo {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

/* O novo vídeo já possui fundo preto e composição limpa. A película V4
   continua uniforme, sem criar manchas ou fundos independentes por seção. */
.scroll-video-stage.is-ready .scroll-video {
  opacity: .88;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 116px;
  }

  .signature-logo {
    width: 118px;
  }

  .signature {
    align-items: center;
  }

  .scroll-video {
    object-fit: cover;
    object-position: center center;
  }

  .scroll-video-stage.is-ready .scroll-video {
    opacity: .90;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 105px;
  }

  .header-cta {
    padding-inline: 10px;
    font-size: 10px;
  }
}


/* =========================================================
   AJUSTE V6 — VÍDEO MOBILE EM TELA CHEIA E MAIS PRESENTE
   O vídeo aparece desde a parte superior da viewport, com
   enquadramento mais alto e película escurecida sutil.
   ========================================================= */
@media (max-width: 720px) {
  .scroll-video-stage {
    --video-shift: 0px;
  }

  .scroll-video-stage::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .26) 22%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, .30) 100%),
      radial-gradient(ellipse at 50% 18%, rgba(2, 99, 250, .08) 0%, rgba(0, 0, 0, 0) 38%);
  }

  .scroll-video {
    inset: -4% -8% -4% -8%;
    width: 116%;
    height: 108%;
    object-fit: cover;
    object-position: 50% 12%;
    transform: translate3d(0, var(--video-shift), 0) scale(1.12);
  }

  .scroll-video-stage.is-ready .scroll-video {
    opacity: .82;
  }
}

@media (max-width: 420px) {
  .scroll-video {
    inset: -5% -10% -4% -10%;
    width: 120%;
    height: 110%;
    object-position: 50% 10%;
    transform: translate3d(0, var(--video-shift), 0) scale(1.14);
  }
}

@media (max-width: 360px), (max-height: 700px) and (max-width: 720px) {
  .scroll-video {
    object-position: 50% 8%;
    transform: translate3d(0, var(--video-shift), 0) scale(1.16);
  }
}


/* =========================================================
   AJUSTE V7 — NOVO VÍDEO, COMPOSIÇÃO POR MOVIMENTO E ESCALA
   O funil começa à esquerda e termina à direita. Os conteúdos
   foram reposicionados para ocupar as áreas livres da animação.
   ========================================================= */

/* Cabeçalho: CTA escuro para não desaparecer sobre o vídeo. */
.header-cta,
.site-header.is-scrolled .header-cta {
  background: rgba(0, 0, 0, .72);
  border-color: rgba(255, 255, 255, .20);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(2, 10, 24, .88);
  border-color: rgba(73, 145, 255, .46);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .42), 0 0 24px rgba(2, 99, 250, .13);
}

/* Película única sobre o vídeo. O próprio vídeo já possui fundo preto. */
.scroll-video-stage::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .24) 0%, rgba(0, 0, 0, .13) 42%, rgba(0, 0, 0, .26) 100%);
}

.scroll-video-stage.is-ready .scroll-video {
  opacity: .86;
}

/* Posição dos textos acompanhando a movimentação do funil:
   01–02: funil à esquerda/centro, texto à direita.
   03–05: funil e clientes migram para centro/direita, texto à esquerda. */
@media (min-width: 721px) {
  .panel {
    min-height: 0;
  }

  .panel-hero .section-content,
  .panel-journey .section-content {
    justify-content: flex-end;
    text-align: left;
  }

  .panel-funnel .section-content,
  .panel-impact .section-content,
  .panel-final .section-content {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-copy { max-width: 610px; }
  .journey-copy { max-width: 730px; }
  .funnel-copy { max-width: 535px; }
  .impact-copy { max-width: 650px; }
  .final-copy { max-width: 690px; }

  .panel-journey .lead.compact,
  .panel-funnel .lead.compact,
  .panel-impact .lead.compact,
  .panel-final .lead.compact {
    margin-inline: 0;
  }

  .panel-journey .journey-flow,
  .panel-impact .impact-orbit {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Nova jornada: uma única trilha escura e sofisticada, sem fundos
   quadrados desconectados atrás de cada palavra. */
.journey-flow {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  margin-top: clamp(28px, 4.5vh, 48px);
  padding: 16px 18px;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(3, 8, 18, .82), rgba(0, 0, 0, .68));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px) saturate(112%);
  -webkit-backdrop-filter: blur(12px) saturate(112%);
  overflow: hidden;
}

.journey-flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 11%;
  right: 11%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(2, 99, 250, .10), rgba(43, 128, 255, .78), rgba(56, 215, 255, .32), rgba(2, 99, 250, .10));
  box-shadow: 0 0 18px rgba(2, 99, 250, .30);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.25s var(--ease) .12s;
}

.journey-flow.is-visible::before {
  transform: scaleX(1);
}

.journey-flow li {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(13px, 1vw, 15px);
}

.journey-flow li::before {
  position: relative;
  top: auto;
  left: auto !important;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(137, 186, 255, .86);
  background: #07152d;
  box-shadow: 0 0 0 5px rgba(2, 99, 250, .08), 0 0 17px rgba(2, 99, 250, .68);
  transform: none;
}

.journey-flow li::after {
  content: "›";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -5px;
  left: auto;
  width: auto;
  height: auto;
  color: rgba(92, 157, 255, .52);
  background: none;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-52%);
  opacity: 0;
  transition: opacity .55s ease .35s;
}

.journey-flow.is-visible li::after {
  transform: translateY(-52%);
  opacity: 1;
}

.journey-flow li:last-child::after {
  content: none;
}

.journey-flow span {
  position: relative;
  padding: 0;
  background: transparent;
  white-space: nowrap;
}

/* Assinatura final sem logotipo. */
.signature {
  justify-content: flex-start;
}

.signature p {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
}

.signature strong {
  color: rgba(255, 255, 255, .82);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

/* Controle de escala para widescreen e telas com pouca altura.
   Usa altura de viewport como limite para impedir que o conteúdo corte. */
@media (min-width: 1280px) {
  :root {
    --content-max: 1220px;
    --page-x: clamp(44px, 4.5vw, 74px);
  }

  .section-content {
    padding-top: calc(var(--header-height) + clamp(18px, 2.8vh, 34px));
    padding-bottom: clamp(44px, 6vh, 68px);
  }

  .display-title {
    font-size: clamp(46px, min(4.15vw, 7.2vh), 68px);
  }

  .section-title,
  .final-title {
    font-size: clamp(36px, min(3.25vw, 5.8vh), 54px);
  }

  .lead {
    margin-top: clamp(15px, 2.2vh, 23px);
    font-size: clamp(15px, min(1.15vw, 2.15vh), 18px);
    line-height: 1.52;
  }

  .eyebrow {
    margin-bottom: clamp(12px, 1.8vh, 18px);
  }

  .hero-actions,
  .final-action {
    margin-top: clamp(18px, 2.7vh, 28px);
  }

  .journey-flow {
    margin-top: clamp(22px, 3.5vh, 38px);
  }

  .strategy-steps {
    margin-top: clamp(18px, 2.8vh, 28px);
  }

  .strategy-steps li {
    padding-bottom: clamp(9px, 1.5vh, 16px);
  }

  .impact-orbit {
    margin-top: clamp(20px, 3.2vh, 36px);
  }
}

@media (min-width: 1600px) and (min-aspect-ratio: 16/10) {
  :root { --content-max: 1180px; }
  .hero-copy { max-width: 570px; }
  .journey-copy { max-width: 680px; }
  .funnel-copy { max-width: 500px; }
  .impact-copy { max-width: 610px; }
  .final-copy { max-width: 640px; }
}

@media (max-height: 780px) and (min-width: 721px) {
  .section-content {
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 38px;
  }

  .display-title { font-size: clamp(40px, 6.8vh, 58px); }
  .section-title,
  .final-title { font-size: clamp(32px, 5.5vh, 46px); }
  .lead { margin-top: 13px; font-size: 14px; line-height: 1.44; }
  .eyebrow { margin-bottom: 10px; }
  .hero-actions,
  .final-action { margin-top: 16px; }
  .journey-flow { margin-top: 20px; padding-block: 11px; }
  .strategy-steps { margin-top: 16px; }
  .strategy-steps li { padding-bottom: 8px; }
  .impact-orbit { margin-top: 18px; gap: 9px; }
  .impact-orbit li { min-height: 40px; }
}

/* Mobile: vídeo 9:16 criado com crop dinâmico que acompanha o funil.
   Ocupa toda a tela desde o topo; a película reforçada preserva a leitura. */
@media (max-width: 720px) {
  .scroll-video-stage {
    --video-shift: 0px;
  }

  .scroll-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, var(--video-shift), 0) scale(1.015);
  }

  .scroll-video-stage.is-ready .scroll-video {
    opacity: .84;
  }

  .scroll-video-stage::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .34) 25%, rgba(0, 0, 0, .23) 55%, rgba(0, 0, 0, .38) 100%),
      radial-gradient(ellipse at 50% 15%, rgba(2, 99, 250, .06), transparent 42%);
  }

  .panel-hero .section-content,
  .panel-journey .section-content,
  .panel-funnel .section-content,
  .panel-impact .section-content,
  .panel-final .section-content {
    justify-content: flex-start;
    text-align: left;
  }

  .journey-flow {
    width: min(100%, 355px);
    grid-template-columns: 1fr;
    margin-top: 23px;
    padding: 13px 15px;
    gap: 0;
    border-radius: 15px;
  }

  .journey-flow::before {
    left: 25px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .journey-flow.is-visible::before {
    transform: scaleY(1);
  }

  .journey-flow li {
    min-height: 39px;
    justify-content: flex-start;
    padding-left: 0;
    gap: 13px;
  }

  .journey-flow li::before {
    width: 7px;
    height: 7px;
  }

  .journey-flow li::after {
    content: none;
  }

  .journey-flow span {
    font-size: 12px;
  }

  .signature {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-flow::before {
    transform: none;
  }
}


/* =========================================================
   AJUSTE V8 — ALINHAMENTO REFINADO PARA VIDEO-BG-V2.1
   Escala contida em widescreen, composição por seção e
   contraste mobile difuso sem sombra pesada nas fontes.
   ========================================================= */

/* Base: cada narrativa permanece dentro da viewport. */
.panel {
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.section-content {
  width: min(100%, 1160px);
  padding: calc(var(--header-height) + clamp(12px, 2.2vh, 25px)) clamp(28px, 4.2vw, 68px) clamp(34px, 5vh, 58px);
}

.display-title {
  font-size: clamp(42px, min(4vw, 6.5vh), 60px);
  line-height: 1.015;
}

.section-title,
.final-title {
  font-size: clamp(34px, min(3.2vw, 5.4vh), 50px);
  line-height: 1.045;
}

.lead {
  margin-top: clamp(14px, 2.2vh, 22px);
  font-size: clamp(14px, min(1.15vw, 2.1vh), 17px);
  line-height: 1.52;
}

.eyebrow {
  margin-bottom: clamp(10px, 1.6vh, 16px);
}

.hero-actions,
.final-action {
  margin-top: clamp(17px, 2.6vh, 26px);
}

.primary-button.large {
  min-height: 56px;
}

/* Enquadramento desktop seguindo a coreografia do novo vídeo:
   01/02: funil à esquerda; 03/04/05: cena no centro/direita. */
@media (min-width: 721px) {
  .panel-hero .section-content,
  .panel-journey .section-content {
    justify-content: flex-end;
    text-align: left;
  }

  .panel-funnel .section-content,
  .panel-impact .section-content,
  .panel-final .section-content {
    justify-content: flex-start;
    text-align: left;
  }

  .panel-hero .content-block,
  .panel-journey .content-block {
    margin-left: auto;
    margin-right: clamp(0px, 2.5vw, 34px);
  }

  .panel-funnel .content-block,
  .panel-impact .content-block,
  .panel-final .content-block {
    margin-right: auto;
    margin-left: 0;
  }

  .hero-copy { max-width: 560px; }
  .journey-copy { max-width: 690px; }
  .funnel-copy { max-width: 520px; }
  .impact-copy { max-width: 630px; }
  .final-copy { max-width: 650px; }

  .panel-impact .section-content,
  .panel-final .section-content {
    align-items: center;
  }

  .panel-journey .journey-flow,
  .panel-impact .impact-orbit,
  .panel-journey .lead.compact,
  .panel-funnel .lead.compact,
  .panel-impact .lead.compact,
  .panel-final .lead.compact {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Jornada: faixa mais leve no desktop; cartões compactos no mobile. */
.journey-flow {
  width: min(100%, 700px);
  margin-top: clamp(20px, 3.4vh, 34px);
  padding: 12px 14px;
  border-color: rgba(99, 157, 255, .18);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(2, 7, 16, .62), rgba(0, 0, 0, .48));
  box-shadow: 0 14px 38px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.journey-flow li {
  min-height: 44px;
}

.journey-flow span {
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 700;
}

/* Indicadores mais estáveis e alinhados. */
.impact-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 620px);
  gap: 10px;
  margin-top: clamp(20px, 3.2vh, 32px);
}

.impact-orbit li {
  justify-content: flex-start;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  background: rgba(1, 6, 14, .58);
  border-color: rgba(116, 165, 237, .18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Vídeo ligeiramente mais discreto no desktop, mantendo detalhes. */
.scroll-video-stage.is-ready .scroll-video {
  opacity: .82;
}

.scroll-video-stage::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .14) 45%, rgba(0, 0, 0, .30) 100%);
}

/* Widescreen: largura e tipografia limitadas pela altura da tela. */
@media (min-width: 1500px) {
  .section-content { width: min(100%, 1200px); }
  .hero-copy { max-width: 550px; }
  .journey-copy { max-width: 670px; }
  .funnel-copy { max-width: 500px; }
  .impact-copy { max-width: 610px; }
  .final-copy { max-width: 620px; }
}

@media (max-height: 760px) and (min-width: 721px) {
  .section-content {
    padding-top: calc(var(--header-height) + 8px);
    padding-bottom: 30px;
  }

  .display-title { font-size: clamp(39px, 6.2vh, 50px); }
  .section-title,
  .final-title { font-size: clamp(31px, 5.2vh, 42px); }
  .lead { margin-top: 11px; font-size: 13.5px; line-height: 1.43; }
  .eyebrow { margin-bottom: 8px; }
  .hero-actions,
  .final-action { margin-top: 14px; }
  .journey-flow { margin-top: 16px; padding-block: 9px; }
  .strategy-steps { margin-top: 14px; }
  .strategy-steps li { padding-bottom: 7px; }
  .impact-orbit { margin-top: 15px; gap: 8px; }
  .impact-orbit li { min-height: 38px; padding-block: 7px; }
}

/* Mobile: vídeo ocupa a viewport desde o topo. A proteção de leitura é
   uma película e um halo difuso atrás do conteúdo — não sombra na fonte. */
@media (max-width: 720px) {
  :root {
    --header-height: 64px;
    --page-x: 16px;
  }

  .panel {
    height: 100svh;
    min-height: 100svh;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
    padding-inline: 15px;
  }

  .brand-logo { width: 108px; }

  .header-cta {
    min-height: 39px;
    padding-inline: 11px;
    background: rgba(0, 0, 0, .84);
    border-color: rgba(96, 153, 239, .30);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255,255,255,.06);
  }

  .scroll-video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, var(--video-shift), 0) scale(1.01);
  }

  .scroll-video-stage.is-ready .scroll-video {
    opacity: .76;
  }

  .scroll-video-stage::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .56) 0%, rgba(0, 0, 0, .38) 58%, rgba(0, 0, 0, .22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .43) 0%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .34) 100%);
  }

  .section-content {
    width: 100%;
    min-height: 100svh;
    align-items: flex-start;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: calc(var(--header-height) + 18px) var(--page-x) 40px;
  }

  .content-block {
    max-width: 100%;
    margin: 0 !important;
    isolation: isolate;
  }

  .content-block::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -22px -13px -24px -13px;
    pointer-events: none;
    background: radial-gradient(ellipse at 24% 38%, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .52) 48%, rgba(0, 0, 0, .16) 76%, transparent 88%);
  }

  .panel-funnel .content-block::before,
  .panel-impact .content-block::before,
  .panel-final .content-block::before {
    background: radial-gradient(ellipse at 22% 40%, rgba(0, 0, 0, .79) 0%, rgba(0, 0, 0, .58) 50%, rgba(0, 0, 0, .18) 78%, transparent 89%);
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 9px;
    line-height: 1.35;
  }

  .display-title {
    max-width: 365px;
    font-size: clamp(33px, 9.2vw, 40px);
    line-height: 1.015;
  }

  .section-title {
    max-width: 380px;
    font-size: clamp(29px, 8.2vw, 35px);
    line-height: 1.045;
  }

  .final-title {
    max-width: 385px;
    font-size: clamp(28px, 7.8vw, 33px);
    line-height: 1.035;
  }

  .lead,
  .lead.compact,
  .content-right .lead.compact {
    max-width: 375px;
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.47;
  }

  .hero-actions,
  .final-action {
    margin-top: 18px;
  }

  .primary-button,
  .primary-button.large {
    width: 100%;
    min-height: 52px;
    padding-inline: 15px;
    border-radius: 11px;
    font-size: 10.5px;
  }

  .microcopy,
  .microcopy.standalone {
    max-width: 100%;
    margin-top: 10px;
    font-size: 8.5px;
    line-height: 1.4;
  }

  /* Mobile journey: quatro blocos leves em 2x2, sem caixa preta gigante. */
  .journey-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
    padding: 0;
    gap: 9px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .journey-flow::before {
    content: none;
  }

  .journey-flow li {
    position: relative;
    min-height: 48px;
    justify-content: flex-start;
    gap: 9px;
    padding: 0 11px;
    border: 1px solid rgba(89, 147, 234, .22);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(2, 9, 21, .78), rgba(0, 0, 0, .62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 8px 22px rgba(0,0,0,.20);
  }

  .journey-flow li::before {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(2, 99, 250, .08), 0 0 12px rgba(2,99,250,.42);
  }

  .journey-flow li::after { content: none; }

  .journey-flow span {
    font-size: 11px;
    white-space: normal;
  }

  .strategy-steps {
    margin-top: 17px;
  }

  .strategy-steps li {
    gap: 10px;
    padding-bottom: 9px;
  }

  .strategy-steps h3 { font-size: 13px; }
  .strategy-steps p { font-size: 10.5px; line-height: 1.36; }
  .step-number { width: 38px; height: 38px; font-size: 9px; }

  .impact-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 17px;
    gap: 8px;
  }

  .impact-orbit li {
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 9.5px;
    line-height: 1.28;
    background: rgba(0, 5, 13, .70);
  }

  .impact-orbit li:nth-child(3),
  .impact-orbit li:nth-child(4) {
    grid-column: 1 / -1;
  }

  .panel-final .section-content {
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 26px;
  }

  .signature {
    display: none;
  }
}

@media (max-width: 390px) {
  .section-content {
    padding-top: calc(var(--header-height) + 14px);
  }

  .display-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .final-title { font-size: 27px; }
  .lead,
  .lead.compact,
  .content-right .lead.compact { font-size: 12.8px; }
  .journey-flow span { font-size: 10px; }
  .primary-button,
  .primary-button.large { font-size: 10px; }
}

@media (max-height: 700px) and (max-width: 720px) {
  .panel {
    height: auto;
    min-height: 100svh;
  }

  .section-content {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 24px;
  }

  .display-title { font-size: 30px; }
  .section-title { font-size: 27px; }
  .final-title { font-size: 26px; }
  .lead,
  .lead.compact,
  .content-right .lead.compact { margin-top: 10px; font-size: 12.5px; line-height: 1.4; }
  .hero-actions,
  .final-action { margin-top: 13px; }
  .journey-flow,
  .strategy-steps,
  .impact-orbit { margin-top: 13px; }
  .strategy-steps li { padding-bottom: 6px; }
}
