/* Variáveis de Cores */
:root {
  --color-dark-red: #8b0000; /* Vermelho escuro principal */
  --color-dark-brown: #5c0000; /* Um pouco mais escuro para o fundo principal */
  --color-black: #1a1a1a; /* Fundo escuro/preto */
  --color-yellow: #f7c232; /* Amarelo/Dourado de destaque */
  --color-green: #3cb371; /* Verde dos botões */
  --color-white: #ffffff;
  --color-light-gray: #cccccc;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit; /* usa a cor do elemento pai */
}
a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  color: inherit;
}

.medo {
  color: var(--color-yellow);
}
.unit {
  color: var(--color-yellow) !important;
}
body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-white);
  line-height: 1.6;
  background-color: var(--color-dark-brown);
}

a {
  color: var(--color-white);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout Geral */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h5 {
  font-size: 2em;
}
h1 {
  font-size: 2.5em;
  color: var(--color-yellow);
  line-height: 1.2;
}

h2 {
  font-size: 2em;
  text-align: center;
  color: var(--color-yellow);
}

/* Botão de Compra */
.buy-button {
  background-color: var(--color-green);
  color: var(--color-white);
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 20px auto 0;
}

.buy-button:hover {
  background-color: #329a60;
}

/* 1. Seção Principal/Hero */
.hero-section {
  background-color: var(--color-dark-brown);
  padding-top: 20px;
  padding-bottom: 40px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.logo-placeholder {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color-yellow);
  padding: 10px;
  width: 150px;
  img {
    width: 100%;
    height: auto;
  }
}

.frete-gratis {
  color: var(--color-yellow);
  font-size: 2em;
  font-weight: bold;
  animation: blink 1.9s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1; /* totalmente visível */
  }
  50% {
    opacity: 0.1; /* 90% apagado */
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content .text-content {
  flex: 1;
}

.hero-content ul {
  list-style: none;
  margin-top: 20px;
}

.hero-content ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  position: relative;
  padding-left: 25px;
}

.hero-content ul li::before {
  content: "•"; /* Usando um bullet point simples ou um ícone de check se tivéssemos um */
  color: var(--color-yellow);
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -5px;
}

.product-image-placeholder {
  width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  img {
    width: 100%;
    height: auto;
  }
}

/* 2. Seção Amarela - Segredo das Gotas */
.secret-section {
  background-color: var(--color-yellow);
  color: var(--color-black);
  padding: 40px 0;
}

.secret-section h2 {
  color: var(--color-black);
}

.secret-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.secret-image-placeholder {
  width: 320px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  img {
    width: 100%;
    height: auto;
  }
}

.secret-content p {
  flex: 1;
  font-size: 1.1em;
  font-weight: 500;
}

/* 3. Seção Cinza Escura - Medo de Comprar */
.internet-fear-section {
  background-color: var(--color-black);
  padding: 30px 0;
}

.internet-fear-section h2 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.internet-fear-section p {
  text-align: center;
  font-size: 1.1em;
}

/* 4. Seção de Ofertas/Preços */
.pricing-section {
  margin-top: -90px;
  background-color: var(--color-black);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.offer-card {
  background-color: #2c2c2c;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid transparent;
}

.offer-card {
  border-color: var(--color-yellow);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  border: 1px solid var(--color-yellow);
}

.discount {
  background-color: var(--color-light-gray);
  color: var(--color-black);
  font-weight: bold;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 3px;
  font-size: 1em;
  font-weight: 900;
}

.offer-card h3 {
  color: var(--color-white);
  font-size: 1.5em;
  margin-bottom: 5px;
}

.description {
  font-size: 1em;
  color: var(--color-white);
  margin-bottom: 15px;
  padding-bottom: 3rem;
  font-weight: 500;
}

.kit-image-placeholder {
  padding-top: 4rem;
  padding-bottom: 5rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  img {
    width: 100%;
    height: auto;
  }
}

.old-price {
  text-decoration: line-through;
  color: #ff6347; /* Tom de vermelho para o preço antigo */
  font-size: 1.2em;
  padding-top: 2rem;
}

.price-installment {
  font-size: 1em;
  margin-top: 5px;
}

.price-value {
  font-size: 2em;
  color: var(--color-green);
  font-weight: bold;
  margin-bottom: 5px;
}

.price-cash {
  font-size: 0.9em;
  color: var(--color-light-gray);
  margin-bottom: 15px;
}

.payment-flags-placeholder {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  color: var(--color-light-gray);
  width: 300px;
  align-items: center;
  justify-content: center;
  display: flex;
  align-content: center;
  img {
    width: 100%;
    height: auto;
  }
}

/* 5. Seção de Ativos/Ingredientes */
.ingredients-section {
  background-color: var(--color-dark-brown);
}

.ingredients-section h2 {
  margin-bottom: 40px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background-color: var(--color-dark-brown);
  border: 1px solid rgb(255, 91, 91);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  background-color: #420202;
}

.icon-placeholder {
  width: 80px;
  height: 80px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  color: var(--color-black);
  font-weight: bold;
}

.ingredient-card h3 {
  color: var(--color-yellow);
  font-size: 1.2em;
  margin-bottom: 10px;
  text-transform: none;
}

.ingredient-card p {
  font-size: 0.9em;
}

/* 6. Seção de Resultados */
.results-section {
  background-color: var(--color-black);
}

.results-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.product-image-placeholder-small {
  width: 270px;
  height: 285px;
  background-color: var(--color-dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;

  /* brilho pulsante */
  box-shadow: 0 0 10px red;
  animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(255, 0, 0, 0.9);
  }
  100% {
    box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.4);
  }
}

.results-content .text-content {
  flex: 1;
}

.results-content h2 {
  text-align: left;
  font-size: 1.8em;
}

.results-content ul {
  list-style: none;
  margin-top: 15px;
}

.results-content ul li {
  margin-bottom: 8px;
  font-size: 1em;
  position: relative;
  padding-left: 20px;
}

.results-content ul li::before {
  content: "•";
  color: var(--color-green);
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -5px;
}

/* 7. Seção de Garantia */
.guarantee-section {
  background-color: var(--color-dark-brown);
  text-align: center;
}

.guarantee-badge-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-weight: bold;
  font-size: 0.9em;
  img {
    width: 100%;
    height: auto;
  }
}

.guarantee-section h2 {
  color: var(--color-yellow);
  font-size: 1.8em;
  margin-bottom: 20px;
}

.guarantee-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

/* 8. Seção de FAQ */
.faq-section {
  background-color: var(--color-black);
}

.faq-section h2 {
  color: var(--color-green);
  margin-bottom: 30px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  background: none;
  color: var(--color-white);
  border: none;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 15px;
}

.faq-answer.active {
  max-height: 200px; /* Valor grande o suficiente para a resposta */
  padding: 15px;
}

.faq-answer p {
  padding-bottom: 10px;
}

.support-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: var(--color-light-gray);
}

/* 9. Rodapé/Footer */
.main-footer {
  background-color: var(--color-dark-brown);
  padding: 30px 0 10px;
  border-top: 5px solid var(--color-yellow);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-contact {
  flex: 2;
}

.logo-placeholder-footer {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-yellow);
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-links,
.footer-payment,
.footer-security {
  flex: 1;
}

.footer-content h4 {
  color: var(--color-yellow);
  font-size: 1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  font-size: 0.9em;
  display: block;
  margin-bottom: 5px;
}

.payment-flags-placeholder-footer,
.security-seal-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  color: var(--color-light-gray);
  margin-top: 10px;
  img {
    width: 100%;
    height: auto;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 0.8em;
  color: var(--color-light-gray);
}

/* Responsividade */
@media (max-width: 992px) {
  .kit-image-placeholder {
    padding-top: 4rem;
    padding-bottom: 5rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    img {
      width: 70%;
      height: auto;
    }
  }
  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .frete-gratis {
    font-size: 0.95em;
    margin-bottom: -60px;
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .text-content {
    order: 2;
  }

  .product-image-placeholder {
    order: 1;
    margin: 0 auto 20px;
  }

  .results-content {
    flex-direction: column;
  }

  .results-content .text-content {
    text-align: center;
  }

  .results-content h2 {
    text-align: center;
  }

  .results-content ul {
    text-align: left;
    display: inline-block;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo-contact,
  .footer-links,
  .footer-payment,
  .footer-security {
    flex: 1 1 45%; /* Duas colunas em telas menores */
  }
}

@media (max-width: 576px) {
  .product-image-placeholder {
    margin-left: -10px;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    img {
      width: 100%;
      height: auto;
    }
  }
  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .secret-content {
    flex-direction: column;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo-contact,
  .footer-links,
  .footer-payment,
  .footer-security {
    flex: 1 1 100%; /* Uma coluna em telas muito pequenas */
  }
}

@media (max-width: 380px) {
  .kit-image-placeholder {
    padding-top: 4rem;
    padding-bottom: 5rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    img {
      width: 85%;
      height: auto;
    }
  }
}
