/* ============================================================
   Landing PRT — JPB Soluções
   Estilo: Liquid Glass + dark + dourado JPB
   Inspiração: Bloom (estética), adaptado pra finanças/patrimonial
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-elev: #14110a;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.30);
  --gold-glow: rgba(201, 168, 76, 0.12);
  --white: #ffffff;
  --w-90: rgba(255,255,255,0.90);
  --w-80: rgba(255,255,255,0.80);
  --w-60: rgba(255,255,255,0.60);
  --w-50: rgba(255,255,255,0.50);
  --w-30: rgba(255,255,255,0.30);
  --radius: 1rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
a:hover { opacity: 0.8; }
a:visited { color: var(--gold); }

body {
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  height: 100vh;
  overflow-y: scroll;
}

em, i, .italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--w-80);
}

/* ============================================================
   BACKGROUND AMBIENTE
   ============================================================ */
.bg-layer {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.7) hue-rotate(20deg) brightness(0.55) contrast(1.1);
  transform: scale(1.08) translateY(0);
  transition: transform 0.4s linear;
  will-change: transform;
}
.bg-layer {
  animation: bgLayerDrift 40s ease-in-out infinite alternate;
}
@keyframes bgLayerDrift {
  0%   { transform: scale(1) translate(0,0); }
  50%  { transform: scale(1.02) translate(-0.5%, 0.5%); }
  100% { transform: scale(1.04) translate(0.5%, -0.5%); }
}
/* Gradiente animado dourado/dark — fallback elegante se vídeo não carregar */
.bg-gradient {
  position: absolute; inset: 0;
  background:
    /* vinheta dark nas bordas pra contraste do texto */
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.65) 100%),
    /* leve toque dourado no topo + escurecimento geral */
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.50) 100%);
  animation: bgPulse 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes bgPulse {
  0%   { transform: scale(1) translate(0,0); opacity: 0.9; }
  50%  { transform: scale(1.08) translate(-2%, 1%); opacity: 1; }
  100% { transform: scale(1.04) translate(1%, -1%); opacity: 0.95; }
}
.bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* ============================================================
   LIQUID GLASS (light + strong)
   ============================================================ */
.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  border: none;
}
.liquid-glass {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.10);
}
.liquid-glass-strong {
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  box-shadow:
    4px 4px 12px rgba(0,0,0,0.20),
    inset 0 1px 1px rgba(255,255,255,0.15),
    0 0 60px var(--gold-glow);
  background: rgba(20,17,10,0.25);
}
/* Borda gradiente via ::before (mistura branco com dourado) */
.liquid-glass::before,
.liquid-glass-strong::before {
  content: "";
  position: absolute; inset: 0;
  padding: 1.4px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    var(--gold-soft) 25%,
    rgba(255,255,255,0.10) 50%,
    var(--gold-soft) 75%,
    rgba(255,255,255,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong::before {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.55) 0%,
    var(--gold) 25%,
    rgba(255,255,255,0.18) 50%,
    var(--gold) 75%,
    rgba(255,255,255,0.55) 100%
  );
  opacity: 0.7;
}

/* ============================================================
   BRAND (logo top-left)
   ============================================================ */
.brand {
  position: fixed;
  top: 1.5rem; left: 2rem;
  z-index: 30;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.3s var(--ease);
}
.brand-link:hover { opacity: 0.85; }
.brand-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  /* harmoniza logo cobre original com paleta dourada da landing */
  filter:
    brightness(1.25)
    saturate(1.4)
    hue-rotate(8deg)
    drop-shadow(0 0 18px var(--gold-glow));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.brand-link:hover .brand-logo {
  transform: scale(1.06);
  filter:
    brightness(1.35)
    saturate(1.5)
    hue-rotate(8deg)
    drop-shadow(0 0 32px var(--gold-soft));
}
.brand-logo-big {
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 50px var(--gold-glow));
}
.bl-rings {
  position: absolute; inset: -10px;
  width: calc(100% + 20px); height: calc(100% + 20px);
  animation: brandRotate 80s linear infinite;
  opacity: 0.7;
}
.bl-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%; height: auto;
  /* harmoniza logo cobre com paleta dourada da landing */
  filter:
    brightness(1.3)
    saturate(1.5)
    hue-rotate(10deg)
    drop-shadow(0 0 24px rgba(201,168,76,0.45));
  animation: blFloat 6s ease-in-out infinite alternate;
}
@keyframes brandRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes blFloat {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -52%) scale(1.03); }
}

/* ============================================================
   NAVIGATION (dots + counter)
   ============================================================ */
.dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--w-30);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.dot:hover { background: var(--w-60); transform: scale(1.4); }
.dot.is-active {
  background: var(--gold);
  transform: scale(1.6);
  box-shadow: 0 0 12px var(--gold-soft);
}

.counter {
  position: fixed;
  bottom: 1.5rem; right: 2rem;
  z-index: 30;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--w-60);
  font-variant-numeric: tabular-nums;
}
.counter #counter-current {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   DECK + SCREENS
   ============================================================ */
.deck {
  position: relative;
  z-index: 10;
}
.screen {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}
.screen > div {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

/* ============================================================
   TIPOGRAFIA / COMPONENTES COMUNS
   ============================================================ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--w-50);
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.85);
}
.display {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 8px 24px rgba(0,0,0,0.7);
}
.display-xl {
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
}
.display em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  opacity: 1;
}
/* Accent: serif italic dourado (mesma família) */
.display .accent {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* Split text: cada palavra entra em cascata */
.display .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px) rotateX(-40deg);
  filter: blur(6px);
  transform-origin: bottom center;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}
.display .word.word-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}
.lede {
  margin-top: 1.5rem;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--w-80);
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
.micro {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--w-50);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.85);
}

kbd {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--w-80);
}

/* ============================================================
   REVEAL (entrada por seção) — entrada mais dramática + float idle
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
}
.screen.is-visible .reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: floatIdle 9s ease-in-out 1.2s infinite alternate;
}
@keyframes floatIdle {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.005); }
}

/* ============================================================
   TELA 1 — CAPA
   ============================================================ */
.screen-cover .cover-wrap { padding: 2rem; }
.cover-cta { margin-top: 3rem; }
.hint {
  font-size: 0.85rem;
  color: var(--w-50);
  letter-spacing: 0.05em;
}

/* ============================================================
   TELA 2 — A PERGUNTA
   ============================================================ */
.counter-mock {
  margin-top: 3rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: 'Inter', monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--w-60);
  letter-spacing: 0.05em;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}
.cm-prefix { color: var(--gold); font-weight: 600; }
.cm-num {
  background: linear-gradient(180deg, var(--w-90), var(--w-50));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.cm-mark {
  color: var(--gold);
  font-size: 1.4em;
  margin-left: 0.4rem;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ============================================================
   TELA 3 — DESCOBERTA
   ============================================================ */
.flow {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.flow-side {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 2rem;
  border-radius: var(--radius);
  min-width: 280px;
  position: relative;
}
.flow-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--w-50);
  text-transform: uppercase;
  font-weight: 400;
}
.flow-from { background: rgba(255,255,255,0.04); }
.flow-to {
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  box-shadow: 0 0 40px var(--gold-glow);
}
.flow-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--w-50);
  text-transform: uppercase;
}
.flow-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.85));
}
.flow-from .flow-amount {
  color: var(--w-60);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--w-30);
}
.flow-to .flow-amount {
  background: linear-gradient(180deg, #f0d685, #c9a84c 60%, #8a6e2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.flow-arrow {
  color: var(--gold);
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-arrow svg { width: 100%; height: 24px; }

/* ============================================================
   TELA 4 — 3 GANHOS
   ============================================================ */
.cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  padding: 2.5rem 2rem;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay);
}
.screen.is-visible .card {
  opacity: 1;
  transform: translateY(0);
}
.card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s var(--ease);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  border: 1px solid var(--gold-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 0 30px var(--gold-soft);
}
.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--w-80);
  line-height: 1.6;
}

/* ============================================================
   TELA 5 — TIMELINE
   ============================================================ */
.timeline {
  margin-top: 3.5rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-soft), transparent);
  z-index: 0;
}
.t-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay);
}
.screen.is-visible .t-step {
  opacity: 1;
  transform: translateY(0);
}
.t-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}
.t-step h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.t-step p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--w-60);
  line-height: 1.5;
}

/* ============================================================
   TELA 6 — RISCO ZERO
   ============================================================ */
.seal {
  margin: 3rem auto 0;
  max-width: 640px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}
.seal-ring {
  flex-shrink: 0;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--gold-glow), inset 0 0 30px var(--gold-glow);
  animation: sealPulse 2.8s ease-in-out infinite;
}
@keyframes sealPulse {
  0%,100% { box-shadow: 0 0 40px var(--gold-glow), inset 0 0 30px var(--gold-glow); }
  50%     { box-shadow: 0 0 70px var(--gold-soft), inset 0 0 50px var(--gold-glow); }
}
.seal-pct {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.seal-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--w-80);
  margin-top: 0.2rem;
}
.seal-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.seal-bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.05rem;
  color: var(--w-90);
}
.seal-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-soft);
}
.seal-bullets li::after {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 6px; height: 3px;
  border-left: 1.5px solid #0a0a0a;
  border-bottom: 1.5px solid #0a0a0a;
  transform: rotate(-45deg);
}

/* ============================================================
   TELA 7 — QUEM É A JPB
   ============================================================ */
.stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.stat {
  padding: 2rem 1rem;
  border-top: 1px solid var(--gold-soft);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay);
}
.screen.is-visible .stat {
  opacity: 1;
  transform: translateY(0);
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 600;
  background: linear-gradient(180deg, #f0d685, #c9a84c 55%, #8a6e2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.85)) drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}
.stat-decimal {
  font-size: 0.55em;
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  color: transparent;
  margin-left: 0.05em;
  vertical-align: 0.15em;
}
.stats-disclaimer {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--w-50);
}
.coverage-line {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--w-80);
}
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--w-60);
  letter-spacing: 0.05em;
}

/* ============================================================
   TELA 8 — CTA
   ============================================================ */
/* Próximos Passos (Tela 8) */
.next-steps {
  margin: 3rem auto 0;
  max-width: 1000px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.ns-item {
  position: relative;
  padding: 2.2rem 1.8rem 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay);
}
.screen.is-visible .ns-item {
  opacity: 1;
  transform: translateY(0);
}
.ns-num {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.ns-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.ns-item p {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--w-80);
  line-height: 1.6;
}

.cta-meta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.cta-meta a {
  color: var(--w-80);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cta-meta a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-soft);
}
.meta-sep {
  color: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE (mobile básico — não é prioridade)
   ============================================================ */
@media (max-width: 768px) {
  .brand { left: 1rem; top: 1rem; }
  .dots { right: 1rem; gap: 0.6rem; }
  .counter { right: 1rem; bottom: 1rem; }
  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .timeline::before { display: none; }
  .stats { grid-template-columns: 1fr; gap: 1rem; }
  .next-steps { grid-template-columns: 1fr; gap: 1rem; }
  .seal { flex-direction: column; gap: 1.5rem; padding: 2rem; }
  .flow { flex-direction: column; gap: 1rem; }
  .flow-arrow { transform: rotate(90deg); width: 80px; }
  .cta-meta { flex-direction: column; gap: 0.5rem; }
  .meta-sep { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    transition-duration: 0.01s !important;
  }
  .reveal, .card, .t-step, .stat {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   SUPPORTS FALLBACK (sem backdrop-filter)
   ============================================================ */
@supports not (backdrop-filter: blur(10px)) {
  .liquid-glass,
  .liquid-glass-strong {
    background: rgba(20, 17, 10, 0.75);
  }
}
