:root {
  --primary: #333333;
  --secondary: #666666;
  --dark: #000000;
  --light: #999999;
  --gray: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--dark);
  color: #ffffff;
  line-height: 1.6;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  text-align: left;
  margin-top: 5px;
}

.logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 5px;
}

.logo2 {
  text-align: center;
  margin: 40px 0;
}



.logo3 {
  text-align: center;
  margin: 40px 0;
}

.logo3 img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(102, 102, 102, 0.3));
}

.headline3 {
   font-size: 1.6rem;
  font-weight: 300;
  color: #868686; /* Cor de texto desejada */
  text-align: center;
  margin: 20px 0 15px;
  /* background: linear-gradient(45deg, #00ffc8, #15e9f8); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
}


.headline {
  font-size: 2.1rem;
  font-weight: 300;
  text-align: center;
  margin: 20px 0 15px;
  background: linear-gradient(45deg, #00ffc8, #15e9f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sub-headline {
  margin: 20px 0 15px;
  font-size: 1.6rem;
  text-align: center;
  color: var(--light);
  margin-bottom: 50px;
  line-height: 1.5;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

/* Define um estilo para imagens de produto */
.product-image {
    display: block; /* Garante que a imagem se comporte como um bloco */
    max-width: 95%; /* Ajusta a largura máxima para 95% do contêiner */
    height: auto; /* Mantém a proporção da imagem */
    margin: 0 auto; /* Centraliza a imagem horizontalmente */
    border-radius: 8px; /* Adiciona bordas arredondadas (opcional) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adiciona uma sombra suave (opcional) */
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 480px) {
    .product-image {
        max-width: 100%; /* Em telas pequenas, permite que ocupe toda a largura */
        margin: 0; /* Remove margens extras */
    }
}

/* Media query para smartphones */
@media (max-width: 480px) {
  .product-image img {
    width: 100%;
    max-width: 300px;
  }
}

.buy-button {
  display: block;
  width: 250px;
  margin: 40px auto;
  padding: 18px 35px;
  background: linear-gradient(45deg, #4a4a4a, #666666);
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.buy-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

button2 {
            background-color: #4285f4;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            max-width: 80%;
            width: 240px;
            
        }
button2:hover {
            background-color: #357abd;
        }

.centered-paragraph {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  color: #979797;
  font-size: 1.2rem;
  line-height: 1.8;
}

.checklist-container {
  
   width: 100%;
  margin: 50px auto;
  padding: 30px;
  background: var(--gray);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.checklist-item {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #979797;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.checklist-item:hover {
  transform: translateX(10px);
}

.checklist-item img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.empty-container {
  height: auto;
  background: var(--gray);
  border-radius: 20px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.empty-container:hover {
  transform: translateY(-5px);
}

.dual-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 50px auto;
}

.dual-box {
  flex: 1;
  height: 200px;
  background: var(--gray);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.dual-box:hover {
  transform: translateY(-5px);
}

.final-container {
  height: 200px;
  background: var(--gray);
  border-radius: 20px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.final-container:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .headline {
    font-size: 2.1rem;
  }
  
  .sub-headline {
    font-size: 1.1rem;
  }
  
  .dual-container {
    flex-direction: column;
  }
  
  .container {
    width: 95%;
    padding: 15px;
  }
  
  .buy-button {
    width: 200px;
    font-size: 1.1rem;
  }
  
  .checklist-item {
    font-size: 1rem;
  }

  .logo img {
    width: 140px;
    height: auto;
    margin-top: 5px;
  }
  
  .product-image img {
    max-width: 80%;
  }
  
 }

@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3), 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 1);
  }
}

.botao-comprar {
 display: block;
  width: 350px;
  margin: 40px auto;
  padding: 12px 24px;
  background-color: #000; /* Cor de fundo */
  color: white; /* Cor do texto */
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  text-decoration: none; /* Remove o sublinhado */
  border-radius: 50px; /* Borda arredondada */
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.3), 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.7); /* Efeito neon */
  transition: background-color 0.3s ease;
  max-width: 80%;
  width: 260px;
  animation: neon-pulse 4s infinite alternate; /* Animação de "ascender e apagar" */
}

.botao-comprar:hover {
  background-color: #009191; /* Cor de fundo ao passar o mouse */
}

.column2 {
    flex: 1;
    margin: 10px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 10.0); 
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0px solid #0099cc;
    color: #fff;
}

.four-columns .column2 {
    min-width: calc(25% - 10px);
}

.two-columns .column2 {
    min-width: calc(50% - 10px);
}

@media (max-width: 768px) {
    .four-columns .column2 {
        min-width: calc(50% - 10px);
    }
}

.column3 {
    flex: 1;
    margin: 5px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 10.0); 
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0px solid #0099cc;
    color: #fff;
}

.four-columns .column3 {
    min-width: calc(25% - 10px);
}

.two-columns .column3 {
    min-width: calc(50% - 10px);
}

@media (max-width: 768px) {
    .four-columns .column3 {
        min-width: calc(50% - 10px);
    }
}

 

 .mobile-frame {
      border: 1px solid #ccc;
      border-radius: 20px;
      width: 300px;
      height: 550px;
      margin: 10px;
      padding: 10px;
      box-sizing: border-box;
      background-color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }
    @media (max-width: 768px) {
      body {
        flex-direction: column;
        align-items: center;
      }
    }
    
    .preco-container {
    background-color: #1a1a1a; /* Fundo escuro da caixa */
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin: 0 auto; /* Centraliza horizontalmente */
  }

  .preco-original {
    font-size: 18px;
    color: #b0b0b0;
    text-decoration: line-through;
    margin-bottom: 8px;
  }

  .preco-promo {
    font-size: 26px;
    color: #00ffc8;
    font-weight: 300;
    margin-bottom: 8px;
  }

  .parcelado, .avista {
    font-size: 22px;
    color: #00ffc8;
  }

  .parcelado {
      font-size: 32px;
      font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.5;
  }
  
  .container3 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1E1E1E;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    
    text-align: center;
}

.content-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.content-section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 1.5em;
    color: #63D1F4; /* tom azul claro */
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #B0B0B0;
    text-align: center;
}

.p2 {
    font-size: 1em;
    line-height: 1.6;
    color: #9c9c9c;
    text-align: left;
    font-weight: 300;
}

.p5 {
    font-size: 1em;
    line-height: 1.6;
    color: #626262;
    text-align: center;
    font-weight: 300;
}


/* Media query para dispositivos com largura mínima de 768px (desktop) */
@media (min-width: 768px) {
    .fm1 {
        font-size: 48px; /* Fonte para desktop */
    }
}

.fm1 { font-size: 34px; /* Fonte para dispositivos móveis */ text-align: center; font-weight: 300; margin: 25px 0 0 0; line-height: 1.4; color: #ADB0B7; } 

/* Media query para dispositivos com largura mínima de 768px (tablets e desktops) */ @media (min-width: 768px) { .fm1 { font-size: 48px; /* Fonte para tablets e desktops */ }
        
.fm2 {
            font-size: 26px; /* Ajuste o tamanho conforme necessário */
            text-align: center; /* Centraliza o texto */
            font-weight: 400; /* Deixa o texto em negrito */
            margin: 30px 0 0 0;
            line-height: 1.3;
            color: #979797;
        }  
        
.fm3 {
            font-size: 18px; /* Ajuste o tamanho conforme necessário */
            text-align: center; /* Centraliza o texto */
            font-weight: 300; /* Deixa o texto em negrito */
            margin: 30px 0 0 0;
            line-height: 1.4;
            color: #868686;
        }     
        
.fm4 {
            font-size: 34px; /* Ajuste o tamanho conforme necessário */
            text-align: center; /* Centraliza o texto */
            font-weight: 800; /* Deixa o texto em negrito */
            margin: 30px 0 0 0;
            line-height: 1.4;
            color: #979797;
        }        
        
.faq-container {
      width: 100%;
  margin: 50px auto;
  padding: 30px;
  background: var(--gray);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
    }

    .faq-title {
        font-size: 2rem;
        color: #b1b1b1;
        
        text-align: center;
        font-weight: 700;
    }

    .faq-item {
        background: #333333;
        border-radius: 8px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-2px);
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        transition: background 0.3s ease;
    }

    .faq-question:hover {
        background: #3d3d3d;
    }

    .faq-question::after {
        content: '›';
        font-size: 1.5rem;
        color: #81FFC3;
        transition: transform 0.3s ease;
    }

    .faq-question.active::after {
        transform: rotate(90deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding: 0 1.5rem;
        color: #646464;
    }

    .faq-answer.active {
        max-height: 2000px;
        padding: 0 1.5rem 1.5rem;
    }

    ul {
        list-style-position: inside;
        margin: 2rem 0;
    }

    li {
        margin: 1.0rem 0;
    }

  .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: #fefefe;
            border-radius: 10px;
            padding: 20px;
            width: 80%;
            max-width: 500px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            text-align: center;
        }

        .close-btn {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

    

   