body {
    margin: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),  url('../../FotosSite/Background.jpg');

}

#cabecalho {
    background-color: #126c3f;
    height: 20%;
    font-family: "Koulen", sans-serif;
    font-size: 500%;
    color: #FFFFFF;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

#link {
    text-decoration: none;
    color: #1A8300;
}

#camisa {
    width: 30px;
    fill: #1A8300;
    margin-left: 5px;
}

#titulocamisa {
  font-family: "Jersey 25", sans-serif;
  font-size: clamp(28px, 5vw, 60px); /* Tamanho de fonte responsivo */
  display: flex;
  justify-content: center; /* melhor para centralizar em mobile */
  align-items: center;
  margin: 20px auto;
  padding: 20px;
  background-color: #FFFFFF;
  flex-wrap: wrap; /* permite quebrar linha em telas pequenas */

  max-width: 100%;
  word-break: break-word;
  text-align: center;
}



#botaowhats {
    height: 100px;
    width: 300px;
    background-color: #7fd496;
    color: #FFFFFF;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
}

#whats {
    text-decoration: none;
    color: #FFFFFF;
    font-family: "Koulen", sans-serif;
    font-size: 30px;
}

#icone {
    width: 8%;
    fill: #FFFFFF;
    margin-left: 3px;
}

#zoomContainer {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    cursor: grab;
}

#zoomedImg {
    position: absolute;

    transform-origin: center center;
    max-width: 90vw;
    max-height: 90vh;
    user-select: none;
}

#zoomContainer.zoomed {
    cursor: grab;
}

#closeZoom {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.img-zoom {
    width: 20%;
    margin-bottom: 20px;
    border-radius: 7%;
}

#vitrineimagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
  margin: 0 auto;
  max-width: 100%;
}

#vitrineimagens img {
  width: 300px;       /* imagem maior no desktop */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: width 0.3s ease;
}

.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 */
}