body {
  font-family: 'Open Sans', sans-serif;
  background-color: #000302;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.hero {
  position: relative; 
  padding: 80px 20px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}

#matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
}

.hero-content {
  position: relative;
  z-index: 1; 
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto 20px;
  text-shadow: 3px 3px 5px #000;
  font-weight: 900;
  font-style: italic;

}

.hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px #000;
  
}


.cta {
  display: inline-block;
  background-color: #05a625;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(5, 166, 37, 0.4);
}

.cta:hover {
  background-color: #067622;
  transform: scale(1.05);
}

section {
  padding: 40px 20px;
  text-align: center;
}

.benefits .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.grid .item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #05a625;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(5, 166, 37, 0.4); 
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.grid .item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(5, 166, 37, 0.6);
}

.garantia {
  background-color: #0A0A0A;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.garantia h2 {
  font-size: 2rem;
  margin: 20px 0 16px;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000;
}

.garantia p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.icone-garantia {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 16px;
}


.faq details {
  background-color: #111;
  margin: 10px auto;
  padding: 12px;
  border-radius: 8px;
  max-width: 700px;
  text-align: left;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #000;
  font-size: 0.9rem;
  border-top: 1px solid #05a625;
}

footer .destaque {
  margin-bottom: 20px;
  display: inline-block;
}

.sobre {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.sobre h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #05a625;
  text-shadow: 2px 2px 4px #000000;
}

.sobre p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 
      -1px -1px 0 #000000, 
       1px -1px 0 #000000, 
      -1px  1px 0 #000000, 
       1px  1px 0 #000000;
}

.sobre strong {
  color: #05a625;
  font-weight: bold;
}





.planos {
  background-color: #000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.planos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #0a0a0a;
  border: 1px solid #05a625;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.card .descricao {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 20px;
}

.card .preco {
  font-size: 1.8rem;
  margin: 20px 0;
  color: #ffffff;
}

.card .preco strong {
  font-size: 2.4rem;
  color: #05a625;
}

.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.card ul li {
  margin-bottom: 10px;
  color: #c2fbc2;
  font-weight: 500;
}

.btn-comprar {
  display: inline-block;
  padding: 14px 24px;
  background-color: #05a625;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-comprar:hover {
  background-color: #067622;
  transform: scale(1.05);
}

.btn-comprar.secundario {
  background-color: #1f1f1f;
  border: 1px solid #05a625;
  color: #05a625;
}

.btn-comprar.secundario:hover {
  background-color: #05a625;
  color: #fff;
}

.card.destaque {
  border: 2px solid #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.preco {
  margin: 20px 0;
}

.preco-antigo {
  font-size: 1rem;
  color: #aaa;
  font-weight: normal;
}

.preco-novo {
  font-size: 1.8rem;
  color: #05a625;
  font-weight: bold;
}

.preco-novo strong {
  font-size: 2.2rem;
  color: #00ff88;
}


html {
  scroll-behavior: smooth;
}


.depoimentos {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}


.depoimentos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #05a625;
  text-shadow: 2px 2px 6px #000;
}

.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.depoimento {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #05a625;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 0 15px rgba(5, 166, 37, 0.3);
  transition: transform 0.3s ease;
}

.depoimento:hover {
  transform: scale(1.05);
}

.depoimento .foto {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #05a625;
}

.depoimento .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}

.depoimento .estrelas {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.depoimento p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
}


.video-embed {
  width: 100%;
  max-width: 900px; 
  aspect-ratio: 16 / 9;
  margin: 30px auto;
}


.hero .video-embed {
  max-width: 900px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}



@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.0rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .grid .item {
    width: 100%;
    max-width: 300px;
  }

  .cta {
    width: 80%;               
    padding: 12px 16px;       
    font-size: 1rem;
    margin: 20px auto 0 auto; 
    display: block;
    text-align: center;
  }
}

.video-embed {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 30px auto;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}


.depoimentos {
    min-height: auto; 
    padding: 40px 15px;}