body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #fff;
}
header {
  background: #000;
  padding: 10px 0;
}
nav a {
  color: #FFFFFF;
  text-decoration: none;
  margin-right: 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFD700; /* dourado */
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}
.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  height: 500px;
  background-image: url('banner-temai.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-size: 4rem;
  margin: 0;
}
.hero p {
  font-size: 1.5rem;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #e00;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}
.section {
  padding: 50px 20px;
  text-align: center;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.galeria-grid img {
  width: 100%;
  border-radius: 10px;
}
footer {
  text-align: center;
  background: #000;
  padding: 20px;
  font-size: 0.9rem;
}
