/* =====================================================================
   Advogado 2.0 — Landing Page
   Identidade "Lex Elite" replicada do app mobile:
   navy #071426 + gold #D99A2D + azul elétrico #0266ff, Montserrat/Inter.
   Tokens espelham src/theme/tokens.ts do app.
   ===================================================================== */

:root {
  /* Fundo / superfícies */
  --bg: #071426;
  --bg-deep: #04101f;
  --surface: #0b1628;
  --surface-2: #0f1d33;
  --surface-3: #142640;

  /* Marca */
  --gold: #d99a2d;
  --gold-bright: #ffd34d;
  --gold-deep: #a9741d;
  --blue: #0266ff;
  --blue-soft: #3e86ff;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c4b;
  --danger: #93000a;

  /* Texto */
  --text: #e6e7ea;
  --text-warm: #cfc6b1;
  --muted: #94a1b8;
  --muted-2: #6a7688;

  /* Linhas */
  --line: rgba(217, 154, 45, 0.20);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-blue: rgba(2, 102, 255, 0.28);

  /* Forma */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 20px 55px rgba(217, 154, 45, 0.28);
  --shadow-blue: 0 20px 55px rgba(2, 102, 255, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Aura de fundo global */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -12%, rgba(217, 154, 45, 0.10), transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(2, 102, 255, 0.10), transparent 55%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 2;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #201503;
  padding: 10px 16px; z-index: 999;
  border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px; border-radius: 6px;
}

/* Barra de progresso */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  z-index: 200; transition: width 0.1s linear;
}

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding: 8px 16px;
  border: 1px solid var(--line); border-radius: 100px;
  background: rgba(217, 154, 45, 0.06);
}
.eyebrow--center { margin-inline: auto; }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(217, 154, 45, 0.5);
  animation: dotPulse 2.4s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 154, 45, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(217, 154, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 154, 45, 0); }
}

.art-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-soft); }
.text-muted-serif { color: var(--text-warm); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; line-height: 1;
  padding: 13px 22px; min-height: 46px;
  border-radius: 100px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; min-height: 54px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #241802; font-weight: 700;
  box-shadow: 0 10px 30px rgba(217, 154, 45, 0.32);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(217, 154, 45, 0.45); }

.btn--blue {
  background: linear-gradient(180deg, var(--blue-soft), var(--blue));
  color: #fff; box-shadow: 0 10px 30px rgba(2, 102, 255, 0.32);
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(2, 102, 255, 0.45); }

.btn--ghost { color: var(--text); border-color: var(--line-soft); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; }

.btn--line { color: #fff; border-color: rgba(217,154,45,0.4); }
.btn--line:hover { background: rgba(217,154,45,0.1); border-color: var(--gold); transform: translateY(-2px); }

.btn--wa {
  background: linear-gradient(180deg, #2fdd74, var(--whatsapp-deep));
  color: #052914; font-weight: 700;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(7, 20, 38, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { height: 46px; width: auto; filter: drop-shadow(0 2px 8px rgba(217,154,45,0.35)); }
.brand__text {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 800; color: #fff; letter-spacing: 0.02em;
}
.brand__text em { color: var(--gold); font-style: normal; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  position: relative; transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; gap: 12px; align-items: center; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px; background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; }
.nav__mobile:not([hidden]) {
  display: flex; flex-direction: column; gap: 14px;
  padding: 20px 24px 28px;
  background: rgba(7, 20, 38, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__mobile a:not(.btn) {
  color: var(--text); font-size: 1.05rem;
  padding: 8px 0; border-bottom: 1px solid var(--line-soft);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; padding-top: 132px; padding-bottom: 48px;
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 40px; align-items: center;
}
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem); line-height: 1.03;
  letter-spacing: -0.02em; color: #fff; margin: 22px 0 22px;
}
.hero__title .grad {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted);
  max-width: 30em; margin-bottom: 30px;
}
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__proof {
  list-style: none; display: flex; flex-wrap: wrap; gap: 26px; margin: 0; padding: 0;
}
.hero__proof li { font-size: 0.86rem; color: var(--muted-2); display: flex; align-items: baseline; gap: 7px; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); font-weight: 700; }

/* Palco do herói: mascote com as áreas do direito ao redor (projeção holográfica) */
.hero__stage {
  position: relative;
  width: 100%; max-width: 540px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
}
.hero__holo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.holo-pulse { transform-origin: 240px 240px; animation: holoPulse 3s ease-out infinite; }
@keyframes holoPulse {
  0% { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0; transform: scale(7); }
}
/* corrente neon percorrendo os traços em direção às especialidades */
.holo-flow line { stroke-dasharray: 4 18; animation: holoFlow 2.4s linear infinite; }
@keyframes holoFlow { to { stroke-dashoffset: -44; } }

.hero__mascot {
  position: relative; z-index: 2;
  width: min(268px, 54%); height: auto;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,0.6));
  animation: floatMascot 6s ease-in-out infinite;
}
@keyframes floatMascot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Nós de área ao redor do mascote */
.orbit {
  position: absolute; z-index: 3;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 9px 15px; border-radius: 100px;
  background: rgba(9, 20, 38, 0.85);
  border: 1px solid var(--line-blue);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), inset 0 0 14px rgba(2, 102, 255, 0.12),
    0 0 16px rgba(2, 102, 255, 0.14);
  backdrop-filter: blur(6px);
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; color: var(--text);
  animation: orbitFloat 5s ease-in-out infinite;
}
.orbit svg {
  width: 22px; height: 22px; color: var(--gold); flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(217, 154, 45, 0.55));
}
.orbit:nth-of-type(2n) { animation-delay: -1.6s; }
.orbit:nth-of-type(3n) { animation-delay: -3.1s; }
@keyframes orbitFloat { 0%,100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 6px)); } }

/* ---------- Seções ---------- */
.section { padding-block: clamp(70px, 10vw, 122px); position: relative; }

.section__head { max-width: 640px; margin-bottom: 52px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem); line-height: 1.12;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 16px;
}
.section__intro { font-size: clamp(1rem, 1.5vw, 1.12rem); color: var(--muted); margin: 0; }
.section__intro strong { color: var(--text); font-weight: 600; }

/* ---------- Pilares ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-md); }
.pillar__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: rgba(217,154,45,0.1); border: 1px solid var(--line); color: var(--gold); margin-bottom: 20px;
}
.pillar h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 0 10px; }
.pillar p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.pillar p strong { color: var(--text); }

/* ---------- Passos ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.step {
  padding: 28px 24px; border-radius: var(--r-md);
  border: 1px solid var(--line-soft); background: rgba(255,255,255,0.015); position: relative;
}
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1.4px var(--gold);
  display: block; margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 1.08rem; color: #fff; margin: 0 0 8px; font-weight: 700; font-family: var(--font-display); }
.step p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------- Para Advogados ---------- */
.vip {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(217,154,45,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-deep), var(--bg));
  border-block: 1px solid var(--line); overflow: hidden;
}
.vip__glow {
  position: absolute; bottom: -160px; left: -120px; width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(217,154,45,0.14), transparent 70%); pointer-events: none;
}
.vip__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vip__stat {
  display: flex; align-items: center; gap: 18px; margin: 28px 0 32px;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(217,154,45,0.05);
}
.vip__stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.vip__stat-num span { font-size: 1.6rem; }
.vip__stat-label { font-size: 0.86rem; color: var(--muted); max-width: 16em; }

.vip__benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.vip__benefit {
  display: flex; gap: 18px; padding: 24px; border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.vip__benefit:hover { transform: translateX(6px); border-color: var(--line); }
.vip__benefit-icon {
  flex-shrink: 0; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
  background: rgba(217,154,45,0.1); border: 1px solid var(--line); color: var(--gold);
}
.vip__benefit h3 { margin: 0 0 6px; font-size: 1.1rem; color: #fff; font-weight: 700; font-family: var(--font-display); }
.vip__benefit p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* ---------- Propósito / lado humano ---------- */
.human { overflow: hidden; }
.human__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.human__figure {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.human__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.human__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,20,38,0.65));
}
.human__card {
  margin-top: 28px; padding: 28px 30px; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(217,154,45,0.07), rgba(11,22,40,0.5));
}
.human__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--whatsapp); padding: 5px 12px; border-radius: 100px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); margin-bottom: 14px;
}
.human__card h3 { font-family: var(--font-display); font-size: 1.35rem; color: #fff; margin: 0 0 10px; font-weight: 700; }
.human__card p { margin: 0; color: var(--muted); }

/* ---------- Finale — duas portas ---------- */
.finale { position: relative; padding-block: clamp(78px, 11vw, 140px); overflow: hidden; }
.finale__glow {
  position: absolute; top: -100px; left: 50%; width: 820px; height: 620px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(217,154,45,0.16), transparent 70%); pointer-events: none;
}
.finale__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.finale__mascot { width: 120px; height: auto; margin: 0 auto 6px; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.5)); }
.finale__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem); line-height: 1.06;
  letter-spacing: -0.02em; color: #fff; margin: 18px 0 16px;
}
.finale__lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin-inline: auto; }
.door {
  padding: 38px 34px; border-radius: var(--r-xl); border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.door:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.door--gold {
  border-color: var(--line);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(217,154,45,0.12), transparent 60%),
    linear-gradient(170deg, var(--surface-3), var(--surface));
}
.door--gold:hover { box-shadow: var(--shadow-gold); border-color: var(--gold); }
.door__kicker { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin-bottom: 10px; }
.door--gold .door__kicker { color: var(--gold); }
.door__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.door__text { color: var(--muted); margin: 0 0 26px; flex-grow: 1; }
.door__note { margin-top: 14px; font-size: 0.78rem; color: var(--muted-2); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding-block: 46px 30px; position: relative; z-index: 2; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line-soft);
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 340px; }
.footer__logo {
  width: 92px; height: 92px; flex: none; align-self: flex-start;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(217,154,45,0.28));
}
.footer__brand p { color: var(--muted-2); font-size: 0.9rem; margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--gold); }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 22px; font-size: 0.82rem; color: var(--muted-2); }

/* ---------- Paginas legais ---------- */
.legal-page {
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(217, 154, 45, 0.10), transparent 55%),
    var(--bg);
}
.legal-main {
  width: min(860px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0 72px;
}
.legal-shell {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(15, 29, 51, 0.92), rgba(11, 22, 40, 0.96));
  box-shadow: var(--shadow-md);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 700;
}
.legal-header {
  margin-bottom: 32px;
}
.legal-header h1 {
  margin: 8px 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
}
.legal-header p,
.legal-section p,
.legal-section li {
  color: var(--muted);
}
.legal-section {
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-section + .legal-section {
  margin-top: 26px;
}
.legal-section h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.22rem;
}
.legal-section a {
  color: var(--gold-bright);
}
.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

/* ---------- WhatsApp flutuante ---------- */
.fab-wa {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(180deg, #2fdd74, var(--whatsapp-deep));
  color: #052914; box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 90; transition: transform 0.25s var(--ease);
  animation: fabPop 0.4s var(--ease) 1.2s both;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes fabPop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__stage { order: -1; max-width: 460px; }
  .vip__grid, .human__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 108px; }
  .doors { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .orbit { font-size: 0.72rem; padding: 6px 10px; }
}
@media (max-width: 560px) {
  .hero__stage { max-width: min(360px, 100vw - 18px); }
  .hero__mascot { width: min(156px, 48%); }
  .orbit {
    gap: 4px;
    padding: 4px 7px;
    font-size: 0.52rem;
    letter-spacing: 0;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.42), inset 0 0 10px rgba(2, 102, 255, 0.12);
  }
  .orbit svg { width: 12px; height: 12px; }
  .orbit:nth-of-type(1) { --y: 9% !important; }
  .orbit:nth-of-type(2) { --x: 80% !important; --y: 19% !important; }
  .orbit:nth-of-type(3) { --x: 83% !important; }
  .orbit:nth-of-type(4) { --x: 80% !important; --y: 81% !important; }
  .orbit:nth-of-type(5) { --y: 91% !important; }
  .orbit:nth-of-type(6) { --x: 20% !important; --y: 81% !important; }
  .orbit:nth-of-type(7) { --x: 17% !important; }
  .orbit:nth-of-type(8) { --x: 20% !important; --y: 19% !important; }
}
@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .steps { grid-template-columns: 1fr; }
  .hero__proof { gap: 16px; }
  .door { padding: 30px 24px; }
  .fab-wa { bottom: 18px; right: 18px; }
}
@media (max-width: 380px) {
  .hero__stage { max-width: min(330px, 100vw - 16px); }
  .orbit { padding: 3px 6px; font-size: 0.48rem; }
  .orbit svg { display: none; }
}
