/* =================================================================
   STREAMER LANDING — estilos
   Mobile-first. Tema escuro premium, neon sutil, glassmorphism.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #07070d;
  --bg-2: #0d0a1c;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-strong: rgba(255, 255, 255, 0.18);

  --text: #f5f3ff;
  --text-soft: #b9b3d6;
  --text-dim: #837da6;

  --pink: #ff2e9a;
  --purple: #a855f7;
  --cyan: #22d3ee;
  --wpp: #25d366;

  --grad-primary: linear-gradient(100deg, #ff2e9a 0%, #a855f7 50%, #22d3ee 100%);
  --grad-text: linear-gradient(100deg, #ff7ac0 0%, #c89bff 50%, #6fe3f5 100%);

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-glow: 0 18px 50px -12px rgba(168, 85, 247, 0.55);
  --shadow-pink: 0 18px 50px -14px rgba(255, 46, 154, 0.6);

  --maxw: 1080px;
  --pad: clamp(18px, 5vw, 40px);
  --section-y: clamp(34px, 7vw, 58px);   /* respiro vertical das seções */
  --gap-block: 32px;                     /* título→conteúdo e conteúdo→botões */
  --font: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;   /* fallback p/ navegadores sem suporte a clip */
  overflow-x: clip;     /* contém transforms sem virar scroll-container (preserva sticky) */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Fundo animado (aurora neon com a paleta da página) ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(168, 85, 247, 0.12), transparent 60%),
    var(--bg-2);
}
/* camada de aurora que flutua e gira lentamente atrás dos blobs */
.bg-fx::before {
  content: ""; position: absolute; inset: -25%;
  background:
    radial-gradient(35% 35% at 22% 28%, rgba(255, 46, 154, 0.22), transparent 60%),
    radial-gradient(38% 38% at 78% 36%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(42% 42% at 55% 82%, rgba(168, 85, 247, 0.22), transparent 60%);
  animation: aurora 26s ease-in-out infinite alternate;
  will-change: transform;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  will-change: transform;
}
.blob--pink   { width: 62vw; height: 62vw; top: -16vh; left: -20vw; background: #ff2e9a; opacity: 0.38; animation: drift1 26s ease-in-out infinite; }
.blob--purple { width: 58vw; height: 58vw; top: 24vh; right: -26vw; background: #a855f7; opacity: 0.34; animation: drift2 31s ease-in-out infinite; }
.blob--cyan   { width: 50vw; height: 50vw; bottom: -16vh; left: 4vw; background: #22d3ee; opacity: 0.24; animation: drift3 35s ease-in-out infinite; }
.grid-overlay {
  position: absolute; inset: 0; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 100%);
          mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 100%);
}
@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(0, -5%, 0) rotate(10deg) scale(1.12); }
}
@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(14vw, 12vh) scale(1.18); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-16vw, -8vh) scale(1.22); } }
@keyframes drift3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(12vw, -14vh) scale(1.12); } }

/* corações neon flutuando suavemente no fundo */
.hearts { position: absolute; inset: 0; }
.heart {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  background: var(--c);
  -webkit-mask: url("assets/heart.svg") center / contain no-repeat;
          mask: url("assets/heart.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 10px var(--c));
  opacity: 0.22;
  will-change: transform;
  animation: heart-float var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes heart-float {
  0%, 100% { transform: translateY(0) rotate(-9deg) scale(1);     opacity: 0.16; }
  50%      { transform: translateY(-26px) rotate(9deg) scale(1.2); opacity: 0.4; }
}

/* ---------- Layout helpers ---------- */
.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-y) var(--pad);
}
.section__title {
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.1;
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,7,13,0.75), rgba(7,7,13,0));
}
.brand { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.brand__name { font-size: 1.02rem; letter-spacing: -0.01em; white-space: nowrap; }
.brand__verified {
  display: inline-flex; flex-shrink: 0; width: 18px; height: 18px;
  filter: drop-shadow(0 0 4px rgba(56, 151, 240, 0.5));
}
.brand__verified svg { width: 100%; height: 100%; }
.topbar__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.topbar__cta {
  font-size: 0.85rem; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  background: var(--surface);
  transition: background 0.2s, transform 0.1s;
}
.topbar__cta:active { transform: scale(0.96); }

/* Contador regressivo da próxima live (ao lado do "Seguir") */
.live-count {
  display: inline-flex; flex-direction: column; align-items: center;
  line-height: 1; white-space: nowrap; flex-shrink: 0;
  padding: 5px 9px; border-radius: 11px;
  border: 1px solid rgba(255, 46, 154, 0.32);
  background: rgba(255, 46, 154, 0.07);
}
.live-count__label {
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 3px;
}
.live-count__time {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.9rem; font-weight: 800; font-variant-numeric: tabular-nums;
  color: var(--text); letter-spacing: 0.02em;
}
.live-count__dot {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: #ff3b5c; box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.7);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 59, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 92, 0); }
}
/* Telas estreitas (≤374px): comprime a topbar p/ marca + contador + Seguir caberem numa linha */
@media (max-width: 374px) {
  .topbar { padding-left: 12px; padding-right: 12px; }
  .brand__name { font-size: 0.92rem; }
  .topbar__right { gap: 6px; }
  .live-count { padding: 4px 7px; border-radius: 9px; }
  .live-count__label { font-size: 0.46rem; margin-bottom: 2px; }
  .live-count__time { font-size: 0.82rem; gap: 4px; }
  .live-count__dot { width: 6px; height: 6px; }
  .topbar__cta { padding: 7px 12px; font-size: 0.8rem; }
}

/* ---------- Botões (CTA component) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1.02rem;
  padding: 16px 24px;
  border-radius: 999px;
  transition: transform 0.12s ease, box-shadow 0.25s ease, filter 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  text-align: center;
}
.btn__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* Primário — TikTok: maior destaque visual */
.btn--tiktok {
  color: #fff;
  background: var(--grad-primary);
  background-size: 180% 180%;
  box-shadow: var(--shadow-pink);
  animation: shimmer 6s ease infinite;
}
.btn--tiktok:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -12px rgba(255,46,154,0.75); filter: brightness(1.06); }
.btn--tiktok:active { transform: scale(0.97); }
/* Mesmo efeito de halo pulsante do WhatsApp (só o glow, sem escala), porém na cor
   rosa do TikTok — SÓ no primeiro "Seguir no TikTok" (abaixo da foto, no hero).
   Mantém o shimmer do gradiente: animam propriedades diferentes, não conflitam. */
.hero .btn--tiktok {
  animation: shimmer 6s ease infinite, tiktokPulse 2.2s ease-in-out infinite;
}
@keyframes tiktokPulse {
  0%, 100% { box-shadow: 0 8px 24px -10px rgba(255, 46, 154, 0.55); }
  50%      { box-shadow: 0 16px 44px -8px rgba(255, 46, 154, 0.95); }
}

/* Secundário — WhatsApp: peso visual menor (glass + acento verde discreto) */
.btn--whatsapp {
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: wppPulse 2.2s ease-in-out infinite;   /* halo verde chamando atenção */
}
.hero .btn--whatsapp { animation: none; }            /* o primeiro (hero) NÃO pulsa */
/* Pulsa só o halo verde (box-shadow) — NÃO escala o botão.
   Animar transform: scale re-rasteriza texto+ícone+backdrop-filter a cada
   frame e faz a logo "tremer" no mobile; o glow sozinho chama atenção sem isso. */
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 16px 40px -8px rgba(37, 211, 102, 0.9); }
}
.btn--whatsapp .btn__icon { color: var(--wpp); }
.btn--whatsapp:hover { transform: translateY(-2px); border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.10); }
.btn--whatsapp:active { transform: scale(0.97); }

.cta-group { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.cta-group .btn { width: 100%; }
.cta-group--center { max-width: 440px; margin: var(--gap-block) auto 0; }   /* par de botões centralizado em seções */

/* =================================================================
   1. HERO
   ================================================================= */
.hero {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 12px var(--pad) var(--section-y);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__content { order: 2; }
.hero__media { order: 1; }

/* Barra com texto passando (marquee) */
.marquee {
  position: relative; overflow: hidden; width: 100%;
  border-radius: 999px; padding: 8px 0;
  background: rgba(255, 46, 154, 0.10);
  border: 1px solid rgba(255, 46, 154, 0.35);
  -webkit-mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 8s linear infinite; }
.marquee__group {
  display: inline-flex; align-items: center; gap: 12px; padding-right: 12px;
  white-space: nowrap;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #ffb3da;
}
.marquee__sep { color: rgba(255, 255, 255, 0.45); }
.marquee__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
  box-shadow: 0 0 8px var(--pink); animation: pulse 1.8s ease-out infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero__title {
  font-size: clamp(1.85rem, 8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-top: 14px;
}
.hero__subtitle {
  color: var(--text-soft);
  font-size: clamp(0.98rem, 4vw, 1.15rem);
  margin-top: 12px;
  max-width: 36ch;
}

/* Hero media — moldura neon com a foto */
/* Wrapper: dá a PERSPECTIVA 3D do flip + cuida da flutuação (translateY),
   pra não conflitar com o giro (rotateY) que fica na moldura. */
.hero__float {
  perspective: 1100px;
  animation: frameFloat 3.8s ease-in-out infinite;   /* flutua suavemente */
}
@keyframes frameFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 7px;                        /* espessura da borda gradiente */
  background: linear-gradient(160deg, rgba(255,46,154,0.5), rgba(34,211,238,0.4));
  box-shadow: 0 0 28px rgba(255, 46, 154, 0.4), 0 0 60px rgba(168, 85, 247, 0.3);
  max-width: 208px;                    /* compacto no mobile p/ caber o CTA na 1ª dobra */
  margin-inline: auto;
  width: 100%;
  /* gira no próprio eixo (estilo card) UMA vez ao entrar no site — volta completa (360°) */
  animation: cardFlipIn 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes cardFlipIn {
  from { transform: rotateY(-360deg) scale(0.9); }
  to   { transform: rotateY(0deg) scale(1); }
}
.hero__frame::before {                  /* aura neon pulsando em volta do quadrado */
  content: "";
  position: absolute; inset: -16px; z-index: -1;
  border-radius: inherit;
  background: linear-gradient(160deg, #ff2e9a, #a855f7, #22d3ee);
  filter: blur(28px);
  opacity: 0.55;
  animation: framePulse 3.6s ease-in-out infinite;
}
@keyframes framePulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.8;  transform: scale(1.05); }
}
.hero__photo {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  background: #15102b;
}

/* =================================================================
   Cards genéricos (glass)
   ================================================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* 2. FEATURES */
.features__grid {
  display: grid; gap: 12px; margin-top: var(--gap-block);
  grid-template-columns: 1fr;
}
.feature { padding: 16px 18px; transition: transform 0.2s, border-color 0.2s; }
.feature:hover { transform: translateY(-3px); border-color: var(--stroke-strong); }
.feature__icon {
  --accent: 168, 85, 247;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(var(--accent), 0.4);
  box-shadow: 0 8px 20px -10px rgba(var(--accent), 0.55), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.feature__icon svg {
  width: 23px; height: 23px;
  filter: drop-shadow(0 0 6px rgba(var(--accent), 0.55));
}
.feature:hover .feature__icon {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(var(--accent), 0.7), inset 0 1px 0 rgba(255,255,255,0.14);
}
.feature__title { font-size: 1.02rem; font-weight: 700; margin-top: 11px; }
.feature__text { color: var(--text-soft); margin-top: 5px; font-size: 0.88rem; }

/* COMENTÁRIOS (marquee automático direita → esquerda, cards estilo TikTok) */
.comments__viewport {
  overflow: hidden; margin-top: var(--gap-block);
  margin-inline: calc(var(--pad) * -1);   /* full-bleed */
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.comments__track {
  display: flex; width: max-content;
  animation: commentsScroll 38s linear infinite;
}
/* Pausa ao passar o mouse — SÓ em dispositivos com ponteiro fino (desktop).
   No mobile o toque não pausa: o carrossel continua passando. */
@media (hover: hover) and (pointer: fine) {
  .comments__track:hover { animation-play-state: paused; }
}
.cmt-card {
  flex: 0 0 auto; width: 75vw; max-width: 280px;
  margin-right: 14px;                       /* gap (no card) p/ loop perfeito */
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 16px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
@keyframes commentsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cmt-card__head { display: flex; align-items: center; gap: 10px; }
.cmt-card__avatar {
  position: relative; overflow: hidden;
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; color: #fff;
}
.cmt-card__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cmt-card__user { font-size: 0.82rem; color: var(--text-soft); font-weight: 700; }
.cmt-card__text { font-size: 0.92rem; color: var(--text); line-height: 1.4; margin-top: 12px; flex: 1; }
.cmt-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.cmt-card__like { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 600; color: var(--text-dim); }
.cmt-card__like svg { width: 15px; height: 15px; }
.cmt-card__like.is-liked { color: var(--pink); }
.cmt-card__like.is-liked svg { fill: var(--pink); }
.cmt-card__time { font-size: 0.74rem; color: var(--text-dim); }

/* 5. SCHEDULE */
.schedule__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: var(--gap-block); max-width: 560px; margin-inline: auto; }
.sched-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--stroke);
}
.sched-item__when {
  flex-shrink: 0; min-width: 78px;
  font-weight: 800; font-size: 0.95rem;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sched-item__time { display: block; font-size: 0.72rem; color: var(--text-dim); font-weight: 600; -webkit-text-fill-color: var(--text-dim); }
.sched-item__what { font-size: 0.98rem; color: var(--text); }
.schedule__empty { text-align: center; color: var(--text-soft); margin-top: var(--gap-block); max-width: 40ch; margin-inline: auto; font-size: 1.05rem; }

/* 7. FOOTER */
.footer {
  text-align: center;
  padding: 40px var(--pad) calc(48px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--stroke);
}
.footer__name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.01em; }
.footer__social { display: flex; justify-content: center; gap: 14px; margin-top: 18px; }
.footer__social a {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--stroke);
  transition: transform 0.18s, border-color 0.2s, color 0.2s;
}
.footer__social a:hover { transform: translateY(-3px); border-color: var(--stroke-strong); }
.footer__social svg { width: 22px; height: 22px; }
.footer__tag { margin-top: 18px; color: var(--text-dim); font-size: 0.85rem; }
.footer__legal {
  margin: 18px auto 0; max-width: 62ch;
  color: var(--text-dim); font-size: 0.7rem; line-height: 1.6; opacity: 0.8;
}
.footer__copy { margin-top: 12px; color: var(--text-dim); font-size: 0.75rem; }

/* =================================================================
   BARRA FLUTUANTE MOBILE
   ================================================================= */
.floatbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: 10px; align-items: stretch;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7,7,13,0), rgba(7,7,13,0.92) 35%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.floatbar.is-visible { transform: translateY(0); }
.floatbar__main { flex: 1; padding: 15px 18px; font-size: 1rem; }
.floatbar__wpp {
  flex-shrink: 0; width: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--surface-strong); border: 1px solid rgba(37,211,102,0.4);
  color: var(--wpp);
  transition: transform 0.12s, background 0.2s;
  animation: wppPulse 2.2s ease-in-out infinite;
}
.floatbar__wpp:active { transform: scale(0.94); }
.floatbar__wpp svg { width: 24px; height: 24px; }

/* =================================================================
   POP-UP "acabou de seguir"
   ================================================================= */
.fomo {
  position: fixed; left: 12px; top: 70px; z-index: 55;   /* logo abaixo da topbar */
  display: flex; align-items: center; gap: 9px;
  max-width: min(70vw, 258px);
  padding: 7px 13px 7px 7px;
  border-radius: 12px;
  background: rgba(18, 12, 36, 0.85);
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px -14px rgba(0, 0, 0, 0.7);
  opacity: 0; transform: translateX(-120%);   /* entra deslizando da esquerda */
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
.fomo.is-visible { opacity: 1; transform: translateX(0); }
.fomo__avatar {
  position: relative; overflow: hidden;
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.82rem; color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 0 12px rgba(255, 46, 154, 0.45);
}
.fomo__avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fomo__text { display: flex; flex-direction: column; line-height: 1.25; }
.fomo__name { font-weight: 700; font-size: 0.82rem; color: var(--text); }
.fomo__action { font-size: 0.72rem; color: var(--text-soft); }
@media (min-width: 760px) {
  .fomo { left: 24px; top: 80px; max-width: 320px; }
}

/* =================================================================
   ANIMAÇÕES
   ================================================================= */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,46,154,0.7); }
  70% { box-shadow: 0 0 0 9px rgba(255,46,154,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,46,154,0); }
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
/* variantes entrando da esquerda / direita */
.reveal.reveal--left  { transform: translateX(-46px); }
.reveal.reveal--right { transform: translateX(46px); }
.reveal.reveal--left.is-visible,
.reveal.reveal--right.is-visible { transform: none; }

/* =================================================================
   DESKTOP
   ================================================================= */
@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    align-items: center;
    padding-top: clamp(30px, 6vw, 60px);
    gap: clamp(30px, 6vw, 64px);
  }
  .hero__content { order: 1; flex: 1.1; }
  .hero__media { order: 2; flex: 1; }
  .hero__frame { max-width: 360px; }
  .cta-group { flex-direction: row; flex-wrap: wrap; }
  .cta-group .btn { width: auto; flex: 1; min-width: 220px; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .floatbar { display: none; }   /* barra flutuante é exclusiva do mobile */
  .footer { padding-bottom: 48px; }   /* sem barra flutuante no desktop */
}

@media (min-width: 1024px) {
  .hero__title { font-size: 3.4rem; }
}

/* =================================================================
   ACESSIBILIDADE — reduzir movimento
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .floatbar { transition: none; }
  /* sem auto-scroll: comentários viram rolagem manual */
  .comments__viewport { overflow-x: auto; -webkit-mask: none; mask: none; }
}

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
