body {
  margin: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: black;
}

#cabecalho {
  background-color: #f7f8f8;
  height: 20%;
  font-family: "Koulen", sans-serif;
  font-size: 500%;
  color: #FFFFFF;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
}

#camisa {
  width: 30px;
  fill: #1A8300;
  margin-left: 5px;
}

.logo-img {
  display: block;
  max-width: 90%;
  /* limits image width */
  height: auto;
  /* keeps aspect ratio */
  margin: 0 auto;
  /* centers horizontally */
  padding: 1rem 0;
  /* optional spacing */
}

#container-opcoes {
  height: auto; /* deixa altura automática para responsividade */
  width: 40vw; /* usa quase toda a largura da tela */
  max-width: 1200px; /* limite máximo para telas grandes */
  display: flex;
  justify-content: space-around;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px; /* espaço entre cards */
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 40px;
}

.cardcamisa {
  flex: 1 1 280px; /* flex-grow, flex-shrink, base width */
  max-width: 320px;
  height: auto; /* altura automática para ajustar com a imagem */
  border-radius: 15px;
  border-width: 2px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* alinha texto abaixo da imagem */
  align-items: center;
  overflow: hidden;
  background-color: #ffffff;
  border-style: solid;
  border-color: white;
  box-sizing: border-box;
}

.Thumbnail {
  width: 100%;
  height: 200px; /* altura fixa para uniformidade */
  object-fit: cover; /* cobre sem distorcer */
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: block; /* imagem como bloco */
}

.titulodacamisa {
  width: 100%;
  height: 70px;
  font-family: "Jersey 25", sans-serif;
  font-size: clamp(18px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
  display: block; /* garante que o link englobe todo o card */
}

#textin {
  color: white;
  font-family: "Jersey 25", sans-serif;
  font-size: clamp(18px, 10vw, 60px);

  white-space: normal; /* permite quebra automática */
  overflow-wrap: break-word; /* permite quebra de palavra se necessário */
  word-break: break-word; /* garante quebra correta */
  
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  overflow: visible; /* permite expandir se precisar */
  text-overflow: clip; /* não mostra reticências */
}

#container2{
  border-style: solid;
  display: flex;
  flex-direction: row;
  padding-left: 30px;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 50%;
}

#futebol{
 color: white;
  font-family: "Jersey 25", sans-serif;
  font-size: clamp(18px, 6vw, 60px);

  white-space: normal; /* permite quebra automática */
  overflow-wrap: break-word; /* permite quebra de palavra se necessário */
  word-break: break-word; /* garante quebra correta */
  
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  overflow: visible; /* permite expandir se precisar */
  text-overflow: clip; /* não mostra reticências */
 
  border-style: solid;
  border-color: white;
  padding: 30px;
   border-radius: 15px;
}

#basquete{
 color: white;
  font-family: "Jersey 25", sans-serif;
  font-size: clamp(18px, 6vw, 60px);

  white-space: normal; /* permite quebra automática */
  overflow-wrap: break-word; /* permite quebra de palavra se necessário */
  word-break: break-word; /* garante quebra correta */
  
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  overflow: visible; /* permite expandir se precisar */
  text-overflow: clip; /* não mostra reticências */
   border-style: solid;
  border-color: white;
  padding: 30px;
  border-radius: 15px;
}

