*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* cor azul #005ca9ff cor laranja #f18801ff cor azulmagalu #0086ffff */

.whatss{

    position: fixed;
    bottom: 14px;
    z-index: 5000;
    right: 10px;
    border-radius: 50px;
    border: solid 3px #f18801ff;
     background-color: #f18801ff;

}

.whatss img{

    width: 40px;
    height: 40px;

}

.url{
    cursor:pointer;
}


h2{
    color: #0086ffff;
    font-size: 24px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* scroll suave */

/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */

/* Centraliza o card na tela (apenas para visualização) */
   

        /* 1. O container da cena (define a profundidade 3D) */
        .scene {
            width: 200px;
            height: 300px;
            perspective: 600px; /* Quanto menor o valor, mais dramático o efeito 3D */
            cursor: pointer;
        }

        /* 2. O objeto que vai girar */
        .card {
            width: 100%;
            height: 100%;
            position: relative;
            transition: transform 0.8s; /* Tempo da animação */
            transform-style: preserve-3d; /* Mantém o 3D nos filhos */
        }

        /* Classe que será adicionada pelo Javascript para girar */
        .card.is-flipped {
            transform: rotateY(180deg);
        }

        /* 3. Estilo comum para as duas faces (Frente e Trás) */
        .card-face {
            position: absolute;
            width: 100%;
            height: 100%;
            color: white;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            display: flex; /* Centraliza o texto */
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            
            /* O SEGREDO: Esconde a parte de trás da div quando ela gira */
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* 4. Estilo específico da Frente (Azul) */
        .card-face-front {
            background-color: #007bff; /* Azul */
        }

        /* 5. Estilo específico de Trás (Verde) */
        .card-face-back {
            background-color: #28a745; /* Verde */
            transform: rotateY(180deg); /* Já começa virado para trás */
        }
   


/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */
/* EFEITO FLIP CARD */





.whats img{
    width: 30px;
    height: auto;
    margin-right: 5px;
    margin-left: 15px;
}

.botao {


    width: 280px;
    text-align: center;
    background-color: #f18801ff;
    color: #fff;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;

}


.botao:hover{

    filter:drop-shadow(0 0 5px 5px #ffffff);
    border: solid 1px #fff;
    backdrop-filter: brightness(120%); 
    filter: brightness(120%); 
}


.botao_3 {


    width: 280px;
    text-align: center;
    background-color: #f18801ff;
    color: #fff;
    border-radius: 8px;
    padding: 14px 0;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;

}


.botao_3:hover{

    filter:drop-shadow(0 0 5px 5px #ffffff);
    border: solid 1px #fff;
    backdrop-filter: brightness(120%); 
    filter: brightness(120%); 
}


#btn {

    cursor: pointer;
    box-shadow: 0px 0px 10px 2px #2e2e2ea4;
   
}

#destaque{

    color: #fff;
    background: none;
    font-size: 20px;
}


#btn:hover {

   
    filter:drop-shadow(0 0 5px 5px #ffffff);
    border: solid 1px #fff;
    backdrop-filter: brightness(250%); 
    filter: brightness(150%); 
    
}

.efeito{
    
    
    border-radius: 15px;
    animation: efeito 5s infinite;
    -webkit-animation-delay: 2.2s;
      
}



@keyframes efeito {
    0% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);
       
        
    }
    88% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);
       
        
    }
    90% {
        background: linear-gradient(0.25turn, #ffffff3f, #ffffff0a,#ffffff0a,#ffffff0a);
      }

    92% {
        background: linear-gradient(0.25turn,  #ffffff0a,#ffffff3f, #ffffff0a,#ffffff0a);
    }
    97% {
        background: linear-gradient(0.25turn,  #ffffff0a,#ffffff0a,#ffffff3f,#ffffff0a);
    }
    100% {
        background: linear-gradient(0.25turn,  #ffffff0a,#ffffff0a,#ffffff0a,#ffffff3f);
    }
  }

  

html{
    scroll-behavior: smooth;
}

.fade {  
    animation: fade 2s ease infinite;
  }
  
  @keyframes fade {
   
    
    0% 
      {opacity: 0} ;
    
    100% 
      {opacity: 1} ;
    
  }
  
  
  .pisca {
    
    animation: blink 3s ease infinite;
  }
  
  @keyframes blink{
  
    0%{
        filter:drop-shadow(0 4px 7px #0086df2f)
    }
    50%{
        filter:drop-shadow(0 4px 7px #0087df)
  }
    100%{filter:drop-shadow(0 4px 7px #0086df60)}
}


.fade3{
        
    animation: fade3 3s infinite;
}

@keyframes fade3 {
    0% {
        opacity: 0;
  
    }

    50%{opacity: 100%;}
    
    100% {
        opacity: 25%;
      
    }
  }


  .fade2{
        
    animation: fade2 2s;
}

@keyframes fade2 {
    0% {
      opacity: 0;
      transform: translateX(-25%);
    }
    
    100% {
        opacity: 100%;
        transform: translateY(0);
    }
  }

  .efeito_2{

    border-radius: 15px;
    animation: efeito2 5s infinite;
    cursor: pointer;
    
}

@keyframes efeito2 {
    0% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);

        -webkit-box-shadow: 0px 0 7px 8px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0);
        box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0);
       
        
    }
    35% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);

        -webkit-box-shadow: 0px 0 7px 8px rgba(255, 255, 255, 0.3);
        -moz-box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.3);
        box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.3);
       
        
    }

    55% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);

        -webkit-box-shadow: 0px 0 7px 8px rgba(255, 255, 255,0.6);
        -moz-box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.6);
        box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.6);
       
        
    }

    75% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);

        -webkit-box-shadow: 0px 0 7px 8px rgba(255, 255, 255, 0.3);
        -moz-box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.3);
        box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0.3);
       
        
    }

    100% {
        background: linear-gradient(0.25turn, #ffffff00, #ffffff00,#ffffff00,#ffffff00);

        -webkit-box-shadow: 0px 0 7px 8px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0);
        box-shadow: 0px 0 7px 8px rgb(255, 255, 255, 0);
       
        
    }


   
  }

  .cons{

    width: 100%; 
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
     margin-top: 530px;
      align-items: center;  
  }


  .consegue{

    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    border: solid 1px #f18801ff;
    border-radius: 20px;
    z-index: 10000;
    padding: 40px;
    background-color: rgba(241, 137, 1, 0.253);
     backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade com navegadores WebKit/iOS */
    color: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

  }

  .consegue .texto{

    font-size: 40px;
    margin-bottom: 20px;
    

  }

  .conquistas {

    display: flex;
    margin: 100px 0;
    justify-content: space-around;
    background-color: #0086ffff;
  }

  .conquistas .imagem{

        display: flex;
        align-items: center;
        border-radius: 20px;
    
  }

  .conquistas .imagem img{

    width: 350px;
    height:auto;
  }

  .linha_itens{

         display: flex;
         align-items: center;
  }

   .item {

    border: solid 1px #fff;
    border-radius: 20px;
    margin: 20px;
    padding: 10px;
    background-color: rgb(255, 255, 255);

   }

   .item_2 {

    border: solid 1px #fff;
    border-radius: 20px;
    margin: 20px;
    padding: 10px;
    background-color: rgb(255, 255, 255);

   }

  .item h2{

    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #0086ffff;

  }

.animacao_1{
        
    animation: animay 2s;
}

@keyframes animay {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    
    100% {
        opacity: 100%;
        transform: translateY(0);
    }
}

.linha_sup{

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: rgb(0, 42, 77);
    z-index: 15;
    color: #fff;
    font-size: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.linha_sup span {

    align-items: center;
    display: flex;
    cursor: pointer;
}

.linha_sup span img{

    width: 17px;
    margin-left: 10px;
}


.linha_1{

    position:absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10%;
    background-color: rgba(0, 93, 169, 0.856);
    z-index: 10;
    box-shadow: 0px 21px 25px -11px rgba(0,0,0,0.74)


}

.logo{

      display: flex;
}

.logo img{ 

    width: 350px;
    height: auto;
}

.menu{

    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;

}

.menu span{

    border-radius: 8px 8px 0 8px;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-left: 20px;
    background-color: #ffffffb0;
    padding: 8px 20px;
    align-items: center;


}

.menu span img{

    height: 15px;
    width: auto;
}



     
    

       /* BANNER PRINCIPAL */
        /* BANNER PRINCIPAL */
        /* BANNER PRINCIPAL */
        /* BANNER PRINCIPAL */


        .sliderxx-container {
            position: relative;
            width: 100%;
            height: 650px; /* Altura fixa solicitada */
            overflow: hidden;
            background-color: #333; /* Cor de fundo caso a imagem demore a carregar */
        }

        /* Configuração de cada Slide */
        .slidexx {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0; /* Começa invisível */
            transition: opacity 1s ease-in-out; /* Efeito Fade */
            z-index: 0;
        }

        /* Slide Ativo fica visível */
        .slidexx.active {
            opacity: 1;
            z-index: 1;
        }

        /* Estilo da Imagem para garantir preenchimento */
        .slidexx img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Garante que a imagem cubra os 700px sem distorcer */
            display: block;
        }

        /* Container das Bolinhas */
        .navigation-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%); /* Centraliza horizontalmente exato */
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        /* Estilo das Bolinhas (Padrão Inativo) */
        .dot {
            width: 14px;
            height: 14px;
            background-color: transparent; /* Transparente */
            border: 2px solid #fff; /* Borda Branca */
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        /* Bolinha Ativa */
        .dot.active {
            background-color: #fff; /* Toda branca */
        }


            /* BANNER PRINCIPAL */
   /* BANNER PRINCIPAL */
   /* BANNER PRINCIPAL */
   /* BANNER PRINCIPAL */


        iframe{

            overflow: hidden;
            padding: 20px;
            width: 500px;
            height: 430px;
            scroll-behavior: none;
            scrollbar-width: 0;
            border-radius: 20px;
            
        }

        
    
    .sonho {

        display: flex;
        flex-wrap: wrap;
        width: 60%;
        margin-left: 20%;
        margin-top: 50px;
        justify-content:space-around;



   }
   
    .sonho .titulo {

        width: 40%;
        display: flex;
        align-items: center;
   }

   .sonho .titulo img{

        width: 380px;
   }

   .video{

        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;

   }

   .video .titulo{

        width: 80%;
        display: flex;
        margin-left: 10%;
        align-items: center;       
        border-bottom: solid 2px #005ca9ff; 
        margin-bottom: 30px;

   }


   .video .titulo h2{

        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #005ca9ff;
        font-size: 26px;


   }

   .video .linha_b{

        width: 80%;
        display: flex;
        margin-left: 10%;
      
   }



   .video .linha_b .texto {

        padding-left: 15%;
        padding-right: 10%;
     
   }
 

   .video .linha_b .texto span{

        
        display: flex;
        flex-direction: column;
        align-items: center;     
        font-size: 22px; 
        justify-content: center;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #919191;
        margin-top: 90px;
        

   }

   .video .linha_b .vd{  
    
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .vd video{

        width:640px;
        height:360px; 
    }


    .tipo_consorcio {

        display: flex;
        flex-wrap: wrap;
        background-color: #f3f3f3;
        margin-top: 50px;
        margin-bottom: 60px;
        align-items: center;
        padding-left: 10%;
        padding-top: 60px;
        padding-bottom: 60px;

    }

    .tipo_consorcio h2{

        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #005ca9ff;
        font-size: 26px;

    }


    .tipo_consorcio .texto{

        width: 50%;
        padding: 0 10%;
        font-size: 18px; 
        justify-content: center;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #919191;

    }

    .tipo_consorcio .imagem img{

        width: 500px;
        border: solid 40px #f18801ff;
        border-radius: 200px 200px 0 200px;
         box-shadow: 0px 11px 15px -8px rgba(0,0,0,0.74)

    }


    .tipo_consorcio .imagem_2 img{

        width: 600px;
        

    }


    .selos{

        width: 100%;
        background-color: #dfdede;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        
    }

    .selos .item{

        margin: 20px;
        display: flex;
        align-items: center;
    }
    
    .selos .item img{

        width: 70px;
        height: auto;
    }


    .rodape{

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-top: 30px;
        background-color: #021a35;
        color: #ffffff;


    }

     .rodape .logo{

        display: flex;
        width: 20%;
        justify-content: center;
        align-items: center;

    }

     .rodape .logo img{

        width: 70%;


    }

     .rodape .atendimento{

        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 60%;
        padding-top: 30px;
        padding-bottom: 40px;

    }

    .rodape .atendimento span{

        display: flex;
        justify-content: center;
    }

    .rodape .atendimento img{

        
        width: 30px;
        height: 30px;

    }

      .rodape .seguranca{

        display: flex;
        justify-content: center;
      
        width: 20%;
        padding: 30px 0;

    }

     .rodape .seguranca img{

        width: 40%;
     }

      .rodape .seguranca span{

        font-size: 10px;
        color:#fff;
      }

     

     .rodape .copy{

        display: flex;
        text-align: center;
        justify-content: center;
        width: 100%;
        padding: 30px 0;
        border-top: solid 1px #032c5c ;
        padding: 10px 0;

    }


    


@media screen and (max-width: 769px){ 

    .whats{

        width: 220px;    
        right: -7px;
        font-size: 16px;
        padding: 9px;
      
    }
    .whats img{
        width: 18px;
        height: auto;
        margin-right: 5px;
        margin-left: 10px;
    }

   .menu{

    width: 100%;
    justify-content:center;

   }

    .menu #destaque{
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
   }

   .linha_1{

    padding-left: 0;
   }

   .linha_1   .logo{
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;

   }
    

   .menu span{

    border-radius: 8px 8px 0 8px;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-left: 0;
    background-color: #ffffffb0;
    padding: 8px 15px;
    margin: 10px;


}


    .box_img{
        width: 94%;    
        height: 70%;
        top: 100px;
        position: absolute;
        margin-left: 3%;
        background-color:rgb(255, 255, 255, 0.8);
        font-size: 16px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        border-radius: 7px;
        padding: 5px;
        z-index: 57000;
        
        
        }

    .box_img2{
        width: 90%;    
        height: 100vw;
        margin-left: 5%;
        top: 150px;
        position: absolute;
        text-align: center;
        font-size: 16px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        border-radius: 7px;
        z-index: 5000;
        
        
        }

        .lbox:target{
        
            margin-top: 0;

        }


        

  .sonho {

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-left: 0;
        margin-top: 50px;   


   }

    .sonho .titulo{

       
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;      


   }

    .sonho .titulo img{

       
        width: 60%;
      


   }

    .sonho .formulario{

         text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;     
        width: 100%;
      


   }

    iframe{

        margin-left: 5%;
        padding: 20px;
        width: 90%;
        height: 430px;
        
        
    }


    .conquistas {

        display: flex;
        flex-direction: column;
        padding: 50px 0;
        margin: 100px 0;
        justify-content: center;
    }

    .conquistas .linha_itens{

        display: flex;
        flex-direction: column;
      
        justify-content: scenter;
    }

    .conquistas .imagem{

        display: flex;
        width: 90%;
        margin-left: 5%;
        justify-content: center;
        margin-top: 30px;
        border: solid 1px #fff;

    }

      .conquistas .imagem img{

        width: 70%;
        padding: 20px 0;
      }

    .video .linha_b{

        width: 90%;
        margin-left: 5%;
        flex-direction: column;
      
   }

     .video .linha_b .texto {

        padding-left: 0;
        padding-right: 0;
     

   }

    #bt{

       float:center;
       margin: 0 auto;
     

   }

   .video .titulo{

        width: 90%;
        display: flex;
        margin-left: 5%;
   }

     .vd video{

        width:90vw;
        height:260px; 
    }

     .video .linha_b .texto span{

        margin-top: 50px;
        

   }

    .tipo_consorcio{

        margin-top: 100px;
        padding-top: 100px;
    }


    .tipo_consorcio .texto{

        width: 90%;
        padding: 0 5%;
        font-size: 18px; 
        justify-content: center;
      

    }


    .tipo_consorcio .imagem img{

        width: 90%;
        margin-top: 30px;
        border: solid 40px #f18801ff;
        border-radius: 200px 200px 0 200px;
         box-shadow: 0px 11px 15px -8px rgba(0,0,0,0.74)

    }

    .tipo_consorcio .imagem_2 img{

        width: 90%;
        

    }
     .rodape .logo{

       
        width: 100%;
       

    }

     .rodape .logo img{

        width: 70%;


    }

     .rodape .atendimento{

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 30px 30px;

    }

      .rodape .seguranca{

       
        width: 100%;
        padding: 30px 0;

    }

      .cons{

    width: 100%; 
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
     margin-top: 580px;
      align-items: center;  
  }


  .consegue{

    position: absolute;
    display: flex;
     width: 60%; 
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    padding: 10px;
  

  }

  .consegue .texto{

    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
    

  }
  .linha_sup span {

    font-size: 12px;
}

.botao_3 {


    width: 200px;
    text-align: center;
    background-color: #f18801ff;
    color: #fff;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;

}
    

    

}