/* ================================================================
   COUNTRY CLUBE — site.css
   Design: Premium · Show House · Clean · Moderno
   Paleta: #000000 · #C8A000 · #E8860A · #FF9F1C
   ✅ Scroll duplo corrigido
   ✅ Footer sem espaço extra
================================================================ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --ouro:         #C8A000;
  --ouro-light:   #F0C000;
  --ouro-brilho:  #FFD700;
  --laranja:      #E8860A;
  --laranja2:     #FF9F1C;
  --laranja-hot:  #D4640A;
  --preto:        #000000;
  --preto2:       #080500;
  --surface:      #0C0900;
  --surface2:     #120D02;
  --borda:        rgba(200,160,0,.15);
  --borda-hover:  rgba(200,160,0,.4);
  --texto:        #FFF3E0;
  --texto-muted:  rgba(255,243,224,.45);
  --trans:        all .38s cubic-bezier(.4,0,.2,1);
  --trans-spring: all .55s cubic-bezier(.34,1.56,.64,1);
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --sombra:       0 8px 40px rgba(0,0,0,.75);
  --sombra-ouro:  0 8px 32px rgba(200,160,0,.25);

  /* Cores extras usadas nas pages */
  --escuro:       #0D0805;
  --marrom:       rgba(255,255,255,.03);
  --marrom2:      #120A04;
  --branco:       #FFF3E0;
  --ouro-escuro:  #A07800;
  --ouro-claro:   #FFE566;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* ✅ CRÍTICO — evita scroll horizontal causado por parallax */
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--preto);
  color: var(--texto);
  /* ✅ overflow-x hidden no body também */
  overflow-x: hidden;
  min-height: 100vh;
  /* ✅ Sem padding/margin que cause scroll extra */
  padding: 0 !important;
  margin: 0 !important;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5 {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--laranja-hot), var(--ouro));
  border-radius: 5px;
}

/* ================================================================
   SCANLINES SUAVES
   ✅ pointer-events:none e sem dimensões extras
================================================================ */
body::after {
  content: '';
  position: fixed; inset: 0;
  /* ✅ z-index abaixo do navbar mas acima do conteúdo */
  z-index: 9990;
  pointer-events: none;
  /* ✅ width/height explícitos para não vazar */
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.012) 3px, rgba(0,0,0,.012) 4px
  );
}

/* ================================================================
   WRAPPER GLOBAL — contém os parallax
   ✅ Isso é o que resolve o scroll duplo
================================================================ */
body > * {
  /* ✅ NÃO use overflow:hidden aqui — quebra position:fixed */
  max-width: 100vw;
}

/* ================================================================
   HERO — CANVAS + GRADIENTE
================================================================ */
.parallax-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  background: var(--preto);
  /* ✅ contém o parallax horizontalmente */
  max-width: 100%;
}

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  /* ✅ Não causa overflow */
  pointer-events: none;
}

/* Fundo gradiente parallax */
.hero-parallax-bg {
  position: absolute;
  /* ✅ inset:-15% causava overflow — usar transform em vez de inset excessivo */
  inset: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%,
      rgba(200,160,0,.16) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 40%,
      rgba(232,134,10,.12) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 5%,
      rgba(200,160,0,.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%,
      rgba(8,5,0,.8) 0%, transparent 50%),
    linear-gradient(180deg,
      #100D02 0%, #080500 35%, #050300 70%, #000 100%);
  will-change: transform;
  z-index: 0;
  /* ✅ Parallax controlado — sem vazar */
  transform-origin: center center;
}

/* Grade de pontos */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: .025;
  background-image:
    radial-gradient(circle, rgba(200,160,0,.9) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: gridShift 28s linear infinite;
  /* ✅ Sem overflow */
  width: 100%; height: 100%;
}
@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 44px 44px; }
}

/* Orbs de luz */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
  filter: blur(80px); opacity: 0;
  animation: orbAnim ease-in-out infinite;
  /* ✅ Contido no hero */
  max-width: 100%;
}
.hero-orb-1 {
  width: min(500px, 60vw); height: min(500px, 60vw);
  top: -10%; left: -5%;
  background: radial-gradient(ellipse,
    rgba(200,160,0,.18) 0%, transparent 70%);
  animation-duration: 15s;
}
.hero-orb-2 {
  width: min(400px, 50vw); height: min(600px, 70vw);
  top: -10%; right: -5%;
  background: radial-gradient(ellipse,
    rgba(232,134,10,.13) 0%, transparent 70%);
  animation-duration: 20s; animation-delay: -8s;
  animation-direction: alternate-reverse;
}
.hero-orb-3 {
  width: min(350px, 45vw); height: min(350px, 45vw);
  bottom: -5%; left: 35%;
  background: radial-gradient(ellipse,
    rgba(200,160,0,.1) 0%, transparent 70%);
  animation-duration: 25s; animation-delay: -5s;
}
@keyframes orbAnim {
  0%   { opacity: 0; transform: translate(0,0); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translate(30px,-30px); }
}

/* Vinheta */
.hero-vinheta {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 40%, rgba(0,0,0,.65) 100%);
}

/* Overlay fundo */
.parallax-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.3) 0%, rgba(0,0,0,.5) 55%,
    rgba(0,0,0,.97) 100%);
}

/* Partículas */
.hero-particles {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  /* ✅ overflow hidden APENAS no container de partículas */
  overflow: hidden;
  width: 100%; height: 100%;
}
.particle {
  position: absolute;
  animation: particleUp linear infinite; opacity: 0;
}
@keyframes particleUp {
  0%   { transform: translateY(110%) rotate(0deg) scale(.5); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: .6; }
  100% { transform: translateY(-10%) rotate(540deg) scale(1.5); opacity: 0; }
}
.spark {
  position: absolute; height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--ouro-light), var(--ouro-brilho), transparent);
  animation: sparkFly linear infinite; opacity: 0;
}
@keyframes sparkFly {
  0%   { transform: translateX(-300px) scaleX(.3); opacity: 0; }
  12%  { opacity: .6; }
  88%  { opacity: .3; }
  100% { transform: translateX(110%) scaleX(1.5); opacity: 0; }
}
.estrela-pt {
  position: absolute; border-radius: 50%;
  animation: estrelaPisca ease-in-out infinite;
}
@keyframes estrelaPisca {
  0%,100% { opacity: 0; transform: scale(.5); }
  50%     { opacity: 1; transform: scale(1.3); }
}

/* Conteúdo hero */
.parallax-content {
  position: relative; z-index: 10;
  text-align: center; padding: 130px 24px 90px;
  max-width: 960px; width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,160,0,.08);
  border: 1px solid rgba(200,160,0,.3);
  border-radius: 50px; padding: 8px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem; letter-spacing: 3px;
  color: var(--ouro-light); text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown .8s ease .3s both;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--laranja); font-size: .65rem; }

/* Título */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 1.02; color: #fff; margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,.8);
  animation: fadeUp .9s ease .5s both;
}
.hero-title .destaque {
  background: linear-gradient(135deg,
    var(--laranja-hot), var(--ouro-light),
    var(--ouro-brilho), var(--laranja2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes shimmerText {
  0%,100% { background-position: 0%   center; }
  50%     { background-position: 100% center; }
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,243,224,.78);
  margin-bottom: 40px; line-height: 1.75;
  animation: fadeUp .9s ease .7s both;
}

/* Botões */
.hero-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; animation: fadeUp .9s ease .9s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--trans);
}
.btn-ouro, .btn-laranja {
  background: linear-gradient(135deg,
    var(--laranja-hot), var(--laranja), var(--ouro-light));
  background-size: 200% auto;
  color: #000; font-weight: 700;
  box-shadow: 0 6px 24px rgba(200,160,0,.3),
              inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-ouro:hover, .btn-laranja:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,160,0,.5);
  color: #000;
}
.btn-outline {
  background: transparent; color: rgba(255,243,224,.85);
  border: 1px solid rgba(200,160,0,.35);
}
.btn-outline:hover {
  border-color: var(--ouro);
  color: var(--ouro-light);
  background: rgba(200,160,0,.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,160,0,.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: var(--ouro);
  animation: bounceScroll 2.5s ease-in-out infinite;
}
.scroll-indicator span {
  font-family: 'Oswald', sans-serif;
  font-size: .62rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(200,160,0,.6);
}
@keyframes bounceScroll {
  0%,100% { transform: translateX(-50%) translateY(0);    }
  50%     { transform: translateX(-50%) translateY(10px); }
}

/* ================================================================
   SEÇÕES GENÉRICAS
================================================================ */
section { padding: 96px 24px; }
.container    { max-width: 1280px; margin: 0 auto; }
.container-sm { max-width: 920px;  margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--ouro);
  margin-bottom: 12px; opacity: .85;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem); color: #fff;
  position: relative; padding-bottom: 20px;
}
.section-title::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: linear-gradient(90deg,
    var(--laranja-hot), var(--ouro-brilho), var(--laranja2));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(200,160,0,.5);
}

/* Divisores */
.divider-ouro, .divider-laranja {
  display: flex; align-items: center; gap: 14px;
  margin: 14px auto 0; max-width: 220px; justify-content: center;
}
.divider-ouro::before, .divider-laranja::before {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ouro));
}
.divider-ouro::after, .divider-laranja::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--ouro), transparent);
}
.divider-ouro i, .divider-laranja i {
  color: var(--ouro); font-size: .7rem; opacity: .8;
}

/* ================================================================
   STRIP PARALLAX
   ✅ overflow:hidden contém as partículas e o bg
================================================================ */
.parallax-strip {
  position: relative;
  padding: 120px 24px;
  /* ✅ overflow:hidden SÓ aqui — não no body */
  overflow: hidden;
  text-align: center;
}
.parallax-strip .parallax-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
  z-index: 0;
}
.parallax-strip::before,
.parallax-strip::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg,
    transparent, var(--ouro), var(--ouro-brilho), var(--ouro), transparent);
  opacity: .5;
}
.parallax-strip::before { top: 0; }
.parallax-strip::after  { bottom: 0; }

.parallax-strip-content {
  position: relative; z-index: 3;
}
.parallax-strip-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem); color: #fff; margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,.7);
}
.parallax-strip-content h2 span {
  background: linear-gradient(135deg, var(--laranja-hot), var(--ouro-brilho));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.parallax-strip-content p {
  font-size: 1.05rem; color: rgba(255,243,224,.7);
  max-width: 580px; margin: 0 auto 34px; line-height: 1.8;
}

/* ================================================================
   ANIMAÇÕES SCROLL — REVEAL
================================================================ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visivel { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-44px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visivel { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(44px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visivel { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.visivel { opacity: 1; transform: scale(1); }

.reveal-fade {
  opacity: 0; transition: opacity .8s ease;
}
.reveal-fade.visivel { opacity: 1; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ================================================================
   CARDS EVENTO — premium glassmorphism
================================================================ */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 24px;
}
.evento-card {
  background: rgba(12,9,2,.9);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--trans);
  display: flex; flex-direction: column;
  position: relative;
  backdrop-filter: blur(8px);
}
.evento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--ouro), var(--ouro-brilho), var(--ouro), transparent);
  transform: scaleX(0); transition: transform .4s ease;
  box-shadow: 0 0 10px rgba(200,160,0,.6);
}
.evento-card:hover {
  transform: translateY(-7px);
  border-color: var(--borda-hover);
  box-shadow: 0 20px 50px rgba(0,0,0,.7),
              0 0 30px rgba(200,160,0,.08);
}
.evento-card:hover::before { transform: scaleX(1); }

.card-img-wrap {
  position: relative; height: 210px; overflow: hidden;
  background: linear-gradient(135deg,
    rgba(200,160,0,.12) 0%, rgba(12,9,2,1) 100%);
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}
.evento-card:hover .card-img-wrap img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.1);
}

.card-tipo {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: linear-gradient(135deg, var(--laranja-hot), var(--ouro));
  color: #000; font-family: 'Oswald', sans-serif;
  font-size: .62rem; font-weight: 700; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.card-data-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,.88);
  border: 1px solid rgba(200,160,0,.4);
  border-radius: var(--radius);
  padding: 8px 14px; text-align: center; line-height: 1.2;
  backdrop-filter: blur(12px);
}
.card-data-badge .dia {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--ouro-light); line-height: 1;
  text-shadow: 0 0 12px rgba(200,160,0,.5);
}
.card-data-badge .mes {
  display: block; font-size: .6rem;
  letter-spacing: 2px; color: var(--texto); text-transform: uppercase;
}

.card-body {
  padding: 22px; flex: 1;
  display: flex; flex-direction: column;
}
.card-body h3 {
  font-size: 1.1rem; color: #fff;
  margin-bottom: 12px; line-height: 1.3;
}
.card-meta {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px;
}
.card-meta span {
  font-size: .78rem; color: var(--texto-muted);
  display: flex; align-items: center; gap: 8px;
}
.card-meta i {
  color: var(--ouro); width: 14px; flex-shrink: 0; opacity: .8;
}
.card-footer-ev {
  margin-top: auto;
  border-top: 1px solid rgba(200,160,0,.1);
  padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.card-preco {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; color: var(--ouro-light);
}
.card-preco small {
  display: block; font-family: 'Open Sans', sans-serif;
  font-size: .65rem; color: var(--texto-muted);
}
.btn-card {
  padding: 9px 20px; font-family: 'Oswald', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--laranja-hot), var(--ouro));
  color: #000; transition: var(--trans); border: none;
  cursor: pointer; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(200,160,0,.3);
}
.btn-card:hover {
  background: linear-gradient(135deg, var(--ouro), var(--ouro-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,160,0,.45);
}

/* ================================================================
   CONTADOR — premium
================================================================ */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}
.counter-item {
  text-align: center; padding: 36px 20px;
  background: rgba(10,8,2,.9);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  transition: var(--trans);
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.counter-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--ouro), var(--ouro-brilho), transparent);
  transform: scaleX(0); transition: transform .4s ease;
  box-shadow: 0 0 8px rgba(200,160,0,.6);
}
.counter-item::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,160,0,.06), transparent 70%);
  pointer-events: none;
}
.counter-item:hover {
  transform: translateY(-6px);
  border-color: var(--borda-hover);
  box-shadow: 0 14px 42px rgba(0,0,0,.6),
              0 0 20px rgba(200,160,0,.08);
}
.counter-item:hover::before { transform: scaleX(1); }

.counter-icon {
  font-size: 1.9rem; color: var(--ouro); margin-bottom: 14px;
  opacity: .85;
}
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 700;
  line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--laranja), var(--ouro-brilho), var(--ouro-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label {
  font-size: .7rem; color: var(--texto-muted);
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* ================================================================
   BADGES
================================================================ */
.badge-tipo {
  display: inline-block; font-family: 'Oswald', sans-serif;
  font-size: .62rem; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.badge-sexta    { background: rgba(41,128,185,.18);  color: #90CAF9;
                  border: 1px solid rgba(41,128,185,.3); }
.badge-sabado   { background: rgba(142,68,173,.18);  color: #CE93D8;
                  border: 1px solid rgba(142,68,173,.3); }
.badge-domingo  { background: rgba(39,174,96,.18);   color: #A5D6A7;
                  border: 1px solid rgba(39,174,96,.3); }
.badge-especial { background: rgba(200,160,0,.12);   color: var(--ouro-light);
                  border: 1px solid rgba(200,160,0,.3); }

/* ================================================================
   KEYFRAMES GLOBAIS
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================================
   UTILITÁRIOS
================================================================ */
.text-ouro    { color: var(--ouro-light); }
.text-laranja { color: var(--laranja); }
.text-center  { text-align: center; }
.mt-auto      { margin-top: auto; }

/* ================================================================
   RESPONSIVO
================================================================ */
@media (max-width: 1024px) {
  /* footer-grid gerenciado pelo footer.php */
}
@media (max-width: 768px) {
  section { padding: 64px 18px; }
  .counters-grid { grid-template-columns: repeat(2,1fr); }
  .hero-orb      { display: none; }
  #heroCanvas    { opacity: .5; }
}
@media (max-width: 480px) {
  .eventos-grid  { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns     { flex-direction: column; align-items: center; }
}
