/* reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #fefaf5 0%, #f8f2e9 100%);
  color: #2c2418;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* badges estilo image.png */
.badge-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255,255,240,0.9);
  backdrop-filter: blur(2px);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #2f5d3a;
  border: 1px solid #d9c7a7;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  text-transform: uppercase;
}

.badge.highlight {
  background: #2f5d3a;
  color: white;
  border-color: #1f3e2c;
}

/* layout hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.hero-image {
  flex: 1;
  min-width: 260px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
  background: #fff9f0;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.01);
}

.hero-text {
  flex: 1.2;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2f5d3a, #b46a3a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.18rem;
  color: #3a2e22;
  margin-bottom: 1rem;
  font-weight: 500;
}

.natural-badge {
  display: inline-flex;
  background: #eaf7e6;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2f5d3a;
  margin-bottom: 1rem;
}

/* seção textos principais */
.info-box {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0e1cf;
}

.info-box p {
  font-size: 1.12rem;
  margin-bottom: 1rem;
}

.highlight-quote {
  font-weight: 600;
  color: #b46a3a;
  border-left: 4px solid #b46a3a;
  padding-left: 1.2rem;
  margin: 1rem 0;
}

/* ingredientes grid */
.ingredients {
  background: #ffffffcc;
  backdrop-filter: blur(2px);
  border-radius: 32px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid #ecdbba;
}

.ingredients h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c5e3c;
}

.ingredients-sub {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #4a3b2c;
}

.grid-ingred {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem 1.5rem;
  list-style: none;
}

.grid-ingred li {
  background: #fef7ec;
  padding: 0.5rem 0.8rem;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c2418;
  display: flex;
  align-items: center;
  gap: 8px;
}

.grid-ingred li::before {
  content: "🍃";
  font-size: 1rem;
}

.ingredients-note {
  margin-top: 1.2rem;
  font-style: italic;
  background: #f2efe0;
  padding: 0.8rem;
  border-radius: 24px;
}

/* botão CTA */
.cta-container {
  text-align: center;
  margin: 2rem 0 3rem;
}

.btn-comprar {
  background: linear-gradient(95deg, #2f5d3a, #438a53);
  border: none;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 18px rgba(47,93,58,0.3);
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn-comprar:hover {
  background: linear-gradient(95deg, #23522e, #2f6b42);
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.small-note {
  font-size: 0.75rem;
  color: #6b5a48;
  margin-top: 1rem;
}

/* rodapé */
footer {
  text-align: center;
  border-top: 1px solid #e2d4c4;
  padding-top: 2rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #5f4e38;
}

/* responsividade */
@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .btn-comprar {
    font-size: 1.2rem;
    padding: 0.8rem 1.8rem;
  }
  .container {
    padding: 1rem;
  }
  .badge-bar {
    gap: 0.6rem;
  }
  .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}