* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background: #0e0e0e;
    color: #fff;
    padding: 20px;
  }
  .container {
    max-width: 520px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  h1, h2, h3 {
    text-align: center;
    color: #FFDE59;
  }
  .subheadline {
    text-align: center;
    font-size: 0.95rem;
    color: #ccc;
  }
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .botao-laranja {
    background-color: #ff6600 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.7);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    margin: 0px auto;
    transition: all 0.3s ease;
    animation: pulseGlow 1.5s infinite ease-in-out;
    max-width: 90%;
  }
  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 24px rgba(255, 102, 0, 1);
      transform: scale(1.03);
    }
    100% {
      box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
      transform: scale(1);
    }
  }
  .botao-laranja:hover {
    background-color: #e65c00 !important;
    transform: scale(1.05);
  }
  .order-bump {
    background: #1a1a1a;
    padding: 15px;
    border: 1px solid #444;
    border-radius: 10px;
  }
  .destaque {
    border: 2px solid #FFDE59;
  }
  .preco-promo {
    color: #00ff88;
  }
  .mais-vendido {
    margin-top: 10px;
    font-weight: bold;
    color: #FFDE59;
  }
  .timer {
    text-align: center;
    font-size: 0.9rem;
    color: #FF5555;
    margin-top: -10px;
  }
  .garantia {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
  }
  .vsl-video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .faq {
    background: #111;
    border-radius: 10px;
    padding: 15px;
  }
  .faq h3 {
    font-size: 1rem;
    color: #FFDE59;
    margin-bottom: 6px;
  }
  .faq p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #ccc;
  }
  .depoimentos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }
  .depoimentos img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #888;
  }

  .bloco-video-botao {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255, 102, 0, 0.5);
    margin-bottom: 32px;
    background: #ff6600;
  }
  
  .bloco-video-botao .botao-laranja {
    border-radius: 0;
    margin: 0;
    max-width: 100%;
    font-size: 16px;
    padding: 14px;
    animation: none;
    box-shadow: none;
  }
  
  .vsl-fundida {
    width: 100%;
    display: block;
    border-radius: 0;
  }
  

.botao-verde {
  background-color: #11ff00 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(19, 71, 0, 0.415);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 30px auto;
  transition: all 0.3s ease;
  animation: infinite ease-in-out;
  max-width: 90%;
}

/* Animação de pulso pro botão chamar atenção */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
  }
}

/* Classe que aplica a animação */
.pulse {
  animation: pulse 1.5s infinite;
}

