
.capa {
  width: 100%;
  overflow: hidden;
  position: relative; /* Importante para a posição absoluta funcionar */
}

.img-capa {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
}



#btn {
  display: block;
  margin: 10px auto;
  width: 250px;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  font-size: 30px;
  cursor: pointer;
}

H3, h2 {
  text-align: center;
}
 
.color {
  color: #ff0000; /* cor do texto */
  font-size: 20px; /* tamanho da fonte */
  margin-top: 10px; /* espaço acima do texto */
}

p {
  text-align: center; /* centraliza o texto */
  
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Espaço entre as imagens */
  justify-content: center;
}

.gallery img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}



@media (max-width: 600px) {
  .image-container {
    width: 130px;
    height: 130px;
    top: 35%; /* ajusta levemente a posição em telas menores */
  }
}
