:root {
  --navy: #0a1128;
  --navy-deep: #070b1a;
  --royal: #3b5bff;
  --royal-soft: #eaeeff;
  --gold: #b6924f;
  --gold-soft: #f4ecdb;
  --band: #eef1f9;
  --edge: #e0e3ef;
  --body-text: #383d4d;
  --stone: #6b7086;
  --white: #ffffff;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, .logo, .stat-n, .stat-big, .plan-price, .plan-name,
.pilar-h, .d-h, .step-h, .badge, .floater-t {
  font-family: 'Space Grotesk', sans-serif;
}

a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
svg { flex: none; }
svg[stroke-width] { stroke-width: 1.75; }

.stat-n, .stat-big, .plan-price, .plan-price span {
  font-variant-numeric: tabular-nums;
}

/* subtle film-grain overlay, used on the navy sections */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* numbered section kicker (01, 02, 03…) */
.kicker {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: inherit;
}
.kicker-n {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--royal);
}
.kicker-t {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
}
.kicker-dark .kicker-n, .kicker-dark .kicker-t { color: #8b9bdd; }

.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--royal);
  text-transform: uppercase;
}
.eyebrow-dark { color: #8b9bdd; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, #5470ff, var(--royal) 55%, #2d47e0); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(59,91,255,0.35); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,17,40,0.18); }
.btn-sm { padding: 10px 22px; font-size: 14px; border-radius: 6px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 17px; }
.btn-block { display: block; width: 100%; text-align: center; padding: 14px; font-size: 15px; margin-top: 24px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px clamp(20px, 6vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { font-weight: 700; font-size: 17px; color: #fff; }
.logo span { color: #8b9bdd; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: #c7cce3;
  font-size: 14px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.18s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--royal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }

/* ---------- section shells ---------- */
section { padding: 90px clamp(20px, 6vw, 100px); position: relative; }
.section-head { text-align: left; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--navy);
  margin: 14px 0 0;
}
.section-head p { font-size: 16px; line-height: 1.5; color: #4a5164; margin-top: 14px; max-width: 560px; }
/* section heads share the same column width as the grid below them,
   so the heading's left edge lines up with the cards' left edge. */
.section-head-wide { max-width: 1080px; }
.section-head-mid { max-width: 920px; }
.section-head-narrow { max-width: 720px; }
/* a soft seam between stacked sections instead of a hard color cut */
.seam { border-top: 1px solid rgba(10,17,40,0.06); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 90px clamp(20px, 6vw, 100px) 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -180px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,255,0.35) 0%, rgba(59,91,255,0) 70%);
  pointer-events: none;
  will-change: transform;
}
.hero-inner { position: relative; max-width: 760px; }
.hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.05;
  margin: 18px 0 0;
  letter-spacing: -0.01em;
}
.accent { color: var(--royal); }
.hero-p { font-size: 18px; line-height: 1.55; max-width: 620px; margin-top: 24px; color: #d6dae8; }
.hero-cta { display: flex; align-items: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-cta-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-note { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #93a0d1; }
.cta-note svg { flex: none; }
.cta-note-dark { color: #8b95bd; margin: 14px auto 0; justify-content: center; }
.hero-stats { display: flex; gap: 28px; }
.stat-n-row { display: flex; align-items: center; gap: 8px; }
.stat-n { font-weight: 700; font-size: 22px; color: #fff; }
.stat-l { font-size: 12px; color: #93a0d1; margin-top: 2px; }
.spark { flex: none; opacity: 0.9; }

/* ---------- resumo executivo ---------- */
.resumo {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 26px clamp(20px, 6vw, 100px);
}
.resumo-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.resumo-item { display: flex; align-items: flex-start; gap: 10px; }
.resumo-item svg { flex: none; margin-top: 2px; color: var(--royal); }
.resumo-item p { margin: 0; font-size: 13.5px; line-height: 1.45; color: #c7cce3; }

/* ---------- para quem ---------- */
.paraquem { background: linear-gradient(180deg, #f6f8fc 0%, var(--band) 100%); }
.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 48px;
  max-width: 920px;
  margin: 0 auto;
}
.quem-item { display: flex; align-items: center; gap: 14px; }
.quem-item p { margin: 0; font-size: 15px; color: var(--body-text); }

.naopara { max-width: 680px; margin: 56px auto 0; padding-top: 40px; border-top: 1px solid var(--edge); text-align: center; }
.naopara-h { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: var(--stone); }
.naopara-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; text-align: left; }
.naopara-item { display: flex; align-items: center; gap: 12px; }
.naopara-item p { margin: 0; font-size: 14.5px; color: var(--stone); }
.naopara-x {
  flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: #e7e9f0; color: #8990a3;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- floating CTA cards ---------- */
.floater-wrap { padding: 0 clamp(20px, 6vw, 100px); margin-top: -28px; position: relative; z-index: 2; }
.floater {
  border-radius: 16px;
  padding: 32px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.floater-blue { background: var(--royal); box-shadow: 0 20px 40px rgba(59,91,255,0.28); }
.floater-navy { background: var(--navy); box-shadow: 0 20px 40px rgba(10,17,40,0.25); }
.floater-t { font-weight: 600; font-size: 19px; color: #fff; }

/* ---------- pilares ---------- */
.pilares {
  background-image: radial-gradient(#e0e3ef 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  padding-top: 120px;
  padding-bottom: 120px;
}
.pilar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; }
.pilar-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10,17,40,0.05), 0 12px 28px rgba(10,17,40,0.08);
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pilar-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(10,17,40,0.06), 0 18px 38px rgba(10,17,40,0.14); }
.pilar-h { font-weight: 700; font-size: 19px; color: var(--navy); margin-top: 16px; }
.pilar-t { font-size: 14px; line-height: 1.5; color: #4a5164; margin-top: 8px; }

/* ---------- comparativo ---------- */
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; margin: 0 auto; }
.comp-col { border-radius: 16px; padding: 32px; }
.comp-sem { background: var(--band); }
.comp-com { background: var(--royal-soft); }
.comp-label {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
}
.comp-sem .comp-label { color: var(--stone); }
.comp-com .comp-label { color: var(--royal); }
.comp-item {
  font-size: 14.5px; line-height: 1.5; padding: 14px 0;
  color: var(--body-text);
}
.comp-item + .comp-item { border-top: 1px solid rgba(10,17,40,0.08); }

/* ---------- destrava ---------- */
.destrava { background: linear-gradient(180deg, var(--band) 0%, #e9edf8 100%); }
.destrava-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.destrava-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(10,17,40,0.04), 0 8px 20px rgba(10,17,40,0.06);
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.destrava-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(10,17,40,0.05), 0 14px 30px rgba(10,17,40,0.12); }
.badge {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.d-h { font-weight: 600; font-size: 16px; line-height: 1.3; color: var(--navy); margin-top: 14px; }
.d-t { font-size: 13.5px; line-height: 1.45; color: #4a5164; margin-top: 10px; }

/* ---------- como funciona ---------- */
.steps { position: relative; }
.steps-line {
  position: absolute; top: 34px; left: 90px; right: 90px; height: 2px;
  background: var(--edge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.4,0,.2,1);
}
.steps-line.is-drawn { transform: scaleX(1); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 0; }
.step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-dot {
  position: relative;
  width: 68px; height: 68px; border-radius: 50%;
  background: #fff; border: 2px solid var(--royal);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-dot:hover, .step-dot[aria-expanded="true"] { transform: scale(1.06); box-shadow: 0 8px 20px rgba(59,91,255,0.25); }
.step-dot-filled { background: var(--royal); }
.step-n { font-weight: 700; font-size: 12px; color: var(--royal); margin-top: 16px; }
.step-h { font-weight: 700; font-size: 17px; color: var(--navy); margin-top: 6px; }
.step-t { font-size: 13px; line-height: 1.45; color: var(--stone); margin-top: 8px; }

/* storyboard popups */
.step-popup {
  position: absolute;
  bottom: calc(100% + 18px);
  left: 50%;
  width: 240px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(10,17,40,0.2);
  padding: 16px;
  text-align: left;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.step-popup::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
.step:hover .step-popup,
.step-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mock-label {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 10px;
}
.mock-chat { display: flex; flex-direction: column; gap: 8px; }
.mock-bubble { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; line-height: 1.4; padding: 8px 10px; border-radius: 10px; }
.mock-bubble-a { background: var(--royal-soft); color: var(--navy); }
.mock-bubble-b { background: var(--band); color: var(--body-text); margin-left: 18px; }
.mock-avatar {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
}
.mock-avatar-a { background: var(--royal); }
.mock-avatar-b { background: var(--navy); }
.mock-chart { display: flex; align-items: flex-end; gap: 8px; height: 56px; }
.mock-bar { flex: 1; background: var(--royal); border-radius: 4px 4px 0 0; opacity: 0.85; }
.mock-caption { font-size: 10.5px; color: var(--stone); margin-top: 8px; }
.mock-action { display: flex; align-items: flex-start; gap: 10px; }
.mock-check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--royal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex: none;
}
.mock-action-t { font-weight: 600; font-size: 13px; color: var(--navy); }
.mock-action-d { font-size: 11.5px; color: var(--stone); margin-top: 2px; }
.mock-doc-h { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 12px; color: var(--navy); margin-bottom: 10px; }
.mock-doc-line { height: 7px; background: var(--edge); border-radius: 4px; margin-bottom: 7px; }
.mock-doc-line.short { width: 60%; margin-bottom: 0; }

/* ---------- resultado ---------- */
.resultado { position: relative; background: var(--navy); padding-top: 110px; padding-bottom: 110px; }
.stat-row {
  display: flex; gap: 20px;
  max-width: 1080px; margin: 0 auto 20px;
}
.stat-row .stat-card { flex: 1; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
.stat-card, .testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15), 0 14px 30px rgba(0,0,0,0.2);
  transition: background 0.22s ease, border-color 0.22s ease;
}
.stat-card:hover, .testi-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); }
.stat-big-row { display: flex; align-items: center; gap: 10px; }
.stat-big { font-weight: 700; font-size: 44px; color: var(--royal); margin-top: 12px; }
.stat-label { font-size: 14px; color: #c7cce3; margin-top: 6px; }
.testi-quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 700; line-height: 1;
  color: var(--royal); opacity: 0.5;
  display: block; margin-bottom: -6px;
}
.testi-q { font-family: 'Public Sans', sans-serif; font-style: italic; font-size: 15px; line-height: 1.55; color: #dfe2f0; margin: 12px 0 0; }
.testi-who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(59,91,255,0.25); flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 11.5px; color: #c7cce3;
}
.who-name { font-weight: 600; font-size: 13px; color: #8b9bdd; }

/* ---------- oferta ---------- */
.oferta { padding-bottom: 110px; }
.vagas-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.vagas-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--royal-soft);
  color: var(--royal);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
}
.stamp {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  outline: 1px solid var(--gold);
  outline-offset: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; align-items: start; }
.plan-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--edge);
  box-shadow: 0 1px 2px rgba(10,17,40,0.04), 0 10px 24px rgba(10,17,40,0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(10,17,40,0.05), 0 16px 32px rgba(10,17,40,0.1); }
.plan-featured {
  border-radius: 18px;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 6px rgba(182,146,79,0.15), 0 18px 40px rgba(182,146,79,0.22);
  padding: 38px 32px;
  position: relative;
  margin-top: 0;
  transform: translateY(-24px);
}
.plan-featured:hover { transform: translateY(-28px); box-shadow: 0 3px 8px rgba(182,146,79,0.18), 0 22px 46px rgba(182,146,79,0.26); }
.plan-tag {
  position: absolute; top: -14px; left: 32px;
  background: var(--gold); color: #fff;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan-featured .plan-price { color: var(--navy); }
.plan-name { font-weight: 700; font-size: 18px; color: var(--navy); }
.plan-featured .plan-name { font-size: 19px; }
.plan-price { font-weight: 700; font-size: 36px; color: var(--navy); margin-top: 10px; }
.plan-featured .plan-price { font-size: 42px; }
.plan-price span { font-family: 'Public Sans', sans-serif; font-weight: 500; font-size: 14px; color: var(--stone); }
.plan-price .cur { font-family: 'Public Sans', sans-serif; font-weight: 600; font-size: 16px; color: var(--stone); vertical-align: super; margin-right: 1px; }
.plan-list { margin: 20px 0 0; flex: 1; }
.plan-featured .plan-list { margin-top: 22px; }
.plan-list li {
  font-size: 14px; color: var(--body-text);
  padding: 10px 0;
  display: flex; gap: 10px;
}
.plan-list li:not(:first-child) { border-top: 1px solid var(--edge); }
.plan-list li::before { content: '✓'; color: var(--royal); font-weight: 700; }

/* ---------- faq ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--edge); }
.faq-item:first-child { border-top: 1px solid var(--edge); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 22px 4px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px;
  color: var(--navy);
  text-align: left;
}
.faq-icon {
  flex: none;
  font-family: 'Public Sans', sans-serif; font-weight: 400; font-size: 20px;
  color: var(--royal);
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { margin: 0 4px 20px; font-size: 14.5px; line-height: 1.55; color: #4a5164; max-width: 620px; }
.faq-item.is-open .faq-a { max-height: 200px; }

/* ---------- sticky mobile CTA bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -8px 24px rgba(10,17,40,0.25);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.mobile-bar.is-hidden { transform: translateY(100%); }
.mobile-bar-t { font-size: 13px; color: #d6dae8; flex: 1; }

/* ---------- final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.final-glow {
  position: absolute;
  bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,255,0.28) 0%, rgba(59,91,255,0) 70%);
  pointer-events: none;
}
.final-inner { position: relative; }
.final-inner h2 { font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.3; max-width: 560px; margin: 0 auto; }
.final-inner p { font-size: 16px; color: #c7cce3; margin-top: 16px; }
.final-inner .btn { margin-top: 32px; gap: 10px; }

/* ---------- share strip ---------- */
.share-strip {
  background: var(--navy-deep);
  padding: 22px clamp(20px, 6vw, 100px);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.share-t { font-size: 13.5px; color: #9aa1b8; }
.share-strip .btn { padding: 9px 18px; font-size: 13px; }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 55;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10,17,40,0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--royal); }

/* ---------- footer ---------- */
.footer {
  background: var(--navy-deep);
  padding: 48px clamp(20px, 6vw, 100px) 28px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  max-width: 1280px; margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 15px; }
.footer-brand .footer-note { margin-top: 8px; max-width: 260px; }
.footer-nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #8b93bb; margin-bottom: 2px;
}
.footer-col a { font-size: 13px; color: #b3b9d1; transition: color 0.18s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-note { font-size: 12px; color: #8890a8; }
.footer-link { font-size: 12px; color: #8b9bdd; text-decoration: underline; text-underline-offset: 2px; }
.footer-link:hover { color: #fff; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.quem-grid .reveal:nth-child(2n) { transition-delay: 0.05s; }
.pilar-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.pilar-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.destrava-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.destrava-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.destrava-grid .reveal:nth-child(5) { transition-delay: 0.06s; }
.destrava-grid .reveal:nth-child(6) { transition-delay: 0.12s; }
.step:nth-child(2) { transition-delay: 0.08s; }
.step:nth-child(3) { transition-delay: 0.16s; }
.step:nth-child(4) { transition-delay: 0.24s; }
.plans .reveal:nth-child(2) { transition-delay: 0.08s; }
.plans .reveal:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pilar-card, .destrava-card, .plan-card { transition: none; }
  .steps-line { transition: none; transform: scaleX(1); }
  .step-popup { transition: none; }
  .faq-a, .faq-icon, .mobile-bar { transition: none; }
  .back-to-top { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .stat-row { flex-direction: column; }
  .plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; margin-top: 24px; }
  .plan-featured:hover { transform: translateY(-4px); }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .step { margin-bottom: 12px; }
  .comp-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 64px; }
  .mobile-bar { display: flex; }
  .back-to-top { bottom: 76px; right: 16px; }
  .resumo-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { gap: 24px; }
}

@media (max-width: 600px) {
  section { padding: 60px 20px; }
  .pilares, .resultado { padding-top: 72px; padding-bottom: 72px; }
  .quem-grid { grid-template-columns: 1fr; }
  .pilar-grid, .destrava-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
  .hero-cta { gap: 20px; }
  .floater { padding: 24px 28px; }
  .footer-nav { gap: 28px; }

  /* Narrow columns can't fit a floating popup without clipping —
     it expands inline instead, pushing content down. */
  .step-popup {
    position: static;
    align-self: stretch;
    width: auto; max-width: none;
    margin-top: 0;
    max-height: 0;
    padding-top: 0; padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease, padding 0.3s ease;
  }
  .step-popup::after { display: none; }
  .step:hover .step-popup, .step-popup.is-open {
    max-height: 320px;
    opacity: 1;
    margin-top: 14px;
    padding-top: 16px; padding-bottom: 16px;
    transform: none;
  }
}
