/* ===========================================================
   Orbital — landing page
   Design source: Claude Design "Orbital v2.dc.html"
   =========================================================== */

:root {
  --bg: #090C15;
  --bg-2: #0B0F1B;
  --card: #0E1322;
  --card-hover: #101730;
  --text: #F2F4F8;
  --muted: #A4AFC2;
  --dim: #5C6B85;
  --faint: #4E5A72;
  --num: #2D3748;
  --blue: #2563EB;
  --blue-dark: #1E4FD8;
  --blue-light: #6ea0ff;
  --wa: #25D366;
  --wa-dark: #1ebe5a;
  --ink: #0A0E1A;
  --hair: rgba(255, 255, 255, .08);
  --hair-2: rgba(255, 255, 255, .1);
  --display: 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 60px);
}

* { box-sizing: border-box }

html { scroll-behavior: smooth; overflow-x: hidden }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

input, button, select { font-family: inherit }

:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px }

/* ---------- keyframes ---------- */
@keyframes spin360 { to { transform: rotate(360deg) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes pulseWa {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45) }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0) }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0) }
}
@keyframes wordCycle {
  0%, 5%    { opacity: 0; transform: translateY(100%) }
  11%, 30%  { opacity: 1; transform: translateY(0) }
  36%, 100% { opacity: 0; transform: translateY(-100%) }
}
@keyframes successPop {
  0%   { transform: scale(.7); opacity: 0 }
  60%  { transform: scale(1.06) }
  100% { transform: scale(1); opacity: 1 }
}

.spin { animation: spin360 30s linear infinite; transform-origin: 50px 50px }
.spin--50 { animation-duration: 50s }
.spin--60 { animation-duration: 60s }

/* ---------- scroll reveal ---------- */
.js [data-anim="up"] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16, 1, .3, 1);
}
.js [data-anim="up"].is-in { opacity: 1; transform: none }

.line { display: block; overflow: hidden; padding-bottom: .08em }
.js .line > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}
.js .line.is-in > span { transform: none }

/* ---------- shared type ---------- */
.h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 5.5vw, 64px); line-height: 1.02; letter-spacing: -2px; margin: 0 }
.h2--tight { font-size: clamp(34px, 5vw, 66px); line-height: 1; letter-spacing: -2.5px }
.h2--sm { font-size: clamp(30px, 4.5vw, 56px) }
.dim { color: var(--dim) }
.grad {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, #fff, var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.kicker { display: flex; align-items: center; gap: 14px; margin: 0 }
.kicker__num { font-family: var(--display); color: var(--blue); font-size: 14px; font-weight: 600 }
.kicker__label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 500 }
.kicker__rule { flex: 1; height: 1px; background: var(--hair-2) }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 8px; font-weight: 600;
}
.btn--light { background: var(--text); color: var(--ink); font-size: 14px; gap: 9px; padding: 12px 22px; border-radius: 6px; transition: background .25s, color .25s }
.btn--light:hover { background: var(--blue); color: #fff }
.btn--blue { background: var(--blue); color: #fff; font-size: 15px; padding: 16px 26px; transition: background .25s, transform .25s }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px) }
.btn--underline { color: #fff; font-size: 15px; padding: 16px 8px; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .3); transition: border-color .25s }
.btn--underline:hover { border-color: #fff }
.btn--white { background: #fff; color: var(--blue-dark); font-weight: 700; font-size: 16px; padding: 17px 30px; transition: transform .25s }
.btn--white:hover { transform: translateY(-3px) }
.btn--outline { background: transparent; color: #fff; font-size: 16px; padding: 17px 30px; border: 1px solid rgba(255, 255, 255, .5); transition: background .25s }
.btn--outline:hover { background: rgba(255, 255, 255, .14) }
.btn--wa { background: var(--wa); color: var(--ink); font-weight: 700; font-size: 16px; padding: 16px; justify-content: center; transition: background .25s }
.btn--wa:hover { background: var(--wa-dark) }
.btn--ghost { background: transparent; color: var(--muted); font-size: 15px; font-weight: 500; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, .14) }
.btn--grow { flex: 1; justify-content: center }

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 9px; height: 9px;
  border-radius: 50%; background: #fff; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  transition: width .25s ease, height .25s ease, background .25s ease;
}
.cursor.is-grown { width: 46px; height: 46px; background: var(--blue-light) }
@media (hover: none) { .cursor { display: none } }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
}
.header.is-scrolled {
  background: rgba(9, 12, 21, .8);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
  padding-top: 15px; padding-bottom: 15px;
}
.header__progress { position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-light)) }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff }
.logo__mark { display: block; flex: none }
.logo__text { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: 5px }

.nav { display: flex; gap: 36px; align-items: center }
.nav__link { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: .3px; transition: color .3s }
.nav__link:hover, .nav__link.is-active { color: #fff }

.burger {
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; background: transparent;
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 6px; cursor: pointer;
}
.burger span { display: block; width: 18px; height: 1.5px; background: #fff }

@media (max-width: 920px) {
  .nav { display: none }
  .burger { display: flex }
  .header .btn--light { display: none }
}

/* ---------- mobile menu ---------- */
.menu { position: fixed; inset: 0; z-index: 400; background: var(--bg); display: flex; flex-direction: column; padding: 26px clamp(20px, 6vw, 40px) }
.menu[hidden] { display: none }
.menu__top { display: flex; align-items: center; justify-content: space-between }
.menu__top .logo__text { font-size: 20px }
.menu__close { width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255, 255, 255, .2); border-radius: 6px; color: #fff; font-size: 22px; cursor: pointer }
.menu__nav { display: flex; flex-direction: column; margin-top: 54px }
.menu__nav a {
  color: #fff; text-decoration: none; font-family: var(--display); font-weight: 600;
  font-size: clamp(34px, 9vw, 52px); letter-spacing: -1px; padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.menu__cta { margin-top: auto; text-align: center; background: var(--blue); color: #fff; text-decoration: none; font-weight: 600; font-size: 17px; padding: 17px; border-radius: 8px }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 150px var(--gutter) 70px; scroll-margin-top: 80px }
.hero__ring { position: absolute; top: 50%; right: -12%; transform: translateY(-50%); width: min(58vw, 760px); pointer-events: none; opacity: .5 }
.hero__ring svg { display: block }
.hero__grid { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 30px }

.eyebrow { display: flex; align-items: center; gap: 16px; margin: 0; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 500 }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none }

.hero__title { font-family: var(--display); font-weight: 700; font-size: clamp(44px, 8.5vw, 118px); line-height: .96; letter-spacing: -3px; margin: 0 }
.hero__foot { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 36px; margin-top: 18px }
.hero__pitch { max-width: 440px }
.hero__pitch p { color: var(--muted); font-size: clamp(15px, 1.7vw, 18px); line-height: 1.6; margin: 0 0 28px }
.hero__pitch strong { color: #fff; font-weight: 500 }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px }

.hero__cycle { display: flex; align-items: baseline; gap: 10px; font-family: var(--display); margin: 0 }
.hero__cycle-label { color: var(--muted); font-size: 16px; font-weight: 500 }
.cycle { position: relative; display: inline-grid; font-weight: 600; font-size: clamp(18px, 2.2vw, 24px); overflow: hidden; padding-bottom: .1em }
.cycle__word { grid-area: 1/1; color: var(--blue-light); animation: wordCycle 6.6s ease-in-out infinite }
.cycle__word:nth-child(2) { animation-delay: 2.2s }
.cycle__word:nth-child(3) { animation-delay: 4.4s }

.hero__scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--dim); font-size: 11px; letter-spacing: 2px; text-transform: uppercase }
.hero__scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--dim), transparent) }

@media (max-width: 780px) { .hero__ring { opacity: .25 } }

/* ---------- stats + clientes ---------- */
.stats-band { position: relative; border-top: 1px solid var(--hair); padding: clamp(56px, 7vw, 88px) 0 }
.stats { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) }
.stat { padding: 8px 28px; border-left: 1px solid var(--hair-2) }
.stat__value { font-family: var(--display); font-weight: 600; font-size: clamp(40px, 6vw, 64px); line-height: 1; letter-spacing: -2px }
.stat__label { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.4 }

.marquee { overflow: hidden }
.marquee__track { display: flex; width: max-content; align-items: center }
.marquee--clients { margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 26px 0 }
/* espaçamento por margin (não `gap`) para que translateX(-50%) caia exatamente
   no fim da primeira cópia da lista — com `gap` a emenda pula meio espaço */
.marquee__track--clients { animation: marquee 30s linear infinite }
.marquee__track--clients > * { margin-right: 56px }
.client { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: 2px; color: var(--faint); white-space: nowrap }
.client__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex: none }

/* ---------- generic section ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 150px) var(--gutter); max-width: 1280px; margin: 0 auto }
.section__head { display: grid; gap: 18px; max-width: 760px }

/* ---------- problema ---------- */
.problems { margin-top: 64px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) }
.problem { position: relative; padding: 34px 30px 30px; border-top: 1px solid var(--hair-2) }
.problem__num { font-family: var(--display); color: var(--num); font-size: 15px; font-weight: 600 }
.problem h3 { font-family: var(--display); font-weight: 600; font-size: 21px; margin: 46px 0 12px; line-height: 1.15 }
.problem p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 }

.statement { margin: 80px 0 0; max-width: 1000px; font-family: var(--display); font-weight: 500; font-size: clamp(24px, 4vw, 46px); line-height: 1.18; letter-spacing: -1.5px; color: var(--dim) }
.statement strong { color: #fff; font-weight: 500 }

/* ---------- serviços: scroll horizontal fixado ---------- */
.hpin { position: relative; scroll-margin-top: 80px; background: var(--bg-2); border-top: 1px solid var(--hair) }
.hsticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center }
.htrack { display: flex; align-items: stretch; gap: 24px; padding: 0 var(--gutter); will-change: transform }

.hintro { flex: none; width: min(70vw, 520px); display: flex; flex-direction: column; justify-content: center; padding-right: 40px }
.hintro .kicker { margin-bottom: 22px }
.hintro__lead { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 26px 0 0; max-width: 380px }
.hintro__hint { display: flex; align-items: center; gap: 10px; margin: 34px 0 0; color: var(--dim); font-size: 13px; letter-spacing: 1px }
.hintro__arrow { width: 46px; height: 1px; background: var(--num); position: relative }
.hintro__arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--dim); border-right: 1px solid var(--dim); transform: rotate(45deg) }

.scard {
  flex: none; width: min(82vw, 380px); height: 62vh; max-height: 540px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 36px 34px; background: var(--card);
  border: 1px solid rgba(255, 255, 255, .09); border-radius: 10px;
  transition: border-color .35s, background .35s;
}
.scard:hover { border-color: rgba(37, 99, 235, .6); background: var(--card-hover) }
.scard__top { display: flex; align-items: flex-start; justify-content: space-between }
.scard__num { font-family: var(--display); font-weight: 700; font-size: 64px; line-height: 1; letter-spacing: -3px; color: transparent; -webkit-text-stroke: 1px rgba(164, 175, 194, .4) }
.scard__icon { width: 46px; height: 46px; flex: none; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15); display: flex; align-items: center; justify-content: center; color: var(--muted) }
.scard h3 { font-family: var(--display); font-weight: 600; font-size: 26px; margin: 0 0 14px; line-height: 1.1; letter-spacing: -.5px }
.scard p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 }

.hprogress { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 6vh; display: flex; align-items: center; gap: 16px }
.hprogress__count { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--blue-light); min-width: 22px }
.hprogress__rail { flex: 1; height: 1px; background: rgba(255, 255, 255, .14); position: relative }
.hprogress__bar { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--blue); transition: width .12s linear }
.hprogress__total { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--dim); min-width: 22px; text-align: right }

/* ---------- como funciona ---------- */
.section--steps { max-width: 1100px }
.section--steps .section__head { margin-bottom: 56px }
.steps { position: relative }
.step {
  position: sticky; top: 120px; margin-bottom: 22px;
  background: var(--card); border: 1px solid rgba(255, 255, 255, .09); border-radius: 12px;
  padding: clamp(28px, 4vw, 48px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 4vw, 52px); align-items: center;
}
.step__num { font-family: var(--display); font-weight: 700; font-size: clamp(48px, 9vw, 104px); line-height: .85; letter-spacing: -4px; color: transparent; -webkit-text-stroke: 1.4px rgba(37, 99, 235, .6) }
.step h3 { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 3vw, 32px); margin: 0 0 12px; letter-spacing: -.5px }
.step p { color: var(--muted); font-size: clamp(15px, 1.7vw, 17px); line-height: 1.6; margin: 0; max-width: 520px }

/* ---------- manifesto ---------- */
.manifesto { position: relative; height: 180vh; border-top: 1px solid var(--hair) }
.manifesto__sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 var(--gutter) }
.manifesto__inner { max-width: 1000px }
.manifesto__inner .kicker { margin-bottom: 34px }
.manifesto__text { font-family: var(--display); font-weight: 600; font-size: clamp(26px, 4.6vw, 58px); line-height: 1.22; letter-spacing: -1.5px; margin: 0; text-wrap: balance }
.manifesto__text span { color: rgba(242, 244, 248, .18); transition: color .3s ease }
.manifesto__text span.is-lit { color: var(--text) }

/* ---------- posicionamento ---------- */
.marquee--pos { position: relative; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair) }
.marquee__track--pos { animation: marquee 34s linear infinite; font-family: var(--display); font-weight: 700; font-size: clamp(40px, 7vw, 88px); letter-spacing: -2px; line-height: 1 }
.pos { white-space: nowrap; color: var(--text) }
.pos--outline { color: transparent; -webkit-text-stroke: 1px rgba(242, 244, 248, .45) }
.pos__star { margin: 0 34px; color: var(--blue); font-weight: 400 }

/* ---------- diferenciais ---------- */
.diffs { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) }
.diff { display: flex; align-items: flex-start; gap: 18px; padding: 30px 26px; border-top: 1px solid var(--hair-2) }
.diff__icon { color: var(--blue); flex: none; margin-top: 3px }
.diff h3 { font-family: var(--display); font-weight: 500; font-size: 19px; margin: 0; line-height: 1.3 }

/* ---------- resultados ---------- */
.results { position: relative; scroll-margin-top: 80px; padding: clamp(80px, 11vw, 150px) var(--gutter); background: var(--bg-2); border-top: 1px solid var(--hair) }
.results__inner { max-width: 1100px; margin: 0 auto }
.results .kicker { margin-bottom: 48px }
.testimonial { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; min-height: 230px }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 24px }
.testimonial__quote { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.8vw, 32px); line-height: 1.32; margin: 0 0 30px; letter-spacing: -.6px }
.testimonial__quote::before, .testimonial__quote::after { content: '"' }
.testimonial__who { display: flex; align-items: center; gap: 15px }
.testimonial__avatar { width: 48px; height: 48px; flex: none; border-radius: 50%; background: #16243D; border: 1px solid rgba(255, 255, 255, .12); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 17px }
.testimonial__name { font-weight: 600; font-size: 15px }
.testimonial__role { color: var(--muted); font-size: 14px }
.testimonial__metric { border-left: 1px solid var(--hair-2); padding-left: clamp(24px, 4vw, 48px) }
.testimonial__metric-value { font-family: var(--display); font-weight: 700; font-size: clamp(48px, 8vw, 84px); line-height: 1; letter-spacing: -3px }
.testimonial__metric-label { color: var(--muted); font-size: 15px; margin-top: 14px }

.dots { display: flex; gap: 10px; margin-top: 48px }
.dot { width: 10px; height: 10px; border-radius: 100px; border: none; background: rgba(255, 255, 255, .2); cursor: pointer; transition: width .3s, background .3s }
.dot.is-active { width: 30px; background: var(--blue) }

/* ---------- contato ---------- */
.contact { position: relative; scroll-margin-top: 80px; padding: clamp(80px, 11vw, 150px) var(--gutter) }
.contact__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center }
.contact .kicker { margin-bottom: 18px }
.contact__lead { color: var(--muted); font-size: 17px; line-height: 1.6; margin: 22px 0 0; max-width: 380px }
.contact__perks { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; gap: 18px }
.contact__perks li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 15px }
.contact__perks li::before { content: "✓"; color: var(--blue) }

.formcard { padding: clamp(26px, 3vw, 38px); border-radius: 14px; border: 1px solid var(--hair-2); background: var(--card) }
.formcard [hidden] { display: none }

.success { text-align: center; padding: 24px 0; animation: successPop .5s ease }
.success__icon { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center }
.success h3 { font-family: var(--display); font-weight: 700; font-size: 23px; margin: 0 0 10px }
.success p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 }
.success .btn { margin-top: 22px; font-size: 15px; padding: 14px 26px; gap: 9px }

.formcard__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px }
.formcard__step-label { font-size: 13px; color: var(--muted); font-weight: 500 }
.formcard__step-count { font-size: 13px; color: var(--blue-light); font-weight: 600; font-family: var(--display) }
.formcard__rail { height: 4px; border-radius: 100px; background: var(--hair-2); overflow: hidden; margin-bottom: 30px }
.formcard__bar { height: 100%; border-radius: 100px; background: var(--blue); width: 16.666%; transition: width .4s cubic-bezier(.2, .7, .2, 1) }

.fstep label, .fstep__legend { display: block; font-family: var(--display); font-weight: 600; font-size: 19px; margin-bottom: 16px }
.fstep input {
  width: 100%; padding: 15px 16px; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14); background: var(--bg);
  color: #fff; font-size: 16px; outline: none;
}
.fstep input:focus { border-color: var(--blue) }
.fstep__note { color: var(--dim); font-size: 13px; margin: 10px 0 0 }
.fstep__note--top { font-size: 13.5px; margin: 0 0 16px }
.fstep__legend:has(+ .fstep__note--top) { margin-bottom: 6px }
.fstep__error { color: #f87171; font-size: 14px; margin: 14px 0 0 }

.opts { display: flex; flex-direction: column; gap: 9px }
.opt {
  width: 100%; text-align: left; padding: 14px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 500; cursor: pointer; transition: all .2s;
  border: 1px solid rgba(255, 255, 255, .12); background: var(--bg); color: var(--muted);
}
.opt.is-selected { border-color: var(--blue); background: rgba(37, 99, 235, .16); color: #fff }

.formcard__actions { display: flex; gap: 10px; margin-top: 26px }
.formcard__actions .btn--blue { padding: 15px; font-size: 16px }
.formcard__actions .btn--blue:hover { transform: none }
.formcard__privacy { text-align: center; color: var(--dim); font-size: 12.5px; margin: 18px 0 0; display: flex; align-items: center; justify-content: center; gap: 7px }

/* ---------- CTA final ---------- */
.cta-wrap { position: relative; padding: 0 var(--gutter) clamp(60px, 8vw, 100px) }
.cta { position: relative; max-width: 1280px; margin: 0 auto; padding: clamp(50px, 9vw, 110px) clamp(28px, 5vw, 80px); border-radius: 18px; background: var(--blue); overflow: hidden }
.cta__ring { position: absolute; bottom: -180px; right: -80px; opacity: .22; pointer-events: none }
.cta__body { position: relative; z-index: 2; max-width: 760px }
.cta__title { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 6vw, 72px); line-height: .98; letter-spacing: -2.5px; margin: 0 }
.cta__lead { color: #cdddff; font-size: clamp(16px, 2vw, 19px); line-height: 1.6; max-width: 520px; margin: 24px 0 0 }
.cta__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px }
.cta__note { color: #bcd2ff; font-size: 14px; margin: 26px 0 0 }

/* ---------- rodapé ---------- */
.footer { position: relative; border-top: 1px solid var(--hair); padding: clamp(56px, 7vw, 80px) var(--gutter) 36px }
.footer__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px }
.footer__brand { min-width: 220px }
.footer__brand > p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 20px 0 0; max-width: 280px }
.footer__brand .logo__text { font-size: 20px }
.footer__social { display: flex; gap: 10px; margin-top: 24px }
.social { width: 42px; height: 42px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, .14); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .25s, background .25s, border-color .25s }
.social--wa:hover { color: var(--ink); background: var(--wa); border-color: var(--wa) }
.social--ig:hover { color: #fff; background: var(--blue); border-color: var(--blue) }
.footer__col { display: flex; flex-direction: column; gap: 12px }
.footer__col h4 { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin: 0 0 6px }
.footer__col a, .footer__col span { color: var(--muted); text-decoration: none; font-size: 15px; transition: color .2s }
.footer__col a:hover { color: #fff }
.footer__bottom { max-width: 1280px; margin: 48px auto 0; padding-top: 26px; border-top: 1px solid var(--hair); color: var(--dim); font-size: 13.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 250;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  animation: pulseWa 2.6s ease-out infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08) }

/* ===========================================================
   Responsivo
   =========================================================== */

/* Serviços deixa de ser scroll horizontal e vira empilhado.
   `!important` porque o JS escreve height/transform inline. */
@media (max-width: 820px) {
  .hpin { height: auto !important }
  .hsticky { position: static; height: auto; overflow: visible; display: block; padding: clamp(56px, 8vw, 80px) var(--gutter) }
  .htrack { flex-direction: column; transform: none !important; width: 100%; padding: 0; gap: 16px }
  .hintro { width: 100%; padding-right: 0 }
  .scard { width: 100%; height: auto; min-height: 300px; gap: 40px }
  .step { position: static; margin-bottom: 18px }
  .hprogress { display: none }
  /* o protótipo não previa estas quebras — sem elas o conteúdo fica espremido */
  .contact__inner { grid-template-columns: 1fr }
  .footer__grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 720px) {
  .testimonial { grid-template-columns: 1fr }
  .testimonial__metric { border-left: none; border-top: 1px solid var(--hair-2); padding-left: 0; padding-top: 28px }
}

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr }
  .footer__bottom { flex-direction: column; gap: 6px }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .spin, .marquee__track, .cycle__word, .wa-float, .success { animation: none }
  .cycle__word:not(:first-child) { display: none }
  .js [data-anim="up"], .js .line > span { opacity: 1; transform: none; transition: none }
  .cursor { display: none }
}
