:root {
  --bg: #0a0a0c;
  --bg-2: #0e0f13;
  --bg-3: #14151b;
  --bg-elev: #191b22;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f3f5f9;
  --text-2: rgba(233, 238, 246, 0.6);
  --text-3: rgba(233, 238, 246, 0.4);
  --accent: #2f7bff;
  --accent-2: #5b9dff;
  --accent-3: #38bdf8;
  --accent-soft: rgba(47, 123, 255, 0.14);
  --live: #ffb020;
  --danger: #ff5a5a;
  --wa: #26d367;
  --font-display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --font-body: "Satoshi", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 16px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Type ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.section-title--center { text-align: center; }
.section-sub {
  margin-top: 16px;
  color: var(--text-2);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  max-width: 54ch;
}
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }
.accent { color: var(--accent-2); font-style: normal; }
.danger { color: var(--danger); font-style: normal; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-2);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}
.eyebrow i { color: var(--accent-2); }

.section-head { margin-bottom: 52px; }
.section-head--center { text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }

/* ---------- Live dot ---------- */
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.6);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 176, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  will-change: transform;
  padding: 12px 22px;
}
.btn i { font-size: 1.1em; }
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 123, 255, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(47, 123, 255, 0.5); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--xl { padding: 18px 38px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h); display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  border: 1px solid var(--line-2);
  overflow: hidden; position: relative; flex-shrink: 0;
  background: #0a0a0c;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); display: block; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em;
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  color: var(--text-2); text-decoration: none; font-weight: 500; font-size: 0.94rem;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__burger {
  display: none; background: none; border: 0; width: 40px; height: 40px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__burger span { width: 22px; height: 2px; background: var(--text); transition: transform 0.3s; }
.nav__mobile {
  display: none; flex-direction: column; gap: 16px; padding: 18px 24px 28px;
  background: rgba(10,10,12,0.98); border-bottom: 1px solid var(--line);
}
.nav__mobile a { color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.nav.menu-open .nav__mobile { display: flex; }
.nav.menu-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.menu-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 60px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 40% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 40% 30%, #000 30%, transparent 100%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(130px); }
.hero__glow--1 { width: 620px; height: 620px; background: rgba(47,123,255,0.22); top: -160px; right: -120px; }
.hero__glow--2 { width: 480px; height: 480px; background: rgba(56,189,248,0.12); bottom: -200px; left: -140px; }
.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center; gap: 48px; position: relative;
}
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.025em;
  margin-top: 22px;
}
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.reveal-line > span { display: inline-block; transform: translateY(110%); animation: line-up 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.reveal-line:nth-child(2) > span { animation-delay: 0.1s; }
.reveal-line:nth-child(3) > span { animation-delay: 0.2s; }
@keyframes line-up { to { transform: translateY(0); } }
.hero__sub {
  margin-top: 22px; color: var(--text-2); font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  max-width: 44ch; opacity: 0; animation: fade-up 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; animation: fade-up 0.8s 0.55s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero__note {
  margin-top: 20px; color: var(--text-3); font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: fade-up 0.8s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__note i { color: var(--live); }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero__visual { position: relative; opacity: 0; animation: fade-up 1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards; display: flex; justify-content: center; }

/* ---------- Phone + Telegram mock ---------- */
.phone {
  position: relative; width: 100%; max-width: 380px;
  background: #05060a; border: 10px solid #1b1d24; border-radius: 42px;
  padding: 12px 10px; box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 26px; background: #05060a; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone__screen { border-radius: 30px; overflow: hidden; background: #0b0d12; }
.tg { display: flex; flex-direction: column; height: 620px; }
.tg__bar {
  display: flex; align-items: center; gap: 10px; padding: 22px 16px 12px;
  background: #14161d; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-2);
}
.tg__bar > i { font-size: 1.1rem; }
.tg__bar > i:first-child { color: var(--accent-2); }
.tg__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff; font-weight: 900; display: grid; place-items: center; font-size: 0.85rem;
}
.tg__title { flex: 1; min-width: 0; }
.tg__title strong { display: block; font-size: 0.92rem; color: var(--text); }
.tg__title small { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--accent-3); }
.tg__title small .live-dot { background: var(--accent-3); animation: none; box-shadow: 0 0 8px var(--accent-3); }
.tg__chat {
  flex: 1; padding: 16px 12px; overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(47,123,255,0.06), transparent 40%),
    #0b0d12;
}
.tg__day {
  text-align: center; font-size: 0.68rem; color: var(--text-3);
  background: rgba(255,255,255,0.04); width: fit-content; margin: 0 auto 14px;
  padding: 3px 12px; border-radius: 999px;
}

/* ---------- Job card ---------- */
.job {
  background: #14161d; border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  padding: 14px; position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.job__alert {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; color: var(--accent-3); margin-bottom: 10px;
}
.job__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1.25;
  margin-bottom: 12px;
}
.job__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.job__badge {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  padding: 4px 8px; border-radius: 7px; background: rgba(255,255,255,0.05); color: var(--text-2);
  display: inline-flex; align-items: center; gap: 4px;
}
.job__badge--now { background: rgba(255,176,32,0.14); color: var(--live); }
.job__badge--money { background: rgba(38,211,103,0.12); color: var(--wa); }
.job__badge--props { background: rgba(255,90,90,0.12); color: var(--danger); }
.job__row { font-size: 0.78rem; color: var(--text-2); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.job__stack { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.job__stack span {
  font-family: var(--font-mono); font-size: 0.66rem; padding: 3px 7px; border-radius: 6px;
  border: 1px solid rgba(47,123,255,0.3); color: var(--accent-2);
}
.job__desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; margin-bottom: 14px; }
.job__actions { display: grid; gap: 7px; }
.job__btn {
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  padding: 10px; border-radius: 10px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04); color: var(--text); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
}
.job__btn--primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); border-color: transparent; color: #fff; }
.job__time { position: absolute; bottom: 8px; right: 12px; font-size: 0.62rem; color: var(--text-3); }

.hero__phone-img {
  width: 100%; max-width: 440px; height: auto; display: block; margin: 0 auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.hero__push {
  position: absolute; bottom: -3%; left: -6%;
  width: 46%; max-width: 230px; height: auto;
  border-radius: 14px; border: 1px solid var(--line-2);
  box-shadow: 0 22px 50px rgba(0,0,0,0.55);
}
.hero__toast {
  position: absolute; bottom: 10%; left: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(20, 22, 29, 0.92); border: 1px solid var(--line-2);
  backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero__toast strong { display: block; font-size: 0.82rem; }
.hero__toast small { font-size: 0.72rem; color: var(--text-2); font-family: var(--font-mono); }

/* ---------- Urgency ---------- */
.urgency {
  padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.urgency__line {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.12; letter-spacing: -0.02em;
  text-align: center; max-width: 20ch; margin: 0 auto 56px;
}
.urgency__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ustat { text-align: center; padding: 0 16px; }
.ustat__num {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--accent-2); display: block; line-height: 1;
}
.ustat__label { display: block; margin-top: 14px; color: var(--text-2); font-size: 0.92rem; max-width: 26ch; margin-left: auto; margin-right: auto; }

/* ---------- How ---------- */
.how { padding: 120px 0; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s;
}
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step__num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--text-3);
}
.step__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft);
  color: var(--accent-2); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 22px;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 0.96rem; }

/* ---------- Bento ---------- */
.bento { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bento__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.cell {
  grid-column: span 2; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s;
}
.cell:hover { transform: translateY(-4px); border-color: var(--line-2); }
.cell--wide { grid-column: span 4; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
.cell--accent { background: linear-gradient(160deg, rgba(47,123,255,0.14), var(--bg-3) 60%); }
.cell__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-2); display: grid; place-items: center; font-size: 1.35rem; margin-bottom: 18px;
}
.cell h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.cell p { color: var(--text-2); font-size: 0.94rem; }
.cell__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.cell__tags span {
  font-family: var(--font-mono); font-size: 0.72rem; padding: 5px 10px; border-radius: 8px;
  border: 1px solid rgba(47,123,255,0.3); color: var(--accent-2);
}
.cell__demo { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ping { position: relative; width: 70px; height: 70px; display: grid; place-items: center; }
.ping__core { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 16px var(--accent-2); }
.ping__ring {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--accent-2);
  animation: ping 2.4s cubic-bezier(0,0,0.2,1) infinite; opacity: 0;
}
.ping__ring:nth-child(2) { animation-delay: 1.2s; }
@keyframes ping { 0% { transform: scale(0.3); opacity: 0.8; } 100% { transform: scale(1); opacity: 0; } }
.cell__code {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-2);
  background: rgba(0,0,0,0.3); padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line);
  text-align: center;
}
.cell__code b { color: var(--accent-3); }

/* ---------- Feed ---------- */
.feed { padding: 120px 0; overflow: hidden; }
.feed__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: 64px; align-items: center; }
.feed__copy .eyebrow { margin-bottom: 18px; }
.feed__copy .section-title { margin-bottom: 20px; }
.feed__points { list-style: none; margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.feed__points li { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 0.96rem; }
.feed__points i { color: var(--accent-2); font-size: 1.1rem; }
.feed__shot { position: relative; justify-self: center; max-width: 440px; }
.feed__shot img {
  width: 100%; height: auto; display: block; border-radius: 20px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.feed__stream { position: relative; height: 540px; overflow: hidden; }
.feed__track { display: flex; flex-direction: column; gap: 14px; animation: feed-scroll 26s linear infinite; }
@keyframes feed-scroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.feed__stream:hover .feed__track { animation-play-state: paused; }
.feed-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px; padding: 16px;
  flex-shrink: 0;
}
.feed-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.feed-card__tag { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent-2); }
.feed-card__now { font-family: var(--font-mono); font-size: 0.66rem; color: var(--live); display: flex; align-items: center; gap: 5px; }
.feed-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; line-height: 1.25; margin-bottom: 10px; }
.feed-card__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.feed-card__meta span { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-2); background: rgba(255,255,255,0.04); padding: 3px 8px; border-radius: 6px; }
.feed-card__meta .money { color: var(--wa); }
.feed-card__meta .props { color: var(--danger); }
.feed__fade { position: absolute; left: 0; right: 0; height: 90px; pointer-events: none; z-index: 2; }
.feed__fade--top { top: 0; background: linear-gradient(var(--bg), transparent); }
.feed__fade--bottom { bottom: 0; background: linear-gradient(transparent, var(--bg)); }

/* ---------- Prova real ---------- */
.proof { padding: 120px 0; }
.proof__inner { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.proof__shot {
  position: relative; justify-self: center; max-width: 340px;
  border-radius: 30px; overflow: hidden; border: 8px solid #1b1d24;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 60px rgba(47,123,255,0.12);
}
.proof__shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); border-radius: 22px;
}
.proof__shot img { width: 100%; display: block; }
.proof__copy .eyebrow { margin-bottom: 18px; }
.proof__copy .section-title { margin-bottom: 18px; }
.proof__points { list-style: none; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.proof__points li { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 0.96rem; }
.proof__points i { color: var(--accent-2); font-size: 1.1rem; flex-shrink: 0; }

/* ---------- Stats ---------- */
.stats { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 0 12px; border-left: 2px solid var(--accent); }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; display: block; }
.stat__label { display: block; margin-top: 10px; color: var(--text-2); font-size: 0.92rem; max-width: 22ch; }

/* ---------- Depoimentos WhatsApp ---------- */
.wall { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wall__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.wa-shot {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wa-shot:hover { transform: translateY(-5px); }
.wa-shot img { width: 100%; height: auto; display: block; }
.wall__nav { display: none; justify-content: center; gap: 12px; margin-top: 20px; }
.wall__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--bg-3); color: var(--text);
  display: grid; place-items: center; cursor: pointer; font-size: 1.25rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.wall__arrow:hover { border-color: var(--accent-2); }
.wall__arrow:active { transform: scale(0.92); }
.wa-card {
  break-inside: avoid; margin: 0 0 20px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.wa-card__head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: #202c33;
}
.wa-card__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--c, #2aabee); color: #fff; font-weight: 900;
  display: grid; place-items: center; font-size: 0.9rem;
}
.wa-card__head strong { display: block; font-size: 0.92rem; color: #e9edef; }
.wa-card__head small { font-size: 0.74rem; color: #8696a0; }
.wa-card__chat {
  padding: 16px 14px; display: flex; flex-direction: column; gap: 8px;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 20px 20px;
}
.wa-bubble {
  position: relative; align-self: flex-end; max-width: 92%;
  background: #005c4b; color: #e9edef;
  padding: 8px 12px 20px; border-radius: 10px 3px 10px 10px;
  font-size: 0.9rem; line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.wa-bubble__time {
  position: absolute; right: 10px; bottom: 5px;
  font-size: 0.64rem; color: #8bb3a5;
  display: inline-flex; align-items: center; gap: 3px;
}
.wa-bubble__time i { color: #53bdeb; font-size: 0.85rem; }

/* ---------- Price ---------- */
.price { position: relative; padding: 130px 0; overflow: hidden; }
.price__glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(47,123,255,0.18), transparent 65%);
  pointer-events: none;
}
.price__inner { position: relative; }
.plans {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 860px; margin: 0 auto; align-items: start;
}
.plan {
  background: var(--bg-3);
  border: 1px solid var(--line-2); border-radius: 24px; padding: 36px 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  position: relative; display: flex; flex-direction: column;
}
.plan--pro {
  background: linear-gradient(180deg, rgba(47,123,255,0.08), var(--bg-3) 40%);
  box-shadow: 0 40px 90px rgba(47,123,255,0.16);
}
.plan--pro::before {
  content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(160deg, rgba(47,123,255,0.7), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.plan__head { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.plan__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--accent-2); background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
.plan__tag--free { color: var(--text-2); background: rgba(255,255,255,0.06); }
.plan__price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.plan__currency { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text-2); }
.plan__value { font-family: var(--font-display); font-size: 4.6rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.plan__cents { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; }
.plan__period { font-size: 1rem; color: var(--text-2); font-weight: 500; margin-left: 4px; }
.plan__note { margin-top: 14px; color: var(--live); font-size: 0.86rem; }
.plan__price .plan__value + .plan__period { margin-left: 8px; font-size: 1.1rem; align-self: center; }
.plan__after { margin-top: 16px; color: var(--text-2); font-size: 0.92rem; }
.plan__after strong { color: var(--text); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.plan__list li { position: relative; padding-left: 36px; font-size: 0.94rem; color: var(--text); line-height: 1.4; }
.plan__list li strong { color: var(--text); font-weight: 700; }
.plan__list i { position: absolute; left: 0; top: 0; color: var(--accent-2); background: var(--accent-soft); width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; }
.plan__off { color: var(--text-3) !important; }
.plan__off i { color: var(--text-3); background: rgba(255,255,255,0.05); }
.plan .btn { margin-top: auto; }
.plan__foot { text-align: center; margin-top: 14px; color: var(--text-3); font-size: 0.84rem; }
.plan__guarantee { color: var(--text-2); display: flex; align-items: center; justify-content: center; gap: 7px; }
.plan__guarantee i { color: var(--accent-2); font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.faq__inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr); gap: 56px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px;
  padding: 0 22px; transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { color: var(--accent-2); transition: transform 0.3s; flex-shrink: 0; }
.faq__item[open] summary i { transform: rotate(45deg); }
.faq__item p { color: var(--text-2); font-size: 0.96rem; padding: 0 0 22px; max-width: 60ch; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 150px 0; overflow: hidden; }
.cta__glow {
  position: absolute; left: 50%; bottom: -260px; transform: translateX(-50%);
  width: 900px; height: 560px; background: radial-gradient(ellipse, rgba(47,123,255,0.24), transparent 65%);
  pointer-events: none;
}
.cta__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.cta__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.025em; margin-top: 6px;
}
.cta .btn--xl { margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg); padding: 70px 0 0; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 2fr) 1fr 1fr; gap: 48px; padding-bottom: 50px; }
.footer__brand .nav__brand { margin-bottom: 14px; }
.footer__brand p { color: var(--text-2); font-size: 0.94rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-2); text-decoration: none; font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__base { border-top: 1px solid var(--line); padding: 22px 24px; color: var(--text-3); font-size: 0.84rem; }

/* ---------- Floating Telegram FAB ---------- */
.tg-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 22px 0 18px; border-radius: 999px;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #fff; text-decoration: none; font-weight: 700; font-size: 0.96rem;
  box-shadow: 0 14px 34px rgba(34, 158, 217, 0.42);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.tg-fab i { font-size: 1.6rem; line-height: 1; }
.tg-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(34, 158, 217, 0.6); }
.tg-fab__label { white-space: nowrap; }

/* ---------- Barra de venda flutuante ---------- */
.salebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  transform: translateY(120%); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  padding: 0 16px 16px;
  pointer-events: none;
}
.salebar.is-visible { transform: translateY(0); }
.salebar.is-visible .salebar__inner { pointer-events: auto; }
.salebar__inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 16px 14px 22px; border-radius: 18px;
  background: rgba(20, 21, 27, 0.86); border: 1px solid var(--line-2);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.salebar__info { display: flex; align-items: center; gap: 16px; min-width: 0; }
.salebar__brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.brand-mark--sm { width: 28px; height: 28px; border-radius: 8px; }
.salebar__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.salebar__text strong { font-size: 0.98rem; }
.salebar__text small { color: var(--text-2); font-size: 0.82rem; }
/* FAB sobe quando a barra de venda aparece, pra nao colidir */
.salebar.is-visible ~ .tg-fab { bottom: 104px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-parallax] { will-change: transform; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-line > span, .hero__sub, .hero__ctas, .hero__note, .hero__visual { transform: none; opacity: 1; animation: none; }
  .live-dot, .brand-mark i, .ping__ring, .feed__track { animation: none; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__inner .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { order: 2; }
  .urgency__stats { grid-template-columns: 1fr; gap: 36px; max-width: 420px; margin: 0 auto; }
  .how__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .cell, .cell--wide, .cell--accent { grid-column: span 2; }
  .cell--wide { grid-template-columns: 1fr; }
  .feed__inner { grid-template-columns: 1fr; gap: 48px; }
  .feed__stream { max-width: 440px; margin: 0 auto; width: 100%; }
  .proof__inner { grid-template-columns: 1fr; gap: 44px; }
  .proof__copy { text-align: center; }
  .proof__points { align-items: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .wall__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .btn--lg { padding: 13px 22px; font-size: 0.96rem; }
  .btn--xl { padding: 15px 26px; font-size: 1rem; }
  .plans { grid-template-columns: 1fr; max-width: 420px; gap: 28px; }
  .plan { padding: 32px 24px; }

  /* Hero mobile */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 28px) 0 56px; }
  .hero__inner { gap: 40px; }
  .hero__title { font-size: clamp(2.1rem, 8.6vw, 2.7rem); margin-top: 18px; }
  .hero__sub { margin-top: 18px; font-size: 1rem; }
  .hero__ctas { margin-top: 26px; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .hero__note {
    flex-wrap: wrap; align-items: flex-start; font-size: 0.84rem;
    line-height: 1.4; margin-top: 18px;
  }
  .hero__note i { margin-top: 3px; }
  /* Phone menor no mobile pra nao deixar vazio */
  .hero__visual { flex-direction: column; align-items: center; }
  .hero__push { position: static; width: 62%; max-width: 230px; margin: -24px auto 0; left: auto; bottom: auto; }
  .phone { max-width: 300px; border-width: 8px; border-radius: 36px; }
  .tg { height: 500px; }
  .phone__notch { width: 100px; height: 22px; }
  .hero__toast { position: static; transform: none !important; margin: 20px auto 0; width: fit-content; max-width: 92%; }
  /* Carrossel horizontal no mobile */
  .wall__grid {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    margin: 0 -24px;
    padding: 4px 24px 12px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wall__grid::-webkit-scrollbar { display: none; }
  .wa-shot {
    flex: 0 0 76%;
    scroll-snap-align: center;
  }
  .wa-shot:hover { transform: none; }
  .wall__nav { display: flex; }

  /* Flutuantes no mobile */
  .tg-fab { height: 52px; width: 52px; padding: 0; justify-content: center; }
  .tg-fab__label { display: none; }
  .tg-fab i { font-size: 1.55rem; }
  .salebar { padding: 0 12px 12px; }
  .salebar__inner { padding: 12px; gap: 12px; }
  .salebar__info { gap: 10px; }
  .salebar__brand { display: none; }
  .salebar__text small { display: none; }
  .salebar__text strong { font-size: 0.92rem; }
  .salebar .btn { padding: 12px 18px; font-size: 0.9rem; white-space: nowrap; }
  .salebar.is-visible ~ .tg-fab { bottom: 92px; }
}
