/* ============================
   RESET E CONFIGURAÇÕES GERAIS
   ============================ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000;
  position: relative;
}

/* FUNDO DE LETRAS — SOMENTE NO HERO */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: "src/fundo-letras.png";
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.floating-order-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0a7c59;
  color: #fff;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.2s ease-in-out;
}

.floating-order-btn:hover {
  background: #09694c;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .floating-order-btn {
    bottom: 15px;
    right: 15px;
    padding: 14px 22px;
    font-size: 16px;
  }
}

/* ============================
   HERO (TOPO)
   ============================ */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.logo {
  width: 260px;
  margin-bottom: 25px;
}

.titulo-aula {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.sub-aula {
  font-size: 18px;
  margin-bottom: 25px;
  color: #000;
}

/* VÍDEO */
.video-wrapper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* BOTÃO VERDE */
.btn-verde {
  display: inline-block;
  background: #00b050;
  color: white;
  padding: 18px 40px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}

.btn-verde:hover {
  background: #009442;
  transform: translateY(-2px);
}

/* BLOCO DE PREÇO */
.preco-imagens {
  margin-top: 35px;
  text-align: center;
}

.img-acesso {
  width: 260px;
  display: block;
  margin: 0 auto 15px;
}

.img-preco {
  width: 320px;
  display: block;
  margin: 0 auto;
}

/* ============================
   BENEFÍCIOS (FUNDO #f7f7f7)
   ============================ */
.beneficios-secundarios {
  background: #f7f7f7;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.beneficios-secundarios .beneficio {
  width: 220px;
}

.beneficios-secundarios img {
  width: 90px;
  margin-bottom: 12px;
}

.beneficios-secundarios p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

/* ============================
   COMO FUNCIONA (#161616)
   ============================ */
.como-funciona {
  background: #161616;
  padding: 80px 20px;
  color: #ffffff;
}

.como-container {
  max-width: 1100px;
  margin: 0 auto;
}

.titulo-como-funciona {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}

/* GRID 50/50 */
.como-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.como-col {
  flex: 1 1 450px;
}

/* IMAGEM */
.como-img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
}

/* TEXTO */
.como-texto {
  font-size: 18px;
  line-height: 1.7;
}

.como-texto p {
  margin-bottom: 18px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .como-grid {
    flex-direction: column;
    text-align: center;
  }

  .como-texto {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ============================
   BENEFÍCIOS DO HERO (TOPO)
   ============================ */
.beneficios {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.beneficio {
  text-align: center;
  width: 160px;
}

.beneficio img {
  width: 90px;
  margin-bottom: 10px;
}

.vitalicio-img {
  width: 110px;
}

.beneficio p {
  font-size: 16px;
  color: #000;
}

/* ============================
   O QUE VOCÊ VAI ENCONTRAR
   ============================ */
.conteudo-curso {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.titulo-conteudo {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* CONTADORES */
.contadores {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contador {
  text-align: center;
}

.contador-numero {
  font-size: 70px;
  font-weight: 700;
  color: #000;
}

.contador-titulo {
  font-size: 20px;
  margin-top: 10px;
}

/* GRID DE CONTEÚDO */
.conteudo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: left;
}

.conteudo-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.conteudo-col ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
  line-height: 1.6;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  display: inline-block;
  background: #00b050;
  color: #fff;
  padding: 18px 40px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
}

.cta-img {
  display: block;
  margin: 10px auto;
  max-width: 360px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .conteudo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .conteudo-grid {
    grid-template-columns: 1fr;
  }

  .contador-numero {
    font-size: 50px;
  }
}

/* ============================
   RODAPÉ
   ============================ */
.rodape {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  margin-top: 0;
  border-top: 1px solid #ddd;
}

.rodape p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* ============================
   RESPONSIVIDADE
   ============================ */
@media (max-width: 768px) {
  .video-wrapper iframe {
    height: 260px;
  }

  .img-como-funciona {
    width: 90%;
  }

  .beneficios-secundarios .beneficio {
    width: 100%;
    max-width: 300px;
  }
}
