/* COMMIT INÍCIO: RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* COMMIT FIM: RESET GERAL */

/* COMMIT INÍCIO: CORPO */
body {
  background-color: #000;
  font-family: 'Arial', sans-serif;
  color: #fff;
}
/* COMMIT FIM: CORPO */

/* COMMIT INÍCIO: CONTAINER */
.container {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  
}
/* COMMIT FIM: CONTAINER */

/* COMMIT INÍCIO: LOGO */
.logo {
  width: 180px;
  margin: 0 auto 20px auto;
  display: block;
}
/* COMMIT FIM: LOGO */

/* COMMIT INÍCIO: TEXTO */
.revelado {
  font-size: 0.95rem;
  color: #ffc107;
  margin-bottom: 10px;
  line-height: 1.4;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 20px;
}

.yellow {
  color: #ffc107;
}

.aviso {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.4;
}
/* COMMIT FIM: TEXTO */

/* COMMIT INÍCIO: BOTÃO COM ANIMAÇÃO */
.btn-cta {
  display: inline-block;
  background-color: #ff0;
  color: #000;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 20px;
  box-shadow: 0px 0px 0px 4px #444200;
  animation: vibrar 0.3s infinite;
}
/* COMMIT FIM: BOTÃO COM ANIMAÇÃO */

/* COMMIT INÍCIO: ANIMAÇÃO DE VIBRAÇÃO */
@keyframes vibrar {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
/* COMMIT FIM: ANIMAÇÃO DE VIBRAÇÃO */


/* COMMIT INÍCIO: IMG HERO */
.hero-img {
  width: 100%;
  height: auto;
}
/* COMMIT FIM: IMG HERO */

/* COMMIT INÍCIO: RESPONSIVIDADE */
@media (min-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 16px 28px;
  }
}
/* COMMIT FIM: RESPONSIVIDADE */

/* COMMIT INÍCIO: ESTILOS DA SEÇÃO DE IMPACTO */
.section-impacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
  background-color: #0a0a0a;
}

.card {
  background: #1a1a1a;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.card h3 {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card strong {
  color: #f9d423;
}

.card em {
  font-style: italic;
  color: #cccccc;
}
/* COMMIT FIM: ESTILOS DA SEÇÃO DE IMPACTO */


/* COMMIT INÍCIO: ESTILOS CARROSSEL FUNCIONAL */
.relatos-section {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.relatos-section h2 span {
  color: #ffcccc;
  font-size: 0.9rem;
}

.relatos-section h2 strong {
  font-size: 1.3rem;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin: 30px auto 0;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

/* COMMIT INÍCIO: BORDA AMARELA AOS RELATOS */
.carousel-wrapper img {
  flex: 0 0 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid #ffd700; /* amarelo ouro */
  border-radius: 10px;
  box-sizing: border-box;
  padding: 5px;
  background-color: #000; /* pra separar bem do fundo preto */
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0px #ffd700; }
  50% { box-shadow: 0 0 15px #ffd700; }
  100% { box-shadow: 0 0 0px #ffd700; }
}

.carousel-wrapper img {
  animation: pulseBorder 2s infinite;
}

/* COMMIT FIM: BORDA AMARELA AOS RELATOS */
/* COMMIT INÍCIO: ESTILIZAÇÃO DO BOTÃO AMARELÃO */
.cta-button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-button {
  background-color: #fffc00;
  color: #000;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 10px;
  border: 4px solid #666000;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 0 10px #fffc00;
}

/* COMMIT INÍCIO: ANIMAÇÃO SHAKE */
.shake {
  animation: shake 0.7s infinite;
}

@keyframes shake {
  0% { transform: translate(0px, 0px) rotate(0deg); }
  20% { transform: translate(-1px, 1px) rotate(-1deg); }
  40% { transform: translate(-1px, -1px) rotate(1deg); }
  60% { transform: translate(1px, 1px) rotate(0deg); }
  80% { transform: translate(1px, -1px) rotate(1deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}
/* COMMIT FIM: ANIMAÇÃO SHAKE */
/* COMMIT FIM: ESTILIZAÇÃO DO BOTÃO AMARELÃO */

/* COMMIT INÍCIO: ESTILO BLOCO DE BÔNUS EXCLUSIVO */
.bonus-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #0a0a0a;
  color: white;
}

.bonus-section h2 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.bonus-img img {
  width: 130px;
  margin: 20px 0;
}

.bonus-intro {
  margin-bottom: 20px;
  color: white;
}

.bonus-intro .hoje {
  color: red;
  font-weight: bold;
}

.bonus-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.benefit-card {
  border: 2px solid #FFD700;
  padding: 15px;
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  background-color: #121212;
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.2);
  animation: pulseCard 2s infinite;
}

.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.benefit-icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: yellow;
}

/* COMMIT FIM: ESTILO BLOCO DE BÔNUS EXCLUSIVO */

/* COMMIT INÍCIO: ANIMAÇÃO PULSE NOS CARDS */
@keyframes pulseCard {
  0% { box-shadow: 0 0 8px rgba(255, 255, 0, 0.2); }
  50% { box-shadow: 0 0 16px rgba(255, 255, 0, 0.4); }
  100% { box-shadow: 0 0 8px rgba(255, 255, 0, 0.2); }
}
/* COMMIT FIM: ANIMAÇÃO PULSE NOS CARDS */

/* COMMIT INÍCIO: ANIMAÇÃO PROFISSIONAL NOS CARDS DE BENEFÍCIOS */
@keyframes highlightSlide {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    border-color: #ffeb3b;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
  }
}

.benefit-card {
  animation: highlightSlide 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}
/* COMMIT FIM: ANIMAÇÃO PROFISSIONAL */

/* COMMIT INÍCIO: ESTILO DA SEÇÃO FINAL */
.final-section {
  background-color: #0a0a0a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.final-text-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(to top, #111 80%, #0a0a0a 100%);
  border-radius: 10px;
}

.final-text-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
}

.final-text-box .destaque-vermelho {
  color: red;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.final-text-box .gritante {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  margin-top: 20px;
}

.final-text-box .fechamento {
  font-size: 1rem;
  color: #eee;
}
/* COMMIT FIM: ESTILO DA SEÇÃO FINAL */

/* ===== GARANTIA WHITE SECTION ===== */
/* --- GARANTIA --- */
.garantia-section-white {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  color: #000;
}

.garantia-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0px;
  line-height: 1.2;
}

.garantia-subtitle {
  background-color: red;
  display: inline-block;
  padding: 6px 16px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 30px;
}

.garantia-img {
  width: 180px;
  margin: 0 auto 20px;
  display: block;
}

.garantia-texto p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 12px auto;
  max-width: 340px;
}

.destacado-vermelho {
  color: red;
  font-weight: bold;
}


/* --- CHECKOUT PRETO FULL WIDTH --- */
.checkout-wrapper {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin: 0 -20px; /* Pra colar nas bordas mesmo em container */
}

.checkout-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.secure {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}

.preco {
  font-size: 1rem;
  line-height: 1.5;
}

.riscado {
  text-decoration: line-through;
  color: #888;
}

.destaque-verde {
  color: #26cc50;
  font-weight: bold;
}

/* --- BOTÃO COM ANIMAÇÃO POWER --- */
.cta-button {
  display: inline-block;
  background-color: yellow;
  color: black;
  font-weight: bold;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  box-shadow: 0 0 15px 4px yellow;
  animation: pulse 1.3s infinite;
  font-size: 0.95rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 6px 2px yellow;
  }
  50% {
    box-shadow: 0 0 20px 7px yellow;
  }
  100% {
    box-shadow: 0 0 6px 2px yellow;
  }
}

.rodape-final {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px 60px;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-logo {
  width: 160px;
  margin: 30px auto 15px;
  display: block;
}

.footer-copy {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.footer-links {
  font-size: 0.85rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #000;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;

  /* AQUI TÁ A BORDINHA */
  border: 2px solid #FFD700;

  /* SOMBRA PRA DESTACAR */
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);

  z-index: 9999;
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease-in-out;
}


