body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  margin: 16px;
  background: #fff;
  color: #111;
}

/* ==============================
   HOME HERO
   ============================== */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2rem; /* ~32px */
  font-weight: 600;
  margin: 10px 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem; /* ~24px */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.3rem; /* ~20px */
  }
}

.hero-sub {
  font-size: 16px;
  color: #555;
}

/* ==============================
   SEÇÃO DE COMPETIÇÕES
   ============================== */
.competitions {
  margin-top: 40px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* grid centralizado com largura máxima */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.meta {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  color: #111;
}

.sub {
  font-size: 13px;
  color: #666;
  margin: 2px 0 0;
}

.badge {
  font-size: 11px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  margin: 40px 0 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ==============================
   Assinatura SILE
   ============================== */
.site_link {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
    z-index: 9999; /* garante que fique sempre por cima */
}

.site_link img {
    vertical-align: middle;
}