body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #333;
    font-family: 'Montserrat', sans-serif;
  }
  
  header {
    width: 80%;
    margin: 10px auto;
    color: #ffffff;
    text-align: center;
    border: 3px solid;
    border-radius: 8px;
    background: transparent;
    position: relative;
    z-index: 1;
    animation: mudarCorBorda 4s linear infinite;
  }
  
  @keyframes mudarCorBorda {
    0% { border-color:#15c8f0; }
    25% { border-color:lime; }
    50% { border-color: lime; }
    75% { border-color: #15c8f0; }
    100% { border-color:#15c8f0; }
  }

  header h3{
    color:lime;
    font-size: 1.5rem;
    margin-top: -10px;
  }

  #tela-inicial {
    text-align: center;
    color: #ffffff;
  }
  #tela-inicial h1 {
    font-size: 2.5rem;
    margin-top: -10px;
  }

  #tela11 h1{
    color:#15c8f0;
  }
 
  #tela-inicial h2{
    font-size: 2rem;
  }
  #tela-inicial p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    margin-top: -10px;
  }

  #tela12 p {
    font-size: 1.2rem;
    margin-top: -8px;
  }
 

  .pack-imagem {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }


  #preco{
    display: flex;
    justify-content: center;

    color: #ffffff;
  }

  #preco div{
    padding: 20px;
  }

  #preco h2{
    font-size: 2rem;
  }
  
  #preco h1{
    font-size: 3rem;
    margin-top: -20px;
  }
 
 #precox h1{
    color: rgb(255, 0, 0);
  }

 #precoy h1{
    color: rgb(0, 255, 85);
  }

 #sessao-texto{
    text-align: center;
 }

 #sessao-texto #pack-insano{
    width: 40%;
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
    color: #ffffff;
 }

 #pack-insano {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    background: linear-gradient(90deg, #6d2fff, #dd2476, #6d2fff);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    cursor: pointer;
    transition: transform 0.5s ease;
  }
  
  .btn-gradiente-animado:hover {
    transform: scale(1.05);
  }
  
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
 #sessao-texto2{
    margin-top: 40px;
    font-size: 1.4rem;
 }

 #sessao-texto2 p:nth-child(1){
    color: rgb(48, 236, 1);
 }

 #sessao-texto2 p:nth-child(2){
    color: rgb(255, 0, 221);
    margin-top: -15px;
}

  #section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  #seus-produtos{
    text-align: center;
    color: #ffffff;
    padding: 30px;
  }
  #seus-produtos h2{
    color:rgb(40, 204, 40);
  }
  #seus-produtos p{
    text-align: left;
  }
 

  #benefits, .bonus, .faq {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 20px;
  }
  #benefits h2, .bonus h2, .faq h2 {
    margin-bottom: 15px;
  }
  #price {
    text-align: center;
    background: #ffe0e9;
    padding: 40px 20px;
  }
  #price h2 {
    font-size: 2rem;
  }
  #price p {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  #price del {
    color: #888;
    margin-right: 10px;
  }
  .faq{
    width: 85%;
    margin: 0 auto;
    margin-top: 20px;
  }
  #faq-item {
    margin-bottom: 10px;
  }
  #faq-item h4 {
    cursor: pointer;
    margin: 0;
  }
  #faq-item p {
    margin: 5px 0 0;
  }
  footer {
    background: #000000;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }

  footer p{
    color: rgb(207, 207, 207);
  }

  footer a{
    color:silver;
    list-style: none;
  }

  #botao{
    text-align: center;
  }
  .botao-link {
    display: inline-block;
    width: 80%;
    padding: 15px;
    font-size: 1.5rem;
    background-color: rgb(17, 211, 66);
    border: 1px solid rgb(0, 255, 64);
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 30px;
    text-align: center;
  }
  

  .faq-item {
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item p {
    max-height: 0;
    padding: 0 10px;
    border-radius: 5px;
    margin-top: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .faq-item.active p {
    max-height: 200px;
    opacity: 1;
    padding: 10px;
    margin-top: -5px;
  }
  
  .faq-item .text-perguntas {
    padding: 10px;
    background-color: #f1714a;
    color: #ffffff;
    border-radius: 5px;
    position: relative;
    transition: background-color 0.2s ease;
  }
  
  
  .faq-item .text-perguntas:after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .faq-item.active h4:after {
    content: '-';
  }

  #copy-funi-vendas h2{
    color: #f6d93a;
  }
  #copy-funi-vendas p{
    color: #ffffff;
    padding: 0px 20px;
  }
  @media screen and (max-width: 768px) {
    #pack-insano {
      width: 90%;
      font-size: 1.2rem;
    }
  

    #preco h1 {
      font-size: 2rem;
    }
  
    .botao-link {
      width: 80%;
      font-size: 1.2rem;
    }
  }
  

  @media screen and (max-width: 425px) {
    header {
        width: 90%;
        margin:10px auto;
      }
    
    header h1{
        font-size: 1.2rem;
    }   
    #tela-inicial{
        padding: 20px;
        margin-bottom: -50px;
    }
    #tela-inicial h1 {
        font-size: 2rem;
    }
    #tela-inicial h2{
        font-size: 1.4rem;
    }

    #tela12 h1{
        font-size: 1.5rem;
    }

    #tela12 p{
       width: 100%;
       text-align: center;
    }
    .pack-imagem img{
        width: 100%;
    }
    #preco{
      margin-top: -50px;
    }

    #preco h2{
        font-size: 1.5rem;
      }
      
      #preco h1{
        font-size: 2rem;
      }

      #sessao-texto #pack-insano{
        width: 85%;
        padding: 2px;
     }
     #pack-insano h2{
        font-size: 1.2rem;
     }
    
  }


@media screen and (max-width: 375px) {
    #preco h2{
        font-size: 1rem;
      }
      
      #preco h1{
        font-size: 2rem;
        margin-top: -15px;
      }
      #sessao-texto2{
        margin-top: 40px;
        font-size: 1rem;
     }
     #seus-produtos h1{
        font-size: 1.2rem;
     }

    #tela-inicial h2{
      font-size: 1.4rem;
    }
   
}

@media screen and (max-width: 320px) {
  #tela-inicial h2{
    font-size: 1rem;
  }

  #tela12 h1{
    font-size: 1.2rem;
  }
 
}