/* Caminho: site/assets/css/style.css */
/* ZANDY SPORTS 2026 - estetica night court: laranja neon, azul eletrico e areia */

:root {
  /* Paleta oficial do branding Zandy: laranja #F58634, petróleo #138BA6, terracota #DC712E, areia #F2E9D8 */
  --laranja: #f58634;
  --laranja-2: #ffa64d;
  --laranja-escuro: #dc712e;
  --azul: #138ba6;
  --azul-2: #4fd0e6;
  --areia: #f2e9d8;
  --areia-2: #e8dabc;
  /* TEMA CLARO (branding Zandy): fundo areia suave + superfícies brancas + texto grafite */
  --noite: #f8f3ea;
  --noite-2: #ffffff;
  --fogo: #dc712e;
  --branco: #ffffff;
  --tinta: #142028;
  --tinta-suave: #56656e;
  --raio: 20px;
  --f-display: 'Unbounded', sans-serif;
  --f-texto: 'Space Grotesk', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-texto);
  background: var(--noite);
  color: var(--tinta);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1180px, 92%); margin: 0 auto; }

::selection { background: var(--laranja); color: var(--noite); }

/* Barra de rolagem personalizada */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--noite); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--laranja), var(--azul)); border-radius: 8px; }

/* Barra de progresso de leitura */
.progresso {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 99;
  background: linear-gradient(90deg, var(--laranja), var(--azul));
  box-shadow: 0 0 12px var(--laranja);
}

/* ---------- Tipografia ---------- */
.grad {
  background: linear-gradient(92deg, var(--laranja) 10%, var(--laranja-2) 50%, var(--azul) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-fogo {
  background: linear-gradient(92deg, var(--fogo), var(--laranja-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.secao-rotulo {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 16px;
}

.rotulo-fogo { color: var(--fogo); }

.secao-titulo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.secao-sub {
  max-width: 620px;
  color: rgba(20, 32, 40, 0.7);
  font-size: 1.06rem;
  margin-bottom: 52px;
}

/* ---------- Botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 16px 30px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-neon {
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  color: var(--branco);
  border: 1.5px solid rgba(20, 32, 40, 0.45);
  padding: 19px 40px;
  font-size: 0.98rem;
  animation: chamar-atencao 2.4s ease-out infinite;
}

.btn-neon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(20, 32, 40, 0.5) 50%, transparent 70%);
  transform: translateX(-110%);
  animation: brilho 3.2s ease-in-out infinite;
}

@keyframes brilho {
  0%, 60% { transform: translateX(-110%); }
  100% { transform: translateX(110%); }
}

.btn-fantasma {
  background: linear-gradient(120deg, var(--azul), #0f7f96);
  border: 1.5px solid rgba(19, 139, 166, 0.55);
  color: var(--branco);
  box-shadow: 0 12px 28px rgba(19, 139, 166, 0.3);
}

.btn-fantasma:hover { box-shadow: 0 16px 36px rgba(19, 139, 166, 0.45); }

.btn-contorno {
  border: 1.5px solid var(--laranja);
  color: var(--laranja);
}

.btn-contorno:hover { background: var(--laranja); color: var(--noite); box-shadow: 0 0 22px rgba(255, 122, 30, 0.45); }

.btn-fogo {
  background: linear-gradient(120deg, var(--fogo), #c93516);
  color: var(--branco);
  box-shadow: 0 0 26px rgba(255, 90, 60, 0.5);
}

.btn-laranja {
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  color: var(--branco);
  box-shadow: 0 12px 28px rgba(245, 134, 52, 0.35);
}

.btn-laranja:hover { box-shadow: 0 16px 36px rgba(245, 134, 52, 0.5); }

/* ---------- Topo ---------- */
.topo {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 40, 55, 0.1);
}

.topo-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }

.topo-logo { display: flex; align-items: center; text-decoration: none; flex: none; }

.topo-logo img { height: 46px; width: auto; filter: drop-shadow(0 0 10px rgba(255, 122, 30, 0.3)); }

.topo-menu { display: flex; align-items: center; gap: 26px; }

.topo-menu a {
  color: rgba(20, 32, 40, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  transition: color 0.2s ease;
}

.topo-menu { gap: 20px; }

.topo-menu a { font-size: 0.9rem; }

.topo-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--laranja), var(--azul));
  transition: width 0.3s ease;
}

.topo-menu a:not(.btn):hover::after { width: 100%; }

.topo-menu a:hover { color: var(--laranja-escuro); }
.topo-menu a.ativo { color: var(--laranja-escuro); font-weight: 700; }

.menu-torneios { color: var(--laranja-2) !important; font-weight: 700 !important; }

/* CTA principal: precisa saltar aos olhos (gera receita) */
@keyframes chamar-atencao {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 30, 0.65), 0 0 26px rgba(255, 122, 30, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(255, 122, 30, 0), 0 0 26px rgba(255, 122, 30, 0.55); }
}

.topo-menu .btn-menu {
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  color: var(--branco);
  padding: 14px 26px;
  font-size: 0.82rem;
  border-radius: 12px;
  border: 1.5px solid rgba(20, 32, 40, 0.45);
  animation: chamar-atencao 2.4s ease-out infinite;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  border: 1.5px solid rgba(20, 32, 40, 0.48);
  border-radius: 12px;
  cursor: pointer;
  padding: 11px 16px;
  box-shadow: 0 0 20px rgba(255, 122, 30, 0.5);
}

.menu-rotulo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--branco);
}

.menu-barras { display: flex; flex-direction: column; gap: 4.5px; }

.menu-barras i { display: block; width: 22px; height: 2.5px; border-radius: 3px; background: var(--branco); transition: transform 0.3s ease, opacity 0.3s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 0;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 80% -20%, rgba(255, 122, 30, 0.16), transparent 60%),
    radial-gradient(800px 500px at 5% 30%, rgba(24, 184, 204, 0.14), transparent 60%),
    var(--noite);
}

/* Video ambiente do hero: opacidade baixa, atras de tudo */
.hero-fundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(1.15);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
}

/* Grade tecnica de fundo */
.hero-malha {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.94) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-orbe { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; animation: orbita 14s ease-in-out infinite alternate; }

.orbe-laranja { width: 480px; height: 480px; background: rgba(255, 122, 30, 0.32); top: -160px; right: -120px; }

.orbe-azul { width: 420px; height: 420px; background: rgba(24, 184, 204, 0.26); bottom: 80px; left: -160px; animation-delay: -7s; }

@keyframes orbita {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 50px) scale(1.15); }
}

.hero-conteudo { position: relative; text-align: center; }

.hero-tag {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(20, 32, 40, 0.75);
  border: 1px solid rgba(20, 40, 55, 0.16);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.hero-titulo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7.4vw, 5.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
}

.hero-titulo .palavra { display: block; opacity: 0; transform: translateY(40px) skewY(2deg); animation: entrar 0.7s cubic-bezier(0.2, 0.9, 0.3, 1) forwards; }

.hero-titulo .p1 { animation-delay: 0.1s; }
.hero-titulo .p2 { animation-delay: 0.25s; }
.hero-titulo .p3 { animation-delay: 0.4s; }
.hero-titulo .p4 { animation-delay: 0.55s; }

.hero-titulo em { font-style: normal; color: var(--laranja); }

.hero-titulo .vazada {
  color: transparent;
  -webkit-text-stroke: 2px rgba(20, 32, 40, 0.85);
}

.hero-titulo .eletrica {
  background: linear-gradient(92deg, var(--laranja), var(--laranja-2) 40%, var(--azul-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 122, 30, 0.45));
}

@keyframes entrar {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(20, 32, 40, 0.72);
  font-size: 1.1rem;
}

.hero-botoes { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

/* Cards de midia flutuantes */
.hero-midias {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 26px;
  padding: 0 4% 70px;
}

.midia-card {
  position: relative;
  width: clamp(150px, 17vw, 230px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(20, 40, 55, 0.16);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 6px rgba(255, 122, 30, 0.06);
  animation: flutuar 6s ease-in-out infinite;
  cursor: zoom-in;
}

.midia-card::after {
  content: '⤢';
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--branco);
  font-size: 1.15rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.midia-card:hover::after { opacity: 1; }

/* Tela cheia para videos e fotos do hero e do bar */
.midia-zoom {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(3, 10, 14, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
}

.midia-zoom[hidden] { display: none; }

.midia-zoom video, .midia-zoom img {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.midia-fechar {
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 2;
  background: rgba(255, 122, 30, 0.92);
  border: 0;
  color: var(--branco);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255, 122, 30, 0.5);
}

.midia-card video, .midia-card img { width: 100%; height: 100%; object-fit: cover; }

.midia-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 0.74rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 12px;
  text-align: center;
}

.midia-destaque { width: clamp(170px, 19vw, 260px); box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6), 0 0 44px rgba(24, 184, 204, 0.22); }

.flutua-1 { transform: rotate(-4deg); animation-delay: 0s; }
.flutua-2 { animation-delay: -1.6s; }
.flutua-3 { transform: rotate(3deg); animation-delay: -3.2s; }
.flutua-4 { transform: rotate(6deg); animation-delay: -4.8s; }

@keyframes flutuar {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}

/* Ticker de modalidades */
.ticker {
  position: relative;
  width: 110%;
  margin: 2vw -5% 3vw;
  background: linear-gradient(90deg, var(--laranja), var(--laranja-escuro));
  transform: rotate(-1.6deg);
  padding: 13px 0;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(255, 122, 30, 0.35);
}

.ticker-faixa {
  display: flex;
  align-items: center;
  width: max-content;
  animation: rolar 22s linear infinite;
}

.ticker-faixa span, .ticker-faixa i { margin-right: 28px; }

.ticker span {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--tinta);
  white-space: nowrap;
}

.ticker i { font-style: normal; color: rgba(6, 20, 27, 0.55); }

@keyframes rolar {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Contadores ---------- */
.contadores { background: var(--noite); padding: 70px 0 10px; }

.contadores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.contador strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  background: linear-gradient(180deg, var(--tinta), rgba(20, 32, 40, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.contador span { color: var(--azul); font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Secoes ---------- */
.secao { padding: 110px 0; position: relative; }

/* ---------- Esportes ---------- */
.esportes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.esporte-card {
  position: relative;
  height: 440px;
  border-radius: var(--raio);
  overflow: hidden;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.12);
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Video da modalidade ao fundo do card, com escurecimento para leitura */
.esporte-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.esporte-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 20, 27, 0.05) 30%, rgba(6, 20, 27, 0.92) 88%);
  pointer-events: none;
}

.esporte-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 122, 30, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 122, 30, 0.25);
}

.esporte-num {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 32, 40, 0.55);
}

.esporte-info { padding: 26px; position: relative; z-index: 2; }

.esporte-info h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }

.esporte-info p { color: rgba(20, 32, 40, 0.72); font-size: 0.95rem; }

/* Faixa de agendamento */
.agendar-faixa {
  margin-top: 60px;
  border-radius: var(--raio);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  background:
    radial-gradient(500px 200px at 90% 0%, rgba(24, 184, 204, 0.25), transparent 60%),
    linear-gradient(120deg, var(--noite-2), #eaf6f9);
  border: 1px solid rgba(24, 184, 204, 0.3);
  box-shadow: 0 20px 50px rgba(20, 60, 80, 0.14);
}

.agendar-faixa h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }

.agendar-faixa p { color: rgba(20, 32, 40, 0.72); max-width: 540px; }

/* ---------- Aulas (fundo areia) ---------- */
.secao-aulas { background: var(--areia); color: var(--tinta); }

.secao-aulas .secao-rotulo { color: var(--laranja-escuro); }

.secao-aulas .secao-sub { color: var(--tinta-suave); }

.profs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 920px; margin: 0 auto 30px; }

/* Placeholder quando o professor não tem foto nem vídeo: iniciais grandes */
.prof-sem {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--f-display); font-weight: 900; font-size: 3rem; color: var(--branco);
  background: linear-gradient(135deg, var(--laranja), var(--laranja-escuro));
}
.prof-sem-azul { background: linear-gradient(135deg, var(--azul), #0d7f8f); }

.prof-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: var(--raio);
  box-shadow: 0 16px 40px rgba(20, 32, 40, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prof-card:hover { transform: translateY(-8px); border-color: rgba(245, 134, 52, 0.45); box-shadow: 0 26px 56px rgba(20, 32, 40, 0.16); }

/* Vídeo do professor em destaque no topo do card */
.prof-midia { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }

.prof-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s ease;
}

.prof-card:hover .prof-video { transform: scale(1.06); }

.prof-midia::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.prof-selo {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tinta);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 6px 16px rgba(20, 40, 55, 0.18);
}

.prof-conteudo { display: flex; flex-direction: column; flex: 1; padding: 0 26px 28px; }

.prof-topo { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }

.prof-avatar {
  width: 64px;
  height: 64px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--noite-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--branco);
  background: linear-gradient(135deg, var(--laranja), var(--laranja-escuro));
  box-shadow: 0 10px 24px rgba(255, 122, 30, 0.4);
}

.avatar-azul { background: linear-gradient(135deg, var(--azul), #0d7f8f); box-shadow: 0 10px 24px rgba(24, 184, 204, 0.4); }

.prof-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; }

.prof-funcao { color: var(--laranja-escuro); font-weight: 500; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

.prof-bio { color: var(--tinta-suave); margin-bottom: 16px; }

.prof-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.prof-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(20, 32, 40, 0.75);
  background: rgba(245, 134, 52, 0.09);
  border: 1px solid rgba(245, 134, 52, 0.3);
  border-radius: 999px;
  padding: 5px 12px;
}

.prof-btn { margin-top: auto; justify-content: center; }

.aulas-faixa { max-width: 920px; margin: 0 auto; }

/* ---------- Loja (fundo areia, logotipos transparentes soltos) ---------- */
.secao-loja {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(255, 122, 30, 0.12), transparent 60%),
    linear-gradient(180deg, var(--areia-2), var(--areia));
  color: var(--tinta);
}

.secao-loja .secao-rotulo { color: var(--laranja-escuro); }

.secao-loja .secao-sub { color: var(--tinta-suave); }

.marquee {
  overflow: hidden;
  padding: 26px 0;
  margin-bottom: 60px;
  border-top: 1.5px dashed rgba(20, 32, 40, 0.18);
  border-bottom: 1.5px dashed rgba(20, 32, 40, 0.18);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Espacamento embutido em cada item (nunca via gap): o retorno da animacao
   em -50% so e continuo se a metade da esteira tiver largura exata */
.marquee-faixa { display: flex; align-items: center; width: max-content; animation: rolar 52s linear infinite; }

.marquee:hover .marquee-faixa { animation-play-state: paused; }

.marquee-item { display: flex; align-items: center; justify-content: center; height: 96px; margin-right: 96px; }

.marquee-item img { height: 88px; max-width: 280px; width: auto; object-fit: contain; }

.marquee-item.item-escuro { background: #0b2430; border-radius: 16px; padding: 14px 26px; } /* logos claros pedem fundo escuro */

.marquee-item.item-escuro img { height: 60px; }

/* Logotipos muito largos (assinaturas horizontais) ganham teto proprio */
.marquee-item img[alt*="Penalty"] { max-width: 340px; }

/* Logotipo compacto e vertical: altura maior para igualar o peso visual */
.marquee-item img[alt*="Fernanda"] { height: 118px; }

/* Vitrine da loja: videos como fundo imersivo de uma banda escura */
.loja-banda {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  box-shadow: 0 30px 70px rgba(20, 32, 40, 0.28);
}

.loja-banda-fundo { position: absolute; inset: 0; display: flex; }

.loja-banda-fundo video { width: 50%; height: 100%; object-fit: cover; }

/* Veu de leitura sobre os videos */
.loja-banda::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 50% 50%, rgba(6, 20, 27, 0.88) 30%, rgba(6, 20, 27, 0.45) 100%);
}

.loja-banda-conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--branco);
  max-width: 560px;
  padding: 64px 28px;
}

.loja-banda-conteudo h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.loja-banda-conteudo p {
  color: rgba(20, 32, 40, 0.85);
  margin-bottom: 26px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.loja-fone {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--laranja-2) !important;
  margin-top: 16px;
  margin-bottom: 0 !important;
}

.loja-aviso { text-align: center; color: var(--tinta-suave); font-size: 1.02rem; }

/* ---------- Bar ---------- */
.secao-bar {
  overflow: hidden;
  padding-top: 170px;
  background:
    radial-gradient(900px 500px at 85% 110%, rgba(255, 90, 60, 0.14), transparent 60%),
    linear-gradient(165deg, #fdf6ec, #fcecd8 70%, #f9e2c6);
}

.bar-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }

.bar-cards { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

.bar-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 40, 55, 0.12);
  border-radius: var(--raio);
  padding: 22px 26px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bar-card:hover { transform: translateX(8px); border-color: rgba(255, 90, 60, 0.55); }

.bar-card > span { font-size: 1.8rem; line-height: 1; }

.bar-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; }

.bar-card p { color: rgba(20, 32, 40, 0.7); font-size: 0.94rem; }

.bar-cards .btn { margin-top: 10px; }

.bar-video {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-width: 320px;
  justify-self: center;
  border: 1px solid rgba(20, 40, 55, 0.16);
  box-shadow: 0 32px 70px rgba(120, 60, 20, 0.28), 0 0 40px rgba(255, 90, 60, 0.18);
  transform: rotate(2deg);
}

.bar-video video { width: 100%; height: 100%; object-fit: cover; }

.bar-video figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--branco);
  background: rgba(18, 10, 7, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 12px;
}

/* Brasas flutuantes */
.bar-brasas { position: absolute; inset: 0; pointer-events: none; }

.bar-brasas span {
  position: absolute;
  bottom: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fogo);
  box-shadow: 0 0 10px var(--fogo);
  opacity: 0;
  animation: subir 7s linear infinite;
}

.bar-brasas span:nth-child(1) { left: 8%; animation-delay: 0s; }
.bar-brasas span:nth-child(2) { left: 22%; animation-delay: 1.4s; width: 5px; height: 5px; }
.bar-brasas span:nth-child(3) { left: 38%; animation-delay: 2.8s; }
.bar-brasas span:nth-child(4) { left: 52%; animation-delay: 0.7s; width: 4px; height: 4px; }
.bar-brasas span:nth-child(5) { left: 64%; animation-delay: 3.6s; }
.bar-brasas span:nth-child(6) { left: 76%; animation-delay: 1.9s; width: 5px; height: 5px; }
.bar-brasas span:nth-child(7) { left: 88%; animation-delay: 4.4s; }
.bar-brasas span:nth-child(8) { left: 95%; animation-delay: 2.2s; width: 4px; height: 4px; }

@keyframes subir {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  100% { transform: translateY(-94vh) scale(0.2); opacity: 0; }
}

/* ---------- Galeria ---------- */
.secao-galeria {
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(24, 184, 204, 0.1), transparent 60%),
    var(--noite);
}

.galeria-mosaico { columns: 4 230px; column-gap: 16px; }

.galeria-item {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 40, 55, 0.12);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--noite-2);
  break-inside: avoid;
  position: relative;
}

.galeria-item::after {
  content: '⤢';
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--branco);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.galeria-item:hover::after { opacity: 1; }

.galeria-item img { width: 100%; transition: transform 0.5s ease, filter 0.5s ease; }

.galeria-item:hover img { transform: scale(1.05); filter: saturate(1.2); }

.galeria-cta { margin-top: 40px; text-align: center; }

.galeria-zoom {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(3, 10, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}

/* Correcao: o atributo hidden precisa vencer o display flex acima */
.galeria-zoom[hidden] { display: none; }

.galeria-zoom img { max-width: 92vw; max-height: 88vh; border-radius: 14px; }

.galeria-fechar {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--branco);
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
}

.galeria-embreve { display: flex; justify-content: center; }

.embreve-cartao {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 40, 55, 0.12);
  border-radius: var(--raio);
  text-align: center;
  padding: 56px 48px;
  max-width: 560px;
}

.embreve-cartao span { font-size: 3rem; display: block; margin-bottom: 14px; }

.embreve-cartao h3 { font-family: var(--f-display); font-size: 1.2rem; margin-bottom: 10px; }

.embreve-cartao p { color: rgba(20, 32, 40, 0.7); margin-bottom: 26px; }

/* ---------- Contato ---------- */
.secao-contato {
  background:
    radial-gradient(700px 400px at 100% 100%, rgba(255, 122, 30, 0.12), transparent 60%),
    linear-gradient(180deg, var(--noite), var(--noite-2));
}

.contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: stretch; }

.contato-lista { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.contato-cartao {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: 18px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--tinta);
  box-shadow: 0 10px 26px rgba(20, 50, 70, 0.06);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-cartao:hover { border-color: rgba(245, 134, 52, 0.55); transform: translateX(8px); box-shadow: 0 16px 38px rgba(20, 50, 70, 0.12); }

.ct-icone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.3rem;
}

.ct-local { background: linear-gradient(135deg, rgba(245, 134, 52, 0.18), rgba(220, 113, 46, 0.22)); }

.ct-zap { background: linear-gradient(135deg, #25d366, #1eb858); color: var(--branco); box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35); }

.ct-mail { background: linear-gradient(135deg, rgba(19, 139, 166, 0.14), rgba(79, 208, 230, 0.18)); }

.ct-insta { background: var(--branco); border: 1px solid rgba(20, 40, 55, 0.1); box-shadow: 0 6px 16px rgba(214, 41, 118, 0.2); }

.ct-insta img { width: 26px; height: 26px; }

.ct-agenda { background: linear-gradient(135deg, rgba(255, 200, 60, 0.22), rgba(245, 134, 52, 0.16)); }

.ct-texto { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.ct-texto strong { font-family: var(--f-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.06em; }

.ct-texto small { color: rgba(20, 32, 40, 0.68); font-size: 0.9rem; line-height: 1.45; overflow-wrap: break-word; }

.ct-seta {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--laranja-escuro);
  transition: transform 0.25s ease;
}

.contato-cartao:hover .ct-seta { transform: translateX(6px); }

.contato-mapa {
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid rgba(20, 40, 55, 0.12);
  box-shadow: 0 24px 60px rgba(20, 50, 70, 0.18);
  min-height: 380px;
}

.contato-mapa iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(0.9) contrast(1.05); }

/* Atalhos de rota (Google Maps e Waze), exibidos acima do mapa */
.contato-direita { display: flex; flex-direction: column; gap: 18px; }

.contato-direita .contato-mapa { flex: 1; }

.nav-atalhos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-rotulo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(20, 32, 40, 0.85);
}

.nav-botao {
  display: flex;
  align-items: center;
  background: none;
  border-radius: 0;
  padding: 6px 4px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.nav-botao:hover { transform: translateY(-4px); filter: drop-shadow(0 10px 18px rgba(255, 122, 30, 0.35)); }

.nav-botao img { height: 32px; width: auto; }

/* ---------- Rodape ---------- */
.rodape {
  background:
    radial-gradient(640px 280px at 50% 0%, rgba(245, 134, 52, 0.09), transparent 65%),
    linear-gradient(180deg, var(--noite-2), #fbf3e4);
  border-top: 1px solid rgba(20, 40, 55, 0.1);
  color: rgba(20, 32, 40, 0.72);
  padding: 70px 0 44px;
  text-align: center;
}

.rodape-logo { height: 110px; width: auto; margin: 0 auto 18px; filter: drop-shadow(0 0 18px rgba(255, 122, 30, 0.3)); }

.rodape-frase { font-family: var(--f-display); font-weight: 700; font-size: 0.95rem; color: var(--tinta); margin-bottom: 26px; letter-spacing: 0.04em; }

.rodape-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 28px; }

.rodape-menu a { color: rgba(20, 32, 40, 0.72); text-decoration: none; font-size: 0.93rem; }

.rodape-menu a:hover { color: var(--laranja); }

.rodape-creditos { font-size: 0.83rem; color: rgba(20, 32, 40, 0.48); }

/* ---------- WhatsApp flutuante ---------- */
.zap-flutuante {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulso 2.4s ease-out infinite;
  transition: transform 0.25s ease;
}

.zap-flutuante:hover { transform: scale(1.12); }

@keyframes pulso {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Aviso de cookies (LGPD) ---------- */
.aviso-cookies {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 40, 55, 0.18);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: rgba(20, 32, 40, 0.85);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  max-width: 640px;
  margin: 0 auto;
}

.aviso-cookies a { color: var(--azul-2); }

.aviso-cookies button {
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--noite);
  background: linear-gradient(120deg, var(--laranja), var(--laranja-2));
  border: 0;
  border-radius: 9px;
  padding: 8px 16px;
  cursor: pointer;
}

/* ---------- Animacao de entrada ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }

.reveal.visivel { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-fundo { display: none; }
  .marquee-faixa, .ticker-faixa, .midia-card, .hero-orbe, .btn-neon::after, .zap-flutuante { animation: none !important; }
  .hero-titulo .palavra { opacity: 1; transform: none; animation: none; }
  .bar-brasas { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .esportes-grid { grid-template-columns: 1fr 1fr; }
  .esporte-card:last-child { grid-column: span 2; height: 320px; }
  .cards-marcas { grid-template-columns: 1fr 1fr; }
  .bar-grid { grid-template-columns: 1fr; }
  .bar-video { max-width: 280px; }
  .contato-grid { grid-template-columns: 1fr; }
  .midia-card:nth-child(4) { display: none; }
}

@media (max-width: 680px) {
  .menu-toggle { display: flex; }

  .topo-inner { height: 62px; }

  .topo-logo img { height: 40px; }

  .topo-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: rgba(255, 255, 255, 0.97);
    padding: 18px 6vw 28px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(20, 40, 55, 0.12);
  }

  .topo-menu.aberto { transform: translateY(0); }

  .topo-menu a { padding: 10px 0; font-size: 1.05rem; }

  .menu-toggle[aria-expanded="true"] .menu-barras i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-barras i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-barras i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 140px; }

  .hero-midias { gap: 14px; padding-bottom: 56px; }

  /* No celular: mostrar quadras de dia e jogos a noite */
  .midia-card:nth-child(2) { display: none; }

  .midia-card { width: 42vw; }

  .contadores-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .esportes-grid { grid-template-columns: 1fr; }

  .esporte-card:last-child { grid-column: auto; }

  .esporte-card { height: 340px; }

  .profs-grid { grid-template-columns: 1fr; }

  .loja-banda { min-height: 520px; }

  .loja-banda-conteudo { padding: 48px 20px; }

  /* CTA do bar centralizado e confortavel para o toque */
  .bar-cards .btn { align-self: stretch; width: 100%; }

  /* Atalhos de rota alinhados no celular */
  .nav-rotulo { width: 100%; text-align: center; }

  .nav-botao { flex: 1; justify-content: center; min-width: 130px; }

  .secao { padding: 80px 0; }

  .agendar-faixa { padding: 30px 26px; }

  .galeria-mosaico { columns: 2 150px; }
}

/* ===== TEMA CLARO: textos sobre fotos/faixas escuras continuam claros ===== */
.esporte-card, .esporte-card * { color: #fff; }
.esporte-card .btn { color: #fff; }
.loja-banda-conteudo, .loja-banda-conteudo * { color: rgba(255, 255, 255, 0.92); }
.loja-banda-conteudo { border-color: rgba(255, 255, 255, 0.18) !important; }

/* ===== Botão "Pedir no Gastrobar" (menu, versão clara) ===== */
.topo-menu .btn-pedir {
  background: rgba(19, 139, 166, 0.07);
  color: var(--azul);
  padding: 14px 26px;
  font-size: 0.82rem;
  border-radius: 12px;
  border: 1.5px solid rgba(19, 139, 166, 0.45);
  animation: none;
}
.topo-menu .btn-pedir:hover { background: var(--azul); color: var(--branco); box-shadow: 0 0 22px rgba(19, 139, 166, 0.35); }

/* ===== Hero das páginas internas (Serviços, Gastrobar, Galeria) ===== */
.pagina-hero {
  padding: 170px 0 56px;
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(245, 134, 52, 0.14), transparent 60%),
    radial-gradient(560px 300px at 0% 100%, rgba(19, 139, 166, 0.1), transparent 60%),
    var(--noite);
  border-bottom: 1px solid rgba(20, 40, 55, 0.08);
}
.pagina-hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.06;
  margin-bottom: 12px;
}
.pagina-hero-sub { max-width: 640px; color: rgba(20, 32, 40, 0.7); font-size: 1.05rem; }

/* ===== Destaques na Home (atalhos para as páginas) ===== */
.destaques-grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.destaque-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: var(--raio);
  padding: 30px 28px;
  text-decoration: none;
  color: var(--tinta);
  box-shadow: 0 14px 36px rgba(20, 50, 70, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.destaque-card:hover { transform: translateY(-6px); border-color: rgba(245, 134, 52, 0.55); box-shadow: 0 20px 48px rgba(20, 50, 70, 0.14), 0 0 26px rgba(245, 134, 52, 0.12); }
.destaque-emoji { font-size: 2.2rem; }
.destaque-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; }
.destaque-card p { color: rgba(20, 32, 40, 0.65); font-size: 0.95rem; flex: 1; }
.destaque-link { font-family: var(--f-display); font-weight: 700; font-size: 0.82rem; color: var(--laranja-escuro); letter-spacing: 0.05em; }

.destaques-2col { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }

@media (max-width: 860px) {
  .destaques-2col { grid-template-columns: 1fr; }
}

/* ===== CTA simples centrado (página Serviços / Torneios) ===== */
.cta-pedido {
  background:
    radial-gradient(620px 300px at 90% 20%, rgba(245, 134, 52, 0.12), transparent 60%),
    var(--noite);
  border-top: 1px solid rgba(20, 40, 55, 0.08);
}
.cta-pedido-inner { text-align: center; max-width: 720px; }
.cta-pedido-inner h2 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.5rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-pedido-inner p { color: rgba(20, 32, 40, 0.7); margin-bottom: 28px; font-size: 1.05rem; }

/* ===== Painel "Pedido online" ultra moderno (página Gastrobar) ===== */
.cta-painel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 44px;
  align-items: center;
  border-radius: 32px;
  padding: 56px 54px;
  color: var(--tinta);
  background:
    radial-gradient(640px 320px at 88% 0%, rgba(245, 134, 52, 0.16), transparent 60%),
    radial-gradient(520px 300px at 0% 100%, rgba(24, 184, 204, 0.1), transparent 60%),
    linear-gradient(160deg, #ffffff, #fdf4e6);
  border: 1px solid rgba(20, 40, 55, 0.1);
  box-shadow: 0 36px 80px rgba(20, 50, 70, 0.14);
}

.cta-painel::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  top: -200px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 134, 52, 0.22), transparent 70%);
  animation: cta-aura 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-aura {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

.cta-conteudo { position: relative; z-index: 1; }

.cta-painel h2 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.12;
  margin: 6px 0 14px;
  color: var(--tinta);
}

.cta-texto { color: rgba(20, 32, 40, 0.72); margin-bottom: 26px; font-size: 1.02rem; max-width: 500px; }

.cta-passos { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.cta-passos li { display: flex; gap: 14px; align-items: flex-start; }

.cta-passos b {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 0.78rem;
  color: var(--branco);
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  box-shadow: 0 0 14px rgba(245, 134, 52, 0.45);
}

.cta-passos strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.03em; color: var(--tinta); }

.cta-passos span { color: rgba(20, 32, 40, 0.62); font-size: 0.9rem; }

.cta-nota {
  background: rgba(245, 134, 52, 0.08);
  border: 1px dashed rgba(220, 113, 46, 0.5);
  border-radius: 14px;
  padding: 13px 16px;
  color: rgba(20, 32, 40, 0.75);
  font-size: 0.88rem;
  margin-bottom: 28px;
  max-width: 530px;
}

.cta-btn {
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  color: var(--branco);
  padding: 18px 38px;
  font-size: 0.95rem;
  animation: cta-pulso 2.6s ease-in-out infinite;
}

@keyframes cta-pulso {
  0%, 100% { box-shadow: 0 0 16px rgba(245, 134, 52, 0.35); }
  50% { box-shadow: 0 0 40px rgba(245, 134, 52, 0.7); }
}

/* Brasas flutuando dentro do painel */
.cta-particulas { position: absolute; inset: 0; pointer-events: none; }

.cta-particulas span {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fogo);
  box-shadow: 0 0 10px var(--fogo);
  opacity: 0;
  animation: subir 7s linear infinite;
}

.cta-particulas span:nth-child(1) { left: 10%; animation-delay: 0s; }
.cta-particulas span:nth-child(2) { left: 30%; animation-delay: 1.6s; width: 4px; height: 4px; }
.cta-particulas span:nth-child(3) { left: 48%; animation-delay: 3.1s; }
.cta-particulas span:nth-child(4) { left: 66%; animation-delay: 0.9s; width: 4px; height: 4px; }
.cta-particulas span:nth-child(5) { left: 82%; animation-delay: 2.3s; }
.cta-particulas span:nth-child(6) { left: 93%; animation-delay: 4.2s; width: 5px; height: 5px; }

/* Celular flutuante com pedido ao vivo */
.cta-fone {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(270px, 100%);
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, #1d3340, #0a1c26);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px rgba(20, 40, 55, 0.3), 0 0 36px rgba(245, 134, 52, 0.16);
  animation: cta-flutua 5.5s ease-in-out infinite;
}

@keyframes cta-flutua {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-12px); }
}

.cta-fone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: #0a1c26;
  z-index: 2;
}

.cta-fone-tela {
  background: var(--noite);
  color: var(--tinta);
  border-radius: 26px;
  padding: 34px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 380px;
}

.cta-fone-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  color: var(--azul);
}

.cta-fone-status {
  font-style: normal;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  color: #1d9e58;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 999px;
  padding: 2px 9px;
}

.cta-fone-card {
  background: var(--branco);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(20, 50, 70, 0.12);
}

.cta-fone-senha { font-family: var(--f-display); font-weight: 700; font-size: 0.74rem; color: var(--laranja-escuro); letter-spacing: 0.06em; }

.cta-fone-st { font-weight: 700; font-size: 0.82rem; margin: 7px 0 8px; }

.cta-barra { height: 6px; border-radius: 999px; background: rgba(20, 40, 55, 0.12); overflow: hidden; }

.cta-barra i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--laranja), var(--fogo));
  animation: cta-progresso 4.5s ease-in-out infinite;
}

@keyframes cta-progresso {
  0% { width: 14%; }
  55% { width: 68%; }
  100% { width: 92%; }
}

.cta-fone-card ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 4px; font-size: 0.76rem; color: rgba(20, 32, 40, 0.75); }

.cta-fone-msg {
  margin-top: auto;
  background: linear-gradient(120deg, var(--azul), #0f7f96);
  color: var(--branco);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 0.74rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(19, 139, 166, 0.35);
  animation: cta-msg 3s ease-in-out infinite;
}

@keyframes cta-msg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .cta-painel { grid-template-columns: 1fr; padding: 40px 24px; gap: 36px; }
  .cta-fone { width: min(240px, 80%); }
  .cta-fone-tela { min-height: 340px; }
}

@media (max-width: 860px) {
  .destaques-grade { grid-template-columns: 1fr; }
  .pagina-hero { padding: 150px 0 44px; }
}

/* ===== Submenus do menu principal ===== */
section[id] { scroll-margin-top: 104px; }

/* Primeira seção das páginas internas compensa o menu fixo */
#esportes, #galeria { padding-top: 170px; }

.menu-grupo { display: flex; align-items: center; gap: 2px; }

.submenu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.68rem;
  padding: 4px 5px;
  color: rgba(20, 32, 40, 0.55);
  transition: transform 0.25s ease, color 0.2s ease;
}

.menu-grupo.aberto .submenu-toggle { transform: rotate(180deg); color: var(--laranja-escuro); }

.submenu { display: none; flex-direction: column; }

.topo-menu .submenu a::after { display: none; }

/* Desktop: dropdown flutuante ao passar o mouse */
@media (min-width: 681px) {
  .menu-grupo { position: relative; }

  .menu-grupo:hover .submenu-toggle { transform: rotate(180deg); color: var(--laranja-escuro); }

  .submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 218px;
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 40, 55, 0.1);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 48px rgba(20, 50, 70, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 60;
  }

  /* Ponte invisível para o mouse não "cair" no vão */
  .submenu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }

  .menu-grupo:hover > .submenu,
  .menu-grupo:focus-within > .submenu,
  .menu-grupo.aberto > .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

  .topo-menu .submenu a { padding: 10px 13px; border-radius: 9px; font-size: 0.92rem; white-space: nowrap; }

  .topo-menu .submenu a:hover { background: rgba(245, 134, 52, 0.1); color: var(--laranja-escuro); }
}

/* Celular: submenu acordeão dentro do painel do menu */
@media (max-width: 680px) {
  .topo-menu .menu-grupo { width: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 8px; }

  .submenu-toggle { font-size: 0.95rem; padding: 8px 14px; margin-left: auto; }

  .menu-grupo:hover > .submenu,
  .menu-grupo:focus-within > .submenu,
  .topo-menu .submenu {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: rgba(20, 40, 55, 0.05);
    border: 1px solid rgba(20, 40, 55, 0.1);
    border-radius: 12px;
    padding: 6px 14px;
    margin: 2px 0 8px;
  }

  .menu-grupo.aberto > .submenu { display: flex; }

  .topo-menu .submenu a { padding: 11px 4px; font-size: 0.98rem; }
}

/* ===== Textura de areia (grão sutil sobre as áreas claras) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='areia'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.52 0 0 0 0 0.38 0 0 0 0 0.22 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23areia)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.14;
  mix-blend-mode: multiply;
}
/* ===== Hero: AREIA com textura de areia e SOL dourado ===== */
.hero-titulo .p1 {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='130'%3E%3Cfilter id='grao'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0 0.12 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='130' height='130' filter='url(%23grao)'/%3E%3C/svg%3E"),
    linear-gradient(178deg, #e6c184 0%, #d6a965 38%, #c08e4d 68%, #a3713a 100%);
  background-size: 130px 130px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 8px rgba(140, 95, 40, 0.28));
}

.hero-titulo .p2 {
  background: radial-gradient(130% 140% at 50% 16%, #ffe9a8 0%, #ffd45e 30%, #ffaf3c 58%, #f58634 82%, #e06b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 10px rgba(245, 134, 52, 0.32));
}
/* ===== FAQ (perguntas frequentes) ===== */
.secao-faq {
  background:
    radial-gradient(620px 300px at 8% 10%, rgba(19, 139, 166, 0.07), transparent 60%),
    radial-gradient(560px 280px at 95% 90%, rgba(245, 134, 52, 0.08), transparent 60%);
}

.faq-lista { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(20, 50, 70, 0.06);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover { border-color: rgba(245, 134, 52, 0.35); }

.faq-item[open] { border-color: rgba(245, 134, 52, 0.55); box-shadow: 0 16px 40px rgba(20, 50, 70, 0.1), 0 0 22px rgba(245, 134, 52, 0.08); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tinta);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-mais {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-family: var(--f-texto);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--laranja-escuro);
  background: rgba(245, 134, 52, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-mais {
  transform: rotate(45deg);
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  color: var(--branco);
}

.faq-corpo { padding: 0 22px 20px; color: rgba(20, 32, 40, 0.72); font-size: 0.97rem; }

.faq-corpo a { color: var(--azul); font-weight: 600; }

.faq-extra { text-align: center; margin-top: 28px; color: rgba(20, 32, 40, 0.7); }

.faq-extra a { color: var(--laranja-escuro); font-weight: 700; }

/* ===== Botão WhatsApp (verde oficial) ===== */
.btn-zap {
  background: linear-gradient(120deg, #25d366, #1eb858);
  border: 1.5px solid rgba(30, 184, 88, 0.6);
  color: var(--branco);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-zap:hover { box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5); }

/* ===== Página Eventos & Day Use ===== */
.ev-hero {
  padding: 170px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 88% 0%, rgba(245, 134, 52, 0.15), transparent 60%),
    radial-gradient(560px 320px at 0% 100%, rgba(19, 139, 166, 0.1), transparent 60%),
    var(--noite);
  border-bottom: 1px solid rgba(20, 40, 55, 0.08);
}

.ev-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }

.ev-hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.ev-hero-botoes { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }

.ev-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }

.ev-chips li {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(20, 32, 40, 0.78);
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.12);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: 0 6px 16px rgba(20, 50, 70, 0.06);
}

.ev-hero-fotos { position: relative; min-height: 430px; }

.ev-foto-solta {
  position: absolute;
  width: 62%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--branco);
  box-shadow: 0 26px 60px rgba(20, 50, 70, 0.22);
}

.ev-foto-solta img { width: 100%; height: 100%; object-fit: cover; }

.ev-foto-a { top: 0; left: 2%; transform: rotate(-5deg); animation: ev-flutua 6s ease-in-out infinite; }

.ev-foto-b { bottom: 0; right: 2%; transform: rotate(4deg); animation: ev-flutua 7s ease-in-out 0.8s infinite; }

@keyframes ev-flutua {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* Blocos Day Use / Corporativo */
.ev-bloco { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }

.ev-bloco-areia {
  background:
    radial-gradient(800px 420px at 90% 100%, rgba(255, 90, 60, 0.1), transparent 60%),
    linear-gradient(165deg, #fdf6ec, #f9e9d2);
}

.ev-foto {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(20, 40, 55, 0.12);
  box-shadow: 0 28px 64px rgba(20, 50, 70, 0.18);
  transform: rotate(-2deg);
}

.ev-foto-inclinada { transform: rotate(2deg); }

.ev-foto img { width: 100%; height: 100%; object-fit: cover; }

.ev-foto figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--branco);
  background: rgba(18, 10, 7, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 12px;
}

.ev-check { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }

.ev-check li { position: relative; padding-left: 34px; color: rgba(20, 32, 40, 0.78); }

.ev-check li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--branco);
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  box-shadow: 0 0 10px rgba(245, 134, 52, 0.4);
}

/* Passos */
.ev-passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 14px; }

.ev-passo {
  position: relative;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: var(--raio);
  padding: 30px 26px;
  box-shadow: 0 14px 36px rgba(20, 50, 70, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ev-passo:hover { transform: translateY(-6px); border-color: rgba(245, 134, 52, 0.5); box-shadow: 0 20px 48px rgba(20, 50, 70, 0.14); }

.ev-passo b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--branco);
  background: linear-gradient(120deg, var(--laranja), var(--laranja-escuro));
  box-shadow: 0 0 16px rgba(245, 134, 52, 0.45);
  margin-bottom: 16px;
}

.ev-passo h3 { font-family: var(--f-display); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }

.ev-passo p { color: rgba(20, 32, 40, 0.68); font-size: 0.95rem; }

/* Faixa de fotos */
.ev-galeria-faixa { padding-top: 0; }

.ev-mosaico { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.ev-mosaico a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(20, 40, 55, 0.12);
  box-shadow: 0 14px 32px rgba(20, 50, 70, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-mosaico a:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 22px 48px rgba(20, 50, 70, 0.18); }

.ev-mosaico img { width: 100%; height: 100%; object-fit: cover; }

.ev-galeria-link { text-align: center; margin-top: 22px; }

.ev-galeria-link a { color: var(--laranja-escuro); font-family: var(--f-display); font-weight: 700; font-size: 0.9rem; text-decoration: none; }

/* CTA final centrado */
.cta-painel.ev-final { grid-template-columns: 1fr; text-align: center; justify-items: center; }

.cta-painel.ev-final .cta-texto { margin-left: auto; margin-right: auto; }

.cta-painel.ev-final .ev-hero-botoes { justify-content: center; margin-bottom: 0; }

@media (max-width: 900px) {
  .ev-hero { padding: 150px 0 56px; }

  .ev-hero-grid { grid-template-columns: 1fr; gap: 36px; }

  .ev-hero-fotos { min-height: 320px; }

  .ev-foto-solta { width: 56%; }

  .ev-bloco { grid-template-columns: 1fr; gap: 34px; }

  .ev-bloco-invertido .ev-conteudo { order: 1; }

  .ev-bloco-invertido .ev-foto { order: 2; }

  .ev-passos { grid-template-columns: 1fr; }

  .ev-mosaico { grid-template-columns: 1fr 1fr; }
}
/* ===== Seção Torneios (pódio animado) ===== */
.torneios-secao {
  overflow: hidden;
  background:
    radial-gradient(700px 360px at 85% 30%, rgba(255, 200, 60, 0.16), transparent 60%),
    radial-gradient(520px 300px at 5% 90%, rgba(19, 139, 166, 0.08), transparent 60%),
    linear-gradient(165deg, #fdf6ec, #faecd6);
}

.torneios-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.torneios-texto .ev-check { margin-bottom: 30px; }

.torneios-aviso { color: rgba(20, 32, 40, 0.7); margin-bottom: 22px; font-size: 0.96rem; }

.podio-cena { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; }

/* Aura dourada pulsando atrás do pódio */
.podio-cena::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 60, 0.35), transparent 70%);
  filter: blur(30px);
  animation: podio-aura-pulsa 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes podio-aura-pulsa {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.podio-lugares {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  z-index: 1;
}

.podio-lugar {
  position: relative;
  width: min(120px, 26%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  transform-origin: bottom;
  padding-top: 14px;
}

.podio-lugar b {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--branco);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.lugar-1 {
  height: 210px;
  background: linear-gradient(175deg, #ffd45e, #efae33 60%, #d8932a);
  box-shadow: 0 18px 44px rgba(232, 169, 60, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.55);
}

.lugar-2 {
  height: 148px;
  background: linear-gradient(175deg, #eef1f5, #c9d1db 60%, #aeb9c6);
  box-shadow: 0 14px 36px rgba(140, 155, 170, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.7);
}

.lugar-2 b, .lugar-3 b { font-size: 1.5rem; }

.lugar-3 {
  height: 112px;
  background: linear-gradient(175deg, #ecbf97, #d09060 60%, #b87444);
  box-shadow: 0 12px 32px rgba(184, 116, 68, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

/* Entrada: pódio sobe degrau por degrau quando a seção aparece */
.podio-cena.visivel .podio-lugar { animation: podio-sobe 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.1) both; }

.podio-cena.visivel .lugar-3 { animation-delay: 0.15s; }

.podio-cena.visivel .lugar-2 { animation-delay: 0.35s; }

.podio-cena.visivel .lugar-1 { animation-delay: 0.55s; }

@keyframes podio-sobe {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Medalhas quicando sobre cada degrau */
.podio-medalha {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  filter: drop-shadow(0 6px 12px rgba(120, 80, 20, 0.3));
  animation: medalha-quica 3s ease-in-out infinite;
}

.lugar-1 .podio-medalha { font-size: 3rem; top: -64px; }

.lugar-2 .podio-medalha { animation-delay: 0.5s; }

.lugar-3 .podio-medalha { animation-delay: 1s; }

@keyframes medalha-quica {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

/* Coroa do campeão flutuando sobre o 1º lugar */
.podio-coroa {
  position: absolute;
  top: -126px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  font-size: 2.2rem;
  filter: drop-shadow(0 0 16px rgba(255, 200, 60, 0.8));
  animation: coroa-reina 3.6s ease-in-out infinite;
  z-index: 2;
}

@keyframes coroa-reina {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-8deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(8deg); }
}

/* Faíscas de festa */
.podio-faisca {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: faisca-pisca 2.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.podio-faisca.f1 { left: 12%; top: 18%; }

.podio-faisca.f2 { right: 10%; top: 8%; animation-delay: 0.7s; font-size: 1rem; }

.podio-faisca.f3 { right: 20%; bottom: 36%; animation-delay: 1.3s; font-size: 1.4rem; }

.podio-faisca.f4 { left: 22%; bottom: 28%; animation-delay: 1.9s; font-size: 0.95rem; }

@keyframes faisca-pisca {
  0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

/* Sombra no chão */
.podio-chao {
  width: 70%;
  height: 16px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(120, 80, 30, 0.25), transparent 70%);
}

@media (max-width: 860px) {
  .torneios-grid { grid-template-columns: 1fr; gap: 30px; }

  .podio-cena { min-height: 320px; margin-top: 30px; }

  .lugar-1 { height: 180px; }

  .lugar-2 { height: 126px; }

  .lugar-3 { height: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .podio-cena::before, .podio-medalha, .podio-coroa, .podio-faisca,
  .podio-cena.visivel .podio-lugar { animation: none !important; }

  .podio-faisca { opacity: 1; }
}
/* ===== Seção Eventos & Day Use (cena de praia animada) ===== */
.eventos-secao {
  overflow: hidden;
  background:
    radial-gradient(680px 340px at 90% 10%, rgba(255, 200, 60, 0.14), transparent 60%),
    radial-gradient(540px 300px at 0% 100%, rgba(19, 139, 166, 0.09), transparent 60%);
}

.eventos-secao-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

/* Atalhos em cartões horizontais */
.ev-atalhos { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.ev-atalho {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--noite-2);
  border: 1px solid rgba(20, 40, 55, 0.1);
  border-radius: 18px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--tinta);
  box-shadow: 0 12px 32px rgba(20, 50, 70, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ev-atalho:hover { transform: translateX(10px); border-color: rgba(245, 134, 52, 0.55); box-shadow: 0 18px 44px rgba(20, 50, 70, 0.14), 0 0 24px rgba(245, 134, 52, 0.1); }

.ev-atalho-icone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.7rem;
}

.icone-praia { background: linear-gradient(135deg, rgba(255, 200, 60, 0.25), rgba(245, 134, 52, 0.2)); }

.icone-corp { background: linear-gradient(135deg, rgba(19, 139, 166, 0.16), rgba(79, 208, 230, 0.18)); }

.ev-atalho-texto strong { display: block; font-family: var(--f-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }

.ev-atalho-texto small { color: rgba(20, 32, 40, 0.65); font-size: 0.9rem; line-height: 1.5; }

.ev-atalho-seta {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--laranja-escuro);
  transition: transform 0.25s ease;
}

.ev-atalho:hover .ev-atalho-seta { transform: translateX(6px); }

/* Cena de praia */
.praia-cena { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; }

/* Sol pulsando */
.praia-cena::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  top: 6%;
  right: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe9a8 20%, #ffd45e 55%, rgba(255, 175, 60, 0.5) 75%, transparent 100%);
  box-shadow: 0 0 60px rgba(255, 200, 60, 0.7);
  animation: praia-sol 5s ease-in-out infinite;
}

@keyframes praia-sol {
  0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(255, 200, 60, 0.55); }
  50% { transform: scale(1.08); box-shadow: 0 0 80px rgba(255, 200, 60, 0.85); }
}

/* Duna de areia: se dissolve suavemente nas laterais (sem corte) */
.praia-areia {
  position: relative;
  height: 120px;
  background:
    radial-gradient(90% 170% at 38% 102%, #e3bd7e 55%, transparent 56%),
    radial-gradient(70% 120% at 72% 108%, #ecca90 52%, transparent 53%),
    radial-gradient(120% 90% at 50% 115%, #d6a965 60%, transparent 61%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

/* Brilho do sol refletindo na crista da duna */
.praia-areia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 55% 30%, rgba(255, 240, 200, 0.55), transparent 70%);
  pointer-events: none;
}

/* Guarda-sol balançando, plantado na areia */
.praia-sombrinha {
  position: absolute;
  bottom: 48px;
  left: 50%;
  font-size: 7.5rem;
  line-height: 1;
  transform: translateX(-58%);
  transform-origin: bottom center;
  filter: drop-shadow(0 14px 22px rgba(120, 80, 30, 0.3));
  animation: sombrinha-balanca 5s ease-in-out infinite;
  z-index: 2;
}

@keyframes sombrinha-balanca {
  0%, 100% { transform: translateX(-58%) rotate(-3deg); }
  50% { transform: translateX(-58%) rotate(3deg); }
}

/* Bola quicando na areia */
.praia-bola {
  position: absolute;
  bottom: 86px;
  left: 16%;
  font-size: 2.6rem;
  animation: bola-quica 1.6s cubic-bezier(0.35, 0, 0.6, 1) infinite alternate;
  z-index: 2;
}

@keyframes bola-quica {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-56px) rotate(35deg); }
}

/* Drink na areia */
.praia-drink {
  position: absolute;
  bottom: 64px;
  right: 16%;
  font-size: 2.6rem;
  transform: rotate(8deg);
  filter: drop-shadow(0 8px 12px rgba(120, 80, 30, 0.25));
  animation: drink-brinda 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes drink-brinda {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-4deg) translateY(-5px); }
}

/* Balões subindo (clima de festa) */
.praia-balao {
  position: absolute;
  bottom: 30%;
  font-size: 1.8rem;
  opacity: 0;
  animation: balao-sobe 6s ease-in infinite;
  z-index: 1;
}

.praia-balao.b1 { left: 8%; }

.praia-balao.b2 { right: 6%; font-size: 1.4rem; animation-delay: 3s; }

@keyframes balao-sobe {
  0% { opacity: 0; transform: translateY(40px) rotate(-6deg); }
  15% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-180px) rotate(8deg); }
}

/* Confetes e brilhos */
.praia-faisca {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  animation: faisca-pisca 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.praia-faisca.pf1 { left: 24%; top: 14%; font-size: 1.5rem; }

.praia-faisca.pf2 { left: 6%; top: 42%; animation-delay: 0.9s; }

.praia-faisca.pf3 { right: 30%; top: 30%; animation-delay: 1.7s; font-size: 0.95rem; }

@media (max-width: 860px) {
  .eventos-secao-grid { grid-template-columns: 1fr; gap: 26px; }

  .praia-cena { min-height: 300px; margin-top: 16px; }

  .praia-sombrinha { font-size: 6rem; }

  .praia-areia { height: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  .praia-cena::before, .praia-sombrinha, .praia-bola, .praia-drink,
  .praia-balao, .praia-faisca { animation: none !important; }

  .praia-faisca, .praia-balao { opacity: 1; }
}
/* fim */
