* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}

.hero {
  background: url('banner.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.7);
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  text-align: center;
  margin-bottom: 5rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background: #e60023;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #8d724a;
}

.produtos, .sobre, .contato {
  padding: 4rem 2rem;
  text-align: center;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.produto img {
  width: 100%;
  border-radius: 1rem;
}

.produto h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.contato form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

.contato input, .contato textarea {
  padding: 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #000;
  font-size: 0.9rem;
}




.banner {
  position: relative;
  width: 100%;
  max-height: 100%; /* ajuste a altura que quiser */
  overflow: hidden;
  margin-bottom: 2rem;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção, cobre o espaço */
  vertical-align: bottom; /* imagem alinhada embaixo */
}






