* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Verdana', sans-serif;
  background: #FAF3E0;
  color: #333;
  line-height: 1.6;
}

header {
  background: #FFC107;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

header h1 {
  margin-bottom: 1rem;
}

header nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
}

h2 {
  color: #332d2c;
  margin-bottom: 1rem;
}

#gallery .gallery {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px; 
  justify-items: center; 
  justify-content: space-between;
}

#gallery .gallery img {
  width: 200px; 
  height: 50px; 
  object-fit: cover; 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-img{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;

  img{
    width: 30%;
  }
}

/* img{
  width: 1px;
} */


#gallery .gallery img:hover {
  transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}


#video video {
  display: block;
  width: 80%;
  margin: 0 auto;
  /* border: 4px solid #0c0c0c; */
  border-radius: 10px;
}

ul {
  list-style: square;
  margin-top: 10px;
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #FFC107;
  color: white;
  margin-top: 20px;
  font-size: 0.9rem;
}
