/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #05080F;
  --bg2:      #0A101E;
  --surface:  rgba(148, 163, 184, 0.05);
  --surface2: rgba(148, 163, 184, 0.09);
  --border:   rgba(148, 163, 184, 0.14);
  --border2:  rgba(148, 163, 184, 0.3);
  --accent:   #38BDF8;
  --accent2:  #7DD3FC;
  --indigo:   #6366F1;
  --text:     #F1F5F9;
  --sub:      #94A3B8;
  --muted:    #64748B;
  --r:        12px;
  --rl:       18px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* aurora shader de fundo em toda a página */
.shader-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.75;
}

/* grade sutil de fundo em toda a página */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(148,163,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: 'Geist', system-ui, sans-serif;
  font-weight: 700;
}

.container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 28px;
}

.accent { color: var(--accent); }

/* link "pular para o conteúdo": invisível até receber foco via teclado */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 18px;
  background: var(--accent);
  color: #051220;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--r);
  transform: translateY(-200%);
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .25s, border-color .25s, color .25s, transform .25s var(--ease), box-shadow .25s;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: scale(1.12); }

.btn--sm  { padding: 9px 18px; font-size: 13px; }
.btn--lg  { padding: 16px 30px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--accent {
  background: var(--accent);
  color: #051220;
  border-color: var(--accent);
  font-weight: 700;
  box-shadow: 0 0 0 rgba(56,189,248,0);
  overflow: hidden;
}
/* brilho que varre o botão de tempos em tempos pra chamar o olho pro CTA */
.btn--accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 15%, rgba(255,255,255,0.35) 50%, transparent 85%);
  transform: translateX(-190%) skewX(-18deg);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 72% { transform: translateX(-190%) skewX(-18deg); }
  100%    { transform: translateX(340%) skewX(-18deg); }
}
.btn--accent:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56,189,248,0.35);
}

.btn--outline {
  background: rgba(148,163,184,0.04);
  color: var(--text);
  border-color: var(--border2);
}
.btn--outline:hover {
  border-color: var(--sub);
  background: rgba(148,163,184,0.09);
  transform: translateY(-2px);
}

/* ── INTRO: abertura do site (cortina + logo, 100% CSS — some sozinha mesmo sem JS) ── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  clip-path: inset(0);
  pointer-events: none;
  animation: introWipe .8s cubic-bezier(0.76, 0, 0.24, 1) 1.35s forwards;
}
.intro__logo {
  font-family: 'Geist', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  animation:
    introLogoIn .7s var(--ease) .15s both,
    introLogoOut .45s var(--ease) 1.1s forwards;
}
.intro__dot { color: #38BDF8; }

@keyframes introLogoIn {
  from { opacity: 0; transform: translateY(34px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes introLogoOut {
  to { opacity: 0; transform: translateY(-26px); }
}
@keyframes introWipe {
  to { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

/* itens do nav entram em cascata quando a cortina abre */
@keyframes navIn {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PROGRESS: barra de leitura no topo ── */
.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 400;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 22px 0;
  transition: padding .35s var(--ease);
}
/* ao scrollar, o nav vira uma pílula de vidro flutuante e centralizada */
.nav .nav__inner {
  border: 1px solid transparent;
  border-radius: 100px;
  transition: background .35s, border-color .35s, box-shadow .35s, padding .35s var(--ease);
}
.nav.scrolled { padding: 12px 0; }
.nav.scrolled .nav__inner {
  padding: 9px 28px;
  background: linear-gradient(to bottom, rgba(13,18,32,0.7), rgba(8,11,20,0.55));
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-color: rgba(148,163,184,0.13);
  box-shadow: 0 18px 50px -18px rgba(0,0,0,0.65), inset 0 1px 0 rgba(244,244,251,0.05);
}
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__logo {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .4px;
  margin-right: auto;
  animation: navIn .6s var(--ease) 1.45s both;
}
.nav__links li:nth-child(1) { animation: navIn .6s var(--ease) 1.55s both; }
.nav__links li:nth-child(2) { animation: navIn .6s var(--ease) 1.62s both; }
.nav__links li:nth-child(3) { animation: navIn .6s var(--ease) 1.69s both; }
.nav__links li:nth-child(4) { animation: navIn .6s var(--ease) 1.76s both; }
.nav__inner > .btn           { animation: navIn .6s var(--ease) 1.85s both; }
.nav__burger                 { animation: navIn .6s var(--ease) 1.55s both; }
.nav__links { display: flex; list-style: none; gap: 2px; }
.nav__links a {
  position: relative;
  color: var(--sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--text); background: rgba(148,163,184,0.08); }
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 10px 16px 0;
  padding: 10px 22px 22px;
  background: rgba(7,10,19,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 22px;
}
.nav__mobile.open { display: flex; }
/* opções do menu mobile entram em cascata ao abrir */
.nav__mobile.open > * { animation: navIn .4s var(--ease) both; }
.nav__mobile.open > *:nth-child(1) { animation-delay: .03s; }
.nav__mobile.open > *:nth-child(2) { animation-delay: .09s; }
.nav__mobile.open > *:nth-child(3) { animation-delay: .15s; }
.nav__mobile.open > *:nth-child(4) { animation-delay: .21s; }
.nav__mobile.open > *:nth-child(5) { animation-delay: .27s; }
.nav__mobile-link {
  color: var(--sub);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav__mobile-link:hover { color: var(--text); }
.nav__mobile-cta { margin-top: 12px; }

@media (max-width: 780px) {
  .nav__links, .nav > .nav__inner > .btn { display: none; }
  .nav__burger { display: flex; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* orbes de luz animados */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 900px;
  height: 900px;
  top: -420px;
  right: -280px;
  background: radial-gradient(circle, rgba(56,189,248,0.14) 0%, rgba(56,189,248,0.05) 40%, transparent 68%);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 760px;
  height: 760px;
  bottom: -400px;
  left: -300px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, rgba(99,102,241,0.04) 42%, transparent 68%);
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.08); }
}
/* fora do hero, os orbs pausam (classe controlada pelo script.js) */
.orbs-paused .hero__orb { animation-play-state: paused; }

/* brilho que segue o mouse — movido por transform (só GPU, sem repintar o hero inteiro) */
.hero__glow {
  position: absolute;
  top: -560px;
  left: -560px;
  width: 1120px;
  height: 1120px;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.09), transparent 70%);
  transform: translate(var(--mx, 70vw), var(--my, 35vh));
  will-change: transform;
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp .8s var(--ease) 1.45s both;
}
.hero__badge-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
}
/* pulso via transform/opacity (GPU) em vez de box-shadow (repintura) */
.hero__badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(52,211,153,0.45);
  animation: pulseDot 2.2s ease-out infinite;
}
@keyframes pulseDot {
  from { transform: scale(1); opacity: .8; }
  70%  { transform: scale(3.6); opacity: 0; }
  to   { transform: scale(3.6); opacity: 0; }
}

.hero__title {
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 72px;
  max-width: 960px;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.hero__line-inner {
  display: inline-block;
  transform: translateY(112%);
  animation: lineUp .9s var(--ease) forwards;
}
.hero__line:nth-child(1) .hero__line-inner { animation-delay: 1.5s; }
.hero__line:nth-child(2) .hero__line-inner { animation-delay: 1.62s; }
.hero__line:nth-child(3) .hero__line-inner { animation-delay: 1.74s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__title em {
  font-style: italic;
  background: linear-gradient(95deg, #38BDF8 10%, #818CF8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* palavra rotativa: sai por cima, entra por baixo (clipada pelo .hero__line) */
#swapWord {
  display: inline-block;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
#swapWord.swap-out { transform: translateY(-115%); opacity: 0; }
#swapWord.swap-prep { transition: none; transform: translateY(115%); opacity: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp .9s var(--ease) 1.95s both;
}
.hero__sub {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.72;
  max-width: 460px;
}
.hero__cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.hero__ctas { display: flex; gap: 10px; }
.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.hero__guarantee svg { color: #34D399; flex-shrink: 0; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .hero { align-items: flex-start; padding-top: 130px; }
  .hero__title { font-size: clamp(42px, 12vw, 80px); letter-spacing: -2px; margin-bottom: 48px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .hero__cta-wrap { align-items: flex-start; }
  .hero__ctas { flex-wrap: wrap; }
  .hero__orb--1 { width: 560px; height: 560px; top: -260px; right: -200px; }
  .hero__orb--2 { display: none; }
}

/* ── MARQUEE: faixa infinita de serviços ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  /* esmaece as pontas pra faixa "nascer" e "morrer" suave */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 32s linear infinite;
}
.marquee--off .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
}
.marquee__item {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__star { color: var(--accent); font-size: 12px; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(56,189,248,0.03), transparent);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat strong {
  font-family: 'Geist', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(95deg, #F1F5F9 30%, #7DD3FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat > span { font-size: 14px; color: var(--sub); max-width: 260px; }

@media (max-width: 780px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 28px 4px; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
}

/* ── SERVICES ── */
.services { padding: 110px 0; position: relative; }

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 64px;
}
.services__header h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px;
}
.services__header p {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .services__header { grid-template-columns: 1fr; gap: 14px; }
}

/* pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.pricing-card {
  /* fundo semi-solido no lugar de backdrop-filter: blur sobre canvas animado
     forca re-desfoque a cada frame e derruba o fps na rolagem */
  background: rgba(13, 20, 34, 0.82);
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .65s var(--ease), opacity .65s var(--ease);
}

/* spotlight que segue o mouse (posição via JS) */
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--px, 50%) var(--py, 50%), rgba(56,189,248,0.08), transparent 65%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.pricing-card:hover::after { opacity: 1; }

.pricing-card:not(.pricing-card--featured):hover {
  border-color: var(--border2);
  box-shadow: 0 18px 48px rgba(0,0,0,0.4);
}

.pricing-card--featured {
  background: linear-gradient(165deg, rgba(56,189,248,0.1) 0%, rgba(99,102,241,0.07) 55%, var(--surface) 100%);
  border-color: rgba(56,189,248,0.4);
  padding-top: 48px;
  box-shadow: 0 24px 70px rgba(56,189,248,0.12);
}
.pricing-card--featured:hover {
  border-color: rgba(56,189,248,0.65);
  box-shadow: 0 30px 90px rgba(56,189,248,0.2);
}

/* feixe de luz percorrendo a borda do card destacado
   máscara estática recorta um anel de 2px; só o filho gira (transform = GPU) */
.beam {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--rl) - 1.5px);
  padding: 2.5px;
  pointer-events: none;
  z-index: 2;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  overflow: hidden;
}
.beam i {
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 250deg,
    rgba(56,189,248,0.55) 300deg,
    #7DD3FC 330deg,
    #fff 342deg,
    transparent 360deg
  );
  animation: beamSpin 4.5s linear infinite;
  will-change: transform;
}
.beam--off i { animation-play-state: paused; }
@keyframes beamSpin { to { transform: rotate(360deg); } }

/* animação: cards normais sobem, featured sobe e para acima */
.pricing-card.reveal            { transform: translateY(44px); }
.pricing-card--featured.reveal  { transform: translateY(56px); }
.pricing-card.reveal.visible            { transform: translateY(0); }
.pricing-card--featured.reveal.visible  { transform: translateY(-14px); }

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(95deg, #38BDF8, #818CF8);
  color: #051220;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  text-transform: uppercase;
}

.pricing-card__head { display: flex; flex-direction: column; gap: 4px; }

.pricing-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 10px;
}
.pricing-card--featured .pricing-card__tier { color: var(--accent); }

.pricing-card__from { font-size: 12px; color: var(--muted); }

.pricing-card__price strong {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-top: 2px;
}

.pricing-card__range { font-size: 13px; color: var(--muted); margin-top: 2px; }

.pricing-card__period {
  font-size: 13px;
  color: var(--sub);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sub);
}
.pricing-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(56,189,248,0.16);
  border: 1px solid rgba(56,189,248,0.35);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2338BDF8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing__sub { font-size: 13px; color: var(--muted); margin-top: 28px; padding-left: 4px; }

@media (max-width: 860px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card--featured.reveal.visible { transform: translateY(0); }
}

/* ── INCLUDED (Incluso em todo projeto) ── */
.included {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}
.included__header { max-width: 560px; margin-bottom: 56px; }
.included__header h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.included__header p { font-size: 15px; color: var(--sub); line-height: 1.7; }

.included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 36px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.included-item strong { display: block; font-size: 15px; margin-bottom: 4px; }
.included-item p { font-size: 13.5px; color: var(--sub); line-height: 1.6; }

/* EFEITO: check que se desenha ao entrar na tela (stroke SVG) */
.inc-check { flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.inc-check circle {
  stroke-dasharray: 72.3;
  stroke-dashoffset: 72.3;
  transition: stroke-dashoffset 0.7s var(--ease);
}
.inc-check path {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  transition: stroke-dashoffset 0.45s var(--ease) 0.5s;
}
.included-item.visible .inc-check circle,
.included-item.visible .inc-check path { stroke-dashoffset: 0; }

/* cascata: cada item entra um pouco depois do anterior */
.included-item:nth-child(2) { transition-delay: 0.06s; }
.included-item:nth-child(3) { transition-delay: 0.12s; }
.included-item:nth-child(4) { transition-delay: 0.18s; }
.included-item:nth-child(5) { transition-delay: 0.06s; }
.included-item:nth-child(6) { transition-delay: 0.12s; }
.included-item:nth-child(7) { transition-delay: 0.18s; }
.included-item:nth-child(8) { transition-delay: 0.24s; }
.included-item:nth-child(2) .inc-check circle { transition-delay: 0.06s; }
.included-item:nth-child(3) .inc-check circle { transition-delay: 0.12s; }
.included-item:nth-child(4) .inc-check circle { transition-delay: 0.18s; }
.included-item:nth-child(5) .inc-check circle { transition-delay: 0.06s; }
.included-item:nth-child(6) .inc-check circle { transition-delay: 0.12s; }
.included-item:nth-child(7) .inc-check circle { transition-delay: 0.18s; }
.included-item:nth-child(8) .inc-check circle { transition-delay: 0.24s; }
.included-item:nth-child(2) .inc-check path { transition-delay: 0.56s; }
.included-item:nth-child(3) .inc-check path { transition-delay: 0.62s; }
.included-item:nth-child(4) .inc-check path { transition-delay: 0.68s; }
.included-item:nth-child(5) .inc-check path { transition-delay: 0.56s; }
.included-item:nth-child(6) .inc-check path { transition-delay: 0.62s; }
.included-item:nth-child(7) .inc-check path { transition-delay: 0.68s; }
.included-item:nth-child(8) .inc-check path { transition-delay: 0.74s; }

@media (max-width: 640px) {
  .included { padding: 80px 0; }
  .included__grid { gap: 22px; }
}

/* ── PERSONAL ── */
.personal {
  padding: 110px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg2) 0%, transparent 100%);
}
.personal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.personal__statement p {
  font-family: 'Geist', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 36px;
}
/* Palavras da frase acendem conforme o scroll (controlado pelo script.js) */
.personal__statement .word {
  opacity: 0.18;
  transition: opacity .45s ease;
}
.personal__statement .word.lit { opacity: 1; }
.personal__list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.personal__item {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 17px 0 17px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left .25s var(--ease), color .25s;
}
.personal__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border2);
  transition: background .25s, box-shadow .25s;
}
.personal__item:hover { padding-left: 26px; color: var(--accent); }
.personal__item:hover::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56,189,248,0.7);
}

@media (max-width: 760px) {
  .personal__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── PROCESS ── */
.process { padding: 110px 0; border-top: 1px solid var(--border); }
.process__title {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}
.process-item {
  background: var(--bg2);
  padding: 42px 36px;
  transition: background .3s;
  position: relative;
}
.process-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at 20% 0%, rgba(56,189,248,0.06), transparent 65%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.process-item:hover::before { opacity: 1; }
.process-item__n {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-item__n::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--border2);
  transition: width .4s var(--ease), background .4s;
}
.process-item:hover .process-item__n::after {
  width: 48px;
  background: var(--accent);
}
.process-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.process-item p { font-size: 14px; color: var(--sub); line-height: 1.7; }

@media (max-width: 680px) { .process__grid { grid-template-columns: 1fr; } }

/* ── PORTFOLIO ── */
.portfolio { padding: 110px 0; border-top: 1px solid var(--border); }
.portfolio__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.portfolio__header h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; }
.portfolio__note { font-size: 13px; color: var(--muted); font-style: italic; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1200px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .65s var(--ease), opacity .65s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.portfolio-card:hover {
  border-color: rgba(56,189,248,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(56,189,248,0.06);
}

.portfolio-card__visual {
  height: 190px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.pv--2 { background: linear-gradient(145deg, #241428 0%, #140C18 100%); }

/* card com screenshot real do projeto */
.pv--img { padding: 0; overflow: hidden; background: #0B1018; }
/* imagem com 20px de sobra em cima/embaixo pra deslizar no parallax sem mostrar borda */
.pv--img img {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: top center;
  transform: translateY(var(--par, 0px));
  transition: transform .45s var(--ease);
  will-change: transform;
}
.portfolio-card:hover .pv--img img { transform: translateY(var(--par, 0px)) scale(1.05); }
.pv--img img.pv-img--salus { object-position: center 12%; }
.pv--img .portfolio-card__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(244,244,251,0.85);
  background: rgba(0,0,0,0.72);
}

.pv--2::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .7;
  transition: opacity .45s var(--ease);
  background: radial-gradient(ellipse at 65% 35%, rgba(160,90,220,0.16) 0%, transparent 55%);
}
.portfolio-card:hover .portfolio-card__visual::before { opacity: 1; }

.portfolio-card__label {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(244,244,251,0.65);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 100px;
  transition: color .3s, background .3s;
}
.portfolio-card:hover .portfolio-card__label {
  color: rgba(244,244,251,0.92);
  background: rgba(0,0,0,0.65);
}

.portfolio-card__body { padding: 20px 20px 22px; }
.portfolio-card__body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color .3s;
}
.portfolio-card:hover .portfolio-card__body h3 { color: var(--accent); }
.portfolio-card__body p { font-size: 13px; color: var(--sub); line-height: 1.65; margin-bottom: 12px; }
.portfolio-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.portfolio-card__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.pv-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  opacity: 0.82;
  transition: transform .35s var(--ease), opacity .3s;
  pointer-events: none;
}
.portfolio-card:hover .pv-icon {
  transform: translate(-50%, -62%) scale(1.04);
  opacity: 1;
}

@media (max-width: 860px) {
  .portfolio__grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── COMPARE (Por que a Mistic?) ── */
.compare {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}
.compare__header { max-width: 560px; margin-bottom: 48px; }
.compare__header h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.compare__header p { font-size: 15px; color: var(--sub); line-height: 1.7; }

.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare__table th,
.compare__table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.compare__table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sub);
  border-bottom: 1px solid var(--border2);
  padding-bottom: 12px;
}
.compare__table tbody th {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.compare__table tbody td { color: var(--sub); }

/* coluna Mistic em destaque */
.compare__table .compare__us {
  background: rgba(56, 189, 248, 0.05);
  color: var(--text);
}
.compare__table thead .compare__us {
  color: var(--accent);
  border-bottom-color: rgba(56, 189, 248, 0.35);
}
.compare__table tbody td.compare__us::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* EFEITO: linhas da tabela surgem em cascata (só opacity — seguro em <tr>) */
.compare__scroll tbody tr {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.compare__scroll.visible tbody tr:nth-child(1) { opacity: 1; transition-delay: 0.15s; }
.compare__scroll.visible tbody tr:nth-child(2) { opacity: 1; transition-delay: 0.3s; }
.compare__scroll.visible tbody tr:nth-child(3) { opacity: 1; transition-delay: 0.45s; }
.compare__scroll.visible tbody tr:nth-child(4) { opacity: 1; transition-delay: 0.6s; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* dica de arraste: só aparece no mobile, onde a tabela rola de lado */
.compare__hint { display: none; font-size: 12px; color: var(--muted); margin-bottom: 12px; }

/* primeira coluna (critérios) fica fixa enquanto a tabela rola de lado */
.compare__table tbody th,
.compare__table thead th:first-child {
  position: sticky;
  left: 0;
  background: var(--bg);
  z-index: 1;
}

@media (max-width: 640px) {
  .compare { padding: 80px 0; }
  .compare__table th, .compare__table td { padding: 13px 14px; }
  .compare__hint { display: block; }
  /* fade na borda direita sinalizando que tem mais conteúdo */
  .compare__scroll {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 36px), transparent);
  }
}

/* ── FAQ ── */
.faq { padding: 110px 0; border-top: 1px solid var(--border); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.faq__header h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.faq__header p { font-size: 15px; color: var(--sub); line-height: 1.7; max-width: 320px; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-item.open {
  border-color: rgba(56,189,248,0.35);
  background: var(--surface2);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 19px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .25s;
}
.faq-item.open .faq-item__q { color: var(--accent); }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--sub);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), background .25s;
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-item__icon::before { background: var(--accent); transform: translate(-50%, -50%) rotate(180deg); }
.faq-item.open .faq-item__icon::after  { background: var(--accent); transform: translate(-50%, -50%) rotate(180deg); }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.faq-item__a > div { overflow: hidden; }
.faq-item__a p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.75;
}
.faq-item.open .faq-item__a { grid-template-rows: 1fr; }

@media (max-width: 820px) {
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── CTA ── */
.cta-section {
  padding: 150px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -55%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.13) 0%, rgba(99,102,241,0.06) 45%, transparent 70%);
  pointer-events: none;
}
.cta-section__inner { max-width: 680px; margin: 0 auto; position: relative; }
.cta-section__inner h2 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #F1F5F9 40%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-section__inner p {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-section__btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cta-section__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
  text-align: left;
}
.cta-section__guarantee svg { color: #34D399; flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg2);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__nav { display: flex; gap: 4px; margin-right: auto; flex-wrap: wrap; }
.footer__nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color .2s;
}
.footer__nav a::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer__nav a:hover { color: var(--text); }
.footer__nav a:hover::after { transform: scaleX(1); }
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__meta {
  display: flex;
  align-items: center;
  gap: 8px 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.footer__meta-link {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer__meta-link:hover { color: var(--text); }

/* no mobile, os botões flutuantes (WhatsApp e voltar ao topo) não podem cobrir o contato */
@media (max-width: 680px) {
  .footer { padding-bottom: 104px; }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(9px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
/* "none" (e nao blur(0)) libera a camada de filtro na GPU depois que o elemento aparece */
.reveal.visible { opacity: 1; transform: translateY(0); filter: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar             { width: 6px; }
::-webkit-scrollbar-track       { background: var(--bg); }
::-webkit-scrollbar-thumb       { background: rgba(148,163,184,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(148,163,184,0.35); }

::selection { background: rgba(56,189,248,0.28); color: var(--text); }

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── BOTÃO FLUTUANTE: WhatsApp ── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .3s;
}
.wa-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
/* balanço curto a cada ~7s pra lembrar que ele existe */
.wa-float.visible svg { animation: waNudge 7s ease-in-out 3s infinite; }
.wa-float:hover svg   { animation-play-state: paused; }
@keyframes waNudge {
  0%, 86%, 100% { transform: rotate(0); }
  88%  { transform: rotate(-14deg) scale(1.1); }
  91%  { transform: rotate(11deg)  scale(1.1); }
  94%  { transform: rotate(-7deg); }
  97%  { transform: rotate(4deg); }
}

@media (max-width: 680px) {
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ── MOBILE: revisão dedicada — menos espaço vazio, tudo mais compacto ── */
@media (max-width: 680px) {

  /* seções com respiro menor */
  .services, .personal, .process, .portfolio, .faq { padding: 64px 0; }
  .cta-section { padding: 90px 0; }

  /* HERO enxuto: um CTA só, textos menores, menos espaço */
  .hero { padding-top: 108px; padding-bottom: 56px; }
  .hero__title { margin-bottom: 28px; }
  .hero__bottom { gap: 18px; }
  .hero__sub { font-size: 15px; line-height: 1.65; }
  .hero__ctas .btn--outline { display: none; }
  .hero__ctas .btn--lg { padding: 15px 26px; }
  .hero__cta-wrap { gap: 10px; }

  /* STATS em linha: número à esquerda, texto ao lado */
  .stat { flex-direction: row; align-items: baseline; gap: 16px; padding: 16px 4px; }
  .stat strong { font-size: 32px; letter-spacing: -1px; min-width: 96px; flex-shrink: 0; }
  .stat > span { font-size: 13px; line-height: 1.5; }

  /* SERVICES / PRICING */
  .services__header { margin-bottom: 30px; }
  .services__header p { font-size: 14px; }
  .pricing-cards { gap: 14px; }
  .pricing-card { padding: 26px 20px 22px; gap: 20px; }

  /* PERSONAL */
  .personal__inner { gap: 32px; }
  .personal__statement p { margin-bottom: 24px; }

  /* PROCESS */
  .process__title { margin-bottom: 28px; }
  .process-item { padding: 26px 20px; }

  /* PORTFOLIO */
  .portfolio__header { margin-bottom: 26px; gap: 8px; }
  .portfolio__grid { gap: 12px; }
  .portfolio-card__visual { height: 150px; }

  /* FAQ */
  .faq__inner { gap: 26px; }
  .faq__header p { font-size: 14px; max-width: none; }
  .faq-item__q { padding: 16px 18px; }

  /* CTA final */
  .cta-section__inner p { font-size: 15px; margin-bottom: 28px; }

  /* FOOTER */
  .footer__inner { gap: 18px; }
}

/* ── EFEITO: estrelas cadentes no hero ── */
.comet {
  position: absolute;
  width: 130px;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.95));
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: cometFly 11s linear infinite;
}
.comet--1 { top: 12%;  left: -10%; animation-delay: 2s; }
.comet--2 { top: 4%;   left: 24%;  animation-delay: 6.4s; width: 90px; }
.comet--3 { top: 38%;  left: -14%; animation-delay: 9.8s; width: 70px; }
@keyframes cometFly {
  0%, 100% { transform: translate(0, 0) rotate(24deg); opacity: 0; }
  1%       { opacity: .9; }
  9%       { transform: translate(58vw, calc(58vw * 0.445)) rotate(24deg); opacity: 0; }
}
.orbs-paused .comet { animation-play-state: paused; }

/* ── EFEITO: indicador de scroll no hero ── */
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin-left: -7px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  animation: hintIn .8s var(--ease) 2.8s forwards;
  transition: opacity .4s;
}
@keyframes hintIn { to { opacity: 1; } }
.scroll-hint i {
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
  animation: hintPulse 1.7s ease-in-out infinite;
}
.scroll-hint i:nth-child(2) { margin-top: -8px; animation-delay: .22s; }
@keyframes hintPulse {
  0%, 100% { opacity: .12; transform: rotate(45deg) translate(0, 0); }
  40%      { opacity: .95; transform: rotate(45deg) translate(3px, 3px); }
}
.scroll-hint--hidden { opacity: 0 !important; }
.scroll-hint--hidden i { animation-play-state: paused; }

/* ── EFEITO: sublinhado que se desenha nos títulos de seção ── */
.h-line { position: relative; display: inline-block; padding-bottom: 10px; }
.h-line::after {
  content: '';
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease) .4s;
}
.visible .h-line::after, .h-line.visible::after { transform: scaleX(1); }

/* ── EFEITO: linha do processo que se preenche com o scroll ── */
.process .process__title { margin-bottom: 0; }
.process__bar {
  position: relative;
  height: 2px;
  border-radius: 2px;
  background: var(--border);
  margin: 22px 0 48px;
  overflow: hidden;
}
.process__bar i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
}

/* ── EFEITO: anel de radar no botão do CTA final ── */
.ping-wrap { position: relative; display: inline-flex; }
.ping-ring {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  border: 1.5px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: pingRing 2.6s ease-out infinite;
}
.ping-off .ping-ring { animation-play-state: paused; }
@keyframes pingRing {
  0%       { transform: scale(1); opacity: .75; }
  65%, 100% { transform: scale(1.18, 1.55); opacity: 0; }
}

/* ── EFEITO: textura de granulado (acabamento de filme) ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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.35'/%3E%3C/svg%3E");
}

/* ── EFEITO: ripple ao clicar nos botões ── */
.btn { overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.28);
  pointer-events: none;
  transform: scale(0);
  opacity: .8;
  animation: rippleGo .6s ease-out forwards;
}
.btn--accent .ripple { background: rgba(255, 255, 255, 0.5); }
@keyframes rippleGo {
  to { transform: scale(1); opacity: 0; }
}

/* ── EFEITO: passos do processo acendem com a barra ── */
.process-item .process-item__n { transition: color .4s; }
.process-item.lit .process-item__n { color: var(--accent2); }
.process-item.lit .process-item__n::after { width: 48px; background: var(--accent); }

/* ── EFEITO: vagalumes no CTA final ── */
.fireflies { position: absolute; inset: 0; pointer-events: none; }
.fireflies i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 10px 2px rgba(125, 211, 252, 0.45);
  opacity: 0;
  animation: fireflyFloat 9s ease-in-out infinite;
}
.fireflies i:nth-child(1) { left: 12%; top: 68%; animation-delay: 0s; animation-duration: 9s; }
.fireflies i:nth-child(2) { left: 26%; top: 30%; animation-delay: 2.2s; animation-duration: 11s; }
.fireflies i:nth-child(3) { left: 48%; top: 78%; animation-delay: 4.5s; animation-duration: 8s; }
.fireflies i:nth-child(4) { left: 66%; top: 24%; animation-delay: 1.3s; animation-duration: 10s; }
.fireflies i:nth-child(5) { left: 82%; top: 58%; animation-delay: 3.4s; animation-duration: 12s; }
.fireflies i:nth-child(6) { left: 92%; top: 36%; animation-delay: 5.8s; animation-duration: 9.5s; }
.cta--off .fireflies i { animation-play-state: paused; }
@keyframes fireflyFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  12%      { opacity: .9; }
  45%      { transform: translate(26px, -34px); opacity: .5; }
  70%      { transform: translate(-14px, -58px); opacity: .85; }
  90%      { opacity: 0; }
}

/* ── EFEITO: seta → no hover dos cards de portfólio ── */
.portfolio-card__body h3::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease);
}
.portfolio-card:hover .portfolio-card__body h3::after { opacity: 1; transform: translateX(0); }

/* ── EFEITO: pop nos números das estatísticas ── */
.stat-pop { animation: statPop .45s var(--ease); }
@keyframes statPop {
  35% { transform: scale(1.12); }
}

/* ── EFEITO: título do CTA entra letra por letra ── */
.cta-section h2.split { background: none; color: inherit; opacity: 1; transform: none; filter: none; }
.cta-section h2.split .ltr {
  display: inline-block;
  background: linear-gradient(180deg, #F1F5F9 40%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(0.55em) rotate(5deg);
  transition: opacity .5s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--i) * 42ms);
}
.cta-section h2.split.visible .ltr { opacity: 1; transform: none; }

/* ── EFEITO: cortina revelando o visual dos cards de portfólio ── */
.portfolio-card__visual::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 3;
  background: linear-gradient(120deg, #0D1520, #111C2E);
  transform: translateY(0);
  transition: transform .85s var(--ease) .2s;
}
.portfolio-card.visible .portfolio-card__visual::after { transform: translateY(-102%); }
.pv--img img { scale: 1.14; transition: transform .45s var(--ease), scale 1.3s var(--ease) .2s; }
.portfolio-card.visible .pv--img img { scale: 1; }

/* ── EFEITO: reflexo de luz que acompanha o tilt dos cards ── */
.portfolio-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.10) 0%, transparent 62%);
  transform: translate(var(--gx, -400px), var(--gy, -400px));
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 4;
}
.portfolio-card:hover::after { opacity: 1; }

/* ── EFEITO: confete ao clicar no WhatsApp do CTA ── */
.confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 5;
  animation: confettiFly .85s var(--ease) forwards;
}
@keyframes confettiFly {
  0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)) scale(.6); opacity: 0; }
}

/* ── EFEITO: voltar ao topo com anel de progresso ── */
.top-btn {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 18, 28, 0.85);
  border: 1px solid var(--border);
  color: var(--sub);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s, transform .35s var(--ease), visibility .35s, color .25s, border-color .25s;
}
.top-btn.show { opacity: 1; visibility: visible; transform: none; }
.top-btn:hover { color: var(--text); border-color: rgba(56, 189, 248, 0.4); }
.top-btn__ring {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: rotate(-90deg);
}
.top-btn__ring circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100.5;
  stroke-dashoffset: calc(100.5 - var(--p, 0) * 100.5);
}

/* ── EFEITO: brilho varrendo o badge "Mais procurado" ── */
.pricing-card__badge { overflow: hidden; }
.pricing-card__badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: badgeShine 5.5s ease-in-out 2s infinite;
}
.beam--off ~ .pricing-card__badge::after { animation-play-state: paused; }
@keyframes badgeShine {
  0%, 60%   { transform: translateX(-130%); }
  80%, 100% { transform: translateX(130%); }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__line-inner { transform: none; animation: none; }
  .hero__badge, .hero__bottom { animation: none; opacity: 1; }
  .intro { display: none; }
  .nav__logo, .nav__links li, .nav__inner > .btn, .nav__burger,
  .nav__mobile.open > * { animation: none; }
  .pricing-card.reveal { transform: none; }
  .pricing-card--featured.reveal { transform: translateY(-14px); }
  .hero__glow, .hero__orb, .shader-bg { display: none; }
  .marquee__track { animation: none; }
  .btn--accent::after { display: none; }
  .wa-float svg { animation: none; }
  .progress { display: none; }
  .beam { display: none; }
  .comet, .scroll-hint, .ping-ring { display: none; }
  .h-line::after { transform: scaleX(1); transition: none; }
  .process__bar i { transform: scaleX(1); }
  .fireflies { display: none; }
  .portfolio-card__visual::after { display: none; }
  .pv--img img { scale: none; }
  .portfolio-card::after, .confetti { display: none; }
  .pricing-card__badge::after { display: none; }
  .inc-check circle, .inc-check path { stroke-dashoffset: 0; transition: none; }
  .compare__scroll tbody tr { opacity: 1; transition: none; }
}
