@media (max-width: 600px) {
.row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;            /* espaçamento entre escudos */
  flex-wrap: wrap;      /* mantém responsivo em telas menores */
}
  .container_club{
    margin: 1rem; 
  }
  .club_image{
    height: 15vh ;
    width: auto;
  }
  .imageclass{
    width: 100% !important; 
  }
}

/* Estilos para o header */
.site-header {
  width: 100%;
  background: linear-gradient(90deg, #ffcc00 0%, #d32f2f 100%);
  color: #fff;
  padding: 12px 0;
  position: relative; /* pode virar fixed se quiser */
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

/* === NAV MENU === */
.topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.topnav a {
  background-color: rgba(0,0,0,0.2);
  padding: 6px 14px;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.topnav a:hover {
  background-color: rgba(0,0,0,0.4);
}

/* Estilos para a div dentro do header */
.header_div {
  display: flex;
  align-items: center;
  width: 90%;
}

/* Estilos para a seção principal da página */
main {
  width: 80%;
  margin: 10 auto;
  flex: 1;
  text-align: center;
}

/* Estilos para o footer */
footer {
  display: flex;
  justify-content: center;
  background-color: black;
  color: white;
  padding: 5px;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
}

/* Estilos gerais para o corpo da página */
body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;  
}

/* Estilos para uma classe de imagem específica */
.imageclass {
  align-self: left;
  width: 450px;
  height: auto;
  margin-top: +40px;
}

/* Estilos para títulos de segundo nível */
h2 {
  text-align: center;
}

/* Estilos para parágrafos */
p {
  text-align: center;
}

/* Estilos para uma lista não ordenada */
ul {
  list-style-type: none;
  text-align: right;
  display: flex;
  padding-right: 55px;
  width: 100%;
}

/* Estilos para uma linha específica */
.row {
  display: flex;
  justify-content: space-evenly; /* distribui igualmente na horizontal */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
}


/* Estilos para uma seção de clubes */
.clubes {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* Estilos para um elemento de clube */
.club_element {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

/* Estilos para a imagem de um clube */
.club_image {
  width: 180px;         
  height: auto;         /* proporção original */
  display: block;
  margin: 10px auto;    /* centraliza */
}

.container_club {
  text-align: center;
  width: 180px;
}


/* Estilos para um botão específico dentro de uma seção de clube */
.club_button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 8px 14px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Estilos de hover para o botão dos clubes */
.club_button:hover {
  background-color: #d32f2f; /* vermelho sutil */
  color: #fff;
}

/* Estilos para uma classe específica chamada indexclass */
.indexclass {
  text-align: center;
}

/* Estilos para um botão genérico */
.button {
  padding: 20px;
  font-size: 26px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background-color: black;
  color: white;
  cursor: pointer;
}

/* Estilos de hover para o botão genérico */
.button:hover {
  background: white;
  transition: background 1s;
  color: black;
}

.site-footer {
  background: linear-gradient(to right, #f6a100, #d91e18);
  color: white;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.site-footer p {
  margin: 0;
}



.listsection {
  text-align: center;
  margin: 100px auto;
  max-width: 1200px;       /* define uma largura confortável */
  width: 90%;              /* ocupa 90% da tela em monitores menores */
}

.listsection h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-central {
  display: block;
  margin: 40px auto;
  max-width: 250px; /* ajuste conforme quiser */
  height: auto;
}

.home-container {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centraliza verticalmente */
  align-items: center;       /* centraliza horizontalmente */
  height: 100vh;             /* ocupa a altura total da tela */
  text-align: center;        /* centraliza texto e elementos inline */
  background-color: #ffffff; /* cor de fundo opcional */
  gap: 2rem;                 /* espaçamento entre os elementos */
}