/* =========================================================================
   BeamBroker — landing page "Cinematic Hero"
   Uma única cena, dirigida pelo scroll: pergunta -> produto -> convite.
   ========================================================================= */

/* ---------- Fontes (auto-hospedadas, subset latin) ---------------------- */
@font-face { font-family: Figtree; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/figtree-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/figtree-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/figtree-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/figtree-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/figtree-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/figtree-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: Figtree; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/figtree-latin-900-normal.woff2") format("woff2"); }

/* ---------- Tokens ------------------------------------------------------ */
:root {
  --bg: #07080B;
  --fg: #F4F5F7;
  --accent: #34C46A;
  --accent-soft: #8CF0B0;
  --card-green: #0B3A21;
  --ink: #0F172A;
  --blue: #1D5CF5;
  --muted: #7A828F;
  --faint: #9AA2AF;

  /* Altura total do trilho de scroll — controla o ritmo da cena. */
  --scroll-length: 420vh;

  --font: Figtree, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset mínimo ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

a { color: #9BB8FF; text-decoration: none; }
a:hover { color: #CBDCFF; }

:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; border-radius: 6px; }

@keyframes ch-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes ch-hint  { 0% { transform: translateY(-70%); opacity: 0; } 45% { opacity: 1; } 100% { transform: translateY(70%); opacity: 0; } }

/* =========================================================================
   Palco
   ========================================================================= */
.ch-root { position: relative; width: 100%; background: var(--bg); }

.ch-track { position: relative; height: var(--scroll-length); }

.ch-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  perspective: 1500px;
}

.ch-grain {
  position: absolute;
  inset: 0;
  z-index: 60;
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(244, 245, 247, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 245, 247, 0.055) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.brand-mark {
  position: absolute;
  top: 30px;
  left: 34px;
  z-index: 11;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.brand-mark img { width: 34px; height: 34px; object-fit: contain; opacity: 0.9; }

/* =========================================================================
   Cena 1 — a pergunta
   ========================================================================= */
.hero-text-wrapper {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
  text-align: center;
  will-change: transform, filter;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(1.75rem, 4.2vw, 3.5rem);
  line-height: 1.06;
  text-wrap: pretty;
}

.text-track {
  display: block;
  max-width: 22ch;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  text-shadow: 0 14px 44px rgba(140, 172, 255, 0.2), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.text-days {
  display: block;
  max-width: 24ch;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(244, 245, 247, 0.32) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: translateZ(0);
  filter: drop-shadow(0 12px 24px rgba(120, 150, 220, 0.18));
}

.accent {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================================
   Cena 3 — o convite
   ========================================================================= */
.cta-wrapper {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
  text-align: center;
  transform: scale(0.8);
  filter: blur(30px);
  will-change: transform, filter;
}

.cta-title {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(244, 245, 247, 0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: translateZ(0);
}

.cta-sub {
  max-width: 34rem;
  margin-bottom: 44px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(244, 245, 247, 0.5);
  text-wrap: pretty;
}

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  border-radius: 20px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.1),
              0 12px 24px -4px rgba(0, 0, 0, 0.5),
              inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.btn-light:hover, .btn-light:focus-visible {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 8px 16px -2px rgba(0, 0, 0, 0.2),
              0 24px 36px -6px rgba(0, 0, 0, 0.6),
              inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 -3px 6px rgba(0, 0, 0, 0.06);
}
.btn-light:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), inset 0 3px 6px rgba(0, 0, 0, 0.12);
}

.btn-accent {
  background: linear-gradient(180deg, #6FE39A 0%, var(--accent) 100%);
  color: #06210F;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 2px 4px rgba(0, 0, 0, 0.4),
              0 12px 28px -4px rgba(52, 196, 106, 0.45),
              inset 0 1px 1px rgba(255, 255, 255, 0.55), inset 0 -3px 6px rgba(6, 33, 15, 0.25);
}
.btn-accent:hover, .btn-accent:focus-visible {
  color: #06210F;
  transform: translateY(-3px);
  background: linear-gradient(180deg, #85EFAB 0%, #45D479 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 16px -2px rgba(0, 0, 0, 0.4),
              0 26px 44px -6px rgba(52, 196, 106, 0.55),
              inset 0 1px 1px rgba(255, 255, 255, 0.6), inset 0 -3px 6px rgba(6, 33, 15, 0.25);
}
.btn-accent:active {
  transform: translateY(1px);
  background: linear-gradient(180deg, #45D479 0%, #2CB35D 100%);
  box-shadow: inset 0 3px 8px rgba(6, 33, 15, 0.35);
}

/* =========================================================================
   Cena 2 — o card do produto
   ========================================================================= */
.card-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  perspective: 1500px;
}

.main-card {
  position: relative;
  width: 85vw;
  height: 85vh;
  height: 85svh;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transform: translateY(120vh);
  background:
    radial-gradient(115% 80% at 50% -10%, rgba(96, 222, 144, 0.26) 0%, rgba(96, 222, 144, 0) 58%),
    radial-gradient(90% 70% at 50% 115%, rgba(3, 14, 8, 0.85) 0%, rgba(3, 14, 8, 0) 62%),
    var(--card-green);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9), 0 20px 40px -20px rgba(0, 0, 0, 0.8),
              inset 0 1px 2px rgba(255, 255, 255, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.8);
}

.card-sheen {
  position: absolute;
  inset: 0;
  z-index: 50;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.07) 0%, transparent 40%);
}

.card-grid {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

/* ---------- Coluna esquerda -------------------------------------------- */
.card-left { display: flex; flex-direction: column; justify-content: center; }

.card-left-title {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #FFFFFF;
}

.card-left-body { display: flex; flex-direction: column; gap: 14px; max-width: 26rem; }
.card-left-body p {
  font-size: clamp(0.95rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(220, 252, 231, 0.66);
  text-wrap: pretty;
}
.card-left-body strong { color: #FFFFFF; font-weight: 600; }

/* ---------- Coluna direita --------------------------------------------- */
.card-right { display: flex; justify-content: flex-end; }

.card-right-word {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 0.85;
  text-align: right;
  background: linear-gradient(180deg, #FFFFFF 0%, #A1A1AA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: translateZ(0);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.8)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}
.card-right-word span { -webkit-text-fill-color: #FFFFFF; color: #FFFFFF; }

/* =========================================================================
   Mockup do celular
   ========================================================================= */
.mockup-wrap {
  position: relative;
  height: clamp(340px, 74vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* O fator de escala é recalculado em JS conforme a altura disponível. */
.mockup-scale {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.78);
}

.phone-bezel {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  background: #111;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: inset 0 0 0 2px #52525B, inset 0 0 0 7px #000,
              0 40px 80px -15px rgba(0, 0, 0, 0.9), 0 15px 25px -5px rgba(0, 0, 0, 0.7);
}

.phone-btn {
  position: absolute;
  width: 3px;
  background: linear-gradient(90deg, #404040 0%, #171717 100%);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.8), inset -1px 0 1px rgba(255, 255, 255, 0.15);
}
.phone-btn--mute     { top: 120px; left: -3px; height: 25px; border-radius: 3px 0 0 3px; }
.phone-btn--vol-up   { top: 162px; left: -3px; height: 45px; border-radius: 3px 0 0 3px; }
.phone-btn--vol-down { top: 222px; left: -3px; height: 45px; border-radius: 3px 0 0 3px; }
.phone-btn--power {
  top: 172px; right: -3px; height: 70px; border-radius: 0 3px 3px 0;
  background: linear-gradient(270deg, #404040 0%, #171717 100%);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.8), inset 1px 0 1px rgba(255, 255, 255, 0.15);
}

.phone-screen {
  position: absolute;
  inset: 7px;
  z-index: 10;
  border-radius: 2.5rem;
  overflow: hidden;
  background: #F4F5F7;
  color: var(--ink);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
}

.phone-gloss {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 45%);
}

.phone-island {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 100px;
  height: 28px;
  border-radius: 999px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  box-shadow: inset 0 -1px 2px rgba(255, 255, 255, 0.1);
}
.phone-island-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: ch-pulse 2.4s ease-in-out infinite;
}

.phone-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 11px 46px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.phone-home-indicator {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
}

/* ---------- Widgets da tela -------------------------------------------- */
.pw-topbar {
  display: flex; align-items: center; gap: 7px;
  padding: 6px; border-radius: 14px; background: #FFFFFF;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}
.pw-avatar {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8.5px; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; background: var(--blue);
}
.pw-search {
  flex: 1; display: flex; align-items: center; gap: 5px;
  padding: 5px 8px; border-radius: 999px; background: #F1F3F6;
  font-size: 8.5px; font-weight: 400; color: var(--faint);
}
.pw-search-icon { flex: none; width: 7px; height: 7px; border-radius: 50%; border: 1.2px solid var(--faint); }
.pw-bell { position: relative; flex: none; width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; }
.pw-bell-body { width: 9px; height: 9px; border-radius: 3px 3px 1px 1px; background: #F5B93B; }
.pw-bell-dot { position: absolute; top: -1px; right: -1px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); border: 1px solid #fff; }

.pw-overview { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 2px 4px 0; text-align: center; }
.pw-eyebrow { font-size: 6.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.pw-title { font-size: 17px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.pw-desc { font-size: 8px; font-weight: 400; line-height: 1.45; color: var(--muted); text-wrap: pretty; }

.pw-channel { display: flex; flex-direction: column; gap: 4px; }
.pw-channel-row { display: flex; align-items: center; gap: 8px; }
.pw-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px; background: #DCF5E7;
  font-size: 8.5px; font-weight: 600; color: #0E7C4F;
}
.pw-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #0E9F62; }
.pw-link { font-size: 8px; font-weight: 400; color: var(--muted); text-decoration: underline; }
.pw-note { font-size: 7.5px; font-weight: 400; color: var(--faint); }

.pw-agents { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.pw-agent {
  display: flex; flex-direction: column; gap: 3px;
  padding: 8px; border-radius: 12px; background: #FFFFFF; border: 1px solid #ECEEF2;
}
.pw-agent-name { font-size: 9px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.pw-agent-desc { font-size: 7.5px; font-weight: 400; line-height: 1.4; color: var(--muted); }
.pw-agent--blue { background: #EEF4FF; border-color: #C3D6FF; }
.pw-agent--blue .pw-agent-name { color: var(--blue); }
.pw-agent--blue .pw-agent-desc { color: #6B7C99; }

.pw-tabs-card {
  margin-top: 2px; padding: 6px; border-radius: 14px 14px 4px 4px;
  background: #FFFFFF; box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}
.pw-tabs { display: flex; gap: 4px; padding: 3px; border-radius: 999px; background: #F1F3F6; }
.pw-tab {
  flex: 1; padding: 5px 0; border-radius: 999px; text-align: center;
  font-size: 8.5px; font-weight: 500; color: var(--muted);
}
.pw-tab--active { font-weight: 600; color: #fff; background: var(--blue); }
.pw-tab-body { margin-top: 6px; height: 14px; border-radius: 6px; background: #EEF3FF; }

.pw-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 2px;
  padding: 7px 9px 13px; border-radius: 16px 16px 0 0; background: #FFFFFF;
  box-shadow: 0 -4px 14px rgba(15, 23, 42, 0.07);
}
.pw-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 3px 5px; }
.pw-nav-icon { width: 9px; height: 9px; border-radius: 2px; border: 1.2px solid var(--faint); }
.pw-nav-icon--roof { border-radius: 2px 2px 0 0; border-bottom: none; }
.pw-nav-icon--round { border-radius: 50%; }
.pw-nav-label { font-size: 6px; font-weight: 500; color: var(--faint); }
.pw-nav-item--active { padding: 3px 6px; border-radius: 8px; background: #E8EFFF; }
.pw-nav-item--active .pw-nav-icon { border-color: var(--blue); }
.pw-nav-item--active .pw-nav-label { font-weight: 600; color: var(--blue); }

/* ---------- Badges flutuantes ------------------------------------------ */
.floating-badge {
  position: absolute;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  background: #0A0C11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
.floating-badge--a { top: 24px; left: -70px; }
.floating-badge--b { bottom: 56px; right: -70px; }

.fb-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
}
.fb-icon img { width: 20px; height: 20px; object-fit: contain; }
.fb-text { display: block; }
.fb-title { display: block; font-size: 0.875rem; font-weight: 700; letter-spacing: -0.015em; color: #fff; }
.fb-sub { display: block; margin-top: 2px; font-size: 0.75rem; font-weight: 500; color: rgba(209, 250, 229, 0.5); }

/* =========================================================================
   Indicador de scroll
   ========================================================================= */
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.scroll-hint-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244, 245, 247, 0.35); }
.scroll-hint-line { display: block; width: 1px; height: 40px; overflow: hidden; background: rgba(244, 245, 247, 0.1); }
.scroll-hint-beam { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(244, 245, 247, 0.8), transparent); animation: ch-hint 2.2s ease-in-out infinite; }

/* =========================================================================
   Estado inicial da animação
   Só é aplicado quando a cena vai realmente rodar (JS ativo e sem
   preferência por menos movimento) — assim nada some sem poder voltar.
   ========================================================================= */
html.js:not(.is-static) .brand-mark,
html.js:not(.is-static) .text-track,
html.js:not(.is-static) .text-days,
html.js:not(.is-static) .cta-wrapper,
html.js:not(.is-static) .main-card,
html.js:not(.is-static) .card-left,
html.js:not(.is-static) .card-right,
html.js:not(.is-static) .mockup-wrap,
html.js:not(.is-static) .phone-widget,
html.js:not(.is-static) .floating-badge {
  visibility: hidden;
}

/* =========================================================================
   Layout estático — sem JS ou com "reduzir movimento" ligado.
   A mesma narrativa vira uma página empilhada e legível.
   ========================================================================= */
html.no-js .ch-track,
html.is-static .ch-track { height: auto; }

html.no-js .ch-stage,
html.is-static .ch-stage {
  position: static;
  height: auto;
  min-height: 0;
  overflow: visible;
  flex-direction: column;
  gap: clamp(56px, 9vw, 104px);
  padding: 104px 0 clamp(72px, 10vw, 128px);
}

html.no-js .bg-grid,
html.is-static .bg-grid { position: fixed; }

html.no-js .scroll-hint,
html.is-static .scroll-hint { display: none; }

html.no-js .brand-mark,
html.is-static .brand-mark { position: absolute; }

html.no-js .hero-text-wrapper,
html.is-static .hero-text-wrapper,
html.no-js .cta-wrapper,
html.is-static .cta-wrapper {
  position: static;
  transform: none;
  filter: none;
}

html.no-js .card-layer,
html.is-static .card-layer {
  position: static;
  inset: auto;
  width: 100%;
  padding: 0 clamp(16px, 4vw, 40px);
}

html.no-js .main-card,
html.is-static .main-card {
  width: 100%;
  max-width: 1400px;
  height: auto;
  transform: none;
  padding: clamp(28px, 4vw, 56px) 0;
}

html.no-js .card-grid,
html.is-static .card-grid { height: auto; }

html.no-js .mockup-wrap,
html.is-static .mockup-wrap { height: 500px; }

/* =========================================================================
   Responsivo
   ========================================================================= */
@media (max-width: 900px) {
  .brand-mark { top: 20px; left: 20px; }
  .brand-mark img { width: 28px; height: 28px; }

  .card-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: center;
    gap: 14px;
    padding: 22px 18px;
  }

  /* "SIMPLES" é tipografia decorativa: no retrato não sobra altura para ela
     sem espremer o mockup, que é o que de fato mostra o produto. */
  .card-right { display: none; }

  .card-left { text-align: center; align-items: center; }
  .card-left-title { margin-bottom: 8px; font-size: 1.3125rem; }
  .card-left-body { gap: 6px; }
  .card-left-body p { font-size: 0.75rem; line-height: 1.45; }

  .mockup-wrap { height: 100%; }

  .floating-badge { gap: 9px; padding: 10px 12px; border-radius: 14px; }
  .floating-badge--a { top: 10px; left: -20px; }
  .floating-badge--b { bottom: 40px; right: -20px; }
  .fb-icon { width: 26px; height: 26px; }
  .fb-icon img { width: 15px; height: 15px; }
  .fb-title { font-size: 0.75rem; }
  .fb-sub { font-size: 0.6875rem; }

  .cta-actions { gap: 12px; }
  .btn { padding: 15px 24px; font-size: 1rem; }
}

/* Tablet em pé: já empilhado, mas com largura de sobra — segura a composição
   num bloco central em vez de espalhar o texto pela largura toda. */
@media (min-width: 600px) and (max-width: 900px) {
  .card-grid { max-width: 620px; }
  .card-left-title { font-size: 1.625rem; }
  .card-left-body p { font-size: 0.9375rem; }
}

/* Telas baixas: o segundo parágrafo é o primeiro a sair. */
@media (max-width: 900px) and (max-height: 720px) {
  .card-left-body p:last-child { display: none; }
}

/* Celular deitado: só o título sobrevive — o mockup é o que precisa de altura. */
@media (max-width: 900px) and (max-height: 480px) {
  .card-left-body { display: none; }
  .card-left-title { margin-bottom: 0; font-size: 1.125rem; }
  .card-grid { gap: 8px; padding: 14px 18px; }
}

@media (max-width: 380px) {
  .cta-actions { flex-direction: column; width: 100%; }
  .btn { justify-content: center; width: 100%; }
}

@media (hover: none) {
  .btn:hover { transform: none; }
}
