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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fef6e9;
  color: #1e1e1e;
  line-height: 1.6;
}

/* CABEÇALHO */
.header {
  background-color: #faebdd;
  text-align: center;
  padding: 30px 15px;
}

.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header h1 span {
  color: #5a2a7a;
}

.cta-button {
  background-color: #ff5c33;
  color: white;
  padding: 16px 32px; /* Aumenta altura/largura */
  font-size: 18px;     /* Tamanho do texto */
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin: 10px 0 20px;
}

.cta-button-link {
  text-decoration: none;
}

/* BLOCO: IMAGEM + BENEFÍCIOS */
.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0 15px;
  flex-wrap: nowrap;
}

.product-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.product-image {
  width: 400px;
  height: auto;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

/* OFERTA */
.offre {
  font-size: 0.9em;
  font-style: italic;
  margin-top: 20px;
}

.cta-full {
  background-color: yellow;
  color: black;
  padding: 20px 28px;  /* Mais espaçamento */
  font-size: 18px;     /* Texto maior */
  border: 2px solid #000;
  border-radius: 12px;
  font-weight: bold;
  display: inline-block;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
}

.cta-full-link {
  text-decoration: none;
  display: block;
  text-align: center;
}



/* SEÇÕES GERAIS */
section {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
}

section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

/* INGREDIENTES */
.ingredients-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* UTILISATION - IMAGENS LADO A LADO */
.utilisation {
  text-align: center;
  padding: 40px 20px;
}

.utilisation-images {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
}

.utilisation-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
}

/* RODAPÉ */
footer {
  background-color: #392049;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

footer nav {
  margin-top: 10px;
}

footer nav a {
  color: #eee;
  margin: 0 10px;
  font-size: 0.9em;
  text-decoration: none;
}

/* =====================
   RESPONSIVO - MOBILE
===================== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .product-image {
    width: 250px;
    margin-bottom: 20px;
  }

  .benefits {
    text-align: left;
    font-size: 15px;
  }

  .cta-full {
    font-size: 14px;
  }

  section {
    padding: 25px 15px;
  }

  .utilisation-images {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .utilisation-images img {
    width: 90%;
    max-width: 280px;
  }

  .ingredients-image {
    max-width: 100%;
  }
}
