/* ============================================================
   DUO ESTÉTICA AUTOMOTIVA — Showroom Noturno
   Paleta original do site: navy profundo + cromado + dourado
   ============================================================ */

:root {
  /* superfícies */
  --ink-950: #04061a;
  --ink-900: #060a20;
  --ink-850: #0a0e24;
  --ink-800: #0d1230;
  --navy-700: #0c1651;
  --navy-600: #1a2766;
  --navy-500: #24348c;

  /* texto */
  --silver-100: #eef2fb;
  --silver-200: #e8edf8;
  --silver-300: #d0d3dd;
  --silver-400: #b3c2e0;
  --silver-500: #8d9cc0;

  /* acentos */
  --gold-300: #f0c75e;
  --gold-400: #e3b13a;
  --gold-500: #d4a017;
  --blue-400: #3b82f6;
  --wa-500: #25d366;
  --wa-600: #20bd5a;
  --fire-500: #ff6b35;

  --chrome: linear-gradient(155deg, #ffffff 0%, #c9d4e8 28%, #8fa0bd 48%, #e9eefb 62%, #aab8d4 80%, #f4f7ff 100%);
  --gold-grad: linear-gradient(120deg, #f7d97c 0%, #d4a017 45%, #a87c0e 70%, #f0c75e 100%);

  --border: rgba(179, 194, 224, 0.14);
  --border-strong: rgba(179, 194, 224, 0.26);

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-mono: "Chivo Mono", "Consolas", monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 18px 50px -18px rgba(0, 0, 0, 0.65);
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--silver-400);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
strong { color: var(--silver-100); font-weight: 700; }
::selection { background: var(--gold-500); color: var(--ink-950); }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

section { scroll-margin-top: calc(var(--nav-h) + 18px); }

header,
footer,
section,
.topbar,
.navbar,
.mobile-menu {
  max-width: 100%;
  overflow-x: clip;
}

main {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

.ic { width: 1.25em; height: 1.25em; flex: none; }

.container {
  width: min(1180px, 100% - 48px);
  max-width: 100%;
  margin-inline: auto;
}

.section { padding: clamp(76px, 10vw, 130px) 0; position: relative; }

/* ---------- texto cromado / dourado ---------- */
.chrome-text {
  background: var(--chrome);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.chrome-text--shine { animation: chromeShift 5.5s ease-in-out infinite; }
@keyframes chromeShift {
  0%, 100% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
}
.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

/* ---------- cabeçalho de seção ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(44px, 6vw, 72px); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.kicker::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.04;
  color: var(--silver-100);
}
.section-sub { margin-top: 16px; font-size: 1.06rem; color: var(--silver-500); }

/* ---------- botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s, border-color 0.25s, color 0.25s;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after { /* varredura de brilho */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.34) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }
.btn--sm { padding: 10px 20px; font-size: 0.92rem; }
.btn--lg { padding: 18px 38px; font-size: 1.12rem; }
.btn--xl { padding: 21px 46px; font-size: 1.22rem; }

.btn--wa {
  background: linear-gradient(135deg, var(--wa-500), var(--wa-600));
  color: #06220f;
  box-shadow: 0 12px 34px -10px rgba(37, 211, 102, 0.55);
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(37, 211, 102, 0.7); }

.btn--gold {
  background: var(--gold-grad);
  background-size: 160% 160%;
  color: #241a02;
  box-shadow: 0 12px 34px -10px rgba(212, 160, 23, 0.5);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 46px -10px rgba(212, 160, 23, 0.68); background-position: 80% 50%; }

.btn--ghost {
  border-color: var(--border-strong);
  color: var(--silver-200);
  background: rgba(179, 194, 224, 0.05);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--silver-400); background: rgba(179, 194, 224, 0.12); transform: translateY(-3px); }

.btn--ig {
  border: 1px solid var(--border-strong);
  color: var(--silver-200);
  background: rgba(179, 194, 224, 0.05);
}
.btn--ig:hover {
  background: linear-gradient(45deg, #833ab4, #fd1d1d 60%, #fcb045);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px -12px rgba(214, 41, 118, 0.6);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: radial-gradient(120% 100% at 50% 0%, var(--ink-850), var(--ink-950));
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 6.4rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  background: var(--chrome);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeShift 2.2s ease-in-out infinite;
  line-height: 1;
}
.preloader__o {
  position: relative;
  display: inline-block;
  background: var(--chrome);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeShift 2.2s ease-in-out infinite;
}
.preloader__bolt {
  position: absolute;
  width: 0.34em;
  height: 0.34em;
  left: 50%;
  top: 54%;
  transform: translate(-58%, -50%) rotate(8deg);
  color: var(--ink-950);
}
.preloader__tag {
  font-family: var(--font-mono);
  letter-spacing: 0.6em;
  font-size: 11px;
  color: var(--silver-500);
  margin: 10px 0 34px;
  text-transform: uppercase;
}
.preloader__bar {
  width: min(280px, 64vw);
  height: 3px;
  margin: 0 auto;
  background: rgba(179, 194, 224, 0.12);
  border-radius: 99px;
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-500), #fff);
  transition: width 0.25s ease;
}
.preloader__pct {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-400);
  letter-spacing: 0.2em;
}

/* ============================================================
   CURSOR CUSTOM (somente ponteiro fino)
   ============================================================ */
.cursor-dot, .cursor-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    position: fixed;
    z-index: 999;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-400);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s;
  }
  .cursor-ring {
    display: block;
    position: fixed;
    z-index: 998;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 160, 23, 0.55);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, background-color 0.3s, opacity 0.25s;
  }
  .cursor-ring.is-hover {
    width: 64px;
    height: 64px;
    border-color: rgba(238, 242, 251, 0.8);
    background: rgba(238, 242, 251, 0.06);
  }
  body.cursor-hidden .cursor-dot, body.cursor-hidden .cursor-ring { opacity: 0; }
}

/* ============================================================
   BARRA DE PROGRESSO + TOPBAR + NAVBAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold-500), #fff 60%, var(--gold-300));
  z-index: 220;
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 210;
  background: linear-gradient(90deg, #2a1503, #4a2a06 30%, #2a1503 70%, #1d0e02);
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 200, 80, 0.18) 50%, transparent 70%);
  animation: topbarSweep 3.4s linear infinite;
}
@keyframes topbarSweep { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.topbar.is-hidden { display: none; }
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.86rem;
  color: #ffe9bd;
  position: relative;
}
.topbar__inner p { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__inner strong { color: #ffd571; }
.topbar__flame { color: var(--fire-500); animation: flamePulse 1.6s ease-in-out infinite; }
@keyframes flamePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold-300);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  flex: none;
}
.topbar__link:hover { border-color: var(--gold-300); }
.topbar__link .ic { width: 1em; height: 1em; }
.topbar__close { color: #c9a25a; padding: 4px; border-radius: 6px; transition: color 0.2s, background-color 0.2s; flex: none; }
.topbar__close:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.topbar__close .ic { width: 1em; height: 1em; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.35s, border-color 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  background: rgba(6, 10, 32, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 14px 40px -18px rgba(0, 0, 0, 0.7);
}
.navbar__inner { display: flex; align-items: center; gap: 28px; }

.logo { display: flex; flex-direction: column; line-height: 1; flex: none; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
  background: var(--chrome);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position 0.6s;
}
.logo:hover .logo__word { background-position: 90% 70%; }
.logo__o {
  /* filhos posicionados quebram o background-clip:text do pai — o O precisa do próprio clip */
  position: relative;
  display: inline-block;
  background: var(--chrome);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo__bolt {
  position: absolute;
  width: 0.36em;
  height: 0.36em;
  left: 50%;
  top: 54%;
  transform: translate(-58%, -50%) rotate(8deg);
  color: var(--ink-900);
}
.logo__sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-top: 3px;
}

.navbar__links { display: flex; gap: 4px; margin-left: auto; }
.navbar__link {
  position: relative;
  padding: 9px 13px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--silver-400);
  border-radius: 8px;
  transition: color 0.2s;
}
.navbar__link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s var(--ease-out);
}
.navbar__link:hover { color: var(--silver-100); }
.navbar__link:hover::after, .navbar__link.is-active::after { transform: scaleX(1); }
.navbar__link.is-active { color: var(--silver-100); }
.navbar__cta { flex: none; }

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.2s;
}
.navbar__burger:hover { background: rgba(179, 194, 224, 0.08); }
.navbar__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--silver-200);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.35s var(--ease-out);
}
.navbar__burger span:nth-child(2) { width: 70%; }
.navbar__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-open span:nth-child(2) { opacity: 0; }
.navbar__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: radial-gradient(130% 110% at 50% 0%, rgba(12, 22, 81, 0.97), rgba(4, 6, 26, 0.99));
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  color: var(--silver-300);
  padding: 6px 18px;
  opacity: 0;
  transform: translateY(22px);
  transition: color 0.2s, opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  transition-delay: 0s, calc(var(--i) * 0.06s + 0.1s), calc(var(--i) * 0.06s + 0.1s);
}
.mobile-menu.is-open .mobile-menu__nav a { opacity: 1; transform: none; }
.mobile-menu__nav a:hover { color: var(--gold-300); }
.mobile-menu__cta { opacity: 0; transform: translateY(18px); transition: opacity 0.4s 0.55s, transform 0.4s 0.55s; }
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% 6%, rgba(26, 39, 102, 0.55), transparent 64%),
    radial-gradient(700px 420px at 12% 88%, rgba(12, 22, 81, 0.5), transparent 60%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-950) 100%);
  padding: clamp(40px, 6vw, 70px) 0 90px;
}
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

.hero__beam {
  position: absolute;
  width: 46vw;
  height: 130vh;
  top: -36vh;
  filter: blur(46px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.hero__beam--1 {
  left: 6vw;
  background: conic-gradient(from 196deg at 50% 0%, transparent 42%, rgba(212, 160, 23, 0.16) 50%, transparent 58%);
  animation: beamSway 9s ease-in-out infinite alternate;
}
.hero__beam--2 {
  right: 2vw;
  background: conic-gradient(from 164deg at 50% 0%, transparent 42%, rgba(179, 194, 224, 0.2) 50%, transparent 58%);
  animation: beamSway 11s ease-in-out infinite alternate-reverse;
}
@keyframes beamSway { from { transform: rotate(-3.2deg); } to { transform: rotate(3.2deg); } }

.hero__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(16rem, 42vw, 34rem);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(179, 194, 224, 0.065);
  user-select: none;
  pointer-events: none;
}

.hero__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(transparent, rgba(6, 10, 32, 0.9)),
    repeating-linear-gradient(90deg, rgba(179, 194, 224, 0.07) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(179, 194, 224, 0.07) 0 1px, transparent 1px 46px);
  transform: perspective(620px) rotateX(58deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(transparent, #000 36%);
  -webkit-mask-image: linear-gradient(transparent, #000 36%);
  pointer-events: none;
  opacity: 0.85;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(212, 160, 23, 0.09);
  border: 1px solid rgba(212, 160, 23, 0.32);
  padding: 9px 16px;
  border-radius: 99px;
  margin-bottom: 26px;
  box-shadow: 0 0 24px -6px rgba(212, 160, 23, 0.35);
}
.hero__kicker-bolt { width: 1em; height: 1em; animation: boltFlicker 2.6s infinite; }
@keyframes boltFlicker {
  0%, 88%, 100% { opacity: 1; }
  90%, 94% { opacity: 0.25; }
  92%, 96% { opacity: 1; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.9rem, 7.6vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: 0.012em;
  color: var(--silver-100);
  margin-bottom: 26px;
}
.hero__line { display: block; }
.hero__line--gold {
  background: var(--gold-grad);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeShift 6s ease-in-out infinite;
  width: fit-content;
}

.hero__subtitle { font-size: clamp(1.04rem, 1.6vw, 1.22rem); color: var(--silver-400); max-width: 520px; margin-bottom: 38px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--silver-500);
}
.hero__stars { display: inline-flex; gap: 2px; color: var(--gold-400); }
.hero__stars .ic { width: 15px; height: 15px; filter: drop-shadow(0 0 6px rgba(212, 160, 23, 0.5)); }
.hero__trust > .ic { width: 15px; height: 15px; }
.hero__trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--silver-500); margin: 0 4px; }

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
.hero__logo {
  position: relative;
  z-index: 2;
  width: min(440px, 78%);
  height: auto;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 42px rgba(179, 194, 224, 0.16));
  animation: logoFloat 6.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes logoFloat {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -16px; rotate: -1deg; }
}
.hero__logo-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 52, 140, 0.55), rgba(212, 160, 23, 0.08) 55%, transparent 70%);
  filter: blur(34px);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.75; scale: 1; } 50% { opacity: 1; scale: 1.12; } }
.hero__orbit {
  position: absolute;
  width: min(100%, 380px);
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(179, 194, 224, 0.18);
  animation: orbitSpin 38s linear infinite;
}
.hero__orbit::before, .hero__orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.hero__orbit::before { top: 7%; left: 50%; background: var(--gold-400); box-shadow: 0 0 14px 3px rgba(212, 160, 23, 0.6); }
.hero__orbit::after { bottom: 10%; right: 14%; background: var(--silver-300); box-shadow: 0 0 12px 2px rgba(208, 211, 221, 0.55); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  z-index: 3;
  opacity: 0.75;
  transition: opacity 0.25s;
}
.hero__scrollcue:hover { opacity: 1; }
.hero__mouse {
  width: 25px;
  height: 40px;
  border: 1.6px solid var(--silver-400);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__mouse span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-400);
  animation: mouseWheel 1.8s ease-in-out infinite;
}
@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero__scrolltxt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver-500); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  background: linear-gradient(180deg, var(--ink-950), var(--ink-850));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 130px at 50% 0%, rgba(212, 160, 23, 0.07), transparent);
  pointer-events: none;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stats__item { text-align: center; position: relative; }
.stats__item + .stats__item::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  height: 56%;
  width: 1px;
  background: linear-gradient(transparent, var(--border-strong), transparent);
}
.stats__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 600;
  color: var(--silver-100);
  text-shadow: 0 0 28px rgba(179, 194, 224, 0.3);
}
.stats__num i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--gold-400);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.stats__star .ic { width: 0.9em; height: 0.9em; color: var(--gold-400); }
.stats__label { display: block; margin-top: 6px; font-size: 0.84rem; color: var(--silver-500); letter-spacing: 0.04em; }

/* ============================================================
   PROBLEMAS
   ============================================================ */
.problems { position: relative; background: var(--ink-900); overflow: hidden; }
.problems::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.07), transparent 65%);
  top: -200px;
  right: -180px;
  pointer-events: none;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.problems__card {
  position: relative;
  background: linear-gradient(165deg, rgba(13, 18, 48, 0.85), rgba(7, 10, 30, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.problems__card:hover { border-color: rgba(255, 107, 53, 0.45); box-shadow: 0 24px 54px -22px rgba(255, 107, 53, 0.3); }
.problems__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--fire-500);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 20px;
  transform: translateZ(34px);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.problems__icon .ic { width: 25px; height: 25px; }
.problems__card:hover .problems__icon { box-shadow: 0 0 30px -4px rgba(255, 107, 53, 0.45); }
.problems__card h3 {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.32rem;
  line-height: 1.12;
  color: var(--silver-100);
  margin-bottom: 10px;
  transform: translateZ(26px);
}
.problems__card p { font-size: 0.94rem; color: var(--silver-500); transform: translateZ(18px); }

.problems__truth {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px) clamp(22px, 4vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 150px at 50% 0%, rgba(212, 160, 23, 0.08), transparent),
    linear-gradient(180deg, rgba(13, 18, 48, 0.7), rgba(7, 10, 30, 0.85));
  position: relative;
}
.problems__truth::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.problems__truth-text { font-size: 1.08rem; color: var(--silver-400); }
.problems__solution {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 2.9rem);
  margin: 18px 0 26px;
  animation: chromeShift 5s ease-in-out infinite;
  background-size: 220% 220%;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
.marquee {
  position: relative;
  padding: 30px 0;
  background: var(--ink-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transform: rotate(-1.1deg);
  max-width: 100%;
}
.marquee__track {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  will-change: transform;
}
.marquee__track > span { flex: none; }
.marquee__track--a {
  color: transparent;
  -webkit-text-stroke: 1px rgba(179, 194, 224, 0.5);
  animation: marqueeSlide 48s linear infinite;
}
.marquee__track--b {
  color: rgba(212, 160, 23, 0.75);
  margin-top: 8px;
  animation: marqueeSlide 56s linear infinite reverse;
}
.marquee__track i { font-style: normal; color: var(--gold-500); -webkit-text-stroke: 0; margin: 0 14px; }
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services { background: linear-gradient(180deg, var(--ink-900), var(--ink-850) 60%, var(--ink-900)); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(12, 22, 81, 0.36), rgba(7, 10, 30, 0.9) 55%);
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.service-card::before { /* spotlight que segue o mouse */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(179, 194, 224, 0.1), transparent 46%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card__num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(179, 194, 224, 0.14);
  transition: -webkit-text-stroke-color 0.3s, color 0.3s;
  user-select: none;
}
.service-card:hover .service-card__num { -webkit-text-stroke-color: rgba(212, 160, 23, 0.5); }
.service-card__badge {
  position: absolute;
  top: 20px;
  left: clamp(28px, 4vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd571;
  background: rgba(255, 107, 53, 0.13);
  border: 1px solid rgba(255, 150, 60, 0.4);
  padding: 6px 12px;
  border-radius: 99px;
  animation: badgeGlow 2.4s ease-in-out infinite;
}
.service-card__badge .ic { width: 1.1em; height: 1.1em; color: var(--fire-500); }
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 18px 1px rgba(255, 107, 53, 0.4); }
}
.service-card__badge + .service-card__icon { margin-top: 26px; }
.service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(36, 52, 140, 0.5), rgba(12, 22, 81, 0.55));
  border: 1px solid rgba(99, 122, 196, 0.42);
  color: var(--silver-200);
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease-spring), color 0.3s, box-shadow 0.35s;
}
.service-card__icon .ic { width: 28px; height: 28px; }
.service-card:hover .service-card__icon {
  transform: rotate(-7deg) scale(1.1);
  color: var(--gold-300);
  box-shadow: 0 0 34px -6px rgba(212, 160, 23, 0.4);
}
.service-card__title {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--silver-100);
  line-height: 1.06;
  margin-bottom: 12px;
}
.service-card__desc { font-size: 0.97rem; color: var(--silver-400); margin-bottom: 20px; }
.service-card__list { display: grid; gap: 9px; margin-bottom: 20px; }
.service-card__list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--silver-300); }
.service-card__list .ic { width: 16px; height: 16px; color: var(--wa-500); }
.service-card__target {
  font-size: 0.88rem;
  color: var(--silver-500);
  border-left: 2px solid var(--gold-500);
  padding-left: 12px;
  margin-bottom: 24px;
}
.service-card__target strong { color: var(--gold-300); font-weight: 600; }
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wa-500);
  transition: gap 0.25s var(--ease-out), color 0.2s;
}
.service-card__cta:hover { gap: 14px; color: #5ce98f; }
.service-card__cta .ic { width: 1.1em; height: 1.1em; }

/* ============================================================
   RESULTADOS / ANTES & DEPOIS
   ============================================================ */
.results { background: var(--ink-900); }
.ba {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(640px 230px at 50% 8%, rgba(36, 52, 140, 0.3), transparent 70%),
    linear-gradient(180deg, var(--ink-850), var(--ink-950));
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  box-shadow: var(--shadow-card);
}
.ba__pane { padding: clamp(18px, 4vw, 44px) clamp(10px, 3vw, 36px); }
.ba__pane--before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
  background: linear-gradient(180deg, #181d2e, #101422);
  will-change: clip-path;
}
.ba__car { width: 100%; height: auto; }
.ba__sheen { animation: carSheen 4.2s ease-in-out infinite; }
@keyframes carSheen {
  0%, 55% { transform: skewX(-18deg) translateX(0); }
  85%, 100% { transform: skewX(-18deg) translateX(1280px); }
}
.ba__tag {
  position: absolute;
  top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  padding: 7px 18px;
  border-radius: 8px;
  pointer-events: none;
}
.ba__tag--before { left: 18px; background: rgba(20, 24, 38, 0.85); color: #9aa3b5; border: 1px solid rgba(154, 163, 181, 0.35); }
.ba__tag--after { right: 18px; background: rgba(212, 160, 23, 0.16); color: var(--gold-300); border: 1px solid rgba(212, 160, 23, 0.45); box-shadow: 0 0 22px -4px rgba(212, 160, 23, 0.4); }

.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: left;
}
.ba__handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-400) 18%, var(--gold-400) 82%, transparent);
  box-shadow: 0 0 16px 1px rgba(212, 160, 23, 0.55);
}
.ba__handle-grip {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  color: #241a02;
  box-shadow: 0 8px 26px -6px rgba(212, 160, 23, 0.7);
  animation: gripPulse 2.6s ease-in-out infinite;
}
@keyframes gripPulse {
  0%, 100% { box-shadow: 0 8px 26px -6px rgba(212, 160, 23, 0.7), 0 0 0 0 rgba(212, 160, 23, 0.35); }
  50% { box-shadow: 0 8px 26px -6px rgba(212, 160, 23, 0.7), 0 0 0 14px rgba(212, 160, 23, 0); }
}
.ba__handle-grip .ic { width: 24px; height: 24px; }
.ba__hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-500);
  pointer-events: none;
}
.ba__hint .ic { width: 14px; height: 14px; }
.ba:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }

.results__cta { text-align: center; margin-top: clamp(40px, 6vw, 60px); }
.results__cta-text { font-size: 1.12rem; margin-bottom: 22px; }
.results__cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ============================================================
   MONTE SEU ORÇAMENTO (builder)
   ============================================================ */
.builder {
  background:
    radial-gradient(820px 380px at 86% 14%, rgba(37, 211, 102, 0.05), transparent 60%),
    linear-gradient(180deg, var(--ink-950), var(--ink-850));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.builder__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.builder__steps { display: grid; gap: 34px; }
.builder__step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--silver-100);
  margin-bottom: 16px;
}
.builder__step-title span {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #241a02;
  font-size: 0.95rem;
  font-style: normal;
  box-shadow: 0 0 18px -2px rgba(212, 160, 23, 0.45);
}
.builder__step-title small { font-size: 0.75em; color: var(--silver-500); font-weight: 600; }
.builder__chips { display: flex; flex-wrap: wrap; gap: 11px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 99px;
  border: 1px solid var(--border-strong);
  background: rgba(13, 18, 48, 0.6);
  color: var(--silver-300);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), border-color 0.22s, background-color 0.22s, color 0.22s, box-shadow 0.22s;
}
.chip__car { width: 44px; height: 19px; }
.chip:hover { border-color: var(--silver-400); transform: translateY(-2px); }
.chip.is-on {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.08));
  border-color: var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 0 22px -4px rgba(212, 160, 23, 0.45);
  transform: translateY(-2px) scale(1.03);
}

.builder__input {
  width: 100%;
  max-width: 420px;
  background: rgba(13, 18, 48, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--silver-100);
  font: inherit;
  padding: 14px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.builder__input::placeholder { color: var(--silver-500); }
.builder__input:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15); }

.builder__phone {
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #0c1228, #080c1e);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 430px;
  margin-left: auto;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.builder__phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(12, 22, 81, 0.55);
  border-bottom: 1px solid var(--border);
}
.builder__phone-avatar {
  width: 42px;
  height: 42px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--chrome);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1rem;
}
.builder__phone-avatar .ic { width: 0.7em; height: 0.7em; margin-left: -2px; }
.builder__phone-top strong { display: block; color: var(--silver-100); font-size: 0.95rem; }
.builder__phone-top small { color: var(--wa-500); font-size: 0.76rem; }
.builder__phone-chat {
  padding: 22px 18px;
  min-height: 190px;
  background:
    radial-gradient(circle at 12% 22%, rgba(179, 194, 224, 0.05) 1.5px, transparent 2px),
    radial-gradient(circle at 78% 64%, rgba(179, 194, 224, 0.05) 1.5px, transparent 2px),
    #060a1a;
  background-size: 90px 90px, 110px 110px, auto;
}
.builder__bubble {
  position: relative;
  background: #0e3d24;
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #d9fbe6;
  border-radius: 14px 14px 14px 4px;
  padding: 14px 16px 22px;
  font-size: 0.92rem;
  max-width: 100%;
  white-space: pre-line;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s var(--ease-spring);
}
.builder__bubble.is-pop { animation: bubblePop 0.35s var(--ease-spring); }
@keyframes bubblePop { 0% { transform: scale(0.96); } 60% { transform: scale(1.02); } 100% { transform: scale(1); } }
.builder__bubble-time {
  position: absolute;
  right: 12px;
  bottom: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(217, 251, 230, 0.55);
}
.builder__send { width: calc(100% - 36px); margin: 0 18px 18px; }
.builder__send.is-disabled { opacity: 0.45; pointer-events: none; filter: saturate(0.4); }

/* ============================================================
   PROCESSO
   ============================================================ */
.process { background: var(--ink-900); }
.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.process__line {
  position: absolute;
  top: 33px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(179, 194, 224, 0.13);
  border-radius: 2px;
  overflow: hidden;
}
.process__line span {
  display: block;
  height: 100%;
  width: calc(var(--p, 0) * 1%);
  background: var(--gold-grad);
  box-shadow: 0 0 14px 1px rgba(212, 160, 23, 0.5);
  transition: width 0.2s linear;
}
.process__item { position: relative; text-align: center; padding: 0 8px; }
.process__circle {
  position: relative;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-700));
  border: 1px solid rgba(99, 122, 196, 0.5);
  color: var(--silver-200);
  box-shadow: 0 0 0 7px rgba(12, 22, 81, 0.45), 0 12px 28px -10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.process__circle .ic { width: 26px; height: 26px; }
.process__circle b {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #241a02;
  font-family: var(--font-mono);
  font-size: 12px;
}
.process__item:hover .process__circle {
  transform: translateY(-6px) scale(1.06);
  border-color: var(--gold-400);
  color: var(--gold-300);
  box-shadow: 0 0 0 7px rgba(212, 160, 23, 0.12), 0 16px 34px -10px rgba(0, 0, 0, 0.8);
}
.process__item h3 {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.34rem;
  color: var(--silver-100);
  margin-bottom: 8px;
}
.process__item p { font-size: 0.92rem; color: var(--silver-500); margin-bottom: 12px; }
.process__detail {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.08);
  padding: 5px 12px;
  border-radius: 99px;
}
.process__cta { text-align: center; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--ink-950), var(--ink-850) 55%, var(--ink-950)); border-top: 1px solid var(--border); }
.tcarousel { position: relative; max-width: 860px; margin: 0 auto; overflow: hidden; cursor: grab; }
.tcarousel.is-dragging { cursor: grabbing; }
.tcarousel__track { display: flex; transition: transform 0.55s var(--ease-out); will-change: transform; }
.tcard {
  flex: 0 0 100%;
  padding: clamp(30px, 5vw, 52px) clamp(22px, 6vw, 70px);
  text-align: center;
  position: relative;
}
.tcard__quote {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  color: rgba(212, 160, 23, 0.3);
}
.tcard__stars { display: flex; justify-content: center; gap: 4px; color: var(--gold-400); margin-bottom: 20px; }
.tcard__stars .ic { width: 19px; height: 19px; filter: drop-shadow(0 0 7px rgba(212, 160, 23, 0.55)); animation: starIn 0.5s var(--ease-spring) backwards; }
.tcard__stars .ic:nth-child(2) { animation-delay: 0.07s; }
.tcard__stars .ic:nth-child(3) { animation-delay: 0.14s; }
.tcard__stars .ic:nth-child(4) { animation-delay: 0.21s; }
.tcard__stars .ic:nth-child(5) { animation-delay: 0.28s; }
@keyframes starIn { from { transform: scale(0) rotate(-40deg); opacity: 0; } }
.tcard blockquote {
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--silver-200);
  font-weight: 500;
  margin-bottom: 26px;
}
.tcard figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left; }
.tcard__avatar {
  width: 50px;
  height: 50px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  background: var(--chrome);
  color: var(--ink-900);
}
.tcard figcaption strong { display: block; color: var(--silver-100); font-size: 0.98rem; }
.tcard figcaption small { color: var(--gold-400); font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; }

.tcarousel__dots { display: flex; justify-content: center; gap: 9px; padding-bottom: 8px; }
.tcarousel__dots button {
  width: 26px;
  height: 6px;
  border-radius: 99px;
  background: rgba(179, 194, 224, 0.2);
  transition: background-color 0.25s, width 0.3s var(--ease-out);
}
.tcarousel__dots button.is-on { background: var(--gold-400); width: 42px; box-shadow: 0 0 12px rgba(212, 160, 23, 0.5); }
.testimonials__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.testimonials__cta .btn {
  width: min(100%, 520px);
  max-width: 100%;
}

/* ============================================================
   POR QUE A DUO (bento)
   ============================================================ */
.why { background: var(--ink-900); }
.why__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.why__card {
  position: relative;
  grid-column: span 2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(13, 18, 48, 0.8), rgba(7, 10, 30, 0.92));
  padding: 30px 26px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.why__card--wide { grid-column: span 4; background: linear-gradient(150deg, rgba(36, 52, 140, 0.35), rgba(7, 10, 30, 0.9) 60%); }
.why__card--wide2 { grid-column: span 4; }
.why__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), rgba(212, 160, 23, 0.09), transparent 46%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.why__card:hover::before { opacity: 1; }
.why__card:hover { transform: translateY(-5px); border-color: rgba(212, 160, 23, 0.4); box-shadow: var(--shadow-card); }
.why__icon {
  width: 46px;
  height: 46px;
  color: var(--gold-400);
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease-spring);
}
.why__card:hover .why__icon { transform: scale(1.12) rotate(-5deg); }
.why__card h3 {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.38rem;
  color: var(--silver-100);
  margin-bottom: 8px;
}
.why__card p { font-size: 0.93rem; color: var(--silver-500); }

/* ============================================================
   PROMO
   ============================================================ */
.promo { background: linear-gradient(180deg, var(--ink-900), var(--ink-950)); }
.promo__card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(44px, 7vw, 72px) clamp(24px, 5vw, 64px);
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(20, 14, 4, 0.6), rgba(7, 10, 30, 0.95) 55%);
  overflow: hidden;
  isolation: isolate;
}
.promo__card::before { /* borda em gradiente girando */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: conic-gradient(from var(--angle, 0deg), transparent 8%, var(--gold-500) 18%, #fff3 24%, transparent 34%, transparent 56%, var(--fire-500) 68%, transparent 80%);
  -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;
  animation: promoSpin 5.5s linear infinite;
  z-index: -1;
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes promoSpin { to { --angle: 360deg; } }
.promo__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.14), transparent 64%);
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffc46b;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 130, 60, 0.45);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.promo__badge .ic { width: 1.2em; height: 1.2em; color: var(--fire-500); animation: flamePulse 1.6s ease-in-out infinite; }
.promo__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  background-size: 230% 230%;
  animation: chromeShift 5.5s ease-in-out infinite;
  margin-bottom: 16px;
}
.promo__desc { font-size: 1.05rem; color: var(--silver-400); margin-bottom: 34px; }
.promo__desc strong { color: var(--gold-300); }

.promo__count { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 34px; }
.promo__count > i { font-style: normal; font-family: var(--font-mono); font-size: 1.6rem; color: var(--gold-500); transform: translateY(-12px); animation: colonBlink 1s steps(1) infinite; }
@keyframes colonBlink { 50% { opacity: 0.25; } }
.promo__unit { display: grid; gap: 7px; justify-items: center; }
.promo__unit b {
  min-width: 76px;
  padding: 14px 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1;
  color: var(--silver-100);
  background: linear-gradient(180deg, rgba(36, 52, 140, 0.4), rgba(10, 14, 36, 0.9));
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 10px 26px -12px rgba(0, 0, 0, 0.8);
  text-shadow: 0 0 18px rgba(179, 194, 224, 0.4);
}
.promo__unit b.is-tick { animation: unitTick 0.45s var(--ease-spring); }
@keyframes unitTick { 0% { transform: translateY(-7px); color: var(--gold-300); } 100% { transform: none; } }
.promo__unit span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--silver-500); }

.promo__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 36px; }
.promo__perk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--silver-200);
  background: rgba(13, 18, 48, 0.65);
  border: 1px solid var(--border-strong);
  padding: 12px 20px;
  border-radius: 99px;
  transition: border-color 0.25s, transform 0.25s var(--ease-spring);
}
.promo__perk:hover { border-color: var(--gold-400); transform: translateY(-3px); }
.promo__perk .ic { color: var(--gold-400); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ink-900); }
.faq__container { max-width: 820px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(13, 18, 48, 0.65), rgba(7, 10, 30, 0.85));
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item.is-open { border-color: rgba(212, 160, 23, 0.45); box-shadow: 0 16px 38px -18px rgba(212, 160, 23, 0.25); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  color: var(--silver-200);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--gold-300); }
.faq__plus { width: 22px; height: 22px; flex: none; color: var(--gold-400); transition: transform 0.4s var(--ease-out); }
.faq__item.is-open .faq__plus { transform: rotate(135deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq__a > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 22px;
  color: var(--silver-500);
  font-size: 0.97rem;
  transition: padding 0.45s var(--ease-out);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__item.is-open .faq__a > p { padding: 0 22px 22px; }
.faq__cta { text-align: center; margin-top: 40px; display: grid; gap: 14px; justify-items: center; }
.faq__cta p { color: var(--silver-400); font-size: 1.05rem; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.location { background: linear-gradient(180deg, var(--ink-950), var(--ink-850)); border-top: 1px solid var(--border); }
.location__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 26px; align-items: stretch; }
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  min-height: 380px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.location__map iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.85) contrast(1.04); }
.location__map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  color: var(--silver-500);
  background:
    radial-gradient(circle at 50% 42%, rgba(36, 52, 140, 0.35), transparent 60%),
    repeating-linear-gradient(0deg, rgba(179, 194, 224, 0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(179, 194, 224, 0.05) 0 1px, transparent 1px 44px),
    var(--ink-850);
}
.location__map-fallback .ic { width: 38px; height: 38px; color: var(--gold-400); animation: pinBounce 2.2s ease-in-out infinite; }
@keyframes pinBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(12, 22, 81, 0.4), rgba(7, 10, 30, 0.9));
  padding: clamp(26px, 4vw, 38px);
}
.location__row { display: flex; gap: 15px; align-items: flex-start; }
.location__row > .ic {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 11px;
  color: var(--gold-400);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
}
.location__row strong { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-500); margin-bottom: 3px; }
.location__row p { color: var(--silver-200); font-weight: 600; font-size: 0.98rem; }
.location__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final {
  position: relative;
  background:
    radial-gradient(760px 320px at 50% 110%, rgba(36, 52, 140, 0.5), transparent 70%),
    linear-gradient(180deg, var(--ink-900), var(--navy-700) 160%);
  text-align: center;
  overflow: hidden;
}
.final__beams {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 200deg at 18% -8%, transparent 44%, rgba(212, 160, 23, 0.1) 50%, transparent 56%),
    conic-gradient(from 160deg at 82% -8%, transparent 44%, rgba(179, 194, 224, 0.12) 50%, transparent 56%);
  filter: blur(26px);
  pointer-events: none;
  animation: finalBeams 10s ease-in-out infinite alternate;
}
@keyframes finalBeams { from { opacity: 0.65; } to { opacity: 1; } }
.final__content { position: relative; z-index: 1; }
.final__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  line-height: 1;
  color: var(--silver-100);
  margin-bottom: 18px;
}
.final__sub { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--silver-300); margin-bottom: 10px; }
.final__text { color: var(--silver-500); margin-bottom: 38px; }
.final__actions {
  display: flex;
  justify-content: center;
  width: 100%;
}
.final__actions .btn {
  width: min(100%, 560px);
  max-width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-950); border-top: 1px solid var(--border); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 1fr;
  gap: 38px;
  padding: clamp(50px, 7vw, 74px) 0 44px;
}
.footer__logo { width: 168px; height: auto; margin-bottom: 18px; filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5)); }
.footer__brand p { font-size: 0.92rem; color: var(--silver-500); max-width: 300px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 11px; }
.footer__social-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  color: var(--silver-300);
  transition: transform 0.25s var(--ease-spring), background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.footer__social-btn .ic { width: 21px; height: 21px; }
.footer__social-btn--wa:hover { background: var(--wa-500); border-color: var(--wa-500); color: #06220f; transform: translateY(-4px); box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55); }
.footer__social-btn--ig:hover { background: linear-gradient(45deg, #833ab4, #fd1d1d 60%, #fcb045); border-color: transparent; color: #fff; transform: translateY(-4px); box-shadow: 0 14px 30px -8px rgba(214, 41, 118, 0.55); }

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.93rem;
  color: var(--silver-500);
  padding: 5.5px 0;
  transition: color 0.2s, transform 0.2s;
}
.footer__col a:hover { color: var(--gold-300); transform: translateX(5px); }
.footer__col .ic { width: 17px; height: 17px; margin-top: 3px; color: var(--gold-500); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bottom p { font-size: 0.84rem; color: var(--silver-500); text-align: center; }

/* ============================================================
   FLUTUANTES (FAB + voltar ao topo)
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wa-500), var(--wa-600));
  color: #fff;
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, background 0.25s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wa-fab:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 18px 44px -8px rgba(37, 211, 102, 0.85); }
.wa-fab--bot {
  background: var(--ink-900);
  border: 2px solid rgba(212, 160, 23, 0.45);
  box-shadow: 0 10px 32px -8px rgba(0, 0, 0, 0.55);
  padding: 0;
  overflow: hidden;
}
.wa-fab--bot:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px -8px rgba(212, 160, 23, 0.35);
}
.wa-fab__avatar {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.wa-fab.is-open .wa-fab__avatar { opacity: 0; transform: scale(0.7) rotate(90deg); }
.wa-fab--bot.is-open {
  background: var(--ink-850);
  color: var(--silver-100);
  border: 1px solid var(--border-strong);
  box-shadow: 0 10px 32px -8px rgba(0, 0, 0, 0.55);
}
.wa-fab--bot.is-open:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.65);
}
.wa-fab__icon {
  grid-area: 1 / 1;
  width: 28px;
  height: 28px;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.wa-fab__icon--close { opacity: 0; transform: scale(0.7) rotate(-90deg); }
.wa-fab.is-open .wa-fab__icon--close { opacity: 1; transform: scale(1) rotate(0deg); }
.wa-fab.is-open .wa-fab__tip { opacity: 0 !important; pointer-events: none; }
.wa-fab--bot .wa-fab__ping { display: none; }
.wa-fab .ic { width: 28px; height: 28px; pointer-events: none; }

/* Typebot popup */
typebot-popup {
  z-index: 999998;
  max-width: 100%;
  overflow: hidden;
}
typebot-popup::part(popup) {
  max-height: min(720px, calc(100dvh - 32px));
  border-radius: 16px;
  overflow: hidden;
}
.wa-fab__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa-500);
  animation: fabPing 2.2s ease-out infinite;
}
@keyframes fabPing {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(1.65); opacity: 0; }
}
.wa-fab__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--silver-100);
  color: var(--ink-900);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.5);
}
.wa-fab__tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: var(--silver-100);
}
.wa-fab:hover .wa-fab__tip, .wa-fab.show-tip .wa-fab__tip { opacity: 1; transform: translateY(-50%) translateX(0); }

.totop {
  position: fixed;
  right: 26px;
  bottom: 98px;
  z-index: 179;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--gold-300);
  background: rgba(10, 14, 36, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), visibility 0.3s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}
.totop:hover { color: var(--silver-100); }
.totop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  pointer-events: none;
}
.totop__ring-track,
.totop__ring-progress {
  stroke-width: 2.5;
}
.totop__ring-track { stroke: rgba(179, 194, 224, 0.18); }
.totop__ring-progress {
  stroke: var(--gold-400);
  stroke-linecap: round;
}
.totop__icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: none;
  display: block;
}

/* ============================================================
   SISTEMA DE REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition:
    opacity 0.85s var(--ease-out) var(--d, 0s),
    transform 0.85s var(--ease-out) var(--d, 0s),
    filter 0.85s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .navbar__links { display: none; }
  .navbar__burger { display: flex; }
  .navbar__cta { margin-left: auto; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__card, .why__card--wide, .why__card--wide2 { grid-column: span 1; }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__text { width: 100%; max-width: 100%; }
  .hero__visual { order: -1; }
  .hero__logo { width: min(300px, 62%); }
  .hero__orbit { width: min(88%, 320px); }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .hero__trust { justify-content: center; }
  .testimonials__cta .btn,
  .results__cta-actions .btn,
  .process__cta .btn,
  .final__actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }
  .final__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .results__cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .marquee { transform: none; }
  .hero { padding-bottom: 110px; }
  .hero__watermark { font-size: min(56vw, 240px); }
  .hero__beam,
  .hero__floor { display: none; }
  .problems::before { width: 320px; height: 320px; top: -120px; right: -120px; }

  .builder__grid { grid-template-columns: 1fr; }
  .builder__phone { margin-inline: auto; position: static; }

  .process__timeline { grid-template-columns: 1fr; gap: 36px; max-width: 460px; margin-inline: auto; margin-bottom: 44px; }
  .process__line { left: 32px; right: auto; top: 8px; bottom: 8px; width: 2px; height: auto; }
  .process__line span { width: 100%; height: calc(var(--p, 0) * 1%); transition: height 0.2s linear; }
  .process__item { text-align: left; padding-left: 76px; }
  .process__circle { position: absolute; left: 0; top: 0; margin: 0; }

  .location__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { width: min(1180px, 100% - 36px); }
  .navbar__inner { gap: 14px; }
  .navbar__cta span { display: none; }
  .navbar__cta { padding: 11px 13px; }
  .navbar__cta .ic { width: 1.5em; height: 1.5em; }
  .problems__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 14px; }
  .stats__item:nth-child(odd)::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions .btn { width: 100%; }
  .results__cta-actions .btn { width: 100%; }
  .promo__unit b { min-width: 62px; }
  .promo__count { gap: 6px; }
  .topbar__link span { display: none; }
  .wa-fab__tip { display: none; }
  .ba__sheen { animation: none; transform: none; }
  .wa-fab { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 54px; height: 54px; }
  .totop {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
  .totop__icon { width: 16px; height: 16px; }

  typebot-popup::part(popup) {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
  }
  .ba__handle-grip { width: 44px; height: 44px; }
  .ba__pane { padding-bottom: 48px; }
  .ba__hint { bottom: 13px; white-space: nowrap; font-size: 9.5px; letter-spacing: 0.16em; }
  .ba__tag { font-size: 0.78rem; padding: 5px 12px; top: 12px; }
  .ba__tag--before { left: 12px; }
  .ba__tag--after { right: 12px; }
  .mobile-menu__nav { gap: 2px; }
}

/* ============================================================
   MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__particles, .cursor-dot, .cursor-ring { display: none !important; }
  .marquee__track--a, .marquee__track--b { animation: none; transform: none; }
}
