/* ==========================================================================
   MARRECA FILHO 2522 — CAMPAIGN BIO
   Linguagem visual: cartaz de campanha / adesivo serigrafado.
   Chapado, sombra dura, tipografia condensada itálica, zero gradiente.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* ------------------------------------------------------------------
     Paleta da campanha definida pelo cliente.
     ------------------------------------------------------------------ */
  --ground:  #023C5C;  /* fundo da página */
  --blue:    #1D59BB;  /* cobalto de marca */
  --green:   #008A4A;
  --neon:    #01FF88;  /* acento elétrico: sombras duras, ícones, detalhes */
  --cream:   #FCFBDC;
  --orange:  #FE6D12;
  --amber:   #FFA801;

  /* Dois utilitários derivados do próprio #023C5C — a paleta não traz um tom
     mais escuro para traço nem um mais claro para elevação. Mesmo matiz. */
  --surface: #04567F;  /* superfície elevada: modal, tile, painel */
  --ink:     #011E2E;  /* traço de 3px, caixa de ícone, texto sobre cor clara */

  /* Aliases mantidos para o restante da folha */
  --blue-deep:  var(--ground);
  --blue-mid:   var(--surface);
  --navy-900:   var(--ground);
  --navy-800:   var(--surface);
  --navy-700:   var(--surface);
  --blue-600:   var(--blue);
  --green-mid:  var(--neon);
  --green-600:  var(--neon);
  --green-deep: var(--ink);
  --gold:       var(--amber);
  --yellow:     var(--amber);
  --yellow-600: var(--amber);
  --amber-deep: var(--orange);
  --orange-mid: var(--orange);

  --cream-70: rgba(252, 251, 220, .88);
  --cream-55: rgba(252, 251, 220, .70);
  --ink-70:   rgba(1, 30, 46, .82);

  /* Tipografia */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Geometria */
  --r-card: 20px 4px 20px 4px;
  --r-card-alt: 4px 20px 4px 20px;
  --r-sm: 12px 3px 12px 3px;
  --shell: 620px;
  --gutter: clamp(16px, 4.5vw, 26px);
  --stroke: 3px;

  /* Sombra dura (offset sólido, sem blur) */
  --hard-4: 4px 4px 0 0;
  --hard-6: 6px 6px 0 0;

  --ease: cubic-bezier(.2, .8, .3, 1);

  --z-sticky: 60;
  --z-mascot: 70;
  --z-modal: 100;
  --z-toast: 120;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100dvh;
  background-color: var(--blue-deep);
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(252, 251, 220, .035) 0 2px,
      transparent 2px 14px
    );
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: .95; }
p { margin: 0; }

::selection { background: var(--neon); color: var(--ink); }

/* --------------------------------------------------------------------------
   2b. BARRA DE ROLAGEM
   O padrão do Windows entrega trilho branco e setinhas cinza — quebra o
   cartaz inteiro. Aqui vira um filete da própria paleta.
   -------------------------------------------------------------------------- */
/* `scrollbar-color` desliga os pseudo-elementos -webkit- no Chrome e devolve
   as setinhas do sistema. Então ele só entra onde não há ::-webkit-scrollbar. */
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--amber) var(--ink);
  }
}

::-webkit-scrollbar { width: 12px; height: 10px; }

::-webkit-scrollbar-track {
  background: var(--ink);
  border-left: 2px solid rgba(252, 251, 220, .12);
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
  border: 3px solid var(--ink);   /* vira “respiro” em volta do polegar */
  border-radius: 999px;
  transition: background .18s var(--ease);
}
::-webkit-scrollbar-thumb:hover  { background: var(--neon); }
::-webkit-scrollbar-thumb:active { background: var(--orange); }

/* Mata as setinhas e o quadradinho de canto do Windows */
::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
::-webkit-scrollbar-corner { background: var(--ink); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 200;
  background: var(--yellow); color: var(--ink);
  padding: 12px 18px; border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Grão de papel — dá textura de impresso, mata o "brilho digital" */
.page-grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  position: relative; z-index: 2;
  background: var(--yellow);
  border-bottom: var(--stroke) solid var(--ink);
  overflow: hidden;
  padding: 7px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 20px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.marquee-track span b { font-weight: 900; }
.mq-star { color: var(--orange); font-size: .7rem; font-style: normal; }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   4. SHELL
   -------------------------------------------------------------------------- */
.shell {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: 92px;
}

.block { margin-top: clamp(38px, 9vw, 58px); }

.section-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.section-tag {
  display: inline-block;
  background: var(--cream); color: var(--ink);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px 4px;
  border-radius: var(--r-sm);
  transform: rotate(-2deg);
  box-shadow: var(--hard-4) var(--orange);
}
.section-rule {
  flex: 1; height: 3px;
  background: repeating-linear-gradient(90deg, var(--cream-55) 0 8px, transparent 8px 14px);
}

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(26px, 8vw, 46px);
  text-align: center;
  overflow-x: clip; /* raios e o "2522" fantasma não podem alargar a página */
}

/* Raios de cartaz — chapados, sem blur */
.hero-rays {
  position: absolute; top: clamp(-40px, -6vw, -10px); left: 50%;
  width: min(760px, 175vw); aspect-ratio: 1;
  transform: translateX(-50%);
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 168, 1, .10) 0deg 7deg,
    transparent 7deg 14deg
  );
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 12%, transparent 66%);
          mask-image: radial-gradient(circle at 50% 45%, #000 12%, transparent 66%);
  animation: spin 90s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }

.hero-ghost {
  position: absolute; top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: min(46vw, 300px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(252, 251, 220, .10);
  letter-spacing: -.02em;
  pointer-events: none; user-select: none;
}

.avatar-stack {
  position: relative; z-index: 2;
  width: clamp(180px, 52vw, 250px);
  margin: 0 auto;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.avatar-img {
  width: 100%;
  filter: drop-shadow(0 16px 0 rgba(1, 30, 46, .55));
  transition: transform .28s var(--ease);
}

.avatar-badge {
  position: absolute; top: 2%; right: -10px;
  transform: rotate(7deg);
  background: var(--orange); color: var(--cream);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px 4px;
  border: 2px solid var(--ink);
  border-radius: 10px 2px 10px 2px;
  box-shadow: var(--hard-4) var(--ink);
  white-space: nowrap;
}

.btn-juliet {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  min-height: 44px;
  padding: 9px 18px;
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream-55);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: .05em; text-transform: uppercase;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-juliet:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-juliet:active { transform: scale(.97); }

.hero-logo {
  position: relative; z-index: 2;
  width: clamp(230px, 66vw, 330px);
  margin: 26px auto 0;
}

.pills {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 20px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px 4px;
  border: 2px solid var(--cream-55);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--cream-70);
}
.pill i { font-size: .78rem; color: var(--green-600); }
.pill-solid {
  background: var(--yellow); color: var(--ink);
  border-color: var(--yellow); font-weight: 900;
}

.hero-title {
  position: relative; z-index: 2;
  margin-top: 26px;
  font-weight: 900; font-style: italic;
  font-size: clamp(2.9rem, 13.5vw, 4.6rem);
  letter-spacing: -.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--orange);
}

.hero-sub {
  position: relative; z-index: 2;
  max-width: 34ch;
  margin: 16px auto 0;
  color: var(--cream-70);
  font-size: 1.02rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   6. FEATURED CARD
   -------------------------------------------------------------------------- */
.feature-card {
  position: relative;
  display: block; width: 100%; text-align: left;
  background: var(--yellow);
  color: var(--ink);
  border: var(--stroke) solid var(--ink);
  border-radius: 24px 6px 24px 6px;
  box-shadow: var(--hard-6) var(--orange);
  padding: 22px 20px 20px;
  overflow: hidden;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(22,61,37,.05) 0 3px, transparent 3px 10px);
  pointer-events: none;
}
.feature-card:hover { box-shadow: 9px 9px 0 0 var(--orange); transform: translate(-2px, -2px); }
.feature-card:active { box-shadow: 0 0 0 0 var(--orange); transform: translate(6px, 6px); }

.feature-flag {
  display: inline-block;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 11px 3px;
  border-radius: 8px 2px 8px 2px;
}

.feature-body { display: block; margin-top: 14px; }
.feature-kicker {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: .88rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-70);
}
.feature-title {
  display: block; margin-top: 4px;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 9vw, 2.7rem); line-height: .93;
  text-transform: uppercase;
}
.feature-sub {
  display: block; margin-top: 10px;
  font-size: .95rem; line-height: 1.4; color: var(--ink-70);
  max-width: 30ch;
}

/* Contador de apoiadores.
   Conta APARELHOS, não cliques: quem monta dez stories continua sendo um
   apoiador só. Nasce escondido e só aparece quando o servidor responde —
   número inventado seria pior que número nenhum. */
.feature-apoio {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 10px 14px 9px;
  width: fit-content; max-width: 100%;
  background: var(--ink);
  border-radius: 14px 3px 14px 3px;
}
.feature-apoio[hidden] { display: none; }
.apoio-ponto {
  width: 9px; height: 9px; flex: none;
  border-radius: 50%; background: var(--neon);
  animation: apoioPulso 2s var(--ease) infinite;
}
@keyframes apoioPulso {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%      { opacity: .45; transform: scale(.8); }
}
.apoio-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.9rem; line-height: 1; letter-spacing: .01em;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
}
.apoio-rot {
  font-family: var(--font-display); font-weight: 700;
  font-size: .76rem; line-height: 1.15; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream);
}

.feature-thumbs { display: flex; margin-top: 16px; }
.feature-thumbs img {
  width: 48px; height: 78px;
  object-fit: cover; object-position: bottom;
  border: 2px solid var(--ink);
  border-radius: 10px 2px 10px 2px;
  background: var(--cream);
  margin-right: -12px;
  transform: rotate(-4deg);
}
.feature-thumbs img:nth-child(2) { transform: rotate(3deg); }
.feature-thumbs img:nth-child(3) { transform: rotate(-2deg); }

.feature-go {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 18px; min-height: 50px;
  background: var(--ink); color: var(--neon);
  border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. LINK CARDS
   -------------------------------------------------------------------------- */
.card-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 18px;
}

.card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: 14px;
  width: 100%; text-align: left;
  min-height: 78px;
  padding: 13px 15px;
  border: var(--stroke) solid var(--ink);
  border-radius: var(--r-card);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.card:nth-child(even) { border-radius: var(--r-card-alt); }
.card:hover { transform: translate(-2px, -2px); }
.card:active { transform: translate(5px, 5px) !important; box-shadow: 0 0 0 0 transparent !important; }

.card-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; flex: none;
  border-radius: var(--r-sm);
  font-size: 1.28rem;
}
.card-text { display: block; min-width: 0; }
.card-title {
  display: block;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.42rem; line-height: 1.03; letter-spacing: .01em;
  text-transform: uppercase;
}
.card-sub {
  display: block; margin-top: 3px;
  font-size: .86rem; line-height: 1.3;
  text-wrap: pretty;
}
.card-go {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  font-size: .82rem;
}

/* Variantes — só cores da paleta oficial, todas testadas em contraste AA
   contra a cor de texto que carregam. */
.card-blue    { background: var(--blue);    color: var(--cream); box-shadow: var(--hard-6) var(--amber); }   /* 6.3:1  */
.card-yellow  { background: var(--amber);   color: var(--ink);   box-shadow: var(--hard-6) var(--blue); }    /* 8.9:1  */
.card-green   { background: var(--neon);    color: var(--ink);   box-shadow: var(--hard-6) var(--blue); }    /* 12.8:1 */
.card-orange  { background: var(--orange);  color: var(--ink);   box-shadow: var(--hard-6) var(--ink); }     /* 6.0:1  */
.card-navy    { background: var(--surface); color: var(--cream); box-shadow: var(--hard-6) var(--neon); }    /* 7.6:1  */
.card-whats   { background: #075E54;        color: var(--cream); box-shadow: var(--hard-6) var(--amber); }   /* 7.3:1  */
.card-dark    { background: var(--cream);   color: var(--ink);   box-shadow: var(--hard-6) var(--orange); }  /* 16:1   */

.card-blue:hover    { box-shadow: 9px 9px 0 0 var(--amber); }
.card-yellow:hover  { box-shadow: 9px 9px 0 0 var(--blue); }
.card-green:hover   { box-shadow: 9px 9px 0 0 var(--blue); }
.card-orange:hover  { box-shadow: 9px 9px 0 0 var(--ink); }
.card-navy:hover    { box-shadow: 9px 9px 0 0 var(--neon); }
.card-whats:hover   { box-shadow: 9px 9px 0 0 var(--amber); }
.card-dark:hover    { box-shadow: 9px 9px 0 0 var(--orange); }

/* Ícone / seta por variante */
.card-blue    .card-icon { background: var(--ink); color: var(--neon); }
.card-yellow  .card-icon { background: var(--ink); color: var(--amber); }
.card-green   .card-icon { background: var(--ink); color: var(--neon); }
.card-orange  .card-icon { background: var(--ink); color: var(--orange); }
.card-navy    .card-icon { background: var(--ink); color: var(--neon); }
.card-whats   .card-icon { background: #043B34;    color: #4BE8A6; }
.card-dark    .card-icon { background: var(--ink); color: var(--amber); }

/* Subtítulo em cor cheia: nos fundos saturados o cinza-claro reprovava em AA. */
.card-yellow .card-sub, .card-orange .card-sub,
.card-green .card-sub, .card-dark .card-sub { color: var(--ink-70); }
.card-blue .card-sub, .card-navy .card-sub,
.card-whats .card-sub { color: var(--cream); }

.card-go { background: rgba(252, 251, 220, .18); }
.card-yellow .card-go, .card-orange .card-go { background: rgba(1, 30, 46, .18); }

/* --------------------------------------------------------------------------
   8. MASCOTE BANNER
   -------------------------------------------------------------------------- */
.mascot-banner {
  position: relative;
  display: grid; grid-template-columns: 108px minmax(0, 1fr); align-items: center; gap: 14px;
  background: var(--green);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--r-card-alt);
  box-shadow: var(--hard-6) var(--neon);
  padding: 16px;
  overflow: hidden;
}
.mascot-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,246,230,.05) 0 3px, transparent 3px 12px);
  pointer-events: none;
}
.mascot-img { width: 108px; filter: drop-shadow(0 6px 0 rgba(22,61,37,.4)); }
.mascot-kicker {
  font-family: var(--font-display); font-weight: 800;
  font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--neon);
}
.mascot-title {
  margin-top: 2px;
  font-weight: 900; font-style: italic;
  font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  text-transform: uppercase; color: var(--cream);
}
/* Creme sobre #008A4A dá 4.2:1 — abaixo de AA para corpo, mas acima de 3:1
   para texto grande. Por isso esta linha é display 700 a 19px, não corpo. */
.mascot-desc {
  margin-top: 7px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.18rem; line-height: 1.16; color: var(--cream);
}

/* --------------------------------------------------------------------------
   9. SOCIAL
   -------------------------------------------------------------------------- */
.social-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.social-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  min-height: 82px; padding: 10px 4px;
  background: var(--navy-800);
  border: 2px solid var(--cream-55);
  border-radius: var(--r-sm);
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .12s var(--ease);
}
.social-tile i { font-size: 1.4rem; }
.social-tile span {
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-70);
}
.social-tile:active { transform: scale(.96); }
.social-tile.ig:hover { background: #C13584; border-color: #C13584; }
.social-tile.wa:hover { background: #075E54; border-color: #075E54; }
.social-tile:hover span { color: var(--cream); }

.btn-share {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 56px; margin-top: 14px;
  background: var(--cream); color: var(--ink);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--hard-6) var(--blue);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.2rem; letter-spacing: .04em; text-transform: uppercase;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.btn-share:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 0 var(--blue); }
.btn-share:active { transform: translate(5px, 5px); box-shadow: 0 0 0 0 var(--blue); }

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative; z-index: 2;
  margin-top: clamp(44px, 10vw, 66px);
  background: var(--surface);
  border-top: var(--stroke) solid var(--neon);
  padding: 30px var(--gutter) calc(34px + env(safe-area-inset-bottom));
  text-align: center;
}
.footer-inner { max-width: var(--shell); margin-inline: auto; }
/* Faixa das marcas oficiais: candidato, partido e coligação na mesma linha.
   Cada arte foi recortada no alfa, então dá para alinhar pela altura sem
   sobra de transparência empurrando uma para longe da outra. */
.footer-marcas {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: clamp(16px, 4vw, 40px);
  margin: 0 auto 24px; padding-bottom: 24px;
  border-bottom: 2px solid rgba(252, 251, 220, .22);
}
.fm { display: block; width: auto; max-width: 100%; object-fit: contain; }
.fm-2522   { height: clamp(58px, 11vw, 88px); }
.fm-prd    { height: clamp(24px, 4.6vw, 36px); }
.fm-juntos { height: clamp(58px, 11vw, 88px); }
.fm-sep { width: 2px; height: 46px; background: rgba(252, 251, 220, .24); }
@media (max-width: 560px) { .fm-sep { display: none; } }
.footer-name {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.22rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream);
}
.footer-line { margin-top: 5px; font-size: .84rem; color: var(--cream); }
.footer-mini {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(252, 251, 220, .28);
  font-size: .76rem; color: rgba(252, 251, 220, .88);
}

/* --------------------------------------------------------------------------
   11. STICKY CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed; z-index: var(--z-sticky);
  left: 0; right: 0; bottom: 0;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--blue-deep) 62%, rgba(2, 60, 92, 0));
  transform: translateY(120%);
  transition: transform .32s var(--ease);
  pointer-events: none;
}
.sticky-cta.show { transform: translateY(0); pointer-events: auto; }
.sticky-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: var(--shell); margin-inline: auto;
  min-height: 56px;
  background: var(--yellow); color: var(--ink);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--r-card);
  box-shadow: var(--hard-4) var(--orange);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.18rem; letter-spacing: .04em; text-transform: uppercase;
}
.sticky-btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--orange); }

/* --------------------------------------------------------------------------
   12. MASCOT WIDGET
   -------------------------------------------------------------------------- */
.mascot-widget {
  position: fixed; z-index: var(--z-mascot);
  right: 12px; bottom: calc(78px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.mascot-bubble {
  max-width: 190px;
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px 12px 2px 12px;
  box-shadow: var(--hard-4) var(--orange);
  padding: 8px 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; line-height: 1.2; text-transform: uppercase;
  opacity: 0; transform: translateY(8px) scale(.94);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  pointer-events: none;
}
.mascot-bubble.show { opacity: 1; transform: translateY(0) scale(1); }
.mascot-trigger {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  transition: transform .18s var(--ease);
}
.mascot-trigger img { width: 100%; filter: drop-shadow(0 4px 0 rgba(1, 30, 46, .5)); }
.mascot-trigger:hover { transform: rotate(-6deg) scale(1.06); }
.mascot-trigger:active { transform: scale(.92); }

/* --------------------------------------------------------------------------
   13. MODAIS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(1, 20, 32, .82);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0;
  animation: fadeIn .2s var(--ease);
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%; max-width: 560px;
  max-height: 92dvh;
  background: var(--navy-800);
  border: var(--stroke) solid var(--cream);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  animation: slideUp .3s var(--ease);
  overflow: hidden;
}
.modal-lg { max-width: 640px; }
@keyframes slideUp { from { transform: translateY(28px); opacity: .6; } to { transform: translateY(0); opacity: 1; } }

.modal-grab {
  width: 44px; height: 4px; flex: none;
  margin: 8px auto 0;
  background: var(--cream-55); border-radius: 999px;
}

.modal-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px 12px;
  border-bottom: 2px solid rgba(252, 251, 220, .16);
}
.modal-title {
  display: flex; align-items: center; gap: 9px;
  font-weight: 900; font-style: italic;
  font-size: 1.45rem; letter-spacing: .02em; text-transform: uppercase;
  color: var(--cream);
}
.modal-title i { color: var(--yellow); font-size: 1.05rem; }
.modal-close {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  background: rgba(252, 251, 220, .1); color: var(--cream);
  border-radius: 10px 2px 10px 2px;
  font-size: 1.7rem; line-height: 1;
  transition: background .18s var(--ease);
}
.modal-close:hover { background: var(--orange); color: var(--cream); }

.modal-body {
  padding: 16px 18px;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
/* Dentro do modal o filete é mais fino e sem trilho, para não roubar a cena */
.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-track { background: transparent; border: 0; }
.modal-body::-webkit-scrollbar-thumb {
  background: var(--cream-55); border: 2px solid transparent;
  background-clip: padding-box; border-radius: 999px;
}
.modal-body::-webkit-scrollbar-thumb:hover { background: var(--amber); }
.modal-hint { font-size: .9rem; color: var(--cream-70); margin-bottom: 14px; line-height: 1.45; }

.field-label {
  display: block; margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow);
}

.modal-footer {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 14px 18px calc(16px + env(safe-area-inset-bottom));
  border-top: 2px solid rgba(252, 251, 220, .16);
  background: var(--navy-900);
}
.btn-cancel {
  flex: 0 0 auto; min-height: 50px; padding: 0 18px;
  border: 2px solid var(--cream-55); color: var(--cream-70);
  border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; letter-spacing: .05em; text-transform: uppercase;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.btn-cancel:hover { color: var(--cream); border-color: var(--cream); }
.btn-primary {
  flex: 1 1 190px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 16px;
  background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--hard-4) var(--orange);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.08rem; letter-spacing: .03em; text-transform: uppercase;
  text-align: center;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease);
}
.btn-primary:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--orange); }
.btn-primary:disabled { opacity: .42; cursor: not-allowed; box-shadow: none; }

/* --- Canvas studio --- */
.canvas-container { display: flex; justify-content: center; }
.canvas-wrapper {
  position: relative;
  width: min(100%, 214px);
  aspect-ratio: 1080 / 1920; /* JS reajusta conforme a moldura escolhida */
  background: var(--navy-900);
  border: var(--stroke) solid var(--cream);
  border-radius: var(--r-card);
  overflow: hidden;
  touch-action: none; cursor: grab;
}
.canvas-wrapper:active { cursor: grabbing; }
#profileCanvas { width: 100%; height: 100%; display: block; }

.upload-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 20px; text-align: center;
  background: var(--navy-900);
}
.upload-placeholder i { font-size: 2.4rem; color: var(--yellow); }
.upload-placeholder p {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1.05rem; text-transform: uppercase; color: var(--cream-70);
}
.btn-upload {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 14px;
  background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--hard-4) var(--orange);
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: .95rem; letter-spacing: .02em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
}
.btn-upload:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--orange); }

.canvas-controls { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.control-row { display: flex; align-items: center; gap: 12px; }
.control-row label {
  flex: 0 0 96px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-70);
}
.control-row input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 999px;
  background: rgba(252, 251, 220, .2);
}
.control-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow); border: 2px solid var(--ink); cursor: pointer;
}
.control-row input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow); border: 2px solid var(--ink); cursor: pointer;
}
.control-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost {
  flex: 1 1 130px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 46px; padding: 0 14px;
  border: 2px solid var(--cream-55); color: var(--cream-70);
  border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

.frame-selector { margin-top: 22px; }
.frames-row {
  display: flex; gap: 10px;
  overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.frames-row::-webkit-scrollbar { height: 8px; }
.frames-row::-webkit-scrollbar-track { background: transparent; border: 0; }
.frames-row::-webkit-scrollbar-thumb {
  background: var(--amber); border: 2px solid transparent;
  background-clip: padding-box; border-radius: 999px;
}
/* --------------------------------------------------------------------------
   MURAL DE QUEM ACABOU DE MONTAR
   --------------------------------------------------------------------------
   So nome e cidade, e so de quem pediu para aparecer. Nenhuma foto sai do
   aparelho de ninguem: a arte e montada e baixada no proprio navegador.
   -------------------------------------------------------------------------- */
.mural { margin-top: 22px; }
.mural[hidden] { display: none; }
.mural-lista { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.mural-item {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  padding: 9px 12px;
  background: var(--navy-900);
  border-radius: var(--r-sm);
}
.mural-ponto {
  width: 8px; height: 8px; flex: none; align-self: center;
  border-radius: 50%; background: var(--neon);
}
.mural-nome {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream);
}
.mural-cidade { font-size: .88rem; color: var(--cream-70); }
.mural-quando { margin-left: auto; font-size: .76rem; color: var(--cream-55); white-space: nowrap; }
.mural-vazio { padding: 12px; font-size: .88rem; color: var(--cream-70); }

/* Convite: aparece depois que a pessoa salva a arte, nunca antes. */
.mural-convite {
  margin-top: 18px; padding: 14px;
  background: var(--navy-900);
  border: 2px solid var(--neon);
  border-radius: var(--r-sm);
}
.mural-convite[hidden] { display: none; }
.mural-convite-t {
  margin: 0 0 10px;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.1rem; text-transform: uppercase; color: var(--neon);
}
.mural-campos { display: grid; gap: 8px; }
.mural-campos input {
  min-height: 48px; padding: 0 14px;
  background: transparent;
  border: 2px solid var(--cream-55);
  border-radius: var(--r-sm);
  color: var(--cream); font-size: 1rem;
}
.mural-campos input::placeholder { color: var(--cream-55); }
.mural-campos input:focus { outline: none; border-color: var(--neon); }
.mural-botoes { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.mural-botoes .btn-primary, .mural-botoes .btn-cancel { flex: 1 1 auto; min-height: 48px; }
.mural-aviso {
  display: block; margin-top: 10px;
  font-size: .78rem; line-height: 1.45; color: var(--cream-70);
}

/* Campo da cidade: so aparece com a moldura de faixa vazia selecionada.
   Altura de 52px porque em celular um input menor que isso e chato de acertar
   com o dedo, e no iPhone fonte abaixo de 16px faz a tela dar zoom sozinha. */
.campo-cidade { margin-top: 16px; }
.campo-cidade[hidden] { display: none; }
.campo-cidade label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: .9rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--neon);
}
.campo-cidade-linha { position: relative; display: flex; }
.campo-cidade input {
  flex: 1; min-width: 0;
  min-height: 52px; padding: 0 46px 0 16px;
  background: var(--navy-900);
  border: 2px solid var(--cream-55);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
}
.campo-cidade input::placeholder { color: var(--cream-55); font-style: italic; }
.campo-cidade input:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(1, 255, 136, .22);
}
.campo-cidade-x {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: transparent; border: 0; border-radius: 50%;
  color: var(--cream-70); font-size: 1.5rem; line-height: 1;
  cursor: pointer;
}
.campo-cidade-x:hover { color: var(--cream); background: rgba(252, 251, 220, .1); }
.campo-cidade-dica {
  display: block; margin-top: 8px;
  font-size: .82rem; line-height: 1.4; color: var(--cream-70);
}

.frame-thumb {
  flex: 0 0 92px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 7px;
  background: var(--navy-900);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), transform .12s var(--ease);
}
.frame-thumb img {
  width: 100%; aspect-ratio: 9 / 16; object-fit: contain;
  background: var(--navy-800);
  border-radius: 8px 2px 8px 2px;
}
.frame-thumb span {
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream-70); text-align: center; line-height: 1.1;
}
.frame-thumb.active { border-color: var(--yellow); transform: translateY(-2px); }
.frame-thumb.active span { color: var(--yellow); }

/* ==========================================================================
   RÁDIO MARRECA — player
   ========================================================================== */
.radio-stage {
  background: var(--ground);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-card);
  padding: 16px 14px 14px;
  margin-bottom: 18px;
}

.radio-top { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 14px; align-items: center; }

/* Capa com disco atrás — só gira enquanto toca */
.radio-art { position: relative; width: 84px; height: 84px; }
.radio-art img {
  position: relative; z-index: 2; width: 100%;
  filter: drop-shadow(0 5px 0 rgba(1, 30, 46, .55));
}
.radio-disc {
  position: absolute; inset: 6px; z-index: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(252, 251, 220, .14) 0deg 6deg, transparent 6deg 12deg),
    var(--ink);
  border: 2px solid var(--neon);
  animation: discSpin 6s linear infinite;
  animation-play-state: paused;
}
.radio-stage.is-playing .radio-disc { animation-play-state: running; }
@keyframes discSpin { to { transform: rotate(360deg); } }

.radio-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 800;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--neon);
}
.radio-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon); opacity: .35; }
.radio-stage.is-playing .radio-dot { animation: pulseDot 1.1s ease-in-out infinite; opacity: 1; }
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .35; }
}

.radio-title {
  margin-top: 3px;
  font-weight: 900; font-style: italic;
  font-size: clamp(1.3rem, 6vw, 1.7rem); line-height: 1;
  text-transform: uppercase; color: var(--cream);
}
.radio-artist { margin-top: 4px; font-size: .82rem; color: var(--cream-55); }

/* Barras reais de FFT do áudio */
.radio-viz { width: 100%; height: 56px; display: block; margin: 12px 0 6px; }

.radio-seek { display: flex; align-items: center; gap: 10px; }
.time-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; color: var(--cream-55);
  font-variant-numeric: tabular-nums; min-width: 34px;
}
.progress-bg {
  flex: 1; height: 10px; border-radius: 999px;
  background: rgba(252, 251, 220, .16);
  cursor: pointer; overflow: hidden; touch-action: none;
}
.progress-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: var(--neon);
  transition: width .12s linear;
}

.radio-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 16px;
}
.player-btn {
  display: grid; place-items: center;
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  background: rgba(252, 251, 220, .1); color: var(--cream);
  font-size: 1rem;
  transition: background .18s var(--ease), transform .12s var(--ease), color .18s var(--ease);
}
.player-btn:hover { background: rgba(252, 251, 220, .2); }
.player-btn:active { transform: scale(.9); }
.player-btn-ghost {
  width: 44px; height: 44px; background: transparent;
  color: var(--cream-55); font-size: .9rem;
}
.player-btn-ghost:hover { background: rgba(252, 251, 220, .12); color: var(--cream); }
.player-btn-ghost.on { color: var(--neon); background: rgba(1, 255, 136, .14); }
.player-btn-main {
  width: 66px; height: 66px;
  background: var(--neon); color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--hard-4) var(--amber);
  font-size: 1.35rem;
}
.player-btn-main:hover { background: var(--amber); }
.player-btn-main:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--amber); }

.radio-utility {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(252, 251, 220, .14);
}
.radio-vol { display: flex; align-items: center; gap: 9px; flex: 1 1 120px; max-width: 190px; }
.radio-vol i { color: var(--cream-55); font-size: .88rem; }
.radio-vol input[type="range"] {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 5px; border-radius: 999px; background: rgba(252, 251, 220, .2);
}
.radio-vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--neon); border: 2px solid var(--ink); cursor: pointer;
}
.radio-vol input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--neon); border: 2px solid var(--ink); cursor: pointer;
}
.btn-dl-inline {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 40px; padding: 0 14px; flex: none;
  background: rgba(252, 251, 220, .1); color: var(--cream);
  border-radius: 10px 2px 10px 2px;
  font-family: var(--font-display); font-weight: 800;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn-dl-inline:hover { background: var(--amber); color: var(--ink); }

/* --- Placar ao vivo --- */
.scoreboard {
  position: relative;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 14px 12px; margin-bottom: 20px;
  background: var(--ink);
  border: 2px solid var(--neon);
  border-radius: var(--r-card-alt);
}
.scoreboard:has(.score-online:not([hidden])) { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.score { display: flex; flex-direction: column; align-items: center; gap: 1px; text-align: center; }
.score[hidden] { display: none; }   /* [hidden] perde para display:flex sem isto */
.score-ico { font-size: .8rem; color: var(--neon); margin-bottom: 3px; }
.score-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(1.6rem, 8vw, 2.2rem); line-height: 1; color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.score-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-55); line-height: 1.1;
}
.score-online .score-ico,
.score-online .score-num { color: var(--neon); }

.live-badge {
  position: absolute; top: -11px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px 2px;
  background: var(--ground); color: var(--cream-55);
  border: 2px solid rgba(252, 251, 220, .22);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
}
.live-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.live-badge.is-live {
  color: var(--ink); background: var(--neon); border-color: var(--neon);
}
.live-badge.is-live::before { animation: pulseDot 1.4s ease-in-out infinite; }

/* --- Playlist --- */
.playlist { display: flex; flex-direction: column; gap: 8px; }
.playlist-item {
  display: grid; grid-template-columns: 38px minmax(0, 1fr) auto auto;
  align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--ground);
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.playlist-item:hover { border-color: var(--cream-55); }
.playlist-item.active { border-color: var(--neon); background: rgba(1, 255, 136, .08); }

.track-num { position: relative; display: grid; place-items: center; width: 38px; height: 26px; }
.track-digits {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.25rem; color: var(--cream-55); font-variant-numeric: tabular-nums;
}
.playlist-item.active .track-digits { color: var(--neon); }

/* Enquanto toca, o número vira equalizador */
.track-eq { position: absolute; display: none; align-items: flex-end; gap: 2px; height: 16px; }
.playlist-item.playing .track-eq { display: flex; }
.playlist-item.playing .track-digits { visibility: hidden; }
.track-eq i { width: 3px; background: var(--neon); border-radius: 2px; animation: eq .9s ease-in-out infinite; }
.track-eq i:nth-child(2) { animation-delay: .15s; }
.track-eq i:nth-child(3) { animation-delay: .3s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 16px; } }

.track-meta { display: block; min-width: 0; }
.track-name {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.06rem; line-height: 1.12; text-transform: uppercase; color: var(--cream);
}
.track-dur { display: block; margin-top: 2px; font-size: .76rem; color: var(--cream-55); }

/* Dois selos por faixa: plays e downloads */
.track-stats { display: flex; flex-direction: column; gap: 3px; align-items: stretch; }
.stat-chip {
  display: inline-flex; align-items: center; justify-content: flex-end; gap: 5px;
  padding: 2px 8px;
  background: rgba(252, 251, 220, .1);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: .72rem; color: var(--cream-70);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat-chip i { font-size: .54rem; color: var(--neon); }
.stat-chip.stat-dl i { color: var(--amber); }
.stat-chip.pop { animation: playPop .5s var(--ease); }
@keyframes playPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.28); background: var(--neon); color: var(--ink); }
  100% { transform: scale(1); }
}

.btn-track {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 10px 2px 10px 2px;
  background: rgba(252, 251, 220, .1); color: var(--cream);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn-track:hover { background: var(--amber); color: var(--ink); }

/* --------------------------------------------------------------------------
   FOLHA DE COMPARTILHAMENTO
   -------------------------------------------------------------------------- */
.share-sheet {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(1, 20, 32, .82);
  opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}
.share-sheet.show { opacity: 1; visibility: visible; }

.share-card {
  width: 100%; max-width: var(--shell);
  background: var(--surface);
  border: var(--stroke) solid var(--cream);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 14px 16px calc(20px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .28s var(--ease);
}
.share-sheet.show .share-card { transform: translateY(0); }

.share-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.share-head span {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.3rem; letter-spacing: .03em; text-transform: uppercase; color: var(--cream);
}
.share-x {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: rgba(252, 251, 220, .12); color: var(--cream);
  border-radius: 10px 2px 10px 2px;
  font-size: 1.6rem; line-height: 1;
}

.share-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.share-opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  min-height: 84px; padding: 10px 4px;
  background: var(--ground);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  transition: transform .12s var(--ease), background .18s var(--ease);
}
.share-opt i { font-size: 1.4rem; }
.share-opt span {
  font-family: var(--font-display); font-weight: 700;
  font-size: .74rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--cream); line-height: 1.1; text-align: center;
}
.share-opt:active { transform: scale(.94); }
.sh-wa i { color: #4BE8A6; }
.sh-fb i { color: #6AA9FF; }
.sh-tg i { color: #6FD0FF; }
.sh-cp i { color: var(--amber); }
.sh-wa:hover { background: #075E54; }
.sh-fb:hover { background: #1877F2; }
.sh-tg:hover { background: #2AABEE; }
.sh-cp:hover { background: var(--amber); }
.sh-cp:hover i, .sh-cp:hover span { color: var(--ink); }

@media (max-width: 380px) {
  .share-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   MINI-PLAYER — a música continua enquanto a pessoa navega
   -------------------------------------------------------------------------- */
.mini-player {
  position: fixed; z-index: var(--z-sticky);
  left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center; gap: 8px;
  max-width: var(--shell); margin-inline: auto;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink);
  border: 2px solid var(--neon);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  transform: translateY(120%);
  transition: transform .32s var(--ease);
  pointer-events: none;
}
.mini-player.show { transform: translateY(0); pointer-events: auto; }
.mini-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(252, 251, 220, .16);
}
.mini-bar span { display: block; height: 100%; width: 0; background: var(--neon); transition: width .12s linear; }

.mini-open {
  display: grid; grid-template-columns: 40px minmax(0, 1fr);
  align-items: center; gap: 10px; text-align: left; min-width: 0;
}
.mini-art { width: 40px; animation: discSpin 6s linear infinite; }
.mini-meta { display: block; min-width: 0; }
.mini-title {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; line-height: 1.1; text-transform: uppercase; color: var(--cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-sub { display: block; font-size: .72rem; color: var(--neon); }
.mini-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: rgba(252, 251, 220, .12); color: var(--cream);
  transition: background .18s var(--ease);
}
.mini-btn:active { transform: scale(.92); }
#miniPlay { background: var(--neon); color: var(--ink); }

/* Com o mini-player na tela, o CTA fixo sai e o mascote sobe */
body.has-mini .sticky-cta { transform: translateY(120%); pointer-events: none; }
body.has-mini .mascot-widget { bottom: calc(96px + env(safe-area-inset-bottom)); }

/* --- Wallpapers --- */
.wall-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.wall-card {
  background: var(--navy-900);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.wall-thumb { aspect-ratio: 9 / 16; background: var(--navy-800); }
.wall-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wall-info { padding: 10px; }
.wall-info span {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: .95rem; line-height: 1.15; text-transform: uppercase; color: var(--cream);
}
.wall-tag {
  display: inline-block !important;
  margin-bottom: 4px; padding: 2px 7px 1px;
  background: rgba(252, 251, 220, .12);
  border-radius: 6px 2px 6px 2px;
  font-weight: 700 !important;
  font-size: .7rem !important; letter-spacing: .08em;
  color: var(--cream-70) !important;
}
.wall-tag.tag-wall { background: var(--yellow); color: var(--ink) !important; }
.btn-dl {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 42px; margin-top: 8px;
  background: var(--yellow); color: var(--ink);
  border-radius: 10px 2px 10px 2px;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: .92rem; text-transform: uppercase;
}
.btn-dl:active { transform: scale(.96); }

/* --- Kit de campanha --- */
.kit-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
  margin-bottom: 26px;
}
.kit-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 10px 8px;
  background: var(--blue-deep);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-sm);
  text-align: center;
  transition: border-color .18s var(--ease), transform .12s var(--ease);
}
.kit-item:hover { border-color: var(--gold); }
.kit-item:active { transform: scale(.96); }
.kit-item img {
  width: 100%; height: 62px; object-fit: contain;
}
/* Arte pensada para fundo claro ganha uma base creme para não sumir */
.kit-item.on-light img {
  background: var(--cream);
  border-radius: 8px 2px 8px 2px;
  padding: 5px;
}
.kit-item span {
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; line-height: 1.12; letter-spacing: .03em;
  text-transform: uppercase; color: var(--cream);
}

/* --- Vinhetas --- */
.video-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
  margin-bottom: 26px;
}
.video-card {
  background: var(--blue-deep);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.video-card video {
  width: 100%; aspect-ratio: 16 / 9;
  display: block; background: #06140A; object-fit: contain;
}
.video-info { padding: 9px 10px; }
.video-info > span {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: .92rem; text-transform: uppercase; color: var(--cream);
}
.video-info .btn-dl { margin-top: 7px; }

.gif-list { display: flex; flex-direction: column; gap: 8px; }
.gif-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center; gap: 10px;
  padding: 12px;
  background: var(--blue-deep);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-sm);
  transition: border-color .18s var(--ease);
}
.gif-row:hover { border-color: var(--gold); }
.gif-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: .98rem; text-transform: uppercase; color: var(--cream);
}
.gif-name i { color: var(--gold); margin-right: 6px; }
.gif-size { font-size: .76rem; color: var(--cream-55); font-variant-numeric: tabular-nums; }
.gif-go {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(252, 251, 220, .16); color: var(--cream);
  font-size: .8rem;
}

/* --- Stickers --- */
.sticker-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.sticker {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px;
  background: var(--navy-900);
  border: 2px solid rgba(252, 251, 220, .18);
  border-radius: var(--r-sm);
  text-align: center;
}
.sticker img { width: 82px; height: 82px; object-fit: contain; }
.sticker > span {
  font-family: var(--font-display); font-weight: 800;
  font-size: .92rem; text-transform: uppercase; color: var(--cream);
}
.btn-dl-sm {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; min-height: 40px;
  background: rgba(252, 251, 220, .1); color: var(--cream);
  border-radius: 10px 2px 10px 2px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.btn-dl-sm:hover { background: var(--yellow); color: var(--ink); }

/* --------------------------------------------------------------------------
   14. TOAST / CONFETTI
   -------------------------------------------------------------------------- */
.toast {
  position: fixed; z-index: var(--z-toast);
  left: 50%; bottom: calc(24px + env(safe-area-inset-bottom));
  transform: translate(-50%, 140%);
  max-width: min(92vw, 420px);
  background: var(--cream); color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--hard-4) var(--orange);
  padding: 12px 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; letter-spacing: .02em; text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.confetti-canvas {
  position: fixed; inset: 0; z-index: 130;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   15. REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   16. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 359px) {
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-icon { width: 46px; height: 46px; font-size: 1.12rem; }
  .card-title { font-size: 1.24rem; }
  .mascot-banner { grid-template-columns: 82px minmax(0, 1fr); }
  .mascot-img { width: 82px; }
}

@media (min-width: 700px) {
  .modal-overlay { align-items: center; padding: 24px; }
  .modal-card {
    border-bottom: var(--stroke) solid var(--cream);
    border-radius: 26px 6px 26px 6px;
    max-height: 88dvh;
  }
  .modal-grab { display: none; }
  .modal-footer { padding-bottom: 16px; }
  .wall-grid, .sticker-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sticky-cta { display: none; }
  .mascot-widget { bottom: 20px; right: 20px; }
  .card { min-height: 84px; padding: 15px 18px; }

  /* Cartaz principal ganha duas colunas: copy à esquerda, molduras à direita */
  .feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "flag   thumbs"
      "body   thumbs"
      "go     go";
    align-items: start;
    column-gap: 22px;
    padding: 26px 24px 24px;
  }
  .feature-flag  { grid-area: flag; justify-self: start; }
  .feature-body  { grid-area: body; }
  .feature-thumbs {
    grid-area: thumbs; align-self: center;
    flex-direction: column; margin-top: 0;
  }
  .feature-thumbs img { width: 98px; height: 174px; margin: 0 0 -52px; }
  .feature-thumbs img:nth-child(1) { transform: rotate(-5deg); }
  .feature-thumbs img:nth-child(2) { transform: rotate(4deg); }
  .feature-thumbs img:nth-child(3) { display: none; }
  .feature-go { grid-area: go; }
}

/* --------------------------------------------------------------------------
   17. ACESSIBILIDADE / MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-rays { animation: none; }
  .avatar-stack { animation: none; }
}

@media (prefers-contrast: more) {
  :root { --cream-70: rgba(252, 251, 220, .92); --cream-55: rgba(252, 251, 220, .8); }
}

@media print {
  .marquee, .sticky-cta, .mascot-widget, .confetti-canvas, .hero-rays, .page-grain { display: none !important; }
  body { background: #fff; color: #000; }
}
