body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-image: url('../img/riqueza.jpg'); /* fundo correto */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

header {
  background-color: rgba(46, 125, 50, 0.95);
  padding: 16px 0;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  font-size: 16px;
  transition: transform 0.2s ease;
}

nav a:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

nav a.destaque {
  background-color: #e65100;
  color: #1b5e20;
  padding: 8px 16px;
  border-radius: 6px;
  animation: pulsar 1.5s infinite;
}

@keyframes pulsar {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,81,0, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(230,81,0, 0); }
}

.container {
  max-width: 800px;
  margin: 120px auto 40px;
  background: rgba(245, 240, 225, 0.95); /* bege claro */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  color: #333;
  text-shadow: none;
}

h1 {
  color: #2E7D32;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #333;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.bloco {
  margin-bottom: 30px;
}

.bloco.destaque {
  background: #e8f5e9;
  padding: 20px;
  border-left: 4px solid #4caf50;
  border-radius: 8px;
}

.cta-area {
  text-align: center;
  margin-top: 30px;
}

.cta-area img {
  width: 280px;
  max-width: 100%;
  animation: pulse-cta 1.5s infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  border-radius: 12px;
}

.cta-area img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 16px rgba(76, 175, 80, 0.8));
}

.botao-comprar {
  display: inline-block;
  padding: 16px 30px;
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: pulse-cta 1.5s infinite;
  transition: transform 0.3s ease;
}

.botao-comprar:hover {
  background-color: #388E3C;
  transform: scale(1.05);
}

@keyframes pulse-cta {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #2e7d32;
  padding: 20px;
  border: 2px solid #4caf50;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  max-width: 300px;
  animation: subir 0.6s ease-out;
}

.popup h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.popup p {
  font-size: 14px;
  margin-bottom: 10px;
}

.popup .btn-popup {
  display: inline-block;
  padding: 8px 14px;
  background: #4caf50;
  color: white;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.popup .btn-popup:hover {
  background: #388e3c;
}

.popup .fechar {
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #999;
}

@keyframes subir {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Animação ao rolar */
.container, h1, p, .cta-area {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.container.visivel, h1.visivel, p.visivel, .cta-area.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* Cores especiais para destaque */
.azul {
  color: #1e88e5;
  font-weight: bold;
}

.verde {
  color: #2e7d32;
  font-weight: bold;
}

.laranja {
  color: #e65100;
  font-weight: bold;
}

/* Depoimentos */
.depoimentos .depoimento {
  background: #f9f9f9;
  padding: 16px;
  margin-bottom: 20px;
  border-left: 4px solid #4caf50;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.depoimentos .autor {
  font-weight: bold;
  color: #333;
  margin-top: 8px;
  font-size: 14px;
}

.bloco ul li a {
  color: #1e88e5;
  font-weight: bold;
  text-decoration: none;
}

.bloco ul li a:hover {
  text-decoration: underline;
}

.azul-escuro {
  color: #0d47a1; /* Azul escuro elegante */
  font-weight: bold;
}


.desconto-limite {
  background: #fff3e0;
  border-left: 6px solid #fb8c00;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 40px;
  text-align: center;
}

.aviso-destaque {
  color: #e65100;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.desconto-limite p {
  font-size: 17px;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}

.preco-destaque {
  color: #d84315;
  font-weight: bold;
  font-size: 18px;
}


.rodape {
  background-color: rgba(46, 125, 50, 0.95);
  color: #ffffff;
  text-align: center;
  padding: 16px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 3px solid #e65100;
}

.rodape-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rodape p {
  margin: 6px 0;
  color: #ffffff;
}

.selo-mais18 {
  background-color: #e53935;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 15px;
  margin-bottom: 8px;
  display: inline-block;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* Responsividade para telas pequenas (celulares) */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 16px;
    margin: 20px auto;
  }

  h1 {
    font-size: 22px;
    text-align: center;
  }

  h2 {
    font-size: 18px;
    margin-top: 20px;
  }

  p, li {
    font-size: 15px;
    line-height: 1.5;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
  }

  nav a {
    display: block;
    margin: 6px 0;
    font-size: 15px;
  }

  input,
  textarea,
  button {
    width: 100%;
    font-size: 16px;
  }

  .botao-comprar {
    font-size: 16px;
    padding: 12px 24px;
  }

  .depoimentos {
    padding: 10px;
  }

  .depoimento {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .rodape {
    font-size: 13px;
    padding: 10px;
  }

  .login-box {
    max-width: 95%;
    padding: 20px;
  }

  .popup {
    bottom: 10px;
    right: 10px;
    max-width: 90%;
    padding: 14px;
  }

  .popup h3 {
    font-size: 16px;
  }

  .popup p {
    font-size: 13px;
  }
}




