/* ===== RESET / GLOBAL ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0f172a;
  color: #ffffff;

  /* LOGO COMO MARCA DE ÁGUA */
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 650px;
  background-attachment: fixed;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
  color: #facc15;
  font-size: 32px;
}

/* ===== HEADER ===== */
.site-header {
  background: #020617;
  border-bottom: 3px solid #facc15;
  padding: 20px;
}

.header-flex {
  display: flex;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  height: 50px;
}

.logo-area h1 {
  margin: 0;
  color: #facc15;
  font-size: 26px;
}

/* MENU DESKTOP */
.site-header nav {
  margin-left: auto;
  display: flex;
}

.site-header nav a {
  color: #ffffff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.site-header nav a:hover {
  color: #facc15;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #facc15;
  cursor: pointer;
  margin-left: auto;
}

/* ===== CARDS ===== */
.card {
  background-color: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

/* ===== ATLETAS ===== */
.atletas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.atleta-card {
  background: #020617;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #1e293b;
}

.atleta-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #020617;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #facc15;
  font-size: 13px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .header-flex {
    flex-direction: column;
    gap: 15px;
  }

  /* MOSTRA ☰ */
  .menu-toggle {
    display: block;
  }

  /* ESCONDE MENU */
  .site-header nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #020617;
  }

  /* MENU ABERTO */
  .site-header nav.show {
    display: flex;
  }

  .site-header nav a {
    padding: 12px;
    border-bottom: 1px solid #1e293b;
    text-align: center;
    font-size: 16px;
  }

  .page-title {
    font-size: 24px;
  }
}
/* ===== HERO HOME ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 42px;
  color: #facc15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 10px;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.cta-btn:hover {
  background-color: #1d4ed8;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}
/* ===== HOME - EQUIPAS ===== */
.home-equipas {
  padding: 60px 20px;
  text-align: center;
}

.home-equipas h3 {
  font-size: 28px;
  color: #facc15;
  margin-bottom: 40px;
}

.equipas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.equipa-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 25px;
}

.equipa-card h4 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.equipa-card p {
  margin-top: 8px;
  font-size: 14px;
  color: #facc15;
}

.home-link {
  margin-top: 30px;
}

.home-link a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
}

.home-link a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .equipas-grid {
    grid-template-columns: 1fr;
  }

  .home-equipas h3 {
    font-size: 24px;
  }
}
/* SUAVIZAR LOGO DE FUNDO */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;          /* logo mais pequeno */
  height: 600px;
  background: url("logo.png") no-repeat center center;
  background-size: contain;
  opacity: 0.035;        /* 👈 MUITO mais fantasma */
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  filter: blur(1px);     /* 👈 suaviza ainda mais */
}
}
/* ===== PATROCINADORES ===== */
.sponsor-level {
  margin-bottom: 60px;
  text-align: center;
}

.sponsor-level h3 {
  font-size: 26px;
  color: #facc15;
  margin-bottom: 30px;
}

.sponsor-grid {
  display: grid;
  gap: 25px;
  justify-content: center;
}

.sponsor-grid.large {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sponsor-grid.medium {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.sponsor-card {
  background: rgba(2, 6, 23, 0.85);
  border: 2px dashed #334155;
  border-radius: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #9ca3af;
}

/* DIFERENCIAR NÍVEIS */
.gold .sponsor-card {
  border-color: #facc15;
}

.silver .sponsor-card {
  border-color: #9ca3af;
}

.bronze .sponsor-card {
  border-color: #cd7f32;
}
body {
  background-color: #1e293b; /* mantém a cor atual (escura mas elegante) */
  position: relative;
  min-height: 100vh;
}

/* Marca de água com o logo */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15; /* MUITO SUAVE */
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* Em mobile, logo mais pequeno */
@media (max-width: 768px) {
  body::before {
    width: 320px;
    height: 320px;
    opacity: 0.04;
  }
}
/* ===== CARDS MODERNOS ===== */

.card,
.sponsor-card,
.team-card,
.player-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  transition: all 0.3s ease;
}

/* Hover elegante */
.card:hover,
.sponsor-card:hover,
.team-card:hover,
.player-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Títulos mais leves */
.card h3,
.team-card h3,
.player-card h3 {
  color: #facc15;
  margin-bottom: 10px;
}
/* ===== NÍVEIS DE PATROCÍNIO PREMIUM ===== */

/* GOLD */
.gold h3 {
  color: #facc15;
  font-size: 30px;
}

.gold .sponsor-card {
  height: 180px;
  border: 2px solid #facc15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.3);
}

/* SILVER */
.silver h3 {
  color: #d1d5db;
}

.silver .sponsor-card {
  height: 150px;
  border: 2px solid #cbd5e1;
}

/* BRONZE */
.bronze h3 {
  color: #cd7f32;
}

.bronze .sponsor-card {
  height: 130px;
  border: 2px solid #cd7f32;
}

/* MEDIA */
.media h3 {
  color: #38bdf8;
}

/* INSTITUCIONAL */
.institucional h3 {
  color: #22c55e;
}
/* ===== GOLD SPONSOR NA HOME ===== */

.home-gold {
  margin-top: 80px;
  text-align: center;
}

.home-gold h2 {
  font-size: 32px;
  color: #facc15;
  margin-bottom: 40px;
}

.gold-highlight {
  background: linear-gradient(135deg, rgba(250,204,21,0.15), rgba(250,204,21,0.05));
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #facc15;
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.25);
  display: inline-block;
  transition: 0.3s ease;
}

.gold-highlight img {
  max-width: 300px;
  height: auto;
}

.gold-highlight:hover {
  transform: scale(1.05);
}
.equipa-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
