/* ===================================================
   SKIN DA SORTE — Landing Page
   Tema dark gamer • cores de raridade CS2
   =================================================== */

:root {
  /* Base */
  --bg:        #0a0c16;
  --bg-2:      #0e1120;
  --surface:   #141829;
  --surface-2: #1b2034;
  --line:      rgba(255, 255, 255, .08);
  --line-2:    rgba(255, 255, 255, .14);

  /* Texto */
  --text:      #eef1f8;
  --muted:     #9aa3bd;
  --muted-2:   #6c758f;

  /* Marca (fogo / fire) */
  --gold:      #ffb020;
  --gold-2:    #ff5a1f;
  --grad:      linear-gradient(135deg, #ffd24a 0%, #ff8a00 45%, #ff3d2e 100%);

  /* Raridades CS2 */
  --r-consumer:   #b0c3d9;
  --r-milspec:    #4b69ff;
  --r-restricted: #8847ff;
  --r-classified: #d32ee6;
  --r-covert:     #eb4b4b;
  --r-knife:      #e4ae39;

  /* WhatsApp */
  --whats: #25d366;

  --radius:    18px;
  --radius-sm: 12px;
  --container: 1180px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.65);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: 'Russo One', sans-serif; font-weight: 400; line-height: 1.1; letter-spacing: .3px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 780px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-2); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(255,184,0,.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.section__desc { color: var(--muted); font-size: 1.08rem; }
.section__cta { text-align: center; margin-top: 52px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; padding: 14px 26px; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap; line-height: 1;
}
.btn--lg  { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad); color: #1a1200;
  box-shadow: 0 12px 30px -8px rgba(255,138,0,.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -8px rgba(255,138,0,.75); }
.btn--ghost {
  background: rgba(255,255,255,.05); color: var(--text);
  border: 1px solid var(--line-2); backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--text);
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whats); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent; padding: 8px 0;
}
.header.scrolled {
  background: rgba(10,12,22,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 9px; font-family: 'Russo One', sans-serif; font-size: 1.25rem; }
.logo__mark { font-size: 1.5rem; filter: drop-shadow(0 0 8px rgba(255,184,0,.5)); }
.logo__text { letter-spacing: 1px; }
.logo__text span { color: var(--gold); }
.logo__img { height: 44px; width: auto; display: block; filter: drop-shadow(0 2px 8px rgba(255,90,31,.4)); }
.footer .logo__img { height: 40px; }

.header__right { display: flex; align-items: center; gap: 12px; }
.header__social {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line);
  transition: color .2s, border-color .2s, transform .2s;
}
.header__social:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
@media (max-width: 560px) { .header__social { display: none; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav__link:hover { color: var(--text); }
.nav__cta { color: #1a1200; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 15% 10%, rgba(255,138,0,.22), transparent 70%),
    radial-gradient(55% 50% at 90% 25%, rgba(255,61,46,.20), transparent 70%),
    radial-gradient(60% 60% at 60% 100%, rgba(255,90,31,.14), transparent 70%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 75%);
  opacity: .5;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.hero__title { font-size: clamp(2.3rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero__subtitle { font-size: 1.18rem; color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Hero centralizado (versão simples) */
.hero--center .hero__inner { grid-template-columns: 1fr; }
.hero--center .hero__content { text-align: center; max-width: 720px; margin: 0 auto; }
.hero--center .hero__subtitle { margin-left: auto; margin-right: auto; }
.hero--center .hero__actions { justify-content: center; }

.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__trust p { font-size: .92rem; color: var(--muted); }
.hero__trust strong { color: var(--text); }
.avatars { display: flex; }
.avatars__i {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--c1), var(--c2)); border: 2px solid var(--bg);
}
.avatars__i:first-child { margin-left: 0; }

/* Card de sorteio */
.hero__card { display: flex; justify-content: center; }
.draw-card {
  width: 100%; max-width: 380px; background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow); position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.draw-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.draw-card__live {
  display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; color: var(--r-covert);
}
.draw-card__live span { width: 8px; height: 8px; border-radius: 50%; background: var(--r-covert); animation: pulse-red 1.5s infinite; }
@keyframes pulse-red { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.draw-card__tag { font-size: .68rem; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 6px; color: #fff; }

.draw-card__skin { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.skin-visual {
  width: 92px; height: 92px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: grid; place-items: center; position: relative; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
}
.skin-visual__glow { position: absolute; inset: 0; opacity: .55; filter: blur(18px); }
.skin-visual__weapon { font-size: 2.6rem; position: relative; z-index: 1; transform: rotate(-15deg); }
.draw-card__info h3 { font-size: 1.05rem; margin-bottom: 6px; }
.draw-card__price { font-size: .85rem; color: var(--muted); }
.draw-card__price strong { color: var(--gold); font-size: 1rem; }

.draw-card__timer { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 16px; text-align: center; }
.draw-card__timer-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); margin-bottom: 8px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.countdown__box { display: flex; flex-direction: column; align-items: center; min-width: 48px; }
.countdown__box span { font-family: 'Russo One', sans-serif; font-size: 1.7rem; color: var(--text); }
.countdown__box small { font-size: .62rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-2); }
.countdown__sep { font-family: 'Russo One'; font-size: 1.5rem; color: var(--gold); margin-top: -8px; }

.draw-card__progress { margin-bottom: 18px; }
.progress { height: 8px; background: var(--bg); border-radius: 100px; overflow: hidden; margin-bottom: 8px; }
.progress__bar { height: 100%; background: var(--grad); border-radius: 100px; }
.draw-card__progress p { font-size: .8rem; color: var(--muted); text-align: center; }
.draw-card__progress strong { color: var(--text); }

/* ===================================================
   STATS
   =================================================== */
.stats { padding: 50px 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { display: block; font-family: 'Russo One', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: .92rem; color: var(--muted); }

/* ===================================================
   STEPS
   =================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); max-width: 920px; margin: 0 auto; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 24px; text-align: center;
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: var(--line-2); }
.step__num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; background: var(--grad); color: #1a1200;
  display: grid; place-items: center; font-family: 'Russo One'; font-size: 1rem;
}
.step__icon { font-size: 2.6rem; margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ===================================================
   SKINS
   =================================================== */
.skins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.skin-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.skin-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--rar, var(--gold));
}
.skin-card:hover { transform: translateY(-8px); border-color: var(--rar, var(--line-2)); box-shadow: 0 26px 50px -22px var(--rar, #000); }
.skin-card__rarity {
  position: absolute; top: 16px; right: 16px; font-size: .68rem; font-weight: 700;
  letter-spacing: .5px; color: var(--rar, var(--gold)); background: rgba(255,255,255,.06);
  padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line);
}
.skin-card__img {
  height: 150px; border-radius: var(--radius-sm); background: radial-gradient(circle at 50% 60%, var(--surface-2), var(--bg));
  display: grid; place-items: center; position: relative; overflow: hidden; margin-bottom: 18px;
}
.skin-card__glow { position: absolute; width: 140px; height: 140px; border-radius: 50%; background: var(--rar, var(--gold)); opacity: .25; filter: blur(40px); }
.skin-card__img span { font-size: 4.2rem; position: relative; z-index: 1; transform: rotate(-12deg); filter: drop-shadow(0 6px 10px rgba(0,0,0,.5)); }
.skin-card__name { font-size: 1.12rem; margin-bottom: 4px; }
.skin-card__type { font-size: .82rem; color: var(--muted-2); margin-bottom: 16px; }
.skin-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.skin-card__price { font-family: 'Russo One'; color: var(--gold); font-size: 1.1rem; }
.skin-card__float { font-size: .72rem; color: var(--muted); background: var(--bg); padding: 4px 9px; border-radius: 6px; }

/* Mapeamento de raridade */
.rarity-consumer   { --rar: var(--r-consumer); }
.rarity-milspec    { --rar: var(--r-milspec); }
.rarity-restricted { --rar: var(--r-restricted); }
.rarity-classified { --rar: var(--r-classified); }
.rarity-covert     { --rar: var(--r-covert); }
.rarity-knife      { --rar: var(--r-knife); }
.draw-card__tag.rarity-covert { background: var(--r-covert); }
.skin-visual.rarity-covert .skin-visual__glow { background: var(--r-covert); }

/* ===================================================
   GANHADORES
   =================================================== */
.winners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.winner {
  display: flex; align-items: center; gap: 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
  transition: transform .25s var(--ease), border-color .25s;
}
.winner:hover { transform: translateX(4px); border-color: var(--line-2); }
.winner__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-size: .85rem; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--c1, #4b69ff), var(--c2, #8847ff));
}
.winner__info { flex: 1; min-width: 0; }
.winner__info strong { display: block; font-size: .95rem; }
.winner__info span { font-size: .85rem; color: var(--muted); }
.winner__info em { color: var(--gold); font-style: normal; font-weight: 600; }
.winner__badge { font-size: .72rem; color: var(--muted-2); background: var(--bg); padding: 4px 9px; border-radius: 6px; white-space: nowrap; }

/* ===================================================
   FEATURES
   =================================================== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; transition: transform .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-2); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.2); margin-bottom: 18px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature p { font-size: .92rem; color: var(--muted); }

/* ===================================================
   DEPOIMENTOS
   =================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.testimonial blockquote { font-size: 1rem; color: var(--text); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid var(--line); }
.testimonial figcaption strong { display: block; font-size: .92rem; }
.testimonial figcaption small { color: var(--muted-2); font-size: .8rem; }

/* ===================================================
   FAQ
   =================================================== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 20px; transition: border-color .25s;
}
.faq__item[open] { border-color: var(--line-2); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 1.6rem; color: var(--gold); font-weight: 300; line-height: 1;
  transition: transform .25s; flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 18px; color: var(--muted); font-size: .96rem; }

/* ===================================================
   CTA FINAL
   =================================================== */
.cta-final { padding: 96px 0; position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(255,138,0,.22), transparent 70%), var(--bg-2);
}
.cta-final__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-final p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; }
.cta-final__note { font-size: .88rem; color: var(--muted-2); margin-top: 22px; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer__brand p { color: var(--muted); font-size: .92rem; margin: 18px 0 22px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
  transition: color .2s, border-color .2s, transform .2s;
}
.social:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h4 { font-family: 'Inter'; font-weight: 700; font-size: .95rem; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: .9rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }

.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__wa { color: var(--gold); font-weight: 600; font-size: .92rem; transition: opacity .2s; }
.footer__wa:hover { opacity: .8; }
/* Footer simples (sem a grade de colunas) */
.footer:not(:has(.footer__inner)) { padding-top: 28px; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: .82rem; color: var(--muted-2); }
.footer__disclaimer { max-width: 560px; }

/* ===================================================
   WHATSAPP FLUTUANTE
   =================================================== */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whats); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  transition: transform .25s var(--ease); animation: bob 3s ease-in-out infinite;
}
.whats-float:hover { transform: scale(1.1); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===================================================
   FEEDBACKS — CARROSSEL
   =================================================== */
.fb { position: relative; }
.fb__viewport {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 18px; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none; cursor: grab;
}
.fb__viewport::-webkit-scrollbar { display: none; }
.fb__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.fb__viewport.is-dragging img { pointer-events: none; }

.fb__slide {
  position: relative; flex: 0 0 auto;
  width: clamp(240px, 80vw, 280px); height: 480px;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: center; box-shadow: var(--shadow);
}
.fb__slide img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  background: #070a12; user-select: none; -webkit-user-drag: none;
}
.fb__verified {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .68rem; font-weight: 700; color: #062b13;
  background: var(--whats); padding: 4px 9px; border-radius: 100px;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,.5);
}

.fb__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: #1a1200; background: var(--grad); box-shadow: 0 10px 24px -6px rgba(255,90,31,.55);
  transition: transform .2s var(--ease), opacity .2s;
}
.fb__arrow:hover { transform: translateY(-50%) scale(1.1); }
.fb__arrow:active { transform: translateY(-50%) scale(.95); }
.fb__arrow--prev { left: -10px; }
.fb__arrow--next { right: -10px; }

@media (max-width: 980px) {
  .fb__arrow--prev { left: 4px; }
  .fb__arrow--next { right: 4px; }
}
@media (max-width: 560px) {
  .fb__slide { width: clamp(230px, 82vw, 300px); height: 470px; }
  .fb__arrow { width: 40px; height: 40px; opacity: .92; }
  .fb__arrow--prev { left: 2px; }
  .fb__arrow--next { right: 2px; }
}

/* ===================================================
   VÍDEO DE FUNDO DA PÁGINA
   =================================================== */
.bg-video {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  /* laranja igual ao do vídeo, pras laterais quando o boneco fica centralizado */
  background: linear-gradient(180deg, #ff8f1c 0%, #f86f0a 52%, #e3590a 100%);
}
/* contain = mostra o boneco INTEIRO (sem cortar a cabeça) e sem esticar */
.bg-video__media { width: 100%; height: 100%; object-fit: contain; display: block; }
.bg-video__overlay {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,90,31,.12), transparent 55%),
    linear-gradient(180deg, rgba(10,12,22,.86), rgba(10,12,22,.93));
}

/* Hero: foco escuro atrás do texto + sombra pra legibilidade sobre o vídeo */
.has-bgvideo .hero__bg {
  background:
    radial-gradient(74% 66% at 50% 44%, rgba(8,10,18,.74), transparent 72%),
    radial-gradient(60% 50% at 12% 8%, rgba(255,138,0,.16), transparent 70%),
    radial-gradient(55% 50% at 90% 20%, rgba(255,61,46,.14), transparent 70%);
}
.has-bgvideo .hero__bg::after { display: none; }
.has-bgvideo .hero__title { text-shadow: 0 2px 22px rgba(0,0,0,.9), 0 1px 3px rgba(0,0,0,.7); }
.has-bgvideo .hero__subtitle { text-shadow: 0 1px 14px rgba(0,0,0,.9); }
.has-bgvideo .section__title { text-shadow: 0 2px 14px rgba(0,0,0,.55); }

/* Deixa o vídeo aparecer suavemente através das seções */
.has-bgvideo .section--alt { background: rgba(13,16,28,.72); }
.has-bgvideo .cta-final::before {
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255,138,0,.26), transparent 70%),
    rgba(10,12,22,.62);
}
.has-bgvideo .footer { background: rgba(8,10,18,.78); }

@media (prefers-reduced-motion: reduce) {
  .bg-video__media { display: none; }
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================
   RESPONSIVO
   =================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .steps, .features { grid-template-columns: repeat(2, 1fr); }
  .skins, .winners, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  /* Nav mobile (hambúrguer) */
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(10,12,22,.97); backdrop-filter: blur(14px);
    padding: 8px 22px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s var(--ease); align-items: stretch;
  }
  .nav.open { transform: translateY(0); }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; white-space: normal; }
  .nav__cta { margin-top: 14px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .steps, .skins, .winners, .features, .testimonials { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; }
  .countdown__box span { font-size: 1.4rem; }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
