@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Open+Sans:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Ubuntu:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
    --red: #d63a25;
    --white: #fff;
    --dark: #1e1c2a;
    --green: rgb(153, 235, 121);
    --cinza: rgb(212, 211, 211);
    --verde:  rgb(149, 184, 33);
}

body {
    color: var(--dark);
    background: var(--white);
}













/* GERAL */
.section-h1{
    font-size: 2.5rem;
    padding-top: 2rem;
}

.nav-item{
    text-decoration: none;
}

.logo{
    width: 200px;
}
.zap{
    width: 50px;
    padding-top: 20px;
}

.navigate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    box-shadow: 0 0.1rem 0.5rem #ccc;
    width: 100%;
    background: var(--white);
    transition: all 0.5s;
    position: fixed;

    float: left;
    list-style: none;
}

.navigate ul{
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ---------- MENU DROPDOWN ----------------------------------------------*/

.navigate ul li{
    position: relative;
    float: left;
    
}

.navigate li ul{
    position: absolute;
    top: 25px;
    left: 0;
    background-color: #fff;
    display: none;
}


.navigate li:hover ul,.navigate li.over ul{
    display: block;
}


.navigate li ul li{
    
    display: block;
    width: 150px;
}


.navigate ul li ul{
    position: absolute;
    top: 25px;
    left: 0;
    background-color: var(--verde);
    display: none;
    border-radius: 0.5rem;
    text-align: left;
    padding: 10px;
    z-index: 10;

    
}


.navigate ul li:hover ul, .navigate ul li.over ul{
    display: block;
}

.navigate ul li ul li{
    display: block;
    width: 300px;
}

.navigate ul li ul li a{
   color: var(--dark);
   margin-top: 30px;
}


.navigate ul li ul li a:hover{
    color: #fff;
    margin-top: 30px;
}

/* -------------------------------------------------------------------------------*/

.navigate ul li a{
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.5s;

    padding: 5px 10px;
}

.navigate ul li a:hover {
    color: var(--verde);
}

.menu {
    cursor: pointer;
    display: none;
}

.menu .bar {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: var(--dark);
    margin: 5px auto;
    transition: all 0.3s;
}

.menu .bar:nth-child(1),
.menu .bar:nth-child(3) {
    background: var(--verde);
}

.icon-img{
    width: 20px;
}
.icon-img-insta{
    width: 30px;
}
.icon-img-link{
    width: 22px;
}

.footer{
    height: 50vh;
    background: var(--dark);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 5% 10%;
}











/* MODAL */
button {
    padding: 0.6rem 1.2rem;
    background-color: #888;
    color: #fff;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    opacity: 0.8;
    font-size: 1rem;
    transition: 0.4s;
}

button:hover{
    opacity: 1;
}

#fade, #modal {
    transition: 0.5s;
    opacity: 1;
    pointer-events: all;
}

#fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

#modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 10;
    width: 400px;
    max-width: 80%;
    padding: 1.2rem;
    border-radius: 0.5rem;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.modal-body {
    margin-bottom: 2rem;
}
#modal.hide,
#fade.hide{
    opacity: 0;
    pointer-events: none;
}
#modal.hide{
    top: 0;
}











/* QUEM SOMOS */
.home {
    background: url(img/quemsomosweb.webp);
    background-size: cover;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10%;
    grid-template-columns: 3.5fr 1.5fr;
    border-bottom-left-radius: 15px; 
    border-bottom-right-radius: 100px;
}

.home-text {
    max-width: 37rem;
    padding-right: 3rem;
    margin-top: 5%;
    padding: 25px;
}

.home-text .text-h4 {
    font-size: 2.5rem;
    color: var(--verde);
    margin-bottom: 1rem;
    text-shadow: #000 2px 3px 2px;
    z-index: 5;
}

.home-text .text-h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 4rem;
    color: #fff;
    text-shadow: #000 2px 3px 2px;
}

.home-text p{
    font-size: 15px;
    margin-bottom: 3rem;
    font-weight: bold;
    z-index: 5;
}
.home .home-img img{
    width: 420px;
    height: 50vh;
    border-radius: 25px;
}

.home-btn{
    padding: 15px 45px;
    background: var(--cinza);
    color: var(--dark);
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.5s;
}

.quemsomos {
    background: var(--white);
    height: 90vh;
}

/*------------------------------------------------------------------------------*/

.main-padrao{
    background: #fff;
    padding: 0px 30px;
}

/*------------------------------------------------------------------------------*/









/*  RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
.rec-sel-talentos{
    background: url(img/selecaotalentosweb.webp);
    background-size: cover;
}
.rec-sel-talentos .home-text{
    margin-left: 500PX;
}
.rec-sel-talentos .home-text .text-h4 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: rgb(8, 48, 19) 5px 4px 3px;
    z-index: 5;
}



/*  RECRUTAMENTO TECH  */
.rec-tech{
    background: url(img/recrutamentotechweb.webp);
    background-size: cover;
}
.rec-tech .home-text{
    text-align: center;
    margin-left: 300px;
}
.rec-tech .home-text .text-h4{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: rgb(8, 48, 19) 5px 4px 3px;
    z-index: 5;
}


/*  AVALIAÇÃO PSICOLOGICA  */
.avaliacao-psicologica{
    background: url(img/psico.png);
    background-size: cover;
}
.avaliacao-psicologica .home-text{
    text-align: center;
    margin-left: 500px;
}
.avaliacao-psicologica .home-text .text-h4{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: rgb(8, 48, 19) 5px 4px 3px;
    z-index: 5;
}
.quemsomos .home-text span{
    color: var(--red);
}



/*  CURSOS E TREINAMENTOS  */
.cursos {
    background: url(img/livros.png);
    background-size: cover;
}
.cursos .home-text{
    text-align: center;
    margin-left: 300px;
}
.cursos .home-text .text-h4{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: rgb(8, 48, 19) 5px 4px 3px;
    z-index: 5;
}


/*  SOLUÇÕES PERSONALIZADAS  */
.solucao{
    background: url(img/solucao03web.webp);
    background-size: cover;
}
.solucao .home-text{
    text-align: center;
    margin-left: 300px;
}
.solucao .home-text .text-h4{
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: rgb(8, 48, 19) 5px 4px 3px;
    z-index: 5;
}























































/* FOOTER */
.footer .localizacao img{
    width: 100px;
    padding-top: 50px;
}
.footer .contato p{
    padding-top: 50px;
}
.footer .rede-social img{
    width: 100px;
    padding-top: 50px;
}
















/* MÍNIMO 1425px */
@media (min-width: 1425px){
    .home-img img{
        width: 100%;
        height: 800px;
    }
    .home .text-h1{
        font-size: 50px;
    }
    .home .text-h4{
        font-size: 40px;
    }
    .home p{
        font-size: 25px;
        line-height: 27px;
    }
    .home .text-servico{
        min-width: 700px;
    }
    .home .text-servico .text-h1-servico{
        font-size: 60px;
    }
    .home .servico-img .img-03{
        width: 500px;
        border-radius: 500px;
    }
    .home .servico-img .img-02{
        width: 400px;
        border-radius: 500px;
    }
    .home .servico-img .img-01{
        width: 350px;
        border-radius: 500px;
    }
    .home .servico-img-02 .img-02{
        width: 500px;
        border-radius: 500px;
    }
    .home .text-h4-servico{
        font-size: 35px;
    }
    .home .text-h4-servico-02{
        font-size: 35px;
    }
    .home .text-h4-servico-03{
        font-size: 30px;
    }
    .home .text-servico-03 p{
        font-size: 20px;
    }
    .home .text-servico-04 p{
        font-size: 20px;
    }
    .home .text-servico-05 p{
        font-size: 20px;
    }
}













/* MÁXIMO 1115px */
@media (max-width: 1115px){
    /* GERAL [ MÁXIMO 1115px ]*/ 
    .home p{
        font-size: 10px;
    }







    /* HOME [ MÁXIMO 1115px ] */
    .home .text-h1{
        font-size: 60px;
        line-height: 2.5rem;
    }
    .home .text-h4{
        font-size: 30px;
        
    }






   

    /* SERVIÇOS [ MÁXIMO 1115px ]*/
    .home .servico-img .img-01{
        position: fixed;
        right: -100%;
    }
    .home .servico-img .img-02{
        position: fixed;
        right: -100%;
    }
    .home .servico-img .img-03{
        width: 300px;
    }
    .text-h4-servico{
        font-size: 20px;
    }
}














/* MÁXIMO 1066px */
@media (max-width: 1066px){
    /* GERAL [ MÁXIMO 1066px ]*/
    .home p{
        font-size: 10px;
    }









    /* HOME [ MÁXIMO 1066px ]*/
    .home-topo .text-h1{
        font-size: 65px;
        line-height: 1.5rem;
    }
    .home-topo .text-h4{
        font-size: 30px;
        
    }



    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos .home-text{
        margin-left: 200px;
        margin-top: 250px;
    }












    /* SERVIÇO [ MÁXIMO 1066px ] */
    .home .servico-img .img-03{
        width: 250px;
        margin-left: 50px;
    }
   
}














/* MÁXIMO 1017px */
@media (max-width: 1017px){
    /* GERAL [ MÁXIMO 1017px ] */









    /* HOME [ MÁXIMO 1017px ]*/
    .home .text-h4{
        font-size: 15px;
    }









    /* SERVIÇO [ MÁXIMO 1017px ] */
    .home .servico-img-02 .img-02{
        width: 100px;
    }
    .home .text-servico-02{
        margin-left: 35px;
    }
}














/* MÁXIMO 978px */
@media (max-width: 978px){
    /* GERAL [ MÁXIMO 978px ]*/










    /* HOME [ MÁXIMO 978px ]*/
   










    
}


















/*  MÁXIMO 920px  */
@media(max-width: 920px){
    .footer{
        height: 50%;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
    }
    .home-topo .home-text{
        margin-top: 500px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


    /*  RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos .home-text{
        margin-left: 0;
        margin-top: 200px;
    }


    /* RECRUTAMENTO TECH */
    .rec-tech .home-text{
        margin-left: 0;
        margin-top: 200px;
    }


    /* AVALIAÇÃO PSICOLOGICA */
    .avaliacao-psicologica .home-text{
        margin-left: 0;
        margin-top: 200px;
    }


    /* CURSOS E TRENAMENTOS */
    .cursos .home-text{
        margin-left: 0;
        margin-top: 200px;
    }


    /* SOLUÇÕES PERSONALIZADAS */
    .solucao .home-text{
        margin-left: 0;
        margin-top: 200px;
    }

}

















/********************************* TESTE*****************************************************************/
/*  MÁXIMO 920px  */
@media(max-width: 920px){
    .footer{
        height: 50%;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
    }
    .home-topo{
        background: url(img/quemsomosweb.webp);
        background-size: cover;
        height: 500px;
    }
    .home-topo .home-text{
        margin-top: 300px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


}
/*****************************************************************************************************/

















@media(max-width: 880px){
    /* GERAL  [ MÁXIMO 880px ]*/
    .navigate{
        padding: 18px 20px;
    }
    .menu{
        display: block;
    }
    .menu.ativo .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .menu.ativo .bar:nth-child(2){
        opacity: 0;
    }
    .menu.ativo .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu{
        position: fixed;
        right: -100%;
        top: 70px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: var(--white);
        gap: -10px;
        transition: 0.3s;
    }
    .nav-menu.ativo{
        right: 0;
    }
    .nav-item {
        margin: 16px 0;
    }
}
















/*  MÁXIMO 820px  */
@media(max-width: 820px){
    .footer{
        height: 50%;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
    }
    .home-topo .home-text{
        margin-top: 500px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos .home-text{
        margin-left: 0;
        margin-top: 300px;
    }


    /* RECRUTAMENTO TECH  */
    .rec-tech .home-text{
        margin-left: 0;
        margin-top: 300px;
    }

    /* AVALIAÇÃO PSICOLOGICA  */
    .avaliacao-psicologica .home-text{
        margin-left: 0;
        margin-top: 300px;
    }


    /* CURSOS E TREINAMENTOS */
    .cursos .home-text{
        margin-left: 0;
        margin-top: 300px;
    }


    /* SOLUÇÕES PERSONALIZADAS */
    .solucao .home-text{
        margin-left: 0;
        margin-top: 300px;
    }

}
















/************************************************ TESTE ***************************************************/
/*  MÁXIMO 820px  */
@media(max-width: 820px){
    .footer{
        height: 50%;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
    }
    .home-topo{
        background: url(img/quemsomosweb.webp);
        background-size: cover;
        height: 500px;
    }
    .home-topo .home-text{
        margin-top: 300px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


}
/************************************************************************************************************/


















/* MÁXIMO 785px */
@media (max-width: 785px) {
    
    .footer .rede-social{
        width: 33%;
    } 
    .footer{
        align-items: center;
        text-align: center;
    }
    .footer .contato{
        width: 33%;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 35px;
    } 
    .footer .localizacao{
        width: 33%;
        margin-top: 0px;
    } 
    .footer h3{
        font-size: 10px;
    }
    .footer .rede-social img{
        width: 50px;
    }
    .footer .contato p{
        font-size: 10px;
    }
    .footer .localizacao img{
        width: 50px;
    }










     /* HOME [ MÁXIMO 785px ]*/
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
        margin-top: 2rem;
        border-radius: 100px;
    }

    .home-topo .home-text{
        margin-top: 150px;
    }
    .home-text{
        padding-left: -1rem;
        margin-top: -5rem;
    }
    .home {
        padding: 100px 2%;
        flex-direction: column;
        text-align: center;
        overflow: hidden;
        gap: 5rem;
    }
    .home .text-h4{
        font-size: 10px;
    }
    .home .text-h1{
        font-size: 1.5rem;
        line-height: 3rem;
    }
    .home p{
        font-size: 0.8rem;
    }



    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos .home-text{
        margin-top: 150px;

    }


    /* RECRUTAMENTO TECH  */
    .rec-tech .home-text{
        margin-top: 150px;

    }


    
    /* AVALIAÇÃO PSICOLOGICA  */
    .avaliacao-psicologica .home-text{
        margin-top: 150px;
    }
    .avaliacao{
        text-align: left;
    }


    /* CURSOS E TREINAMENTOS  */
    .cursos .home-text{
        margin-top: 150px;
    }


    /* SOLUÇÕES PERSONALIZADAS  */
    .solucao .home-text{
        margin-top: 150px;
    }
  








    /* SERVIÇO (Talentos) [ MÁXIMO 785px ]*/
    .home .text-servico .text-h1-servico{
        margin-top: -150px;
    }
    .home .servico-img .img-01{
        position: fixed;
        right: -100%;
    }
    .home .servico-img .img-02{
        position: fixed;
        right: -100%;
    }
    .home .servico-img .img-03{
        width: 150px;
        margin-top: -70px;
        margin-left: 10px;
    }
    










    /* SERVIÇO (Tech) [ MÁXIMO 785px ]*/
    .home .servico-img-02 .img-02{
        position: fixed;
        right: -100%;
    }
    .home .servico-img-02 .img-03{
        width: 150px;
        margin-top: -40px;
    }
    .home .text-servico-02 .text-h4-servico-02{
        margin-top: -200px;
        font-size: 15px;
        text-align: center;
    }
    .home .text-servico-02 p{
        text-align: center;
    }











    /* SERVIÇO (Outros) [ MÁXIMO 785px ]*/
    .home .text-servico-03{
        max-height: 10%;
    }
    .home .text-servico-04{
        max-height: 10%;
    }
    .home .text-servico-05{
        max-height: 10%;
    }
    .home .text-servico-03 h4{
        margin-top: -80px;
        font-size: 10px;
    }
    .home .text-servico-04 h4{
        margin-top: -100px;
        font-size: 10px;
    }
    .home .text-servico-05 h4{
        margin-top: -170px;
        font-size: 10px;
    }
    .home .text-servico-03 p{
        font-size: 10px;
    }
    .home .text-servico-04 p{
        font-size: 10px;
    }
    .home .text-servico-05 p{
        font-size: 10px;
    }
}













/*  MÁXIMO 770px  */
@media(max-width: 770px){
    .footer{
        height: 300px;
    }
    .footer .rede-social{
        margin-top: -80px;
    }
    .footer .localizacao{
        margin-top: -80px;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
    }
    .home-topo .home-text{
        margin-top: 350px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


    /* AVAIAÇÃO PSICOLOGICA */
    .avaliacao{
        text-align: left;
    }



}




















/********************************************** TESTE *****************************************************/
/*  MÁXIMO 770px  */
@media(max-width: 770px){
    .footer{
        height: 300px;
    }
    .footer .rede-social{
        margin-top: -80px;
    }
    .footer .localizacao{
        margin-top: -80px;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
    .home-topo{
        background: url(img/quemsomosweb.webp);
        background-size: cover;
        height:550px ;
    }
    .home-topo .home-text{
        margin-top: 200px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


}
/**************************************************************************************************************/























/*  MÁXIMO 690px  */
@media(max-width: 690px){
    .footer{
        height: 300px;
    }
    .footer .rede-social{
        margin-top: 0px;
    }
    .footer .localizacao{
        margin-top: 0px;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        height:550px ;
    }
    .home-topo .home-text{
        margin-top: 250px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }

    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS */
    .rec-sel-talentos .home-text{
        margin-top: 70px;
    }


}

















/*  MÁXIMO 550px  */
@media(max-width: 550px){
    .footer{
        height: 300px;
    }
    .footer .rede-social{
        margin-top: 0px;
    }
    .footer .localizacao{
        margin-top: 0px;
    }
    .quemsomos{
        height: 50%;
    }
    .quemsomos .home-img img{
        width: 200px;
        height: 200px;
        margin-top: 20px;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        height: 80%;
    }
    .home-topo .home-text{
        margin-top: 350px;
    }
    .home-topo .home-text h1{
        font-size: 50px;
    }
    .home-topo .home-text h4{
        font-size: 30px;
    }


    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS */
    .rec-sel-talentos .home-text{
        margin-top: 110px;
    }


    /* RECRUTAMENTO TECH */
    .rec-tech .home-text{
        margin-top: 110px;
    }


    /* AVALIAÇÃO PSICOLOGICA */
    .avaliacao-psicologica .home-text{
        margin-top: 110px;
    }


    /* CURSOS E TREINAMENTOS */
    .cursos .home-text{
        margin-top: 110px;
    }


    /* SOLUÇÕES PERSONALIZADAS */
    .solucao .home-text{
        margin-top: 110px;
    }

}





































/* MÁXIMO 480px */
@media (max-width: 480px){
    /* GERAL [ MÁXIMO 480px ]*/










    /* HOME [ MÁXIMO 480px ]*/
    .home .home-img img{
        width: 200px;
        height: 200px;
        margin-top: -1.5rem;
        border-radius: 100px;
    }













    /* SERVIÇO (Talentos) [ MÁXIMO 480px ]*/
    .home .text-servico .text-h1-servico{
        margin-top: -200px;
        font-size: 20px;
    }
    .home .text-servico .text-h4-servico{
        font-size: 15px;
    }
    .home .servico-img .img-03{
        width: 150px;
        margin-left: -10px;
    }












    /* SERVIÇO (Tech) [ MÁXIMO 480px ] */
    .home .text-servico-02 .text-h4-servico-02{
        margin-top: -250px;
        font-size: 15px;
        text-align: center;
        margin-left: -50px;
    }
    .home .text-servico-02 p{
        text-align: center;
        margin-left: -30px;
    }












    /* OUTROS [ MÁXIMO 480px ] */
    .text-h4-servico-03{
        margin-bottom: 3px;
        color: var(--green);
        font-size: 15px;
    }
    .text-servico-03 p{
        font-size: 0px;
        color: var(--white);
    }
    .home .text-servico-05 h4{
        padding-top: 10px;
        margin-top: -190px;
        font-size: 10px;
    }

}








/*  MÁXIMO 450px  */
@media (max-width: 450px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 840px;
    
    }
    .home-topo .home-text{
        margin-top: 400px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
        width: 200px;
        border-radius: 10px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 12px;
        font-weight: 150;
        margin-top: 30px;
    }  

    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos{
        border-radius: 0px;
    }


    /* AVALIAÇÃO PSICOLOGICA */
    .avaliacao-psicologica{
        border-radius: 0;
    }


    /* CURSOS E TREINAMENTOS */
    .cursos{
        border-radius: 0;
    }



    /* SOLUÇÕES PERSONALIZADAS */
    .solucao{
        border-radius: 0;
    }


}




















/*  MÁXIMO 415px */
@media (max-width: 415px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        min-height: 560px;
        max-width: 860px;
    }
    .home-topo .home-text{
        margin-top: 400px;
    }
    .home-topo .home-text h4{
        font-size: 20px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 35px;
    } 
    .index .home-img img{
        margin-top: -70px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 15px;
        font-weight: 150;
    }  


    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS */
    .rec-sel-talentos{
        border-radius: 0;
    }
    .rec-sel-talentos .home-text{
       margin-left: 0;
       margin-top: 120px;
    }


    /* RECRUTAMENTO TECH */
    .rec-tech{
        border-radius: 0;
    }
    .rec-tech .home-text .text-h4{
       margin-left: 0;
       margin-top: -80px;
    }



    /* RECRUTAMENTO TECH */
    .rec-tech .home-text{
       margin-left: 0;
       margin-top: 200px;
    }


    /* AVALIAÇÃO PSICOLOGICA */
    .avaliacao-psicologica{
        border-radius: 0;
    }
    .avaliacao-psicologica .home-text{
       margin-left: 0;
       margin-top: 150px;
    }
    .avaliacao{
        text-align: left;
    }


    /* CURSOS E TREINAMENTOS */
    .cursos{
        border-radius: 0;
    }
    .cursos .home-text{
       margin-left: 0;
       margin-top: 150px;
    }
   

    /* SOLUÇÕES PERSONALIZADAS */
    .solucao{
        border-radius: 0;
    }
    .solucao .home-text{
       margin-left: 0;
       margin-top: 150px;
    }

}














/*  MÁXIMO 400px */
@media (max-width: 400px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        min-height: 560px;
        max-width: 860px;
    }
    .home-topo .home-text{
        margin-top: 200px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 10px;
        font-weight: 100;
    }  


}

















/*  MÁXIMO 393px  */
@media (max-width: 393px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 840px;
    }
    .home-topo .home-text{
        margin-top: 400px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
        width: 200px;
        border-radius: 10px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 15px;
        font-weight: 200;
        margin-top: 30px;
    }  


}





















/*  MÁXIMO 390px  */
@media (max-width: 390px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 840px;
    }
    .home-topo .home-text{
        margin-top: 400px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
        width: 200px;
        border-radius: 10px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 15px;
        font-weight: 200;
        margin-top: 30px;
    }  


}













/*  MÁXIMO 385px  */
@media (max-width: 385px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 560px;
    }
    .home-topo .home-text{
        margin-top: 200px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 10px;
        font-weight: 100;
    }  


}













/*  MÁXIMO 375px  */
@media (max-width: 375px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 560px;
    }
    .home-topo .home-text{
        margin-top: 200px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 10px;
        font-weight: 100;
    }  


    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS  */
    .rec-sel-talentos .home-text{
        margin-top: 70px;
    }
    .rec-sel-talentos .home-text .text-h4{
        font-size: 35px;
    }


    /* RECRUTAMENTO TECH  */
    .rec-tech .home-text{
        margin-top: 100px;
    }
    .rec-tech .home-text .text-h4{
        font-size: 35px;
    }


    /* AVALIAÇÃO PSICOLOGICA  */
    .avaliacao-psicologica .home-text{
        margin-top: 100px;
    }
    .avaliacao-psicologica .home-text{
        margin: 0;
        margin-top: 150px;
    }
    .avaliacao-psicologica .home-text .text-h4{
        font-size: 35px;
    }
    .avaliacao{
        text-align: left;
    }


    /* CURSOS E TREINAMENTOS  */
    .cursos .home-text{
        margin-top: 100px;
    }
    .cursos .home-text{
        margin: 0;
        margin-top: 150px;
    }
    .cursos .home-text .text-h4{
        font-size: 35px;
    }


    /* SOLUÇÕES PERSONALIZADAS  */
    .solucao .home-text{
        margin-top: 100px;
    }
    .solucao .home-text{
        margin: 0;
        margin-top: 150px;
    }
    .solucao .home-text .text-h4{
        font-size: 35px;
    }
   


}


















/*  MÁXIMO 300px  */
@media (max-width: 300px){

    /* GERAL  */
    .quemsomos{
        background-color: #000;
        color: #fff;
        border-radius: 0;
    }






    /*  FOOTER  */
    .footer{
        height: 200px;
    }
    .footer .rede-social{
        margin-top: -50px;
    }
    .footer .contato{
        margin-top: -17px;
    }
    .footer .localizacao{
        margin-top: -50px;
    }
    .footer h3{
        font-size: 8px;
        font-weight: 100;
    }
    .footer .rede-social img{
        width: 30px;
        margin-top: -30px;
    }
    .footer .contato img{
        width: 30px;
        margin-top: 0px;
    }
    .footer .contato p{
        font-size: 8px;
        font-weight: 200;
        margin-top: -30px;
    }
    .footer .localizacao img{
        width: 30px;
        margin-top: -30px;
    }
   
   

    /*  INDEX  */
    .main-padrao{
        padding: 0;
        margin: 0;
    }
    .home-topo{
        background: url(img/quemsomos300pxweb.webp);
        background-size: cover;
        border-radius: 0px;
        background-position: top;
        height: 560px;
    }
    .home-topo .home-text{
        margin-top: 200px;
    }
    .home-topo .home-text h4{
        font-size: 18px;
        margin-bottom: 0px;
    }
    .home-topo .home-text h1{
        font-size: 30px;
    } 
    .index .home-img img{
        margin-top: -70px;
    }
    .index .home-text{
        padding: 0;
        text-align: left;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -40px;
    }
    .index .home-text p{
        font-size: 10px;
        font-weight: 100;
    }  


    /* RECRUTAMENTO E SELEÇÃO DE TALENTOS */
    .rec-sel-talentos .home-text .text-h4{
        font-size: 25px;
        margin-top: 100px;
    }


    /* RECRUTAMENTO TECH */
    .rec-tech .home-text .text-h4{
        font-size: 25px;
        margin-top: 100px;
    }

    /* AVALIAÇÃO PSICOLOGICA */
    .avaliacao-psicologica .home-text{
        margin: 0;
    }
    .avaliacao-psicologica .home-text .text-h4{
        font-size: 25px;
        margin-top: 100px;
    }
    

    /* CURSOS E TREINAMENTOS */
    .cursos .home-text{
        margin: 0;
    }
    .cursos .home-text .text-h4{
        font-size: 25px;
        margin-top: 100px;
    }


    /* SOLUÇÕES PERSONALIZADAS */
    .solucao .home-text{
        margin: 0;
    }
    .solucao .home-text .text-h4{
        font-size: 25px;
        margin-top: 100px;
    }
}
