* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #4b3d2a;
  background-color: #fffaf6;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1606813902883-32c6f0ef4e9a?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero .overlay {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

main {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.produtos {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

footer {
  background: #f4e1c1;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #4b3d2a;
}
