* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #FAF3E0;
  color: #333;
  line-height: 1.6;
}

header.hero {
  background-image: url('img/capril-do-bosque-creme-de-mandiquinha-foto.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f16e1c;
}

.btn-cta {
  background-color: #FFB88C;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
  text-decoration: none;
  
}

.btn-cta:hover {
  background-color: #f39c12;
  transform: scale(1.05);
}

.hero-text {
  margin-top: 3rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  display: flex; 
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  
  
}

.destaques,
.galeria,
.como-funciona {
  padding: 4rem 2rem;
  text-align: center;
}

.cards,
.grid-produtos,
.etapas {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.card,
.produto,
.etapa {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 280px;
}

.card img,
.produto img {
  max-width: 100%;
  border-radius: 8px;
}

.produto h4 {
  color: #6AA84F;
  margin: 1rem 0 0.5rem;
}

.center {
  display: inline-block;
  margin-top: 2rem;
}

.etapa span {
  font-size: 2rem;
  background-color: #8CC152;
  color: #fff;
  border-radius: 50%;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

footer {
  background-color: #A67B5B;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

footer a {
  color: #FFB88C;
  text-decoration: none;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo .sabor {
  color: #eb5f09; /* tom pêssego */
}

.logo .paradiso {
  color: #50ec0d; /* tom verde médio */
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #05e959;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 48px;
  height: 48px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.logo .sabor {
  color: #FFB88C; /* tom pêssego */
}

.logo .paradiso {
  color: #6AA84F; /* tom verde médio */
}


