/* =========================================================
   Shiga Dragon Futsal — main.css  v2 (FASE 10 DESIGN FINAL)
   Paleta: Dourado #d4a017 | Amarelo #f5c542
           Base #0d1420 | Escuro #111827 | Card #1a2234
   Mobile-first · Premium · Esportivo
   ========================================================= */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: #090d14;
  color: #f0f4ff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --gold:         #d4a017;
  --gold-light:   #f5c000;
  --gold-vivid:   #ffd000;
  --gold-glow:    rgba(245,192,0,.3);
  --dark:         #090d14;
  --dark-2:       #0d1420;
  --dark-mid:     #111827;
  --dark-card:    #111827;
  --dark-card-2:  #1a2235;
  --dark-border:  #1e2d45;
  --dark-border-2:#2d3f5a;
  --text:         #f0f4ff;
  --text-muted:   #7a8ba8;
  --radius:       0.5rem;
  --radius-lg:    1rem;
  --transition:   0.2s ease;
  --shadow-card:  0 4px 24px rgba(0,0,0,.45);
  --shadow-gold:  0 8px 32px rgba(245,192,0,.2);
}


/* ════════════════════════════════════════════════════════════ */
/* BLOCO 2 — HERO AAA CINEMATOGRÁFICO PREMIUM                  */
/* ════════════════════════════════════════════════════════════ */

/* ── Hero Container ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(
    135deg,
    #050810 0%,
    #0a0f1a 15%,
    #0d1420 35%,
    #091428 60%,
    #0a1120 100%
  );
  padding: 2.5rem 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow épico background (múltiplas camadas) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 1200px 600px at 50% -100px, rgba(245,192,0,.35) 0%, transparent 65%),
    radial-gradient(ellipse 800px 400px at 50% -50px, rgba(212,160,23,.15) 0%, transparent 50%);
  pointer-events: none;
  animation: heroBreath 6s ease-in-out infinite;
}

/* Pattern overlay premium (diagonal stripes) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,.008) 40px,
      rgba(255,255,255,.008) 41px
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(245,192,0,.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* ── Hero Badge ────────────────────────────────────────────── */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d1420;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 0 28px rgba(245,192,0,.5),
    0 0 60px rgba(245,192,0,.25),
    0 2px 8px rgba(0,0,0,.4);
  animation: heroBeam 2s ease-in-out;
}

/* ── Hero Title ────────────────────────────────────────────── */
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  
  /* Triple text-shadow: gold glow + dark shadow */
  text-shadow: 
    0 0 30px rgba(245,192,0,.6),
    0 0 60px rgba(212,160,23,.4),
    0 2px 8px rgba(0,0,0,.6);
  
  animation: titleFadeInUp 1.2s ease-out;
}

.hero-title .highlight {
  color: var(--gold-light);
  display: block;
  text-shadow: 
    0 0 40px rgba(245,192,0,.7),
    0 0 80px rgba(245,192,0,.4),
    0 2px 8px rgba(0,0,0,.6);
  animation: highlightPulse 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* ── Hero Subtitle ─────────────────────────────────────────── */
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  animation: subtitleFadeIn 1.5s ease-out;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ── CTA Button Container ──────────────────────────────────── */
.hero > .container > div:last-of-type {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: ctaFadeIn 1.8s ease-out;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ── Button Enhancements ────────────────────────────────────── */
.btn-primary {
  min-width: 180px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 0 36px rgba(245,192,0,.7),
    0 0 60px rgba(245,192,0,.4),
    0 8px 24px rgba(0,0,0,.4);
  filter: brightness(1.1);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline:hover {
  background: rgba(212,160,23,.2);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 
    0 0 24px rgba(212,160,23,.4),
    0 4px 16px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════════════════════════ */
/* KEYFRAME ANIMATIONS                                         */
/* ════════════════════════════════════════════════════════════ */

@keyframes heroBreath {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 1.3;
  }
}

@keyframes heroBeam {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightPulse {
  0%, 100% {
    filter: drop-shadow(0 0 40px rgba(245,192,0,.6));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(245,192,0,.9));
  }
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════════ */
/* RESPONSIVE ADJUSTMENTS                                      */
/* ════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .hero {
    padding: 3rem 0;
    min-height: 420px;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-title {
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero > .container > div:last-of-type {
    gap: 0.85rem;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 200px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .hero {
    padding: 3.5rem 0;
    min-height: 480px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  .hero > .container > div:last-of-type {
    gap: 1rem;
  }
}



/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-main { flex: 1; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  background: rgba(9,13,20,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,.25);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(9,13,20,.99);
  border-bottom-color: rgba(212,160,23,.45);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-dragon {
  font-size: 1.9rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(245,192,0,.55));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 28px rgba(245,192,0,.45);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Nav */
.main-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(9,13,20,.99);
  border-bottom: 1px solid rgba(212,160,23,.25);
  padding: 0.5rem 1.25rem 1.25rem;
  gap: 0;
}

.main-nav.open { display: flex; animation: slideDown .22s ease; }

.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.main-nav a:last-child { border-bottom: none; }

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  padding-left: 0.4rem;
}

/* Hamburger button */
.nav-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  transition: border-color .2s;
}

.nav-toggle:hover { border-color: rgba(212,160,23,.5); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .2s;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav */
@media (min-width: 768px) {
  .main-nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 0.15rem;
    animation: none;
  }

  .main-nav a {
    padding: 0.4rem 0.65rem;
    border-bottom: none;
    border-radius: var(--radius);
    font-size: 0.88rem;
    position: relative;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.65rem;
    right: 0.65rem;
    height: 2px;
    background: var(--gold-light);
    transform: scaleX(0);
    transition: transform .2s ease;
    border-radius: 1px;
  }

  .main-nav a:hover::after,
  .main-nav a.active::after { transform: scaleX(1); }

  .main-nav a:hover {
    padding-left: 0.65rem;
    background: rgba(255,255,255,.04);
    color: var(--gold-light);
  }

  .nav-toggle { display: none; }
}

/* ── Nav Admin Button ──────────────────────────────────── */
.nav-admin-btn {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  color: var(--gold-light) !important;
  border: 1.5px solid rgba(245,192,0,.5) !important;
  border-radius: var(--radius) !important;
  padding: 0.3rem 0.85rem !important;
  background: rgba(245,192,0,.06) !important;
  transition: all .2s !important;
  white-space: nowrap;
}
.nav-admin-btn::after { display: none !important; }
.nav-admin-btn:hover {
  background: rgba(245,192,0,.15) !important;
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 12px rgba(245,192,0,.25) !important;
  padding-left: 0.85rem !important;
}

/* ── Join Banner ──────────────────────────────────────── */
.join-banner {
  background: linear-gradient(135deg, #090d14 0%, #0d1a2c 50%, #090d14 100%);
  border: 1px solid rgba(245,192,0,.2);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.join-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,192,0,.12) 0%, transparent 65%);
  pointer-events: none;
}
.join-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .02em;
  margin-bottom: .5rem;
}
.join-banner-title span { color: var(--gold-light); }
.join-banner-sub {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.7rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d1420;
  box-shadow: 0 4px 16px rgba(212,160,23,.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(245,192,0,.55), 0 6px 20px rgba(0,0,0,.3);
  filter: brightness(1.07);
}

.btn-outline {
  background: rgba(212,160,23,.06);
  border: 1.5px solid rgba(212,160,23,.55);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(212,160,23,.14);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(212,160,23,.2);
}

/* ── Section ─────────────────────────────────────────── */
.section { padding: 3.5rem 0; }

.section-eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.section-title span { color: var(--gold-light); }

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* ── Cards ─────────────────────────────────────────── */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,192,0,.55), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.card:hover {
  border-color: rgba(212,160,23,.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 0 6px rgba(212,160,23,.2));
}

.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Stats ──────────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition), border-top-color var(--transition);
}

.stat-item:hover {
  box-shadow: 0 0 24px rgba(212,160,23,.15);
  transform: translateY(-2px);
  border-top-color: var(--gold-light);
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 24px rgba(245,192,0,.28);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 0.4rem;
}

/* ── Tables ──────────────────────────────────────────── */
.table-premium {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table-premium thead th {
  padding: 0.7rem 0.75rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gold);
  background: rgba(0,0,0,.12);
}

.table-premium tbody tr {
  border-bottom: 1px solid rgba(45,55,72,.55);
  transition: background .15s;
}

.table-premium tbody tr:nth-child(even) { background: rgba(255,255,255,.018); }
.table-premium tbody tr:hover td { background: rgba(212,160,23,.05); }
.table-premium td { padding: 0.7rem 0.75rem; }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(245,192,0,.25); }
  50%       { box-shadow: 0 0 28px rgba(245,192,0,.65); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

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

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

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: #060a10;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(212,160,23,.45) 50%, transparent 100%) 1;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.1fr 2fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.85rem; }

.footer-logo-wrap { display: flex; align-items: center; gap: 0.5rem; }

.footer-dragon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(212,160,23,.35));
}

.footer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 260px;
}

.footer-social { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.25rem; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 0.3rem 0.65rem;
  transition: color .15s, border-color .15s, background .15s;
}

.footer-social a:hover {
  color: var(--gold-light);
  border-color: rgba(212,160,23,.4);
  background: rgba(212,160,23,.06);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 479px) { .footer-nav { grid-template-columns: 1fr 1fr; } }

.footer-nav-col { display: flex; flex-direction: column; gap: 0.45rem; }

.footer-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(212,160,23,.2);
}

.footer-nav-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color .15s, padding-left .15s;
}

.footer-nav-col a:hover {
  color: var(--gold-light);
  padding-left: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dark-border);
}

.footer-copy { font-size: 0.76rem; color: rgba(156,163,175,.55); }

.footer-contact-link {
  font-size: 0.76rem;
  color: rgba(156,163,175,.55);
  transition: color .15s;
}

.footer-contact-link:hover { color: var(--gold-light); }

/* ── Footer links (legacy compat) ───────────────────── */
.footer-logo { display: flex; align-items: center; gap: 0.5rem;
               font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
               font-size: 1.1rem; color: var(--gold-light); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: .5rem; }
.footer-links a { color: var(--text-muted); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

/* ── Typography helpers ─────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold-light); }
.text-muted  { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
  margin: 2.5rem 0;
}

/* ── Badge variants ─────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.badge-live {
  background: rgba(248,113,113,.15);
  color: #f87171;
  border: 1px solid rgba(248,113,113,.4);
  animation: goldPulse 2s infinite;
}

.badge-win  { background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.badge-draw { background: rgba(212,160,23,.12); color: var(--gold-light); border: 1px solid rgba(212,160,23,.3); }
.badge-lose { background: rgba(239,68,68,.1);   color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* ── Image hover ─────────────────────────────────────── */
.img-hover { overflow: hidden; border-radius: var(--radius-lg); }
.img-hover img { transition: transform .4s ease; }
.img-hover:hover img { transform: scale(1.05); }

/* ── Form inputs ─────────────────────────────────────── */
.form-input,
.form-textarea,
.form-select {
  background: rgba(13,20,32,.8);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(156,163,175,.5); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

/* ── Positive / Negative ─────────────────────────────── */
.positive { color: #4ade80; }
.negative { color: #f87171; }

/* ── Premium Dragon Logo SVG ────────────────────────────── */
.logo-dragon-svg {
  height: 40px;
  width: auto;
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(245,192,0,.55));
  animation: dragonPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.footer-dragon-svg {
  height: 28px;
  width: auto;
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(245,192,0,.4));
  margin-right: 0.35rem;
}

@keyframes dragonPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(245,192,0,.55)); }
  50% { filter: drop-shadow(0 0 20px rgba(245,192,0,.85)); }
}

/* ── Hero Secundário (páginas internas) ─────────────────── */
.hero[style*="padding:2.5rem"] {
  background: linear-gradient(
    135deg,
    #050810 0%,
    #0a0f1a 20%,
    #0d1420 50%,
    #0a1120 100%
  );
  box-shadow: 
    inset 0 0 100px rgba(245,192,0,.1),
    inset 0 100px 60px rgba(245,192,0,.05);
}


/* ════════════════════════════════════════════════════════════ */
/* BLOCO 4 — HOME PREMIUM (Stats, Resultados, Cards, CTA)      */
/* ════════════════════════════════════════════════════════════ */

/* ── STATS CARDS ──────────────────────────────────────────── */
.stat-item {
  background: linear-gradient(
    135deg,
    var(--dark-card) 0%,
    rgba(212, 160, 23, 0.04) 100%
  );
  border: 1px solid var(--dark-border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease, border-top-color 0.5s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,192,0,.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.stat-item:hover {
  box-shadow: 0 8px 32px rgba(212,160,23,.2);
  transform: translateY(-3px);
  border-top-color: var(--gold-light);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,192,0,.4);
  transition: text-shadow 0.3s;
}

.stat-item:hover .stat-value {
  text-shadow: 0 0 40px rgba(245,192,0,.7);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.6rem;
  transition: color 0.3s;
}

.stat-item:hover .stat-label {
  color: var(--gold-light);
}

/* ── RESULTADOS CARDS ────────────────────────────────────── */
.home-result-card {
  display: grid;
  grid-template-columns: 32px 1fr 50px;
  gap: 0.75rem;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--dark-card) 0%,
    rgba(212, 160, 23, 0.02) 100%
  );
  border: 1px solid var(--dark-border);
  border-radius: 0.75rem;
  padding: 0.85rem 1.25rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.home-result-card:hover {
  border-color: var(--gold);
  box-shadow: 
    0 8px 20px rgba(212,160,23,.15),
    0 0 30px rgba(212,160,23,.1);
  transform: translateY(-2px);
}

.hr-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.25s;
}

.home-result-card:hover .hr-badge {
  transform: scale(1.1);
}

.hr-win {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.hr-draw {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.3);
}

.hr-lose {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.3);
}

/* ── MINI ARTILHARIA ROWS ──────────────────────────────── */
.mini-art-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 0.65rem;
  padding: 0.75rem 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.mini-art-row:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212,160,23,.15);
  transform: translateY(-2px);
}

.mini-art-avatar img {
  border: 1px solid var(--dark-border);
  transition: all 0.25s;
}

.mini-art-row:hover .mini-art-avatar img {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(245,192,0,.3);
}

.mini-art-medal {
  font-size: 1.4rem;
  animation: medalSpin 2s ease-in-out infinite;
}

@keyframes medalSpin {
  0%, 100% { transform: scale(1) rotateY(0deg); }
  50% { transform: scale(1.1) rotateY(10deg); }
}

/* ── HOME NOTÍCIAS ───────────────────────────────────────── */
.home-news-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 0.9rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home-news-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(212,160,23,.15),
    0 0 20px rgba(212,160,23,.1);
}

.home-news-img {
  width: 150px;
  min-width: 150px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #090d14;
  flex-shrink: 0;
  position: relative;
}

.home-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-news-card:hover .home-news-img img {
  transform: scale(1.08);
}

.home-news-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.2) 100%);
}

/* ── JOIN BANNER PREMIUM ───────────────────────────────── */
.join-banner {
  background: linear-gradient(
    135deg,
    #090d14 0%,
    rgba(212, 160, 23, 0.05) 50%,
    #090d14 100%
  );
  border: 1px solid rgba(245,192,0,.25);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(245,192,0,.1);
}

.join-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 50% -100px, rgba(245,192,0,.2) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 50% 150%, rgba(212,160,23,.1) 0%, transparent 50%);
  pointer-events: none;
  animation: bannerGlow 4s ease-in-out infinite;
}

@keyframes bannerGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1.2; }
}

.join-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.join-banner-title span {
  color: var(--gold-light);
  display: inline;
  text-shadow: 0 0 30px rgba(245,192,0,.4);
}

.join-banner-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── PATROCINADORES ────────────────────────────────────── */
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}


.sponsor-logo {
  max-height: 45px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0.95);
  transition: all 0.3s ease;
}

.sponsor-logo--master {
  max-height: 56px;
  max-width: 170px;
  opacity: 0.9;
}

.sponsor-item:hover .sponsor-logo {
  opacity: 1;
  filter: brightness(1.1);
}


/* ════════════════════════════════════════════════════════════ */
/* BLOCO 5 — ADMIN PREMIUM                                      */
/* Dashboard cards · Sidebar icons · Table hover · Mobile UX   */
/* ════════════════════════════════════════════════════════════ */

/* ── Admin Topbar Enhancements ──────────────────────────────── */
.admin-topbar {
  box-shadow: 0 2px 12px rgba(245,192,0,.12);
}

.topbar-brand {
  animation: topbarPulse 4s ease-in-out infinite;
}

.topbar-brand span {
  text-shadow: 0 0 12px rgba(245,192,0,.15);
}

@keyframes topbarPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(245,192,0,.1); }
  50% { text-shadow: 0 0 16px rgba(245,192,0,.25); }
}

/* ── Stat Cards — Visual Hierarchy ──────────────────────────── */
.stat-card {
  background: linear-gradient(135deg, #1f2937 0%, rgba(212,160,23,.08) 100%);
  border-top: 3px solid var(--gold-light);
  border-left: 1px solid rgba(245,192,0,.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top-right, rgba(245,192,0,.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold-light);
  box-shadow: 0 8px 28px rgba(245,192,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-num {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(245,192,0,.3));
  transition: filter 0.3s ease;
}

.stat-card:hover .stat-num {
  filter: drop-shadow(0 0 16px rgba(245,192,0,.5));
}

/* ── Sidebar Navigation — Icon Enhancement ────────────────── */
.sidebar-link {
  position: relative;
  border-radius: var(--radius);
}

.sidebar-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
  opacity: 1;
}

.sidebar-icon {
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 3px rgba(245,192,0,.15));
}

.sidebar-link:hover .sidebar-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 6px rgba(245,192,0,.35));
}

.sidebar-link.active .sidebar-icon {
  filter: drop-shadow(0 0 8px rgba(245,192,0,.5));
}

/* ── Sidebar Section Label — Glow Effect ────────────────────── */
.sidebar-label {
  background: linear-gradient(90deg, transparent 0%, rgba(245,192,0,.08) 50%, transparent 100%);
  padding: 0.5rem 0.75rem 0.25rem;
  border-top: 1px solid rgba(245,192,0,.15);
  border-bottom: 1px solid rgba(245,192,0,.1);
  text-shadow: 0 0 8px rgba(245,192,0,.2);
}

/* ── Table Hover Effects — Shadow Depth ─────────────────────── */
table {
  position: relative;
}

tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
}

tbody tr:hover {
  background: linear-gradient(90deg, rgba(245,192,0,.06) 0%, transparent 100%);
  border-bottom-color: rgba(245,192,0,.25);
  box-shadow: 0 4px 12px rgba(245,192,0,.1);
}

tbody tr:hover td {
  background: transparent;
  color: var(--text);
}

tbody tr:hover td:first-child {
  padding-left: 1rem;
  font-weight: 500;
  color: var(--gold-light);
}

/* ── Table Head — Gradient Background ────────────────────────── */
thead tr {
  background: linear-gradient(90deg, rgba(212,160,23,.08) 0%, transparent 100%);
  border-bottom: 2px solid rgba(245,192,0,.2);
}

thead th {
  color: var(--gold-light);
  text-shadow: 0 0 6px rgba(245,192,0,.15);
  font-weight: 700;
}

/* ── Card Titles — Premium Styling ──────────────────────────── */
.card-title {
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(245,192,0,.25);
}

.card {
  box-shadow: 0 4px 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(245,192,0,.12), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── Buttons Premium ────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.15);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 4px 12px rgba(245,192,0,.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(245,192,0,.4);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 2px solid transparent;
  background: rgba(212,160,23,.05);
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,.15);
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(245,192,0,.15);
}

/* ── Alert Badges — Color Gradient ──────────────────────────── */
.alert {
  border-left: 4px solid;
  background-size: 100% 100%;
  transition: all 0.3s ease;
}

.alert-success {
  border-left-color: #4ade80;
  background: linear-gradient(90deg, rgba(74,222,128,.1) 0%, transparent 100%);
}

.alert-error {
  border-left-color: #f87171;
  background: linear-gradient(90deg, rgba(248,113,113,.1) 0%, transparent 100%);
}

.alert-info {
  border-left-color: var(--gold-light);
  background: linear-gradient(90deg, rgba(245,192,0,.1) 0%, transparent 100%);
}

.alert:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

/* ── Form Elements — Floating Labels Style ──────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea,
select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(245,192,0,.15);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.35);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: rgba(255,255,255,.06);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245,192,0,.15);
}

/* ── Mobile Responsivity — Admin Panel ───────────────────────── */
@media (max-width: 640px) {
  .admin-main {
    padding: 1.5rem 1rem;
  }

  .stat-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-lbl {
    font-size: 0.7rem;
  }

  .card {
    padding: 1rem;
  }

  .page-title {
    font-size: 1.4rem;
  }

  .page-sub {
    font-size: 0.8rem;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 0.5rem 0.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .mobile-nav a {
    font-size: 0.6rem;
  }

  .mobile-nav-icon {
    font-size: 1rem;
  }
}

/* ── Mobile Responsivity — Large Cards ──────────────────────── */
@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .admin-main {
    padding: 1rem 0.75rem;
    padding-bottom: 5rem;
  }

  .page-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .card {
    margin-bottom: 1rem;
    padding: 0.875rem;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .btn {
    width: 100%;
    padding: 0.6rem;
  }
}

/* ── Tablet Responsivity ────────────────────────────────────── */
@media (min-width: 641px) and (max-width: 1023px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-sidebar {
    width: 180px;
  }

  .admin-main {
    padding: 1.75rem 1.5rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .sidebar-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }

  .sidebar-icon {
    font-size: 0.9rem;
    width: 18px;
  }
}

/* ── Loading State Animation ────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.loading {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0%,
    rgba(255,255,255,.15) 50%,
    rgba(255,255,255,.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* ── Admin Sidebar On Tablet — Toggle Friendly ──────────────── */
@media (max-width: 767px) {
  .admin-sidebar {
    position: fixed;
    left: -220px;
    top: 56px;
    width: 220px;
    height: calc(100vh - 56px);
    z-index: 40;
    background: #111827;
    border-right: 1px solid var(--border);
    transition: left 0.3s ease;
    box-shadow: 2px 0 12px rgba(0,0,0,.5);
  }

  .admin-sidebar.open {
    left: 0;
  }
}

/* ════════════════════════════════════════════════════════════ */
/* BLOCO 6 — UX PREMIUM                                         */
/* Toast notifications · Loading skeletons · Empty states      */
/* ════════════════════════════════════════════════════════════ */

/* ── Toast Container ─────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

@media (max-width: 640px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

/* ── Toast Notification ─────────────────────────────────────── */
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 1px rgba(255,255,255,.2);
  animation: toastSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 380px;
}

.toast.exit {
  animation: toastSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(400px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(400px) scale(0.95);
  }
}

/* ── Toast Types ─────────────────────────────────────────────── */
.toast-success {
  background: linear-gradient(135deg, rgba(34,197,94,.15) 0%, rgba(34,197,94,.05) 100%);
  border: 1px solid rgba(74,222,128,.35);
  color: #86efac;
}

.toast-error {
  background: linear-gradient(135deg, rgba(239,68,68,.15) 0%, rgba(239,68,68,.05) 100%);
  border: 1px solid rgba(248,113,113,.35);
  color: #fca5a5;
}

.toast-info {
  background: linear-gradient(135deg, rgba(212,160,23,.15) 0%, rgba(212,160,23,.05) 100%);
  border: 1px solid rgba(245,192,0,.35);
  color: var(--gold-light);
}

.toast-warning {
  background: linear-gradient(135deg, rgba(245,158,11,.15) 0%, rgba(245,158,11,.05) 100%);
  border: 1px solid rgba(251,146,60,.35);
  color: #fed7aa;
}

/* ── Toast Icon ──────────────────────────────────────────────── */
.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: toastIconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toastIconBounce {
  0% { transform: scale(0) rotate(-45deg); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1) rotate(0); }
}

/* ── Toast Close Button ──────────────────────────────────────── */
.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  opacity: 1;
}

/* ── Loading Skeleton ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.05) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Skeleton Variants ───────────────────────────────────────── */
.skeleton-text {
  height: 0.9rem;
  border-radius: 0.25rem;
  margin-bottom: 0.6rem;
}

.skeleton-text:last-child {
  margin-bottom: 0;
}

.skeleton-text.short {
  width: 70%;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
}

.skeleton-card {
  height: 150px;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

.skeleton-table-row {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.skeleton-table-row > div {
  flex: 1;
  height: 1rem;
  border-radius: 0.25rem;
}

/* ── Loading Spinner ─────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(245,192,0,.2);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spinnerRotate 0.8s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

.spinner-sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

/* ── Empty State ─────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  animation: emptyStateFloat 3s ease-in-out infinite;
}

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

.empty-state-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.empty-state-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 360px;
}

.empty-state-action {
  display: flex;
  gap: 0.75rem;
}

/* ── Page Transition ─────────────────────────────────────────── */
.page-transition-enter {
  animation: pageTransitionEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.page-transition-exit {
  animation: pageTransitionExit 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageTransitionEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageTransitionExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ── Modal Overlay ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: modalOverlayFadeIn 0.3s ease-out;
}

@keyframes modalOverlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: modalContentSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalContentSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-body {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ── Loading Bar (Progress) ──────────────────────────────────── */
.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  width: 0%;
  animation: progressBarFill 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes progressBarFill {
  0% { width: 0%; }
  90% { width: 90%; }
  100% { width: 100%; }
}

/* ── Pulse Loading State ──────────────────────────────────────── */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── Fade Transitions ────────────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.4s ease-out;
}

.fade-out {
  animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ── Slide Transitions ───────────────────────────────────────── */
.slide-in-left {
  animation: slideInLeft 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-right {
  animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Bounce Transitions ──────────────────────────────────────── */
.bounce-in {
  animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* ── Mobile Toast Responsivity ───────────────────────────────── */
@media (max-width: 640px) {
  .toast {
    max-width: 100%;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .toast-icon {
    font-size: 1rem;
  }

  .empty-state {
    padding: 3rem 1rem;
  }

  .empty-state-icon {
    font-size: 3rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

/* ── Accessibility — Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .toast,
  .toast.exit,
  .spinner,
  .empty-state-icon,
  .page-transition-enter,
  .page-transition-exit,
  .modal-overlay,
  .modal-content,
  .pulse,
  .fade-in,
  .fade-out,
  .slide-in-left,
  .slide-in-right,
  .bounce-in {
    animation: none;
  }
}


/* ════════════════════════════════════════════════════════════ */
/* BLOCO 7 — RESPONSIVITY FINAL                                 */
/* Admin mobile · Tablet sidebar · Touch interactions · Polish  */
/* ════════════════════════════════════════════════════════════ */

/* ── Touch Device Detection & Interactions ────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover states on touch devices, use active instead */
  .btn:hover,
  .sidebar-link:hover,
  .card:hover,
  .stat-card:hover,
  tbody tr:hover,
  .sponsor-item:hover {
    /* Hover styles will be replaced by active states */
  }

  /* Touch-friendly button sizing */
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1.5rem;
  }

  /* Touch-friendly link spacing */
  .sidebar-link {
    padding: 0.75rem 1rem;
  }

  /* Active state for touch */
  .btn:active,
  .sidebar-link:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* ── Ultra-Mobile (< 360px) ─────────────────────────────────── */
@media (max-width: 359px) {
  html { font-size: 14px; }
  
  body { font-size: 0.875rem; }
  
  .site-header { height: 48px; }
  
  .logo-dragon-svg { height: 32px; }
  
  .logo-text { display: none; }
  
  .main-nav { gap: 0.25rem; }
  
  .main-nav a { font-size: 0.75rem; padding: 0.4rem 0.5rem; }
  
  .nav-admin-btn { display: none; }
  
  .hero-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
  
  .hero-subtitle { font-size: 0.9rem; }
  
  .hero-buttons { gap: 0.5rem; }
  
  .hero-buttons .btn { min-width: 120px; padding: 0.5rem 0.85rem; font-size: 0.8rem; }
  
  .container { padding: 1rem 0.75rem; }
}

/* ── Mobile Landscape (360px - 640px) ────────────────────────── */
@media (max-width: 640px) {
  /* Ensure proper mobile nav spacing */
  body { padding-bottom: 5.5rem; }
  
  .site-main { min-height: calc(100vh - 56px - 5.5rem); }
  
  /* Hero optimization */
  .hero { padding: 2rem 0 1.5rem; min-height: 360px; }
  
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  
  .hero-title { font-size: clamp(1.8rem, 5vw, 3rem); letter-spacing: 0.01em; }
  
  .hero-subtitle { max-width: 100%; font-size: 0.95rem; }
  
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  
  .hero-buttons .btn { width: 100%; max-width: 280px; }
  
  /* Home sections */
  .home-section-title { font-size: 1.3rem; margin-bottom: 1.25rem; }
  
  .home-grid { grid-template-columns: 1fr; gap: 1rem; }
  
  .home-result-card { padding: 1rem; }
  
  .home-result-card-score { font-size: 1.2rem; }
  
  .home-news-card { flex-direction: column; }
  
  .home-news-img { width: 100%; aspect-ratio: 16 / 9; max-height: 200px; }
  
  /* Footer mobile */
  .site-footer { padding: 2rem 1rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 1rem; }
  
  .footer-nav-col { font-size: 0.9rem; }
  
  .footer-dragon-svg { height: 24px; }
  
  /* Admin layout */
  .admin-main { padding: 1.5rem 1rem; min-height: calc(100vh - 56px); }
  
  .page-title { font-size: 1.3rem; }
  
  .page-sub { font-size: 0.8rem; }
  
  .stat-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  
  .stat-card { padding: 0.9rem 0.75rem; }
  
  .stat-num { font-size: 2rem; }
  
  .stat-lbl { font-size: 0.65rem; }
  
  .card { padding: 1rem; margin-bottom: 1rem; }
  
  .card-title { font-size: 0.95rem; margin-bottom: 0.8rem; }
  
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  
  table { font-size: 0.8rem; }
  
  th, td { padding: 0.5rem; }
  
  .btn { padding: 0.5rem 1rem; font-size: 0.85rem; }
  
  .btn-primary { min-width: 100px; }
  
  .btn-ghost { min-width: 80px; }
  
  /* Forms mobile */
  input,
  textarea,
  select {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.75rem;
  }
  
  /* Mobile nav refinement */
  .mobile-nav { height: 5rem; }
  
  .mobile-nav a { padding: 0.4rem 0.5rem; font-size: 0.6rem; }
  
  .mobile-nav-icon { font-size: 1.1rem; }
}

/* ── Tablet Portrait (641px - 1023px) ────────────────────────── */
@media (min-width: 641px) and (max-width: 1023px) {
  /* Tablet-optimized layout */
  .admin-sidebar {
    width: 200px;
    transition: transform 0.3s ease;
  }

  .admin-sidebar.collapsed {
    transform: translateX(-200px);
  }

  .admin-main {
    flex: 1;
    padding: 1.75rem 1.5rem;
  }

  .page-title { font-size: 1.5rem; }

  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .home-grid { grid-template-columns: repeat(2, 1fr); }

  .home-result-card-score { font-size: 1.5rem; }

  .hero-buttons { gap: 0.75rem; }

  .hero-buttons .btn { min-width: 140px; }

  .sidebar-link {
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
  }

  .sidebar-icon {
    font-size: 0.9rem;
    width: 18px;
  }

  .sidebar-label { font-size: 0.7rem; }

  table { font-size: 0.875rem; }

  th, td { padding: 0.65rem; }

  .card { padding: 1.25rem; }

  .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
}

/* ── Small Tablets & Hybrid (768px - 1023px) ────────────────── */
@media (min-width: 768px) {
  /* Remove mobile nav on tablets+ */
  .mobile-nav { display: none !important; }

  .admin-main { padding-bottom: 2rem !important; }

  /* Smooth transitions for desktop experience */
  * {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 0.15s;
  }

  /* Remove transition for animations */
  [class*="animation"],
  [class*="keyframe"],
  .spinner,
  .loading { transition: none; }

  /* Hover states enabled */
  .btn:hover,
  .sidebar-link:hover,
  .card:hover,
  .stat-card:hover,
  tbody tr:hover {
    transition: all 0.2s ease;
  }
}

/* ── Desktop (1024px+) ──────────────────────────────────────── */
@media (min-width: 1024px) {
  .admin-sidebar { width: 220px; }

  .admin-main { max-width: 1200px; padding: 2rem 2.5rem; }

  .page-title { font-size: 1.8rem; }

  .stat-grid { grid-template-columns: repeat(4, 1fr); }

  .home-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-buttons { gap: 1rem; }

  .hero-buttons .btn { min-width: 180px; }

  table { font-size: 0.9rem; }

  th, td { padding: 0.75rem; }

  .card { padding: 1.5rem; }

  .btn { padding: 0.7rem 1.5rem; font-size: 0.95rem; }

  /* Desktop hover enhancements */
  .card {
    box-shadow: 0 4px 16px rgba(0,0,0,.3);
  }

  .card:hover {
    box-shadow: 0 12px 32px rgba(245,192,0,.15);
    transform: translateY(-2px);
  }

  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(245,192,0,.2);
  }
}

/* ── Large Desktop (1440px+) ────────────────────────────────── */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }

  .admin-main { max-width: 1400px; }

  .home-grid { grid-template-columns: repeat(4, 1fr); }

  .hero { min-height: 580px; padding: 4rem 0 3rem; }

  .hero-title { font-size: clamp(2rem, 7vw, 4.5rem); }

  .btn { padding: 0.85rem 2rem; }

  /* More breathing room */
  .card { padding: 2rem; }

  table th, table td { padding: 1rem; }
}

/* ── Ultra-High Resolution (2560px+) ────────────────────────── */
@media (min-width: 2560px) {
  html { font-size: 18px; }

  .hero { min-height: 700px; }

  .hero-title { font-size: clamp(3rem, 8vw, 5rem); }

  .home-grid { grid-template-columns: repeat(5, 1fr); }

  .container { max-width: 1600px; margin: 0 auto; }
}

/* ── Print Styles ────────────────────────────────────────────── */
@media print {
  .mobile-nav,
  .site-header,
  .site-footer,
  .admin-topbar,
  .admin-sidebar,
  .btn,
  .nav-toggle {
    display: none !important;
  }

  body { background: white; color: black; }

  .admin-main { padding: 0; max-width: 100%; }

  .card { page-break-inside: avoid; }

  a { color: #0066cc; text-decoration: underline; }
}

/* ── Orientation Changes ────────────────────────────────────── */
@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 280px; padding: 1.5rem 0; }

  .hero-title { font-size: clamp(1.5rem, 4vw, 2.5rem); }

  .hero-buttons { flex-direction: row; gap: 0.5rem; }

  .site-footer { padding: 1.5rem; }
}

/* ── Reduced Motion Responsivity ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sidebar-link {
    transform: none !important;
  }

  .btn:active {
    transform: none !important;
  }

  .stat-card:hover,
  .card:hover {
    transform: none !important;
  }
}

/* ── Dark Mode Enhancement (if supported) ───────────────────── */
@media (prefers-color-scheme: dark) {
  /* Already dark by default, but can enhance */
  .skeleton {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,.03) 0%,
      rgba(255,255,255,.08) 50%,
      rgba(255,255,255,.03) 100%
    );
  }
}

/* ── Final Polish — Micro-interactions ────────────────────────── */
.sidebar-link,
.btn,
.card,
.stat-card,
tbody tr {
  position: relative;
  overflow: hidden;
}

/* Ripple effect on active/click */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:active::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* ── Smooth Scrolling ────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Scroll margin for anchor links */
h1, h2, h3, h4, h5, h6,
[id] {
  scroll-margin-top: 80px;
}

/* ── Improved Focus States for Accessibility ────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ── Selection Styling ──────────────────────────────────────── */
::selection {
  background: rgba(245,192,0,.25);
  color: var(--text);
}

::-moz-selection {
  background: rgba(245,192,0,.25);
  color: var(--text);
}



/* ════════════════════════════════════════════════════════════ */
/* PREMIUM GLOW — Ambient Golden Glow para Cards Principais      */
/* ════════════════════════════════════════════════════════════ */

/* Classificação & Features (Cards) */
.card,
.mini-cls-card {
  position: relative;
}

.card::after,
.mini-cls-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(245,192,0,.12) 0%, transparent 70%);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

/* Resultados */
.home-result-card {
  position: relative;
}

.home-result-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(ellipse 500px 300px at 50% 50%, rgba(245,192,0,.08) 0%, transparent 70%);
  border-radius: 0.75rem;
  z-index: -1;
  pointer-events: none;
}

/* Artilheiros */
.mini-art-row {
  position: relative;
}

.mini-art-row::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: radial-gradient(ellipse 400px 200px at 50% 50%, rgba(245,192,0,.08) 0%, transparent 70%);
  border-radius: 0.65rem;
  z-index: -1;
  pointer-events: none;
}

/* Notícias */
.home-news-card {
  position: relative;
}

.home-news-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(ellipse 550px 350px at 50% 50%, rgba(245,192,0,.1) 0%, transparent 70%);
  border-radius: 0.9rem;
  z-index: -1;
  pointer-events: none;
}


/* ── HERO FIX - Override final ────────────────────────────── */
.hero-visual {
  width: auto !important;
  max-width: 360px !important;
  height: auto !important;
}

.hero-logo {
  width: auto !important;
  max-width: 360px !important;
  height: auto !important;
  display: inline-block !important;
}

img.hero-logo {
  max-width: 360px !important;
  width: auto !important;
}
