body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f9f9f9;
}

.header {
  background: linear-gradient(90deg, #0b611c, #4ba84b);
  padding: 10px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.logo {
  width: 160px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: linear-gradient(120deg, #e6f4ea, #ffffff);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
  color: #0b611c;
}

.hero p {
  color: #444;
  margin-top: 10px;
  font-size: 1.2em;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-whatsapp img {
  width: 24px;
  margin-right: 10px;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
}

.sobre,
.produtos,
.contato {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  color: #0b611c;
  margin-bottom: 20px;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.produto-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.produto-card:hover {
  transform: scale(1.05);
}

.produto-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e4405f;
  font-weight: 600;
}

.btn-insta img {
  width: 24px;
}

footer {
  background: #0b611c;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}
