body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #f9f9f9, #e3f2fd);
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  padding: 0px 20px 30px 20px; /* espaço extra no topo pro h3 */
  max-width: 800px;
  margin: auto;
  position: relative;
}

h1 {
  color: #0077cc;
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: 10px;
}

h3 {
  position: relative;
  width: 100vw;
  background-color: #e90202;
  color: white;
  font-size: 20px;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  z-index: 10;
  border-radius: 0; /* remove bordas arredondadas */
}


p {
  font-size: 18px;
  margin: 15px 0;
}

/* BOTÃO PRINCIPAL */
.cta-button {
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 20px auto 0 auto;
  display: block;
  transition: background-color 0.3s ease;
  text-align: center;
}

.cta-button:hover {
  background-color: #218838;
}

.timer {
  font-size: 24px;
  color: #ff0000;
  margin: 20px 0;
  font-weight: bold;
}

.disclaimer {
  font-size: 14px;
  color: #666;
  margin-top: 30px;
}

/* NOVAS SEÇÕES */
.benefits, .ingredients, .guarantee, .stock {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.benefits h2, .ingredients h2, .guarantee h2, .stock h2 {
  color: #0077cc;
  margin-bottom: 15px;
  text-align: center;
}

.benefits ul {
  list-style: none;
  padding-left: 0;
}

.benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 18px;
}

.benefits li::before {
  content: "✔";
  color: #28a745;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Estilo para imagens */
.product-image, .ingredients-image {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Estilo do disclaimer */
.disclaimer-legal {
  font-size: 10px;
  margin-top: 4px;
  margin-bottom: 2px;
  line-height: 1.3;
  padding: 5px;
  border-radius: 5px;
  text-align: left;
}

/* Reduz o espaçamento entre <p> internos */
.disclaimer-legal p {
  margin: 0 0 10px 0;
}

/* imagem da garantia */
.guarantee-image {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 10px auto;

}

/* imagem de urgência */
.order-now-image {
  width: 100%;
  max-width: 700px;
  margin: 10px auto;
  display: block;
}

/* BOTÃO DE URGÊNCIA */
.urgent-button {
  display: block;
  margin: 15px auto 0 auto;
  padding: 14px 30px;
  background-color: #e63946;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
}

.urgent-button:hover {
  background-color: #c92c3a;
}

/* ANIMAÇÃO DE PULSAÇÃO PARA O BOTÃO */
@keyframes pulseEffect {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulseEffect 1.2s infinite ease-in-out;
}
