/* =====================================================================
   TELA: ESPORTES COLETIVOS (#lazer-esportes)
   Design com ícones em aquarela sobre fundo fosco (degradê da Home).
   >>> TAMANHO DOS ÍCONES: ajuste minmax() em "#lazer-esportes .timeline"
       e o padding em ".sport-card".
   ===================================================================== */

/* Fundo = mesmo degradê da Home, porém mais fosco (véu branco por cima) */
#lazer-esportes {
  background:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    linear-gradient(115deg,
      #ffb400 0%,
      #ffc61f 22%,
      #ffe9a8 40%,
      #ffffff 50%,
      #cfe4f2 60%,
      #1e6aa8 78%,
      #0b2f57 100%);
}

/* A topbar mantém o azul, mas translúcida sobre o fundo */
#lazer-esportes .topbar {
  background: rgba(0, 46, 95, 0.92);
}

/* Card de conteúdo translúcido para o fundo aparecer suavemente */
#lazer-esportes .content-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 26px 20px 32px;
}

.sports-intro {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.sports-cat-title {
  position: relative;
  margin: 24px 0 14px;
  padding-left: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.sports-cat-title::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  border-radius: 4px;
  background: var(--yellow);
}

.sports-cat-title:first-of-type {
  margin-top: 4px;
}

/* Grid de esportes: reaproveita a lista <ol.timeline.leisure-timeline>
   APENAS nesta tela. Reduza minmax() para ícones ainda menores. */
#lazer-esportes .timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#lazer-esportes .timeline::before {
  display: none;
}

.sport-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 41, 84, 0.12);
  aspect-ratio: 1 / 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 41, 84, 0.24);
}

.sport-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sports-info-box {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 46, 95, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.sports-info-box h5 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.sports-info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* No fundo fosco, a caixa de aviso fica um pouco mais sólida */
#lazer-esportes .leisure-disclaimer {
  background: rgba(247, 200, 23, 0.18);
  border-color: rgba(0, 46, 95, 0.14);
}
