/* ===== CONFIGURAÇÕES GERAIS ===== */
:root {
  --cor-principal: #ffffff; /* 🌈 Cor principal (ex: fundo do header) */
  --cor-fundo: #ffffff;     /* fundo branco */
  --cor-texto: #ffffff;     /* texto preto */
  --cor-card: rgba(255, 255, 255, 0.9);
  --cor-titulo: #000000;
}

body {
    font-family: "Trebuchet MS", Tahoma, sans-serif;
}






header {
  background-color: #ffffff; /* 🔹 cor do fundo do cabeçalho */
  padding: 08px 0; /* 🔹 ajuste a altura do cabeçalho aqui */
  width: 100%;
  position: relative;
  z-index: 10;




}
/* ===== LINKS DO MENU ===== */
.sidebar a {
  color: #000000;                /* cor do texto */
  font-size: 18px;            /* tamanho da fonte */
  font-weight: 500;           /* peso da fonte */
  text-decoration: none;      /* remove sublinhado */
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.sidebar a:hover {
  background-color: #000000;  /* cor ao passar o mouse */
  color: #fff;                /* cor do texto ao passar o mouse */
}

/* ===== LOGO ===== */
header img {
  width: 90px;                /* tamanho da logo */
  height: auto;
  margin-left: 20px;
  vertical-align: middle;
  line-height: normal !important;
  box-sizing: border-box !important;
}

/* ===== CABEÇALHO ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;     /* cor de fundo do header */
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

/* ===== OPCIONAL: ANIMAÇÃO PARA ESCONDER OU RECOLHER ===== */
/* Você pode controlar depois com JS ou checkbox, se quiser */
.sidebar.hidden {
  transform: translateX(-100%);
  opacity: 0;
}


/* ====== TAMANHO DA LOGO ====== */
header img {
  width: 100px; /* 🔹 AQUI você controla o tamanho da logo */
  height: auto; /* mantém as proporções */
  transition: transform 0.3s ease;
  align-items: center;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: var(--fonte-principal);
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    var(--imagem-fundo) no-repeat center center fixed;
  background-size: cover;
  color: var(--cor-texto);
  min-height: 100vh;
}

/* ===== MENU SUPERIOR ===== */
header {
  background-color: var(--cor-principal);
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.8;
}

.busca {
  display: flex;
  align-items: center;
  gap: 8px;
}

.busca input {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.faixa {
  background-color: #a9a9a9;      /* Cor de fundo */
  border-radius: 10px;            /* Cantos arredondados */
  padding: 40px 0;                /* Espaçamento interno */
  text-align: center;             /* Centraliza o texto */
  margin: 20px auto;              /* Centraliza a faixa na página */
  width: 90%;                     /* Largura padrão */
  max-width: 1000px;              /* Limite máximo para não esticar demais */
  min-height: 100px;              /* Altura mínima para manter proporção */
  display: flex;                  /* Centralização vertical */
  flex-direction: column;         
  justify-content: center;        
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* Sombra leve */
}

/* Título */
.faixa h2 {
  font-size: 2.2em;
  margin: 0;
  color: #000;
  font-weight: bold;
}

/* Subtítulo */
.faixa p {
  margin: 10px 0 0;
  font-size: 1.1em;
  color: #000;
}

/* 🪄 Responsividade */
@media (max-width: 768px) {
  .faixa {
    width: 95%;
    padding: 30px 0;
  }

  .faixa h2 {
    font-size: 1.6em;
  }

  .faixa p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .faixa {
    width: 100%;
    padding: 25px 0;
  }

  .faixa h2 {
    font-size: 1.4em;
  }

  .faixa p {
    font-size: 0.9em;
  }
}

/* ===== SEÇÕES DE PRODUTOS ===== */
section {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 40px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 08px;
}

section h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(BRANCO);
}

/* ===== GALERIA SCROLL ===== */
.galeria-container {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.galeria {
  display: flex;
  gap: 10px;
  padding-bottom: 08px;
}

.card {
  min-width: 220px;
  background: var(--cor-card);
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease;
  color: #000;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.card h3 {
  font-size: 1rem;
  margin-top: 10px;
  color: #000;
}

/* ===== SETAS ===== */
.seta {
  position: absolute;
  top: 40%;
  background: var(--cor-principal);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.seta:hover {
  opacity: 1;
  transform: scale(1.1);
}

.seta.esquerda {
  left: 0;
}

.seta.direita {
  right: 0;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  nav { justify-content: center; }
  .busca { width: 100%; justify-content: center; margin-top: 10px; }
}

/* ===== SEÇÃO TERCEIRÃO ===== */
.terceirao {
  display: flex;
  flex-wrap: wrap;          /* quebra linha quando precisa */
  justify-content: center;  /* centraliza os cards */
  gap: 20px;                /* espaço entre eles */
  padding: 20px;
}

.terceirao .card {
  width: 220px;             /* tamanho fixo pra cada camiseta */
  background: var(--cor-card, #f5f5f5);
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  color: #000;
}

.terceirao .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== SEÇÃO KITS ===== */
.kits {
  display: flex;
  flex-wrap: wrap;          /* quebra linha quando precisa */
  justify-content: center;  /* centraliza os cards */
  gap: 20px;                /* espaço entre eles */
  padding: 20px;
}

.kits .card {
  width: 220px;             /* tamanho fixo pra cada kit */
  background: var(--cor-card, #f5f5f5);
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  color: #000;
}

.kits .card img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Efeito hover opcional */
.kits .card:hover {
  transform: scale(1.05);
}

/* ======== ESTILO GERAL ======== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
}



header img {
  height: 120px;
}

.sidebar {
  margin-top: 10px;
}

.sidebar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.sidebar a:hover {
  text-decoration: underline;
}



/* ======== RODAPÉ ======== */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
body, header, header *:not(button) {
  color: #000 !important;
}

 /* 🔧 Corrige bug do número antes dos títulos */
.card h3::before,
.card h3::after {
  content: none !important;
  counter-increment: none !important;
}

/* 🔒 Impede interferência do Google Tradutor */
body .skiptranslate,
.goog-text-highlight,
#goog-gt-tt,
.goog-te-banner-frame,
.goog-te-gadget-icon {
  display: none !important;
}

html {
  translate: none !important;
}
.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination a {
  display: inline-block;
  color: #000;
  padding: 8px 15px;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.pagination a:hover {
  background-color: #ddd;
}

.pagination a.active {
  background-color: #000;
  color: #fff;
}

/* === Mostrar/esconder seções extras === */
.hidden-sections {
  display: none;
  transition: all 0.4s ease;
}

.hidden-sections.show {
  display: block;
}

.ver-mais-container {
  text-align: center;
  margin: 30px 0;
}

#btn-toggle {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

#btn-toggle:hover {
  background-color: #333;
}

/* --- HEADER PADRÃO --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 15px 40px;       /* controla altura e espaçamento */
  box-sizing: border-box;
  min-height: 100px;        /* garante que tenha a mesma altura em todas as páginas */
}

/* --- TEXTO DA LOJA --- */
header .logo {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

/* --- IMAGEM (caso tenha) --- */
header img {
  height: 90px; /* mantém sempre no mesmo tamanho */
  width: auto;
  margin: 0 20px;
}

/* --- MENU PADRÃO --- */
header nav {
  display: flex;
  align-items: center;
  gap: 25px; /* espaço entre os links */
}

header nav a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: #444;
}

/* --- FORÇA O PADRÃO MESMO SE OUTRO CSS TENTAR MUDAR --- */
header,
header * {
  line-height: normal !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
/* ===== CONFIGURAÇÕES GERAIS ===== */
:root {
  --cor-principal: #ffffff;
  --cor-fundo: #ffffff;
  --cor-texto: #000000;
  --cor-card: rgba(255, 255, 255, 0.9);
  --cor-titulo: #000000;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #000;
  min-height: 100vh;
}

/* ===== CABEÇALHO ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff; /* fundo branco */
  padding: 15px 40px;
  box-sizing: border-box;
  min-height: 100px;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

/* LOGO E TEXTO */
header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000; /* texto preto */
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
}

/* IMAGEM DA LOGO */
header img {
  height: 90px;
  width: auto;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

/* MENU */
header nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

header nav a {
  color: #000; /* texto preto */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: #555; /* leve escurecido no hover */
}

/* ===== FAIXA CENTRAL ===== */
.faixa {
  background-color: #a9a9a9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  color: #fff;
}

/* ===== SEÇÕES DE PRODUTOS ===== */
section {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 40px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 8px;
}

/* ===== GALERIA SCROLL ===== */
.galeria-container {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.galeria {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.card {
  min-width: 220px;
  background: var(--cor-card);
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(145, 145, 145, 0.3);
  transition: transform 0.2s ease;
  color: #000;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.card h3 {
  font-size: 1rem;
  margin-top: 10px;
  color: #000;
}

/* ===== SETAS ===== */
.seta {
  position: absolute;
  top: 40%;
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.seta:hover {
  opacity: 1;
  transform: scale(1.1);
}

.seta.esquerda {
  left: 0;
}

.seta.direita {
  right: 0;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== SEÇÃO TERCEIRÃO ===== */
.terceirao, .kits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.terceirao .card, .kits .card {
  width: 220px;
  background: var(--cor-card);
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  color: #000;
}

.terceirao .card img, .kits .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.kits .card img {
  width: 50%;
}

/* Efeito hover */
.kits .card:hover, .terceirao .card:hover {
  transform: scale(1.05);
}

/* ===== RODAPÉ ===== */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ===== PAGINAÇÃO ===== */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination a {
  display: inline-block;
  color: #000;
  padding: 8px 15px;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.pagination a:hover {
  background-color: #ddd;
}

.pagination a.active {
  background-color: #000;
  color: #fff;
}

/* ===== VER MAIS ===== */
.hidden-sections {
  display: none;
  transition: all 0.4s ease;
}

.hidden-sections.show {
  display: block;
}

.ver-mais-container {
  text-align: center;
  margin: 30px 0;
}

#btn-toggle {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

#btn-toggle:hover {
  background-color: #333;
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-religiosa {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-religiosa {
  width: 240px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-religiosa img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-natal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-natal {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-natal img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}


/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-ano-novo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-ano-novo {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-ano-novo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}


/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-terceirão {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-terceirão {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-terceirão img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-interclasse {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-interclasse {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-interclasse img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-volei {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-volei {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-volei img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-nono-ano {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-nono-ano {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-nono-ano img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}



/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-mil-grau {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-mil-grau {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-mil-grau img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-pascoa {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-pascoa {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-pascoa img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-carnaval {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-carnaval {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-carnaval img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}


/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-profissao {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-profissao {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-profissao img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}

/* --- GALERIA RELIGIOSA (não afeta a página inicial) --- */
.galeria-esportes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* --- CARD RELIGIOSA (independente dos outros) --- */
.card-esportes {
  width: 240px;
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- IMAGENS PADRONIZADAS SOMENTE NESSA PÁGINA --- */
.card-esportes img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  
}





