body {
  background-image: linear-gradient(90deg, #000609 0%, #24252b 35%, #12090c 100%);
}

  h2 {
    text-align: center;
    color: white;
    font-weight: bold;
    font-style: italic;
    font-size: 60px;
  }
    
#logo {
    display: block;
    width: 100px;
    position: fixed;
    top: 0;
    left: 0;
  }
  

.carousel {
    width: 800px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    /* Adiciona margem automática para centralizar horizontalmente */
    display: flex;
    /* Usa flexbox para centralizar verticalmente as imagens */
    align-items: center;
    /* Centraliza verticalmente as imagens */
    justify-content: center;
    /* Centraliza horizontalmente as imagens */
    border-radius: 10px; /* valor em pixels */
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;

}

.carousel img.active {
    display: block;
}
 

*{
  padding: 0;
  margin: 0;
  font-family: "inter", sans-serif;
}

header{
  background-color: #000000c0;
  box-shadow: 0px 3px 10px #105603;
  
}

.LINK{
  color: #fff;
  margin-left: 700px;
}




.nav-bar{
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 6rem;
}

.logo{
  display: flex;
  align-items: center;

}

.logo h1{
color: #fff;
}

.nav-list{
  display: flex;
  align-items: center;
}

.nav-list ul{
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 40px;
  margin-right: 120px;
}

.nav-item{
  margin: 0 15px;
}

.nav-link{
  text-decoration: none;
  font-size: 1.15rem;
  position: center;
  color: #fff;
  font-weight: 400;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.gallery img {
  width: 500px;
  height: 400px;
  margin: 10px;
  border-radius: 10px;
}
h3{
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
}

.gallery img {
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.2);
}

.Contato{
  color:#fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}