/* =========================================================
   Conexão EuroFla | A Nação Rubro-Negra na Europa
   ========================================================= */

:root {
  --vermelho: #D0111B;
  --vermelho-vivo: #E4141E;
  --vermelho-escuro: #7E0A10;
  --preto: #0B0B0D;
  --carvao: #141417;
  --grafite: #1E1E23;
  --branco: #F7F5F2;
  --cinza: #B7B2AB;
  --cinza-escuro: #7A756F;
  --dourado: #E0B24A;
  --zap: #25D366;

  --fonte-display: 'Bebas Neue', 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
  --fonte-texto: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --raio: 18px;
  --sombra-vermelha: 0 14px 44px rgba(228, 20, 30, .38);
  --transicao: .35s cubic-bezier(.2, .8, .2, 1);
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--preto);
  color: var(--branco);
  font-family: var(--fonte-texto);
  font-size: 1.05rem;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: url('../assets/cursor.svg') 1 1, auto;
  -webkit-font-smoothing: antialiased;
}

a, button, [role="button"], label, summary {
  cursor: url('../assets/cursor-pointer.svg') 16 4, pointer;
}

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

::selection { background: var(--vermelho); color: #fff; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.ico {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
}

/* ---------- cursor personalizado ---------- */
.cursor-anel, .cursor-ponto {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-anel {
  width: 38px; height: 38px;
  border: 2px solid var(--vermelho-vivo);
  box-shadow: 0 0 18px rgba(228, 20, 30, .55), inset 0 0 10px rgba(228, 20, 30, .25);
  transition: width .25s, height .25s, background-color .25s, border-color .25s, opacity .3s;
  opacity: 0;
}
.cursor-ponto {
  width: 6px; height: 6px;
  background: var(--branco);
  box-shadow: 0 0 8px rgba(255, 255, 255, .8);
  opacity: 0;
  transition: opacity .3s;
}
body.tem-mouse .cursor-anel, body.tem-mouse .cursor-ponto { opacity: 1; }
.cursor-anel.is-hover {
  width: 64px; height: 64px;
  background: rgba(228, 20, 30, .18);
  border-color: var(--branco);
}
.cursor-anel.is-click { width: 26px; height: 26px; }

@media (hover: none), (pointer: coarse) {
  .cursor-anel, .cursor-ponto { display: none; }
  body, a, button { cursor: auto; }
}

/* ---------- tipografia ---------- */
.titulo {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: .95;
  letter-spacing: .01em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}
.titulo em {
  font-style: normal;
  color: var(--vermelho-vivo);
  text-shadow: 0 0 28px rgba(228, 20, 30, .55);
  white-space: nowrap; /* evita quebrar "rubro-negro" no hífen */
}
.titulo--grande { font-size: clamp(3rem, 7vw, 5.6rem); }

.sobretitulo {
  font-family: var(--fonte-display);
  font-size: 1.05rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--vermelho-vivo);
  margin: 0 0 .6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.sobretitulo::before {
  content: "";
  flex: 0 0 auto;
  width: 34px; height: 3px;
  background: repeating-linear-gradient(90deg, var(--vermelho) 0 8px, var(--branco) 8px 12px, var(--vermelho) 12px 20px);
  border-radius: 2px;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--fonte-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--branco);
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  transition: transform var(--transicao), box-shadow var(--transicao), filter var(--transicao);
  white-space: nowrap;
}
.btn .ico { stroke: none; fill: currentColor; }
.btn .ico--seta { fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform var(--transicao); }
.btn:hover .ico--seta { transform: translateX(4px); }

.btn--zap {
  background: linear-gradient(135deg, var(--vermelho-vivo) 0%, #B30E16 55%, var(--vermelho-escuro) 100%);
  box-shadow: var(--sombra-vermelha), inset 0 1px 0 rgba(255, 255, 255, .25);
  overflow: hidden;
}
.btn--zap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
  z-index: -1;
}
.btn--zap:hover::before { transform: translateX(120%); }
.btn--zap:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 60px rgba(228, 20, 30, .55), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.btn--zap:active { transform: translateY(0) scale(.99); }

.btn--grande {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  padding: 1.05rem 2.2rem 1.05rem 1.8rem;
}
.btn--grande .ico { width: 1.5em; height: 1.5em; }

.btn--mini {
  font-size: 1.05rem;
  padding: .55rem 1.1rem .55rem .9rem;
  background: var(--vermelho);
  box-shadow: 0 6px 20px rgba(228, 20, 30, .35);
}
.btn--mini:hover { background: var(--vermelho-vivo); transform: translateY(-2px); }

/* anel pulsante em volta do botão grande (fica fora do overflow, por isso vai no wrapper) */
.pulso {
  position: relative;
  display: inline-block;
}
.pulso::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(228, 20, 30, .7);
  animation: pulsar 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulsar {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* ---------- topo ---------- */
.topo {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  transition: background var(--transicao), padding var(--transicao), box-shadow var(--transicao);
}
.topo.is-rolado {
  padding-block: .55rem;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 10px 30px rgba(0, 0, 0, .35);
}
.topo__marca {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--branco);
  font-family: var(--fonte-display);
  font-size: 1.35rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topo__marca img {
  width: 44px; height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--vermelho), 0 0 18px rgba(228, 20, 30, .5);
}
.topo__marca b { color: var(--vermelho-vivo); font-weight: 400; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6.5rem 1.25rem 4.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -6%;
  background: var(--preto) url('../assets/hero-bg.svg') center / cover no-repeat;
  z-index: -3;
  will-change: transform;
}
/* foto oficial (torcedor com a bandeira) atrás do hero */
.hero__foto {
  position: absolute;
  inset: -4% 0 -4% 0;
  z-index: -2;
  background: url('../assets/foto-torcedor.jpg') 62% 30% / cover no-repeat;
  background-image: image-set(url('../assets/foto-torcedor.webp') type('image/webp'), url('../assets/foto-torcedor.jpg') type('image/jpeg'));
  will-change: transform;
}
.hero__foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, .5) 0%, rgba(11, 11, 13, .7) 55%, var(--preto) 100%);
}
.hero__luz {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 50% 42%, rgba(228, 20, 30, .28), transparent 70%),
    linear-gradient(180deg, rgba(11, 11, 13, .55) 0%, rgba(11, 11, 13, .15) 45%, rgba(11, 11, 13, .95) 100%);
}
.hero__grao {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../assets/grao.svg') repeat;
  background-size: 300px;
  mix-blend-mode: overlay;
  opacity: .18;
  pointer-events: none;
}
.hero__conteudo {
  text-align: center;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fonte-display);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 242, .22);
  background: rgba(11, 11, 13, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--cinza);
}
.badge .ico { stroke: var(--dourado); fill: var(--dourado); width: 1.05em; height: 1.05em; }

.hero__selo {
  position: relative;
  width: clamp(150px, min(26vw, 24vh), 250px);
  aspect-ratio: 1;
  animation: flutuar 6s ease-in-out infinite;
}
.hero__selo::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 20, 30, .55), transparent 62%);
  filter: blur(14px);
  z-index: -1;
  animation: respirar 3.5s ease-in-out infinite;
}
.hero__selo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .7));
}
@keyframes flutuar {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}
@keyframes respirar {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

.hero__titulo {
  font-family: var(--fonte-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .9;
  margin: .2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
}
.hero__titulo .linha1 {
  font-size: clamp(2.4rem, min(8vw, 9.5vh), 5.8rem);
  letter-spacing: .02em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .8);
}
.hero__titulo .linha2 {
  font-size: clamp(3rem, min(10.5vw, 12.5vh), 7.6rem);
  color: var(--vermelho-vivo);
  letter-spacing: .01em;
  text-shadow: 0 0 34px rgba(228, 20, 30, .6), 0 10px 30px rgba(0, 0, 0, .8);
  position: relative;
  padding-inline: .15em;
}
.hero__titulo .linha2::after {
  content: "";
  position: absolute;
  left: 4%; right: 4%; bottom: -.08em;
  height: .09em;
  background: repeating-linear-gradient(90deg, var(--vermelho-vivo) 0 34px, var(--preto) 34px 44px, var(--branco) 44px 54px, var(--preto) 54px 64px);
  border-radius: 3px;
  opacity: .95;
}

.hero__sub {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--cinza);
  margin: .4rem 0 0;
  text-wrap: balance;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-top: .6rem;
}
.hero__micro {
  margin: 0;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--cinza-escuro);
}

.hero__escudo {
  position: absolute;
  right: -3%;
  bottom: -6%;
  width: clamp(180px, 26vw, 420px);
  opacity: .16;
  z-index: -1;
  filter: drop-shadow(0 0 30px rgba(228, 20, 30, .45));
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero__rolar {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(247, 245, 242, .35);
  border-radius: 14px;
  display: grid;
  justify-content: center;
  padding-top: 6px;
}
.hero__rolar span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--vermelho-vivo);
  animation: descer 1.8s ease-in-out infinite;
}
@keyframes descer {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- faixa rolante ---------- */
.faixa {
  background: var(--vermelho);
  color: var(--preto);
  overflow: hidden;
  padding: .75rem 0;
  border-top: 4px solid var(--preto);
  border-bottom: 4px solid var(--preto);
  box-shadow: 0 0 0 4px var(--vermelho), 0 20px 50px rgba(228, 20, 30, .25);
  position: relative;
  z-index: 2;
  transform: rotate(-1.2deg) scale(1.03);
  transform-origin: center;
}
.faixa__trilho {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: rolar 40s linear infinite;
  font-family: var(--fonte-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.faixa__trilho span { white-space: nowrap; }
.faixa__trilho i {
  width: 12px; height: 12px;
  background: var(--preto);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.faixa:hover .faixa__trilho { animation-play-state: paused; }
@keyframes rolar {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- por que entrar ---------- */
.porque {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(70% 40% at 50% 0%, rgba(228, 20, 30, .14), transparent 70%),
    var(--preto);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem;
  margin-top: 2.4rem;
}
.card {
  position: relative;
  padding: 2rem 1.7rem 1.9rem;
  border-radius: var(--raio);
  background: linear-gradient(180deg, var(--grafite), var(--carvao));
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
  transition: transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--vermelho) 0 22px, var(--preto) 22px 30px);
}
.card::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 20, 30, .28), transparent 65%);
  opacity: 0;
  transition: opacity var(--transicao);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 20, 30, .5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(228, 20, 30, .25);
}
.card:hover::after { opacity: 1; }
.card__icone {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--vermelho-vivo), var(--vermelho-escuro));
  box-shadow: 0 10px 26px rgba(228, 20, 30, .4);
  margin-bottom: 1.2rem;
  color: #fff;
}
.card__icone .ico { width: 30px; height: 30px; stroke-width: 1.8; }
.card h3 {
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: .03em;
  margin: 0 0 .5rem;
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--cinza); }

.separador {
  width: min(100%, 1100px);
  margin: 0 auto;
  opacity: .9;
}

/* ---------- mapa ---------- */
.mapa {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background: linear-gradient(180deg, var(--preto), #120709 50%, var(--preto));
  position: relative;
}
.mapa__grade {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.mapa__desc { color: var(--cinza); font-size: 1.12rem; max-width: 520px; }
.mapa__arte {
  position: relative;
  filter: drop-shadow(0 20px 60px rgba(228, 20, 30, .25));
}
.mapa__arte img { width: 100%; height: auto; }

.numeros {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.numeros li {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--vermelho);
  background: linear-gradient(90deg, rgba(228, 20, 30, .12), transparent 70%);
  border-radius: 6px;
}
.numeros strong {
  display: block;
  font-family: var(--fonte-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--branco);
}
.numeros span {
  display: block;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cinza-escuro);
  margin-top: .25rem;
}

/* ---------- depoimentos ---------- */
.vozes {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background: var(--preto);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* arquibancada (arte do estádio) atrás dos depoimentos */
.vozes__foto {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('../assets/hero-bg.svg') 50% 70% / cover no-repeat;
  opacity: .55;
}
.vozes__foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--preto) 0%, rgba(11, 11, 13, .35) 35%, rgba(11, 11, 13, .35) 70%, var(--preto) 100%);
}
.vozes__lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.voz {
  margin: 0;
  padding: 1.7rem 1.5rem 1.4rem 1.7rem;
  border-radius: var(--raio);
  background: var(--carvao);
  border: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
  transition: transform var(--transicao), box-shadow var(--transicao);
}
.voz::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: repeating-linear-gradient(180deg, var(--vermelho) 0 14px, var(--preto) 14px 22px);
}
.voz:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, .5); }
.voz::before {
  content: "\201C";
  position: absolute;
  top: -.35rem; right: 1rem;
  font-family: var(--fonte-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(228, 20, 30, .28);
}
.voz p { margin: 0 0 1.1rem; font-size: 1.05rem; color: var(--branco); }
.voz footer { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.voz footer b { color: var(--vermelho-vivo); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.voz footer span { color: var(--cinza-escuro); }
.voz footer span::before { content: "\2022  "; }

/* ---------- cta final ---------- */
.final {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--preto);
}
.final__listras {
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background: url('../assets/listras.svg') repeat;
  background-size: 80px 80px;
  opacity: .22;
  transform: rotate(-4deg);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(55% 60% at 65% 50%, rgba(228, 20, 30, .32), transparent 70%);
}
.final__grade {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.final__escudo {
  display: grid;
  place-items: center;
}
.final__escudo img {
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 0 48px rgba(228, 20, 30, .6)) drop-shadow(0 30px 40px rgba(0, 0, 0, .75));
  animation: flutuar 6s ease-in-out infinite;
}
.final__texto p { color: var(--cinza); font-size: 1.15rem; max-width: 520px; margin: 0 0 1.6rem; }
.final__micro {
  margin-top: 1rem !important;
  font-family: var(--fonte-display);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--vermelho-vivo) !important;
  font-size: 1.05rem !important;
}

/* ---------- rodapé ---------- */
.rodape {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 2.4rem 0 6rem;
  background: #070708;
}
.rodape__grade {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .7rem;
}
.rodape__escudos { display: flex; gap: 1rem; opacity: .9; }
.rodape__escudos img { width: 38px; height: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.6)); }
.rodape__assinatura {
  margin: 0;
  font-family: var(--fonte-display);
  font-size: 1.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rodape__aviso { margin: 0; font-size: .82rem; color: var(--cinza-escuro); max-width: 560px; }

/* ---------- whatsapp flutuante ---------- */
.zap-flutuante {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--zap);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5), 0 0 0 4px var(--preto), 0 0 0 7px var(--vermelho);
  transition: transform var(--transicao), box-shadow var(--transicao);
}
.zap-flutuante .ico { width: 34px; height: 34px; stroke: none; fill: currentColor; }
.zap-flutuante::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 3px solid var(--vermelho-vivo);
  animation: pulsar 2s ease-out infinite;
  pointer-events: none;
}
.zap-flutuante:hover { transform: scale(1.08) rotate(-6deg); }
.zap-flutuante__balao {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--branco);
  color: var(--preto);
  font-family: var(--fonte-display);
  letter-spacing: .1em;
  font-size: 1.05rem;
  padding: .45rem .9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transicao), transform var(--transicao);
  pointer-events: none;
}
.zap-flutuante__balao::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: var(--branco);
}
.zap-flutuante:hover .zap-flutuante__balao,
.zap-flutuante.is-mostra .zap-flutuante__balao { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- confete ---------- */
#confete {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- revelar ao rolar ---------- */
.revela {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
.revela.is-visivel { opacity: 1; transform: none; }
.cards .revela:nth-child(2), .vozes__lista .revela:nth-child(2) { transition-delay: .12s; }
.cards .revela:nth-child(3), .vozes__lista .revela:nth-child(3) { transition-delay: .24s; }
.vozes__lista .revela:nth-child(4) { transition-delay: .36s; }

/* ---------- responsivo ---------- */
/* desktop: hero dividido, texto à esquerda e poster oficial à direita */
@media (min-width: 901px) {
  .hero {
    justify-items: start;
    padding-inline: max(1.25rem, calc((100% - var(--container)) / 2));
  }
  .hero__conteudo {
    align-items: flex-start;
    text-align: left;
    max-width: 760px;
  }
  .hero__titulo, .hero__cta { align-items: flex-start; }
  .hero__titulo .linha1 { font-size: clamp(2.4rem, min(6.2vw, 9vh), 5.2rem); }
  .hero__titulo .linha2 { font-size: clamp(3rem, min(8vw, 12vh), 6.9rem); white-space: nowrap; }
  .hero__sub { max-width: 600px; }
  .hero__sub { text-wrap: pretty; }
  .hero__foto {
    left: auto;
    width: 62%;
    background-position: 68% 35%;
  }
  .hero__foto::after {
    background:
      linear-gradient(90deg, var(--preto) 0%, rgba(11, 11, 13, .92) 18%, rgba(11, 11, 13, .35) 52%, rgba(11, 11, 13, .18) 100%),
      linear-gradient(180deg, rgba(11, 11, 13, .45) 0%, transparent 25%, transparent 55%, var(--preto) 100%);
  }
  .hero__luz {
    background:
      radial-gradient(45% 55% at 24% 48%, rgba(228, 20, 30, .26), transparent 70%),
      linear-gradient(180deg, rgba(11, 11, 13, .35) 0%, transparent 40%, rgba(11, 11, 13, .9) 100%);
  }
  .hero__escudo {
    right: auto;
    left: -4%;
    bottom: -12%;
    opacity: .09;
  }
  .hero__rolar { left: auto; right: 2.5rem; transform: none; }
}

/* telas baixas (notebook com barra do navegador): hero compacto para o botão ficar na primeira dobra */
@media (max-height: 760px) and (min-width: 641px) {
  .hero { padding: 4.5rem 1.25rem 2.5rem; }
  .hero__conteudo { gap: .5rem; }
  .hero__selo { width: 20vh; }
  .hero__titulo { margin-top: 0; }
  .hero__titulo .linha1 { font-size: clamp(2.2rem, 7.5vh, 4.4rem); }
  .hero__titulo .linha2 { font-size: clamp(2.8rem, 10vh, 5.8rem); }
  .hero__sub { font-size: 1rem; max-width: 640px; margin-top: .2rem; }
  .hero__cta { margin-top: .3rem; gap: .5rem; }
  .hero__rolar { display: none; }
}

@media (max-width: 900px) {
  .mapa__grade, .final__grade { grid-template-columns: 1fr; }
  .mapa__arte { order: -1; }
  .final__escudo img { width: min(60%, 240px); }
  .final__texto { text-align: center; }
  .final__texto p { margin-inline: auto; }
  .final__texto .btn { display: inline-flex; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .topo__marca span { display: none; }
  .topo .btn--mini span { display: none; }
  .topo .btn--mini { padding: .6rem; border-radius: 50%; }
  .topo .btn--mini .ico { width: 1.4em; height: 1.4em; }
  .hero { padding: 6rem 1rem 4.5rem; }
  .hero__titulo .linha1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero__titulo .linha2 { font-size: clamp(2.9rem, 14.5vw, 4.4rem); }
  .badge { font-size: .8rem; letter-spacing: .14em; text-align: center; }
  .btn--grande { font-size: 1.25rem; padding: .95rem 1.6rem .95rem 1.35rem; }
  .btn--grande .ico--seta { display: none; }
  .hero__escudo { right: -18%; bottom: -3%; width: 240px; opacity: .12; }
  .faixa { transform: rotate(-2deg) scale(1.06); }
  .numeros { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .numeros li { padding: .8rem .9rem; }
  .zap-flutuante { width: 56px; height: 56px; right: 1rem; bottom: 1rem; }
  .zap-flutuante .ico { width: 30px; height: 30px; }
  .rodape { padding-bottom: 6.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .revela { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
html.sem-animacao *, html.sem-animacao *::before, html.sem-animacao *::after { animation: none !important; transition: none !important; }
html.sem-animacao .revela { opacity: 1; transform: none; }
html.sem-animacao { scroll-behavior: auto; }
