@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Asap", sans-serif;
}

/*VARIÁVEIS*/

:root{
    --corTema: #002369;
    --corSecundaria: #00BDD1;
    --corButton: #0053AD;
}

/* ESTILOS GERAIS */

.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

html,body{
    background-color: #e6e6e6;
    scroll-behavior: smooth;
}

.title-pages{
    width: 100%;
    display: flex;
    align-items: center;
}

.title-pages h1{
    font-size: 32px;
    width: 40%;
    min-width: 120px;
    line-height: 30px;
    color: var(--corTema);
    font-weight: 800;
}

.title-pages .decora{
    width: 60%;
    height: 2px;
    background-color: #ff0b15;
}

/* ESTILO DO MENU DESKTOP */

header{
    width: 100%;
    background-color: #fff;
    padding: 30px 2%;
    position: relative;
    box-shadow: 0px 2px 10px 0px #0000002c;
}

.ajuste-menu{
    display: flex;
    align-items: center;
}

.contato-header{
    justify-content: right;
    font-size: 14px;
    display: flex;
    align-items:center;
}

.contato-header button{
    width: 120px;
    height: 30px;
    margin-right: 20px;
    background-color: var(--corLaranja);
    color: #fff;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.logotipo{
    width: 100%;  /*REDUZIR ISSO PRA ADICIONAR A CENTRAL DO CLIENTE*/
}

.logotipo img{
    width: 20%;
}

.logotipo .logo-mobile{
    display: none;
}

.logotipo .logo-desktop{
    display: block;
    margin: auto; /*REMOVER ISSO PRA LOGO VOLTAR PRO CANTO ESQUERDO*/
}

.menu-desktop{
    width: 70%;
    text-align: right;
}

.menu-desktop nav a{
    text-decoration: none;
    color: #7d7d7d;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
}

.menu-desktop nav a:hover:not(.assine,.cliente){
    background-color: var(--corSecundaria);
    color: #fff;
}

.menu-desktop nav a.cliente{
    background-color: var(--corTema);
    color: #fff;
    transition: .2s;
}

.menu-desktop nav a.assine{
    background-color: var(--corSecundaria);
    color: #fff;
    transition: .2s;
}

.menu-desktop nav a.cliente:hover{
    background-color: var(--corSecundaria);
}

.menu-desktop nav a.assine:hover{
    background-color: var(--corTema);
}
/* FIM DO ESTILO MENU-DESKTOP */
    
/* ESTILO MENU-MOBILE */   
.menu-mobile{
    width: 100%;
    height: 0;
    padding: 0;
    padding-top: 40px;
    background-color: var(--corTema);
    position: fixed;
    top:130px;
    left: 0;
    visibility: hidden;
    transition: .5s ;
    overflow: hidden;
    z-index: 99999;
}

.menu-mobile nav a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 20px 0px;
    font-size: 16pt;
    font-weight: 500;
}

.menu-mobile nav a:hover{
    background-color: #fff;
    color: var(--corSecundaria);
}

#btn-menu{
    background: transparent;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    border: 0;
    transition: .2s;
    display: none;
    position: absolute;
    top:25%;
    right: 5%;
    margin-right: 20px;
}

#subMunu{
    width: 200px;
    height: auto;
    background-color: #ff0b15;
    text-align: left;
    position: absolute;
    top: 70px;
    right: 34%;
    border-radius: 10px;
    display: none;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.3);
}

#subMunu a{
    color: #fff;
    display: block;
}

#subMunu.mousehover{
    display: block;
}

#submenu-mob{
    background-color: #d10009;
    height: 0;
    overflow: hidden;
    transition: .5s ease-in-out;
}

#submenu-mob.mostrar{
    height: 185px;
}

.linksubmenu{
    display: inline-block;
    height: auto;
}

.linha{
    position: relative;
    top: 0;
    height: 4px;
    background: var(--corButton);
    width: 45px;
    display: block;
    margin: 8px auto;
    transform-origin: center;
    transition: .2s ease-in-out;
    border-radius: 20px;
} 

.fa-caret-down{
    transform: rotate(0deg);
    transition: .5s;
}

.fa-caret-down.ativo{
    transform: rotate(180deg);
}

#btn-menu.ativo .linha:nth-child(1){
    transform: translateY(12px) rotate(-45deg);
    background-color: var(--corButton);
}

#btn-menu.ativo .linha:nth-child(3){
    transform: translateY(-12px) rotate(45deg);
    background-color: var(--corButton);
}

#btn-menu.ativo .linha:nth-child(2){
    width: 0;
}

.menu-mobile nav > div{
    text-align: right;
    width: 100%;
}

.menu-mobile nav > div > button{
    width: 190px;
    height: 40px;
    background-color: #130863;
    font-weight: 600;
    border: 0;
    color: #fff;
    margin-right: 48px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}
/* FIM DO ESTILO MENU-MOBILE */  

/* ESTILO DO ACESSO RÁPIDO */
section.acesso-rapido{
    width: 100%;
    padding: 60px 0;
}

.acesso-rapido h2{
    color: var(--corTema);
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.acesso-rapido .ajuste-acesso{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.acesso-rapido .ajuste-acesso a{
    text-decoration: none;
}

.acesso-rapido .btn-acesso{
    width: 210px;
    border: 4px solid var(--corTema);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 200px;
    cursor: pointer;
    transition: .4s;
}

.acesso-rapido .btn-acesso:hover{
    background-color: var(--corTema);
    color: #fff;
    transform: scale(1.1);
}

.acesso-rapido .btn-acesso:hover span{
    color: #fff;
}

.acesso-rapido .btn-acesso i{
    font-size: 3em;
    color: var(--corSecundaria);
}

.acesso-rapido .btn-acesso span{
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--corTema);
}
/* FIM DO ESTILO DO ACESSO RÁPIDO */

/* ESTILO NOSSA MISSÃO */
section.nossa-missao{
    width: 100%;
    padding: 60px 0;
}

.ajuste-missao{
    display: flex;
    align-items: center;
    justify-content: center;
}

.missao-txt, .missao-img{
    width: 50%;
    margin: 0 20px;
}

.missao-img{
    text-align: right;
}

.missao-img img{
    width: 575px;
    border-radius: 15px;
}

.missao-txt h2{
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 30px;
}

.missao-txt p{
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
    color: #535353;
}
/* FIM DO ESTILO NOSSA MISSÃO */

/* ESTILO DOS PLANOS */
section.planos{
    width: 100%;
    height: auto;
    background-image: url(../images/bg-planos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 30px 0;
}

section.planos h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.ajuste-planos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.planos .plano-box{
    width: 300px;
    max-width: 300px;
    background-color: #fff;
    padding: 20px;
    border: 3px solid var(--corTema);
    border-radius: 20px;
}

.plano-box span.span1-planos{
    font-size: 14px;
    font-weight: 600;
    color: var(--corTema);
}

.plano-box h3{
    font-size: 40px;
    font-weight: 800;
    color: var(--corTema);
}

.plano-box .preco-plano p{
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #171717;
}

.plano-box .preco-plano span{
    font-size: 14px;
    color: #808080;
}

.vant-planos-txt i{
    color: var(--corSecundaria);
    margin-right: 5px;
}

.logo-apps{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo-apps .img-apps{
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.logo-apps .img-apps img{
    width: 80%;
}

.btn-euquero{
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.btn-euquero button{
    background-color: var(--corButton);
    color: #fff;
    font-size: 18px;
    border: 0;
    width: 150px;
    height: 40px;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.btn-euquero button:hover{
    background-color: var(--corSecundaria);
    color: #fff;
    transform: scale(1.1);
}

.plano-box .vant-box{
    padding: 10px 0;
}

.plano-box .vant-box:not(:last-child){
    border-bottom: 2px solid var(--corSecundaria);
}

.plano-box .vant-box span{
    font-size: 16px;
    font-weight: 500;
    color: #595959;
}

.plano-box .vant-box i{
    font-size: 20px;
    color: var(--corSecundaria);
    margin-right: 10px;
}
/* FIM DO ESTILO DOS PLANOS */

/* ESTILO DO BOTÃO DE CONTRATO */
.contrato{
    text-align: center;
    margin: 60px 5px 5px 20px;
}

.contrato p{
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.contrato button{
    background-color: #fff;
    color: var(--corSecundaria);
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    cursor: pointer;
    transition: .5s;
}

.contrato button:hover{
    transform: scale(0.95);
}

.contrato button i{
    margin-right: 10px;
}
/* FIM DO ESTILO DO BOTÃO DE CONTRATO */

/*RODAPÉ*/
footer{
    background-color: var(--corTema);
    padding: 15px 0 10px 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.225);
}

footer a{
    text-decoration: none;
}

.ajuste-footer, .tell-whats{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-footer{
    width: 25%;
}

.logo-footer img{
    width: 60%;
}

.tell-whats > div{
    border-radius: 50%;
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.tell-whats a:hover{
    text-decoration: underline;
    color: #fff;
}

.tell-whats i{
    font-size: 20px;
    color: #fff;
}

.tell-whats span{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* .contato-footer p{
    font-size: 14px;
    color: var(--corTema);
    font-weight: 600;
}

.contato-footer button{
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    background-color: var(--corTema);
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    transition: .2s;
} */

.contato-footer button:hover,.redes-footer button:hover{
    background-color: #fff;
    color: var(--corSecundaria);
}

.redes-footer button:hover{
    transform: scale(1.1);
}

.redes-footer button{
    width: 40px;
    height: 40px;
    margin: 0px 5px;
    font-size: 20px;
    background-color: #fff;
    color: var(--corTema);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.info-add{
    color: var(--corTema);
    font-weight: 600;
    margin-top: 10px;
}

.logotipo-clickslim{
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.whatsapp-button {
            position: fixed;
            bottom: 3%;
            right: 2%;
            /* background-color: #25D366;
            color: white;
            padding: 10px 15px;
            border-radius: 50px;
            font-size: 16px; */
            text-decoration: none;
            display: flex;
            align-items: center;
            /* box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); */
            transition: .3s;
        }

        .whatsapp-button img {
            width: 48px;
            height: 48px;
            margin-right: 10px;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
        }


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

    header{
        width: 100%;
        background-color: #fff;
        padding: 40px 3%;
        margin-bottom: 20px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .logotipo .logo-desktop{
        display: none;
    }

    .logotipo .logo-mobile{
        display: block;
        width: 50%;
    }

    .menu-desktop{
        display: none;
    }

    #btn-menu{
        display: block;
        margin-top: 3%;
    }

    .menu-mobile.abrir{
        visibility: visible;
        height: calc(100vh - 90px);
    }

    .redes-menu-mobile{
        text-align: center;
        margin-top: 30px;
    }
    
    .redes-menu-mobile button{
        width: 50px;
        height: 50px;
        margin: 0px 10px;
        font-size: 28px;
        background-color: var(--corSecundaria);
        color: #fff;
        border: 0;
        border-radius: 5px;
        cursor: pointer;
        transition: .2s;
    }

    .redes-menu-mobile button:hover{
        background-color: #fff;
        color: var(--corTema);
    }

    /* ESTILO NOSSA MISSÃO */
    .ajuste-missao{
        flex-direction: column;
    }

    .missao-txt, .missao-img{
        width: 100%;
        margin: 0;
    }

    .missao-img{
        text-align: center;
    }

    .missao-img img{
        width: 100%;
        max-width: 420px;
    }

    .missao-txt h2{
        font-size: 30px;
        line-height: 35px;
    }

    .missao-txt p{
        font-size: 16px;
        margin: 0 0 40px 0;
    }
    /* FIM DO ESTILO NOSSA MISSÃO */

    /* ESTILO DOS PLANOS */
    .ajuste-planos{
        flex-direction: column;
    }

    .planos .plano-box{
        margin-bottom: 30px;
    }
    /* FIM DO ESTILO DOS PLANOS */

    .contrato{
        margin: 20px;
    }

    /* ESTILO DO ACESSO RÁPIDO */
    .acesso-rapido .ajuste-acesso{
        flex-direction: column;
    }

    .acesso-rapido .btn-acesso{
        margin-bottom: 30px;
    }
     /* FIM DO ESTILO DO ACESSO RÁPIDO */

    /* ESTILOS GERAIS */
    .title-pages{
        flex-direction: column;
        padding: 90px 0 0 0;
    }
    
    .title-pages h1{
        width: 100%;
        min-width: none; 
        text-align: center;
        margin-bottom: 20px;
    }
    
    .title-pages .decora{
        width: 60%;
        height: 2px;
        background-color: #ff0b15;
    }
    /* FIM DOS ESTILOS GERAIS */

    /*ESTILO DO RODAPÉ*/
    footer{
        padding: 30px 0 10px 0;
    }

    .ajuste-footer{
        display: block;
    }

    .tell-whats{
        justify-content: center;
        margin-bottom: 20px;
    }

    .logo-footer{
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .logo-footer img{
        width: 55%;
        max-width: 320px;
    }

    /* .tell-whats span{
        font-size: 13px;
    } */

    .contato-footer{
        margin-bottom: 30px;
    }

    .contato-footer p{
        font-size: 18px;
        text-align: center;
    }

    .contato-footer button{
        width: 80%;
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }

    .redes-footer{
        text-align: center;
        margin-top: 30px;
    }

    .redes-footer button{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .redes-footer button:not(:nth-of-type(2)){
        margin-right: 10px;
    }

    .info-add{
        margin-top: 30px;
    }

    .logotipo-clickslim{
        width: 100%;
        text-align: center;
    }
    /*FIM DO RODAPÉ*/
}