/* =================================================================
   JayMessage Landing — autêntico, persuasivo, vivo.
   ================================================================= */

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-feature-settings: 'ss01', 'ss02', 'cv01';
  font-size: 16px;
  line-height: 1.55;
  color: #0e1a33;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
em { font-style: italic; font-family: 'Plus Jakarta Sans', serif; font-weight: 500; }

/* ---------- Design tokens ---------- */
:root {
  --jay: #3059ac;
  --jay-deep: #1f3d80;
  --jay-darker: #112553;
  --jay-darkest: #0a173a;
  --jay-soft: #5a82d4;
  --jay-pale: #e8eef9;
  --jay-paler: #f3f6fc;
  --ink: #0e1a33;
  --ink-soft: #36476b;
  --ink-mute: #6a7a99;
  --line: #e3e8f1;
  --line-soft: #eef1f7;
  --bg-white: #ffffff;
  --bg-cream: #fafbfd;
  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 40px -10px rgba(15, 35, 80, 0.12);
  --shadow-strong: 0 30px 80px -20px rgba(15, 35, 80, 0.35);
  --shadow-blue: 0 18px 60px -10px rgba(48, 89, 172, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emph: cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-primary {
  background: var(--jay);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 70px -10px rgba(48,89,172,.75); }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--jay-darker); box-shadow: 0 18px 60px -10px rgba(0,0,0,.4); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 24px 70px -10px rgba(0,0,0,.5); }

/* CTA de destaque sobre fundo escuro/azul — branco com halo de luz vivo */
.btn-glow {
  background: #fff;
  color: var(--jay-darker);
  box-shadow:
    0 12px 36px -8px rgba(0,0,0,.42),
    inset 0 0 0 1px rgba(255,255,255,.6),
    0 0 30px -4px rgba(150,190,255,.55);
  animation: btn-glow-pulse 2.8s ease-in-out infinite;
}
.btn-glow svg { color: var(--jay); }
.btn-glow:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow:
    0 18px 48px -8px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.7),
    0 0 56px 2px rgba(160,200,255,.9);
}
@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow:
      0 12px 36px -8px rgba(0,0,0,.42),
      inset 0 0 0 1px rgba(255,255,255,.6),
      0 0 26px -6px rgba(150,190,255,.45);
  }
  50% {
    box-shadow:
      0 12px 36px -8px rgba(0,0,0,.42),
      inset 0 0 0 1px rgba(255,255,255,.6),
      0 0 52px 0 rgba(160,200,255,.85);
  }
}

.btn-outline-white { color: #fff; border: 1.5px solid rgba(255,255,255,.4); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.link-ghost {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background .25s, color .25s, border-color .25s;
}
.link-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition:
    padding .3s var(--ease),
    background .3s,
    backdrop-filter .3s,
    box-shadow .3s,
    border-color .3s,
    transform .55s var(--ease-emph),
    opacity .45s var(--ease-emph);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  opacity: 1;
}
.nav.nav-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 24px -16px rgba(15,35,80,.18);
  border-bottom-color: rgba(15,35,80,.06);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 32px;
}
.nav-logo-img {
  height: 100%;
  width: auto;
  display: block;
  transition: opacity .3s;
}
.nav-logo-dark { position: absolute; inset: 0; opacity: 0; }
.nav.scrolled .nav-logo-light { opacity: 0; }
.nav.scrolled .nav-logo-dark  { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--jay); background: var(--jay-pale); }
.nav-cta { display: flex; align-items: center; gap: 6px; }
.nav.scrolled .link-ghost { color: var(--ink-soft); border-color: var(--line); }
.nav.scrolled .link-ghost:hover { color: var(--jay); background: var(--jay-pale); border-color: transparent; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 92px 0 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a173a 0%, #112553 35%, #1f3d80 75%, #2a4a98 100%);
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  opacity: .9;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #3059ac 0%, transparent 60%);
  top: -150px; left: -120px;
  animation: float-slow 18s ease-in-out infinite;
}
.hero-glow-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #5a82d4 0%, transparent 60%);
  bottom: -180px; right: -100px;
  animation: float-slow 22s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #4c75c8 0%, transparent 60%);
  top: 35%; left: 55%;
  opacity: .35;
  animation: float-slow 16s ease-in-out infinite;
}
@keyframes float-slow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.dot-live {
  width: 8px; height: 8px;
  background: #5cf18a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92,241,138,.2);
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 4px rgba(92,241,138,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(92,241,138,.05); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.hero-title-italic {
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
  background: linear-gradient(120deg, #ffffff 0%, #b9cdf2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title-accent {
  display: inline-block;
  background: linear-gradient(180deg, #c8dcff 0%, #6f9cea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  margin-bottom: 22px;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-price-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  color: rgba(255,255,255,.82);
}
.hero-price-hint svg { color: #5cf18a; flex-shrink: 0; }
.hero-price-hint strong { color: #fff; font-weight: 700; }
.hero-price-hint em {
  font-style: italic;
  color: #c8dcff;
  font-family: 'Plus Jakarta Sans', serif;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #1c357a;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 14px;
  margin-left: -10px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-stars { color: #ffc847; font-size: 14px; letter-spacing: 1px; }
.trust-text { font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.3; }
.trust-text strong { color: #fff; }

/* ---- Plane stage ---- */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.plane-stage {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
}
.plane-orbit {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(255,255,255,.16);
  border-radius: 50%;
}
.plane-orbit-mid { inset: 12%; border-style: dotted; border-color: rgba(255,255,255,.13); }
.plane-orbit-inner { inset: 24%; border-color: rgba(255,255,255,.10); }
.plane-orbit-outer { animation: spin-slow 50s linear infinite; }
.plane-orbit-mid   { animation: spin-slow 35s linear infinite reverse; }
.plane-orbit-inner { animation: spin-slow 25s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.plane-chip {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.85);
  display: grid; place-items: center;
  animation: chip-float 6s ease-in-out infinite;
}
.plane-chip-1 { top: 8%; left: 6%; }
.plane-chip-2 { top: 18%; right: 4%; animation-delay: -2s; }
.plane-chip-3 { bottom: 22%; right: 12%; animation-delay: -4s; }
@keyframes chip-float {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(6px,-10px); }
}

.plane-path { position: absolute; inset: 0; overflow: visible; }
.plane-path-line {
  stroke-dashoffset: 0;
  animation: dash-march 4s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.4));
}
@keyframes dash-march {
  to { stroke-dashoffset: -56; }
}

.plane {
  position: absolute;
  top: 26%; right: 16%;
  width: 42%;
  filter: drop-shadow(0 24px 46px rgba(0,0,0,.45)) drop-shadow(0 4px 12px rgba(48,89,172,.25));
  animation: plane-sway 5.5s ease-in-out infinite;
  /* pivô na cauda do avião — a ponta da linha conecta aqui e fica fixa */
  transform-origin: 56% 95%;
}
.plane svg { width: 100%; height: auto; }
@keyframes plane-sway {
  0%,100% { transform: rotate(-5deg); }
  50%     { transform: rotate(5deg); }
}

/* Floating bubble notifications */
.bubble {
  position: absolute;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.35);
  min-width: 200px;
  animation: bubble-float 6s ease-in-out infinite;
}
.bubble-time {
  font-size: 11px;
  color: var(--jay);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bubble-icon { width: 14px; height: 14px; flex-shrink: 0; }
.bubble-text {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.35;
}
.bubble-1 { top: 4%; right: -10%; animation-delay: 0s; }
.bubble-2 { bottom: 18%; left: -14%; animation-delay: -2s; }
.bubble-3 { bottom: -4%; right: -4%; animation-delay: -4s; }
@keyframes bubble-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

.plane-stats {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: 20px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.stat-suffix { color: #b9cdf2; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,.65); margin-top: 6px; line-height: 1.3; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: #fff;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(400%); opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  animation: marquee-scroll 35s linear infinite;
  width: max-content;
}
.marquee-track span { display: inline-flex; }
.m-dot { color: var(--jay-soft); font-size: 8px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION EYEBROW (shared)
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-num {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.eyebrow-light { color: var(--jay); }
.eyebrow-light .eyebrow-num { background: var(--jay-pale); color: var(--jay); }
.eyebrow-dark { color: rgba(255,255,255,.85); }
.eyebrow-dark .eyebrow-num { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18); }

/* ============================================================
   PAIN
   ============================================================ */
.pain {
  position: relative;
  background: var(--bg-cream);
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.pain-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(48,89,172,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}
.pain .container { position: relative; }
.pain-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 64px;
  color: var(--ink);
}
.pain-title em {
  color: var(--jay);
  background: linear-gradient(180deg, transparent 60%, rgba(48,89,172,.15) 60%);
  padding: 0 8px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--jay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(48,89,172,.25);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-card-highlight {
  background: linear-gradient(180deg, #0e1a33 0%, #1f3d80 100%);
  color: #fff;
  border-color: transparent;
}
.pain-card-highlight::before { background: #fff; }
/* generic Lucide-style inline icons */
.icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
  vertical-align: middle;
}

.pain-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--jay-pale);
  color: var(--jay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.pain-icon svg { width: 24px; height: 24px; }
.pain-card-highlight .pain-icon {
  background: rgba(255, 200, 71, .15);
  color: #ffc847;
}
.pain-card:hover .pain-icon {
  background: var(--jay);
  color: #fff;
}
.pain-card-highlight:hover .pain-icon {
  background: #ffc847;
  color: var(--jay-darkest);
}
.pain-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.pain-card-highlight p { color: rgba(255,255,255,.75); }

.pain-conclusion {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}
.pain-conclusion svg { flex-shrink: 0; color: var(--jay); }
.pain-conclusion p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pain-conclusion strong { color: var(--jay); font-weight: 700; }

/* ============================================================
   MODOS (dark section)
   ============================================================ */
.modos {
  position: relative;
  background: linear-gradient(180deg, #0a173a 0%, #112553 100%);
  color: #fff;
  padding: clamp(90px, 14vw, 160px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.modos-bg { position: absolute; inset: 0; pointer-events: none; }
.modos-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.modos-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .45;
}
.modos-bg-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3059ac 0%, transparent 60%);
  top: -100px; right: -150px;
}
.modos-bg-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #5a82d4 0%, transparent 60%);
  bottom: -100px; left: -100px;
}
.modos .container { position: relative; }
.modos-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.modos-title-accent {
  background: linear-gradient(120deg, #c8dcff 0%, #6f9cea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
}
.modos-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 64px;
  line-height: 1.55;
}

.modos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.modo-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.modo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 200%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.05) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
}
.modo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
}
.modo-card:hover::after { transform: translateX(0); }

.modo-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.modo-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--jay) 0%, var(--jay-darker) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 24px -6px rgba(48,89,172,.5);
}
.modo-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.modo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.modo-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}
.modo-desc strong { color: #fff; font-weight: 600; }

.modo-demo {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Demo: date */
.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  padding: 8px 0;
}
.demo-label { color: rgba(255,255,255,.55); }
.demo-value { color: #fff; font-weight: 500; }
.demo-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.demo-bar-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--jay-soft), #fff);
  border-radius: 2px;
  animation: bar-grow 4s ease-in-out infinite;
}
@keyframes bar-grow {
  0%,100% { width: 25%; }
  50%     { width: 65%; }
}
.demo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #5cf18a;
  margin-top: 12px;
}
.demo-pulse {
  width: 8px; height: 8px;
  background: #5cf18a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92,241,138,.2);
  animation: pulse-live 1.6s ease-in-out infinite;
}

/* Demo: cake */
.cake-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cake-row:last-child { border-bottom: none; }
.cake-ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(48,89,172,.5), rgba(90,130,212,.4));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cake-ic svg { width: 18px; height: 18px; }
.cake-info { flex: 1; display: flex; flex-direction: column; }
.cake-info strong { font-size: 14px; color: #fff; font-weight: 600; }
.cake-info span { font-size: 12px; color: rgba(255,255,255,.55); }
.cake-status {
  color: #5cf18a;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(92,241,138,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cake-status svg { width: 12px; height: 12px; }
.cake-row-more {
  text-align: center;
  font-size: 12.5px;
  color: var(--jay-soft);
  padding-top: 14px;
  font-weight: 500;
}

/* Demo: week */
.week-days { display: flex; gap: 8px; margin-bottom: 18px; }
.wd {
  flex: 1;
  height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.06);
}
.wd-on {
  background: linear-gradient(135deg, var(--jay), var(--jay-soft));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px -4px rgba(48,89,172,.5);
}
.week-rows { display: flex; flex-direction: column; gap: 8px; }
.week-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.wr-day { color: rgba(255,255,255,.85); font-weight: 500; }
.wr-time { color: var(--jay-soft); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Demo: loop */
.modo-demo-loop {
  display: flex;
  align-items: center;
  gap: 24px;
}
.loop-ring {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.18);
  display: grid; place-items: center;
  animation: spin-slow 8s linear infinite;
  flex-shrink: 0;
}
.loop-center {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 1;
  animation: spin-slow 8s linear infinite reverse;
}
.loop-center small { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 500; }
.loop-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--jay-soft);
  box-shadow: 0 0 12px var(--jay-soft);
}
.loop-dot-1 { top: -5px; left: 50%; transform: translateX(-50%); }
.loop-dot-2 { right: -5px; top: 50%; transform: translateY(-50%); background: #5cf18a; box-shadow: 0 0 12px #5cf18a; }
.loop-dot-3 { bottom: -5px; left: 50%; transform: translateX(-50%); }
.loop-dot-4 { left: -5px; top: 50%; transform: translateY(-50%); }
.loop-info { flex: 1; }
.loop-msg {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.loop-msg-ic { width: 18px; height: 18px; color: #5cf18a; flex-shrink: 0; }
.loop-next { font-size: 12px; color: rgba(255,255,255,.55); }

/* ============================================================
   DESTINOS — sincronizar, pastas, disparar
   ============================================================ */
.destinos {
  position: relative;
  background: linear-gradient(180deg, #f3f6fc 0%, #e8eef9 100%);
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.destinos-bg { position: absolute; inset: 0; pointer-events: none; }
.destinos-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(48,89,172,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 70% 50%, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, #000 25%, transparent 70%);
}
.destinos-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48,89,172,.15), transparent 70%);
  filter: blur(80px);
  top: -120px; right: -150px;
  animation: float-slow 24s ease-in-out infinite;
}
.destinos-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.destinos-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 28px;
  color: var(--ink);
}
.destinos-title-accent {
  position: relative;
  color: var(--jay);
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
}
.destinos-title-accent::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 6%;
  height: 14%;
  background: rgba(48,89,172,.15);
  border-radius: 4px;
  z-index: -1;
}
.destinos-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.destinos-sub strong { color: var(--jay-darker); font-weight: 600; }
.destinos-disclaimer {
  display: inline-block;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-mute);
  padding: 10px 14px;
  background: rgba(48, 89, 172, .06);
  border-left: 3px solid var(--jay);
  border-radius: 8px;
}
.destinos-disclaimer em { font-style: italic; color: var(--jay-darker); }

.destinos-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dest-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(48,89,172,.1);
  border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.dest-feat:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 32px -10px rgba(48,89,172,.18);
  border-color: rgba(48,89,172,.25);
}
.dest-feat-ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--jay);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -4px rgba(48,89,172,.5);
}
.dest-feat-ic svg { width: 20px; height: 20px; }
.dest-feat-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.dest-feat-text span {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ---- Mockup ---- */
.dest-mockup {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow:
    0 40px 90px -20px rgba(15, 35, 80, 0.3),
    0 12px 24px -10px rgba(15, 35, 80, 0.15);
  border: 1px solid rgba(15, 35, 80, .08);
  transform: rotate(-1deg);
  transition: transform .5s var(--ease);
}
.dest-mockup:hover { transform: rotate(0); }
.dest-mockup::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #ffc847, #ffb52f);
  border-radius: 50%;
  filter: blur(28px);
  opacity: .7;
  z-index: -1;
}

.dest-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 14px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.dest-mockup-bar .dot-r,
.dest-mockup-bar .dot-y,
.dest-mockup-bar .dot-g {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dest-mockup-bar .dot-r { background: #ff5f57; }
.dest-mockup-bar .dot-y { background: #febc2e; }
.dest-mockup-bar .dot-g { background: #28c840; }
.dest-mockup-url {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--ink-mute);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--line-soft);
  padding: 4px 12px;
  border-radius: 6px;
}

.dest-sync {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(92,241,138,.1), rgba(92,241,138,.04));
  border: 1px solid rgba(92,241,138,.25);
  border-radius: 12px;
  margin-bottom: 18px;
}
.dest-sync-ic {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #5cf18a;
  color: #06351b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 6s linear infinite;
}
.dest-sync-ic svg { width: 18px; height: 18px; }
.dest-sync-text { flex: 1; }
.dest-sync-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dest-sync-text span {
  font-size: 12px;
  color: var(--ink-mute);
}
.dest-sync-dot {
  width: 8px; height: 8px;
  background: #28c840;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(40,200,64,.2);
  animation: pulse-live 1.6s ease-in-out infinite;
}

.dest-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.dest-section-label-spaced { margin-top: 22px; }

.dest-folders {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dest-folder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s;
}
.dest-folder:hover { border-color: rgba(48,89,172,.4); transform: translateX(2px); }
.dest-folder-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--jay-pale);
  color: var(--jay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dest-folder-ic svg { width: 20px; height: 20px; }
.dest-folder-info { flex: 1; }
.dest-folder-info strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dest-folder-info span {
  font-size: 12px;
  color: var(--ink-mute);
}
.dest-folder-active {
  background: linear-gradient(135deg, var(--jay) 0%, var(--jay-deep) 100%);
  border-color: var(--jay);
  box-shadow: 0 12px 28px -8px rgba(48,89,172,.4);
}
.dest-folder-active .dest-folder-ic {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.dest-folder-active .dest-folder-info strong { color: #fff; }
.dest-folder-active .dest-folder-info span { color: rgba(255,255,255,.75); }
.dest-folder-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dest-folder-arrow svg { width: 14px; height: 14px; }

.dest-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dest-member {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c1, #3059ac), var(--c2, #1f3d80));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.15);
  border: 2px solid #fff;
}
.dest-member-group {
  background: linear-gradient(135deg, #ffc847, #ffb52f);
  color: var(--jay-darkest);
}
.dest-member-group svg { width: 18px; height: 18px; }
.dest-member-more {
  background: var(--line-soft);
  color: var(--ink-soft);
  font-size: 12px;
}

.dest-broadcast {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(48,89,172,.06), rgba(48,89,172,.02));
  border: 1px dashed rgba(48,89,172,.3);
  border-radius: 12px;
}
.dest-broadcast-ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--jay);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
}
.dest-broadcast-ic svg { width: 18px; height: 18px; }
.dest-broadcast-info { flex: 1; }
.dest-broadcast-info strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--jay-darker);
  letter-spacing: -0.01em;
}
.dest-broadcast-info span {
  font-size: 12px;
  color: var(--ink-mute);
}
.dest-broadcast-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #06a035;
  padding: 5px 10px;
  background: rgba(92,241,138,.15);
  border-radius: 999px;
}
.bc-pulse {
  width: 6px; height: 6px;
  background: #06a035;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(6,160,53,.18);
  animation: pulse-live 1.6s ease-in-out infinite;
}

/* ============================================================
   PASSOS
   ============================================================ */
.passos {
  position: relative;
  background: #fff;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.passos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 140px;
  background: radial-gradient(ellipse at center top, rgba(48,89,172,.05) 0%, transparent 70%);
}
.passos-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-bottom: 64px;
}
.passos-title strong { color: var(--jay); font-weight: 700; }
.passos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.passo:not(.passo-arrow) {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.passo:not(.passo-arrow):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(48,89,172,.3);
}
.passo-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--jay-pale);
  margin-bottom: 18px;
}
.passo-icon {
  width: 48px; height: 48px;
  background: var(--jay-pale);
  border-radius: 12px;
  color: var(--jay);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.passo-icon svg { width: 26px; height: 26px; }
.passo h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.passo p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.5; }
.passo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jay);
  opacity: .6;
}
.passo-arrow svg {
  width: 50px;
  animation: arrow-march 2.5s ease-in-out infinite;
}
@keyframes arrow-march {
  0%,100% { transform: translateX(0); opacity: .6; }
  50%     { transform: translateX(4px); opacity: 1; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  position: relative;
  background: #0a173a;
  color: #fff;
  padding: clamp(90px, 13vw, 150px) 0;
  overflow: hidden;
}
.sobre-bg { position: absolute; inset: 0; pointer-events: none; }
.sobre-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
}
.sobre-noise {
  position: absolute; inset: 0;
  opacity: .25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.sobre-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sobre-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 16px 0 32px;
}
.hi-y {
  position: relative;
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
  color: #ffc847;
}
.hi-y::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6%;
  height: 14%;
  background: rgba(255,200,71,.18);
  z-index: -1;
  border-radius: 4px;
}
.sobre-story p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.sobre-story p:last-child { margin-bottom: 0; }
.sobre-story strong { color: #fff; }
.sobre-values {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.value-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #ffffff 0%, #b9cdf2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.sobre-quote {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  backdrop-filter: blur(10px);
}
.quote-mark {
  width: 48px; height: 36px;
  color: rgba(255,200,71,.4);
  margin-bottom: 20px;
}
.sobre-quote p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.sobre-quote footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jay) 0%, var(--jay-soft) 100%);
  flex-shrink: 0;
}
.sobre-quote footer strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.sobre-quote footer small {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}
.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.sobre-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}

/* ============================================================
   CASES — STACKED CARDS ON SCROLL
   ============================================================ */
.cases-anchor { position: relative; top: 0; }
.cases {
  position: relative;
  background: var(--bg-cream);
}
.cases-intro {
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 80px);
}
.cases-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.cases-title em {
  color: var(--jay);
  background: linear-gradient(180deg, transparent 60%, rgba(48,89,172,.15) 60%);
  padding: 0 6px;
}
.cases-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mute);
  max-width: 600px;
}

/* Stack mechanic */
.cases-stack {
  position: relative;
  /* height set by JS: card_count * 100vh */
  height: 400vh;
}
.cases-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-card {
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -20px rgba(15, 35, 80, 0.4);
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  overflow: hidden;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .85s var(--ease-emph), opacity .6s var(--ease-emph);
  border: 1px solid rgba(15,35,80,.05);
}
.case-card.is-current {
  transform: translateY(0);
  opacity: 1;
}
.case-card.is-past {
  transform: translateY(-4%) scale(0.96);
  opacity: 0.45;
}

.case-left {
  position: relative;
  overflow: hidden;
  background: var(--jay-pale);
}
.case-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,23,58,.45) 100%);
  pointer-events: none;
}

.case-right {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  position: relative;
}
.case-right::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jay), var(--jay-soft));
}
.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.case-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jay);
  padding: 6px 14px;
  background: var(--jay-pale);
  border-radius: 999px;
}
.case-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}
.case-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.case-role {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.case-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  padding-left: 18px;
}
.case-quote::before {
  content: '"';
  position: absolute;
  left: -6px; top: -14px;
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 64px;
  color: var(--jay);
  line-height: 1;
  font-weight: 800;
  opacity: .25;
}
.case-results {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.case-results li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.case-results li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--jay-pale);
  border: 2px solid var(--jay);
}
.case-results li::after {
  content: '';
  position: absolute;
  left: 4px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--jay);
  border-bottom: 2px solid var(--jay);
  transform: rotate(-45deg);
}
.case-results strong { color: var(--jay); font-weight: 700; }

/* Progress dots */
.cases-progress {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}
.cp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(15,35,80,.18);
  transition: all .4s var(--ease);
  cursor: pointer;
}
.cp-dot.cp-dot-active {
  background: var(--jay);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(48,89,172,.15);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(135deg, #1f3d80 0%, #3059ac 50%, #1f3d80 100%);
  color: #fff;
  padding: clamp(90px, 14vw, 160px) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.cta-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(40px);
}
.cta-noise {
  position: absolute; inset: 0;
  opacity: .2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.cta .container { position: relative; z-index: 2; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.cta-title-accent {
  background: linear-gradient(120deg, #ffc847 0%, #ffe9a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
}
.cta-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-sub em { color: #fff; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-mini {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
}
.cta-mini-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-mini-item svg {
  width: 16px;
  height: 16px;
  color: #ffc847;
  flex-shrink: 0;
}
.cta-mini-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

/* ============================================================
   CHARM PRICING — reusable price tag (left-digit anchoring)
   "27" dominates, "R$" and ",90" shrink to the top corners.
   ============================================================ */
.price-tag {
  display: inline-flex;
  align-items: flex-start;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 78px);
}
.price-currency {
  font-size: 0.34em;
  font-weight: 700;
  margin-top: 0.26em;
  margin-right: 0.07em;
  letter-spacing: -0.02em;
}
.price-whole { font-size: 1em; }
.price-frac {
  font-size: 0.32em;
  font-weight: 700;
  margin-top: 0.26em;
  letter-spacing: -0.01em;
}
.price-per {
  align-self: flex-end;
  font-size: 0.165em;
  font-weight: 600;
  color: var(--ink-mute);
  margin-left: 0.5em;
  margin-bottom: 0.7em;
  letter-spacing: 0;
}
/* dark-background variant */
.price-tag-light { color: #fff; }
.price-tag-light .price-per { color: rgba(255,255,255,.65); }

/* ============================================================
   PREÇO (landing section)
   ============================================================ */
.preco {
  position: relative;
  background: var(--bg-cream);
  padding: clamp(54px, 8vw, 88px) 0;
  overflow: hidden;
}
.preco-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(48,89,172,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 72%);
  pointer-events: none;
}
.preco .container { position: relative; }
.preco-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.preco-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(27px, 3.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 12px 0 12px;
}
.preco-title em {
  color: var(--jay);
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 600;
}
.preco-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-mute);
  line-height: 1.55;
}

/* Layout: comparison (left) + price card (right) */
.preco-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 880px;
  margin: 0 auto;
}

/* Burger anchoring comparison */
.preco-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.compare-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .4s var(--ease);
}
.compare-card-burger { opacity: .92; }
.compare-card-jay {
  background: linear-gradient(135deg, var(--jay) 0%, var(--jay-deep) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  color: #fff;
}
.compare-card-jay:hover { transform: translateX(6px); }
.compare-emoji {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--jay-pale);
  color: var(--jay);
}
.compare-card-jay .compare-emoji { background: rgba(255,255,255,.15); color: #fff; }
.compare-emoji svg { width: 24px; height: 24px; }
.compare-body { flex: 1; }
.compare-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.compare-card-burger .compare-price {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(220,80,80,.6);
  text-decoration-thickness: 2px;
}
.compare-card-jay .compare-price { color: #fff; }
.compare-label {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.35;
}
.compare-card-jay .compare-label { color: rgba(255,255,255,.8); }
.compare-vs {
  align-self: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-transform: uppercase;
  position: relative;
}

/* Price card */
.preco-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.preco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--jay), var(--jay-soft));
}
.preco-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06a035;
  background: rgba(92,241,138,.15);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.preco-card-badge svg { width: 14px; height: 14px; }
.preco-plan-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.preco-plan-desc { font-size: 13.5px; color: var(--ink-mute); margin-bottom: 14px; }
.preco-price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.preco-perday {
  display: inline-flex;
  flex-direction: column;
  padding: 8px 14px;
  background: var(--jay-pale);
  border-radius: 12px;
  margin-bottom: 8px;
}
.preco-perday strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--jay-darker);
  letter-spacing: -0.01em;
}
.preco-perday span { font-size: 11px; color: var(--jay); font-weight: 600; }
.preco-includes { list-style: none; padding: 0; margin: 0 0 20px; }
.preco-includes li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.preco-includes li strong { color: var(--ink); font-weight: 600; }
.preco-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background-color: var(--jay);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.preco-cta { display: flex; width: 100%; justify-content: center; }
.preco-card-micro {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.preco-card-micro strong { color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e25;
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo img { width: 160px; opacity: .92; }
.footer-tagline {
  margin-top: 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  transition: background .25s, color .25s, transform .25s;
}
.footer-social a:hover {
  background: var(--jay);
  color: #fff;
  border-color: var(--jay);
  transform: translateY(-2px);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--jay-soft); }
.footer-bottom {
  padding: 28px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL ON SCROLL — pure transition, no keyframe animation.
   Transitions are more resilient to browser throttling than
   animations, and the JS guarantees .in is always added.
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-emph), transform .9s var(--ease-emph);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.in { transition-delay: .08s; }
.reveal-delay-2.in { transition-delay: .16s; }
.reveal-delay-3.in { transition-delay: .24s; }
.reveal-delay-4.in { transition-delay: .32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: 2; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .modos-grid { grid-template-columns: 1fr; }
  .destinos-inner { grid-template-columns: 1fr; gap: 50px; }
  .dest-mockup { transform: none; max-width: 580px; margin: 0 auto; }
  .passos-grid { grid-template-columns: 1fr; }
  .passo-arrow { transform: rotate(90deg); padding: 0; }
  .sobre-inner { grid-template-columns: 1fr; gap: 50px; }
  .case-card { grid-template-columns: 1fr; }
  .case-left { aspect-ratio: 16/10; max-height: 40vh; }
  .case-right { padding: 28px; }
  .case-results { padding-top: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .preco-grid { grid-template-columns: 1fr; max-width: 480px; gap: 16px; }
  .preco-card { order: -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta .link-ghost { display: none; }
  .nav-burger { display: flex; color: #fff; }
  .nav.scrolled .nav-burger { color: var(--ink); }
  .hero { padding: 88px 0 48px; min-height: auto; }
  .hero-inner { gap: 30px; }
  .hero-title { font-size: clamp(34px, 10vw, 52px); }
  .hero-right { width: 100%; }
  .plane-stage { width: min(70%, 300px); margin: 0 auto; }
  .plane-chip { display: none; }
  .bubble { display: none; }
  .hero-scroll-hint { display: none; }
  .preco { padding: 52px 0; }
  .preco-compare { gap: 12px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-conclusion { flex-direction: column; text-align: center; padding: 28px 24px; }
  .modo-card { padding: 28px 24px; }
  .modo-demo-loop { flex-direction: column; align-items: flex-start; }
  .loop-ring { margin: 0 auto; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom-inner { flex-direction: column; }
  .cases-progress { right: 14px; }
  .cp-dot { width: 8px; height: 8px; }
  .case-card { inset: 12px; }
  .case-quote { font-size: 16px; }
  .plane-stats { padding: 14px 18px; }
  .stat-num { font-size: 22px; }
}
@media (max-width: 480px) {
  .plane-stage { width: min(76%, 240px); }
  .plane-stats { gap: 12px; padding: 14px 12px; }
  .stat-num { font-size: 19px; }
  .stat-label { font-size: 10px; }
  .price-tag { font-size: 50px; }
  .preco-price-row { gap: 10px 14px; }
}

/* ============================================================
   BACK TO TOP — botão flutuante discreto (auto-injetado por JS)
   ============================================================ */
.back-to-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(48, 89, 172, 0.9);
  color: #fff;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px -8px rgba(15, 35, 80, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity .35s var(--ease), transform .35s var(--ease),
              background .25s, visibility .35s;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: var(--jay-deep);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(15, 35, 80, 0.6);
}
.back-to-top:active { transform: translateY(-1px) scale(1); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .back-to-top { width: 42px; height: 42px; }
}

/* Animations always on — visual identity depends on them.
   (prefers-reduced-motion override removido intencionalmente.) */
