@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    
    
}

html{
    scroll-behavior: smooth;
}

/* Menu fixo no rodapé */
/*html, body{
    height: 100%;
}*/

body{
    background-color: #0c0f16;

    /* Menu fixo no rodapé */
    /*display: flex;
    flex-direction: column;*/
    
}

.max-width{
    max-width: 1300px;
    padding: 0 10px;
    margin: auto;
}
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: #121721;
    /*background-color: none;*/
    border-bottom: solid #1b202a 1px;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #547ec7;
    font-size: 35px;
    font-weight: 500;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-left: 25px;
}
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.fotoUsuario{
    width:60px; 
    height:75px;
    border-radius:100px;
}
.nomeUsuario{
    font-size: 23px;
    width: 200px;
}
.tblResultado{
    /*width: 750px;*/
    width: 90vw;
}

.classeBotaoTalao{
    width: 180px !important;
    height: 35px !important;
    font-size: 18px !important;
}
.classeBotaoTalaoRed{
    width: 180px !important;
    height: 35px !important;
    font-size: 18px !important;
}


@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        background-color: #121721;
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 13px 0;
        font-size: 25px;
    }
    .max-width{
        max-width: 930px;
    }
    
    
}

section{
    padding: 50px 0;
}
@media (max-width: 690px){
    section{
        padding: 20px 0;
    }
    
    
}
.top{
    color: #fff;
    display: flex;
    background: url('../images/topo_v2.jpg') no-repeat center;
    height: 100vh;
    min-height: 500px;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Ubuntu', sans-serif;
}
.top .max-width{
    width: 100%;
    display: flex;
}
.top .top-content .text-1{
    font-size: 25px;
    margin-top: 100px;
}
.top .top-content .text-2{
    font-size: 55px;
    font-weight: 400;
    margin-left: -3px;
}
.top .top-content .text-3{
    font-size: 32px;
    margin: 5px 0;
}
.top .top-content a{
    display: inline-block;
    background: #0609df;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 300;
    border-radius: 6px;
    border: 2px solid #0609df;
    transition: all 0.3s ease;
}
.top .top-content a:hover{
    color: #0609df;
    background: none;
}

.services{
    color: #fff;
    background-color: #0c0f16;
    font-family: 'Poppins', sans-serif;
}
.services .title{
    text-align: center;
    margin: 40px 0;
    font-weight: 400;
    font-size: 35px;
}
.services .serv-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.services .serv-content .card{
    width: calc(33% - 20px);
    background-color: #1b202a;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;    
}
.services .serv-content .card:hover{
    background: #0609df;
}
.services .serv-content .card i{
    font-size: 50px;
    color: #0609df;
    transition: all 0.3s ease;    
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

@media (max-width: 947px){
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    
}
@media (max-width: 690px){
    .services .serv-content .card{
        width: 100%;
    }
    
}

.contact{
    color: #fff;
    background-color: #151921;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 100px;
}
.contact .title{
    text-align: center;
    margin-bottom: 50px;
    padding-top: 50px;
    font-weight: 400;
    font-size: 35px;
}
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row  i{
    font-size: 25px;
    color: #0609df;
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #f6f6f6;
}
.contact .contact-content .text{
    font-size:  20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #0609df;
}
.contact .right form .textarea textarea{
    padding-top: 10px;
    resize: none;
}
.contact .right form .button-area{
    display: flex;
    align-items: center;
}
.right form .button-area button{
    color: #fff;
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: wrap;
    background-color: #0609df;
    border: 2px solid #0609df;
    transition: all 0.3s ease;
}
.right form .button-area button:hover{
    color: #0609df;
    background: white;
}

@media (max-width: 1100px){
    .tblLogin{
        /*width: 750px;*/
        width: 40vw !important;
        
    }
    .classeBotaoTalao{
        width:100px !important;
    }
    .classeBotaoTalaoRed{
        width:100px !important;
    }
    .botao1linha{
        width: 150px !important;
    }
}
@media (max-width: 947px){
    
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
    .fotoUsuario{
        width:60px; 
        height:75px;
        border-radius:100px;
    }
    .nomeUsuario{
        font-size: 18px;
        width: 200px;
    }
    .classeBotaoTalao{
        width: 100px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
    .classeBotaoTalaoRed{
        width: 100px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
    .tblResultado{
        /*width: 700px;*/
        width: 90vw;
    }
    .tblLogin{
        /*width: 750px;*/
        width: 40vw !important;
    }
    .tdLogin{
        width: 40%;
    }
    .botao1linha{
        width: 150px !important;
    }
    .tblResultadoEstat{
        width:90% !important;
        font-size: 16px !important;
    }
}
@media (max-width: 710px){
    .fotoUsuario{
        width:60px; 
        height:75px;
        border-radius:100px;
    }
    .nomeUsuario{
        font-size: 14px;
        width: 120px;
    }
    .classeBotao{
        width: 120px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeBotaoTalao{
        width: 120px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeBotaoTalaoRed{
        width: 120px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeTexto{
        font-size: 12px;
    }
    .classeRow{
        font-size: 14px;
        width: 140px;
    }
    .tblResultado{
        /*width: 400px;*/
        width: 90vw;
    }
    .tblLogin{
        /*width: 750px;*/
        width: 60vw !important;
    }
    .botao1linha{
        width: 150px !important;
    }
    .tdLogin{
        width: 70%;
    }
    .tblResultadoEstat{
        width:90% !important;
        font-size: 12px !important;
    }
}
@media (max-width: 500px){
    
    .contact .title{
        margin-top: 10px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .fotoUsuario{
        width:60px; 
        height:75px;
        border-radius:100px;
    }
    .nomeUsuario{
        font-size: 14px;
        width: 120px;
    }
    .classeBotao{
        width: 120px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeBotaoTalao{
        width: 65px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeBotaoTalaoRed{
        width: 65px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeTexto{
        font-size: 12px;
    }
    .classeRow{
        font-size: 14px;
        width: 140px;
    }
    .tblResultado{
        /*width: 350px;*/
        width: 90vw;
    }
    .tblLogin{
        /*width: 750px;*/
        width: 90vw !important;
    }
    .tdBotao{
        width: 65px;
    }
    .botao1linha{
        width: 120px !important;
    }
    .tdLogin{
        width: 90%;
    }
    .tblResultadoEstat{
        width:90% !important;
        font-size: 12px !important;
    }
}
@media (max-width: 420px){
    
    .contact .title{
        margin-top: 10px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .fotoUsuario{
        width:60px; 
        height:75px;
        border-radius:100px;
    }
    .nomeUsuario{
        font-size: 12px;
        width: 80px;
    }
    .classeBotaoTalao{
        width: 60px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .classeBotaoTalaoRed{
        width: 60px !important;
        height: 35px !important;
        font-size: 12px !important;
    }
    .tblResultado{
        /*width: 350px;*/
        width: 90vw;
    }
    .tblLogin{
        /*width: 750px;*/
        width: 90vw !important;
    }
    .tdBotao{
        width: 60px;
    }
    .botao1linha{
        width: 100px !important;
    }
    .tdLogin{
        width: 90%;
    }
    .tblResultadoEstat{
        width:90% !important;
        font-size: 12px !important;
    }
    
}
@media (max-width: 419px){
    .tblResultadoEstat{
        width:90% !important;
        font-size: 10px !important;
    }
}



footer{
    background-color: #121721;
    padding: 25px 23px;
    color: #fff;
    text-align: center;
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
}
footer span a{
    color: #547ec7;
}
footer span a:hover{
    color: #fff;
}
.classeBotao{
    color: #fff;
    display: block;
    width: 160px;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: wrap;
    background-color: #007bff;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
}
.classeBotao:hover{
    color: #fff;
    background: #0609df;
}
.classeBotaoTalao{
    color: #fff;
    /*display: block;*/
    width: 80px;
    height: 35px;
    /*outline: none;*/
    font-size: 12px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    /*flex-wrap: wrap;*/
    background-color: #007bff;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
    
}
.classeBotaoTalao:hover{
    color: #fff;
    background: #0609df;
}
/*ALINHANDO AS DIVS DE RESULTADO*/

#conteudo2{
    display: flex;
    flex-wrap: wrap;
    /*text-align: center;*/
    justify-content: center;
}
#mae {
    margin: 10px;
    text-align: center;
    border: solid;
    align-items: center;
    position: relative;
    /*background: black;*/
    color: white;
}
#filha {
    width:240px; 
    position: absolute;
    background: black;
    bottom: 0;
    /*margin-left: 10px;*/
    margin-bottom: -20px;
}
.menu2{
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    justify-content: center;

}
.menu2 a{
    width: 200px;
    height: 60px;
    margin: 10px;
}
.tblResultado{
    color:#fff;
}
/* .fotoUsuario{
    width:120px; 
    height:150px;
    border-radius:100px;
} */
.classeBotaoTalaoRed{
    color: #fff;
    /*display: block;*/
    width: 80px;
    height: 35px;
    /*outline: none;*/
    font-size: 12px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    /*flex-wrap: wrap;*/
    background-color: #b3100b;
    border: 2px solid #b3100b;
    transition: all 0.3s ease;
    
}
.classeBotaoTalaoRed:hover{
    color: #fff;
    background: #ff342d;
}