/* Reset de estilos padrões */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.hero {
  max-width: 100%;
  position: relative;
  background: url('assets/principal.webp') no-repeat center center;
  background-size: cover; /* Mantém a cobertura total */
  background-position: top center; /* Ajusta a imagem para que a parte superior fique visível */
  color: white;
  padding: 20rem 0rem 25.5rem 0rem;
  text-align: center;
}

.hero h1, .hero p {
  display: none;
position: relative;
z-index: 2; /* Garante que o texto fique acima da sombra */
}

/* Sombra no texto */
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6); /* Sombra no título */
}

.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); /* Sombra suave para o parágrafo */
}


/* Botão CTA */
.cta-button {
  background-color: #008000;
  color: #ffffff;
  padding: 1.6rem 5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-flex;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza perfeitamente */
  z-index: 10;
}

.cta-button:hover {
  background-color: #218838; /* Verde escuro para o efeito de hover */
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Sombra mais intensa */
}

.cta-button:active {
  background-color: #1e7e34; /* Verde ainda mais escuro para clique */
}

.cta-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: transform 0.3s ease; /* Efeito de transição suave para o ícone */
}

.cta-button:hover .cta-icon {
  transform: translateX(5px); /* Move o ícone ligeiramente para a direita */
}

/* Benefícios */
.benefits {
  background-color: #000;
  padding: 2rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 2.8rem;
  color: #fff;
  padding: 0.5rem;
  background-color:#b7181c; /* Usa a variável de cor */
  border-radius: 1rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.benefits li {
  background-color:#000;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.benefits li:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefits li strong {
  font-size: 1.3rem;
  color: #b7181c; /* Usa a variável de cor */
  font-weight: 600;
}

.benefits li p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
  margin-top: 12px;
}

/* Call to Action */
.cta-final {
  background-color: #000;
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Botão CTA */
.cta-button2 {
  background-color: #008000; /* Verde mais suave */
  color: #ffffff;
  padding: 1.6rem 5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-flex;
  border-radius: 50px; /* Bordas arredondadas para um design mais moderno */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Transições suaves */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave para profundidade */
  cursor: pointer;
  position: relative; /* Adicionando para garantir que o z-index funcione */
  z-index: 10; /* Garantir que o botão esteja acima de outros elementos */
}

.cta-button2:hover {
  background-color: #218838; /* Verde escuro para o efeito de hover */
  color: white;
  transform: translateY(-5px); /* Efeito de elevação */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Sombra mais intensa */
}

.cta-button2:active {
  background-color: #1e7e34; /* Verde ainda mais escuro para clique */
  transform: translateY(2px); /* Efeito de clique (afundamento) */
}

/* Banner */
.banner {
  background: url('assets/banner.webp') no-repeat center center/contain;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 10rem 1rem;
  position: relative;
}

.banner-content {
  padding: 2rem;
  display: inline-block;
}

/* Seção Módulos */
.modulos {
  padding: 3rem 1rem;
  background-color: #000;
  text-align: center;
}

.modulos-content h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.625rem;
}

.modulos-content p {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

/* Container dos módulos */
.modulos-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Estilo individual dos módulos */
.modulo {
  width: 20%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.modulo:hover {
  transform: scale(1.05);
}

.modulo img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.product-section {
  text-align: center;
  background-color: #000; /* Fundo escuro para dar destaque */
}

.product-heading {
  font-size: 2rem; /* Aumentei um pouco o tamanho da fonte para mais destaque */
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff; /* Mantendo o branco */
}

.product-subheading {
  font-size: 1.7rem; /* Aumentei o tamanho para dar mais destaque */
  font-weight: bold;
  color: #ff4500; /* Laranja esportivo */
  margin-bottom: 2rem;
}

.product-price {
  width: 50%;
  height: auto;
  background: linear-gradient(to right, #000, #111, #333, #111, #000); /* Gradiente aprimorado */
  padding: 3rem;
  border-radius: 1rem;
  display: inline-block;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
  color: white;
  position: relative;
}

.original-price {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: #ff5555;
  padding: 5px;
}

.installments {
  font-size: 1.6rem;
  display: block;
  margin-top: 0.5rem;
}

.installment-price {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}

.discount-price {
  font-size: 1.2rem;
  display: block;
  color: #ddd;
}

.buy-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  background: #008000;
  color: white;
  text-decoration: none;
  border-radius: 5rem;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 10px #002200, 0 0 20px #008000, 0 0 30px #008000, 0 0 40px #008000; /* Efeito Neon */
}

.buy-button:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 0 1rem #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00; /* Intensificando o efeito Neon ao passar o mouse */
}

.product-section {
  display: flex; /* Usando flexbox para alinhar o conteúdo e a imagem lado a lado */
  justify-content: space-between;
  align-items: center;
  padding: 1rem 8rem;
  margin-bottom: 2rem;
}

.product-info {
  flex: 1;
}

.creator {
  position: relative;
  background: #000;
  box-shadow: 10px 0px 10px 0px #b7181c;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  position: relative;
}

.creator-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.creator h2 {
  font-size: 2.3rem;
  text-align:  center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6); /* Sombra no título */
}

.creator-image {
  position: relative;
  width: 30rem;
  height: 30rem;
  object-fit: cover;
  border-radius: 3rem;
}

.creator-info {
  margin-top: 1rem;
  text-align: left;
  background: #000;
  padding: 1rem 1rem 5rem 1rem;
  border-radius: 10px;
  box-shadow: 1px 1px 10px  rgb(255, 254, 254);
}

.creator-info p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.creator-info ul {
  list-style: none;
  padding: 0;
}

.creator-info li {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.creator-info li::before {
  content: "🏍";
  margin-right: 0.5rem;
}

.creator-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-card {
  background: #222;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  width: 15rem;

  box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

.stat-card h3 {
  font-size: 2rem;
  color: #f8b400;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #008000;
}

/* FAQ - Perguntas Frequentes */
.faq {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}

.faq-item {
  cursor: pointer;
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.faq-item p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-top: 0;
}

.faq-item h3:hover {
  color: #4caf50; /* Cor de destaque para o título */
}

.button-container {
  text-align: center;
  margin-top: 4rem;
  text-transform: uppercase;
}

.redirect-button {
  background-color: #008000; /* Cor do botão */
  color: white;
  padding: 2rem 5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #002200, 0 0 20px #008000, 0 0 30px #008000, 0 0 40px #008000; /* Efeito Neon */
}

.redirect-button:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 0 1rem #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00; /* Intensificando o efeito Neon ao passar o mouse */
}

/* Rodapé */
footer {
  background-color: #000;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

footer nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer nav a:hover {
  text-decoration: underline;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 1.5rem 4rem;
    font-size: 1.1rem;
  }

  .benefits ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .benefits li {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 992px) {

  body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}
  .hero {
    padding: 15rem 0 20rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 1.4rem 3.5rem;
    font-size: 1rem;
  }

  .benefits ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .benefits li {
    padding: 1.3rem;
  }

  .product-section {
    flex-direction: column;
    text-align: center;
  }

  .product-info {
    padding-right: 0;
  }

  .product-image-box {
    margin-top: 2rem;
  }

  .product-image {
    width: 30rem;
    height: 30rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 12rem 0 16rem 0;

  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 1.3rem 3rem;
    font-size: 0.9rem;
    white-space: nowrap; /* Impede quebra de linha no texto */
  }

  .benefits h2 {
    font-size: 1rem;
    color: #fff;
    padding: 1rem;
    background-color: #b7181c;
    border-radius: 1rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .benefits ul {
    grid-template-columns: 1fr;
  }

  /* Call to Action */
.cta-final {
  background-color: #000;
  padding: 1rem 1rem;
  text-align: center;
  color: white;
}

.cta-final h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Botão CTA */
.cta-button2 {
  padding: 1.5rem 3rem;
  font-size: 1rem;
  white-space: nowrap; /* Impede quebra de linha no texto */
}

/* Banner */
.banner {
  background: url('assets/banner.webp') no-repeat center center/contain;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.banner-content {
  padding: 2rem;
  display: inline-block;
}

/* Seção Módulos */
.modulos {
  padding: 1rem 1rem;
  background-color: #000;
  text-align: center;
}

.modulos-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.425rem;
}

.modulos-content p {
  font-size: 1.2rem;
  color: #b3b3b3;
  margin-bottom: 2rem;
}

/* Container dos módulos */
.modulos-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Estilo individual dos módulos */
.modulo {
  width: 45%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.modulo:hover {
  transform: scale(1.05);
}

.modulo img {
  width: 100%;
  display: block;
  cursor: pointer;
}

  .product-section {
    text-align: center;
    background-color: #000; /* Fundo escuro para dar destaque */
    color: white;
  }
  
  .product-heading {
    font-size: 1.5rem; /* Aumentei um pouco o tamanho da fonte para mais destaque */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff; /* Mantendo o branco */
  }
  
  .product-subheading {
    font-size: 1.6rem; /* Aumentei o tamanho para dar mais destaque */
    font-weight: bold;
    color: #ff4500; /* Laranja esportivo */
    margin-bottom: 1rem;
  }
  
  .product-logo {
    max-width: 300px; /* Ajuste o tamanho do logo conforme necessário */
    margin-top: 10px; /* Espaço entre o subtítulo e o logo */
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .product-price {
    width: 100%;
    height: auto;
    background: linear-gradient(to right, #000, #111, #333, #111, #000); /* Gradiente aprimorado */
    padding: 2rem;
    border-radius: 1rem;
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
  }
  
  .original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #ff5555;
    padding: 5px;
  }
  
  .installments {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
  }
  
  .installment-price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
  }
  
  .discount-price {
    font-size: 1.1rem;
    display: block;
    color: #ddd;
  }
  
  .buy-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background: #008000;
    color: white;
    text-decoration: none;
    border-radius: 4rem;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px #002200, 0 0 20px #008000, 0 0 30px #008000, 0 0 40px #008000; /* Efeito Neon */
  }
  
  .buy-button:hover {
    background: #218838;
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00; /* Intensificando o efeito Neon ao passar o mouse */
  }
  
  .product-section {
    display: flex; /* Usando flexbox para alinhar o conteúdo e a imagem lado a lado */
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
  }
  
  .product-info {
    flex: 1;
    padding-right: 2rem;
  }
  
  .product-image-box {
    flex: 1;
    display: flex;
    justify-content:flex-end;
    display: none;
  }
  
  .product-image {
    width: 40rem;
    height: 40rem;
    border-radius: 1rem; /* Bordas arredondadas para a imagem */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra para destacar a imagem */
  }

   /* FAQ - Perguntas Frequentes */
.faq {
  background-color: #111;
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
}

.faq h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3rem;
}

.faq-item {
  cursor: pointer;
  background-color: #222;
  padding: 1rem;
  border-radius: 0.625rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.faq-item p {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
  margin-top: 0;
}

.faq-item h3:hover {
  color: #4caf50; /* Cor de destaque para o título */
}
  
  .creator {
    padding: 1rem;
  
  }

  .creator h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .creator-image {
    width: 20rem;
    height: 20rem;
    right: 0;
  }

  .creator {
    position: relative;
    background: #000;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .creator-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    position: relative;
  }

  .creator-info {
    text-align: center;
    background: #222;
    padding: 1rem;
    border-radius: 0rem;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
  }
  
  .creator-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .creator-info ul {
    list-style: none;
    padding: 0;
  }
  
  .creator-info li {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .creator-info li::before {
    content: "🏍";
    margin-right: 0.5rem;
  }
  
  .creator-stats {
    display: flex;
    gap: 0.625rem;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  
  .stat-card {
    background: #222;
    padding: 0.625rem;
    border-radius: 1rem;
    text-align: center;
    width: 8rem;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
  }
  
  .stat-card h3 {
    font-size: 1.9rem;
    color: #f8b400;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
.button-container {
  text-align: center;
  margin-top: 1rem;
  text-transform: uppercase;
  white-space: nowrap; /* Impede quebra de linha no texto */

}

.redirect-button {
  margin-top: 1rem;
  background-color: #008000; /* Cor do botão */
  color: white;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #002200, 0 0 10px #008000, 0 0 30px #008000, 0 0 40px #008000; /* Efeito Neon */
}

.redirect-button:hover {
  background-color: #28a745; /* Cor do botão ao passar o mouse */
  box-shadow: 0 0 1px #28a745, 0 0 1px #28a745, 0 0 40px #28a745, 0 0 50px #28a745; /* Intensificação do efeito neon */
  transform: scale(1.01); /* Aumenta o tamanho ao passar o mouse */
}


}

@media screen and (max-width: 480px) {

  /* Vídeo em tela cheia */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  padding: 5rem 0 0 0; /* Reduz o padding superior para melhor ajuste */
  background: url('assets/principalmobile.webp') no-repeat center center;
  background-size: cover; /* Faz a imagem cobrir todo o espaço */
  min-height: 100vh; /* Garante que a seção ocupe toda a tela do dispositivo */
}

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    margin-top: -3rem;
    padding: 1.5rem 1rem; /* Menos padding para o texto caber */
    font-size: 0.8rem;
    white-space: nowrap; /* Impede quebra de linha no texto */
  }

  .benefits ul {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .product-info {
    padding-right: 0;
  }

  .product-image {
    width: 20rem;
    height: 20rem;
  }
}
