* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
}

body {
  background-color: white;
  color: #2c2b28;
  scroll-behavior: smooth;
  background-image: url("./front.png");
  background-size: cover;
  background-position: center;
}

/* HEADER FIXO */
.header-fixo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2e3b2c;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.empresa-nome h1 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
}
.empresa-nome p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.contato-whatsapp a {
  background: #25d366;
  color: #1a2c1a;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 40px;
  transition: background 0.2s, transform 0.1s;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contato-whatsapp a:hover {
  background: #20b859;
  transform: scale(1.02);
}

/* espaço para compensar o header fixo */
.main-content {
  padding-top: 90px;
}

/* SEÇÃO DE PRODUTOS  */
.produtos-section {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.produtos-section h2 {
  color: #2e3b2c;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.subtitulo-produtos {
  text-align: center;
  color: #5e5c55;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.card-produto {
  background: white;
  border-radius: 32px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #ece8df;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.card-produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-produto img {
  height: 200px;
  width: 100%;
}

.card-produto h3 {
  color: #2e3b2c;
  font-size: 1.5rem;
}

.card-produto p {
  color: #4b4a46;
  line-height: 1.5;
  flex-grow: 1;
}

/* FOOTER */
footer {
  background: #1e2a1c;
  color: #ece8df;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.contato h3,
.endereco h3,
.horario h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #f0e6d2;
}

.contato p,
.horario p,
.endereco p {
  margin: 6px 0;
  line-height: 1.4;
}

.contato a,
.endereco a,
.horario a {
  color: #f0e6d2;
}

.endereco a {
  background: #f5bc70;
  color: #1e2a1c;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.endereco a:hover {
  background: #ffcf8a;
  transform: scale(1.02);
}

.creditos {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .header-fixo {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .main-content {
    padding-top: 150px;
  }
  .produtos-grid {
    grid-template-columns: 1fr;
  }
  .card-produto h3 {
    font-size: 1.3rem;
  }
  .footer-container {
    flex-direction: column;
  }
}
