@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border: 0px none #000;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    background: #222;
}
::-webkit-scrollbar-thumb:active {
    background: #333;
}
::-webkit-scrollbar-track {
    background: #ddd;
    border: 0px none #ffffff;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

.w25{
    min-width: 25%;
}
.w50{
    min-width: 50%;
}
.w100{
    min-width: 100%;
}

html{
    scroll-behavior: smooth;
}
body{
    min-height: 1000px;
    width: 100%;
    background: #fff;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 150px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
    background: #fff;
}
header .logo img{
    width: 120px;
    opacity : 1;
}
header ul{
    position: relative;
    display: flex;
}
header ul li{
    position: relative;
    list-style: none;
}
header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #000;
    text-decoration: none;
}

.banner{
    position: relative;
    min-height: 100vh;
    padding-left: 120px;
    padding-bottom: 50px;
    background: url('../images/banner.jpg');
    background-size: cover;
    background-position: left;
    display: flex;
    justify-content: left;
    align-items: flex-end;
}
.banner h2{
    font-size: 2em;
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
    text-align: left;
}
.banner h2 span{
    font-size: 1.8em;
    font-weight: 700;
    text-align: left;
    text-shadow: 2px 5px 4px #000000;
}
.banner h3{
    font-size: 1.5em;
    max-width: 600px;
    color: #fff;
    font-weight: 500;
    text-align: left;
    float: left;
}
.banner .redes_sociais{
    position: absolute;
    bottom: 0;
    width: calc(100% - 150px);
    display: flex;
    justify-content: right;
    align-items: flex-end;
}
.banner .sci{
    display: flex;
}
.banner .sci li{
    list-style: none;
}
.banner .sci li a{
    color: #fff;
    font-size: 3em;
    margin-right: 20px;
    display: inline-block;
    transition: 0.25s;
}
.banner .sci li a:hover{
    transform: translateY(-5px);
}

.about{
    padding: 100px;
    background-color: #333;
}
.about .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    margin-top: 100px;
}
.about .title h2{
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}
.about .content{
    display: flex;
    justify-content: space-between;
}
.about .contentBx{
    padding: 50px;
    padding-right: 80px;
    margin-right: -50px;
    background: #fff;
}
.about .contentBx h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.about img{
    max-width: 80%;
    border: 10px #ddd solid;
    margin-top: 80px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}


.galeria_fotos{
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.galeria_fotos .content{
    position: relative;
    text-align: center;
    width: 100%;
}
.galeria_fotos .portfolioBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.galeria_fotos .portfolioBx .card{
    position: relative;
    width: 20%;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.galeria_fotos .portfolioBx .card img{
    height: 300px;   
}

.videos_institucional{
    background: #333;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videos_institucional .content{
    position: relative;
    text-align: center;
    width: 100%;
}
.videos_institucional .content .box{
    max-width: 800px;
    margin: 0 auto;
}
.videos_institucional .content .box h3{
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
    color:#fff;
}
.videos_institucional .titleBox{
    max-width: 800px;
    margin: 0 auto;
}
.videos_institucional .videoBox{
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    max-width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
}
.videos_institucional .videoBox .box{
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.videos_institucional .videoBox .box video{
    width: 100%;
}

.services{
    background: #ddd;
    padding: 150px 100px 100px 100px;
}
.services .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.services .title h2{
    font-weight: 600;
    color: #000;
    font-size: 30px;
    text-transform: uppercase;
}
.services .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.services .content .servicesBx{
    padding: 40px 20px;
    background: #999;
    color: #fff;
    max-width: 200px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

}
.services .content .servicesBx:hover{
    background: #777;
        
    -webkit-box-shadow: 10px 10px 30px 1px #000000;
    box-shadow: 10px 10px 30px 1px #000000;
}
.services .content .servicesBx img{
    max-width: 100px;
}
.services .content .servicesBx i{
    font-size: 80px;
    padding: 20px;
}
.services .content .servicesBx h2{
    font-size: 20px;
    font-weight: 600;
}


.conteudo{
    background: #333;
    padding: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.conteudo .content{
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 60px;
}
.conteudo .content .box{
    max-width: 800px;
    margin: 0 auto;
}
.conteudo .content .box h3{
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 10px;
    color: #fff;    
}
.conteudo .content .box p{
    position: relative;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;    
}
.conteudo .conteudoBx{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.conteudo .conteudoBx .card{
    position: relative;
    width: 300px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    border: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;
    
    -webkit-box-shadow: 10px 10px 30px 1px #000000;
    box-shadow: 10px 10px 30px 1px #000000;
}
.conteudo .conteudoBx .card .content{
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 -10px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px;
}
.conteudo .conteudoBx .card .content .contentBx h3{
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.1em;    
}
.conteudo .conteudoBx .card .content .contentBx span{
    font-size: 12px;
    color: #fff;
}
.conteudo .conteudoBx .card .content .sci{
    position: relative;
    bottom: 10px;
    display: flex;
}
.conteudo .conteudoBx .card .content .sci a{
    list-style: none;
    margin: 0 10px;
    color: #fff;
    font-size: 14px;
    list-style: none;
    text-decoration: none;
}


.conteudoBox{
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    min-height: 140vh;
    background: #e5be7d;
    padding-top: 20px;
}
.conteudoBox::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #3e495b;
}
.conteudoBox .container{
    position: relative;
    min-width: 90%;
    height: 500px;
    display: flex;
}
.conteudoBox .container .photoinfo{
    position: absolute;
    top: 30px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}
.conteudoBox .container .photoinfo img{
    width: 350px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
}
.conteudoBox .container .photoinfo i{
    font-size: 200px;
    color: #000;
    padding: 20px;
}
.conteudoBox .container .aboutForm{
    position: absolute;
    padding: 70px 50px;
    background: #fff;
    margin-left: 150px;
    padding-left: 250px;
    width: calc(100% - 150px);
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5);   
    height: 500px;
}
.conteudoBox .container .aboutBox{
    height: 440px;
    overflow: auto;
    margin-top: -40px;
}
.conteudoBox .container .aboutForm h2{
    color: #3e495b;
    font-size: 2em;
    font-weight: 800;
    text-transform: uppercase;
}
.conteudoBox .container .aboutForm h3{
    color: #000;
    
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Verdana", sans-serif;
}
.conteudoBox .container .aboutForm span{
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Verdana", sans-serif;
}

.equipe{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.equipe .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.equipe .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.equipe .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.equipe .equipeBx{
    padding: 50px;
}
.equipe .circle{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #e5be7d;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipe img{
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: cover;
    border-radius: 50%;
}
.equipe .text{
    position: absolute;
    width: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.equipe .text p{
    font-size: 1em;
    font-weight: 900;
    text-align: center;
}
.equipe .text span{
    font-size: 0.8em;
    text-align: center;
}

.parceiros{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.parceiros .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.parceiros .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.parceiros .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.parceiros .parceiroBx{
    padding: 50px;
}
.parceiros .circle{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

    -webkit-box-shadow: 15px 15px 20px 1px #ddd;
    box-shadow: 15px 15px 20px 1px #ddd;
}
.parceiros a img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 200px;
    margin: auto;
    padding: 10px;    
}



.links{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.links .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.links .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.links .content{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.links .linkBx{
    padding: 50px;
}
.links .circle{
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    -webkit-border-radius: 20px 20px 20px 20px;
    border-radius: 20px 20px 20px 20px;

    -webkit-box-shadow: 15px 15px 20px 1px #ddd;
    box-shadow: 15px 15px 20px 1px #ddd;
}
.links a img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 200px;
    margin: auto;
    padding: 10px;    
}


.videos{
    background: #fff;
    padding: 150px 100px 100px 100px;
}
.videos .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.videos .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.videos .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.videos .content .videoBx{
    width: 50%;
    padding: 20px;
}
.video .content .vidoeBx iframe{
    width: 100%;
}

.depoimentos{
    width: 100%;
    background: #f7f7f7;
    padding: 150px 100px 100px 100px;
}
.depoimentos .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.depoimentos .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}
.depoimentos .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.depoimentos .content .depoimentoBx{
    width: 45%;
    padding: 20px 20px;
    margin: 15px;
    background: #333;

    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;

    -webkit-box-shadow: 15px 15px 30px 1px #333;
    box-shadow: 15px 15px 30px 1px #333;
}
.depoimentos .content .depoimentoBx p{
    color: #fff;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}
.depoimentos .content .depoimentoBx h3{
    margin-top: 40px;
    text-align: end;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
}
.depoimentos .content .depoimentoBx h3 span{
    font-size: 14px;
    font-weight: 400;
}

.contact{
    background: #111;
    padding: 150px 100px 100px 100px;
}
.contact .title{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}
.contact .title h2{
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
}
.contact .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact .content .formBx{
    width: 60%;
}
.contact .content .formBx form{
    display: flex;
    flex-direction: column;
}
.contact .content .formBx form h3,
.contact .content .contactInfo h3{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.contact .content .formBx form input,
.contact .content .formBx form textarea{
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 5px 5px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    resize: none;
}
.contact .content .formBx form textarea{
    min-height: 100px;
}
.contact .content .formBx form input::placeholder,
.contact .content .formBx form textarea::placeholder{
    color: #999;
}
.contact .content .formBx form input[type="submit"]{
    max-width: 200px;
    padding: 20px;
    margin-top: 15px;
    background: #e5be7d;
    color: #000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 5px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}
.contact .content .formBx form input[type="submit"]:hover{    
    background: #3f4a3f;   
    color: #fff;
}
.contact .content .contactInfo{
    width: 40%;
    padding-left: 50px;
}
.contact .content .contactInfoBx{
    position: relative;
}
.contact .content .contactInfoBx .box{
    position: relative;
    padding: 10px 0;
    display: flex;
}
.contact .content .contactInfoBx .box .icon{
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}
.contact .content .contactInfoBx .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.contact .content .contactInfoBx .box .text h3{
    font-weight: 500;
    color: #e5be7d;
    margin-bottom: 0;
}

.credit{
    background: #fff;
    width: 100%;
    height: 80px;
    padding-top: 10px;
}
.credit .box{
    width: 50%;
    float: left;
    background: #fff;
    height: 80px;
    padding-left: 70px;
}
.credit .box .cadeado{
    padding-left: 60px;
    margin-top: 10px;
}
.credit .box .copyright{
    color: #000;
    text-align: left;
    padding-left: 60px;
    font-size: 16px;
}
.credit .box .copyright a{
    color: #333;
}
.credit .box .credit{
    color: #000;
    text-align: right;
    padding-right: 120px;
    font-size: 16px;
}
.credit .box .credit a{
    color: #333;
}

    @media (max-width: 991px){
        header{
            padding: 20px 50px; 
            z-index: 1000;
        }
        .menu{
            position: fixed;
            top: 135px;
            left: -100%;
            display: block;
            padding: 100px 50px;
            text-align: center;
            width: 100%;
            height: 100vh;
            background: #fff;
            transition: 0.5s;
            z-index: 999;
            border-top: 1px solid rgba(0,0,0,0.2);
        }
        .menu.active{
            left: 0;
        }
        header ul li a{
            color: #111;
            font-size: 24px;
            margin: 10px;
        }
        .toggle{
            width: 40px;
            height: 40px;
            background: url(../images/menu.png);
            filter: invert(100%);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 30px;
            cursor: pointer;
        }
        .toggle.active{
            background: url(../images/close.png);
            filter: invert(100%);
            background-position: center;
            background-repeat: no-repeat;
            background-size: 25px;
            cursor: pointer;
        }

        section{
            padding: 20px 30px;
        }

        .w50{
            margin-bottom: 20px;
        }

        .banner{
            padding: 150px 50px 100px;
        }
        .banner h2{
            font-size: 1.5em;
        }
        .banner h3{
            font-size: 1em;
        }
        .banner .btn{
            margin-top: 10px;
            padding: 10px 20px;
            font-size: 16px; 
        }

        .about{
            padding: 30px;
        }
        .about .content{
            flex-direction: column;            
        }



        .galeria_fotos .portfolioBx .card{
            width: 100%;          
        }

        .services .content .servicesBx{
            margin: 10px;
        }


        .conteudoBox .container{
            margin-top: 200px; 
            height: 650px; 
        }
        .conteudoBox .container .aboutForm{
            padding: 200px 30px 30px 20px;
            margin-left: 30px;
            width: calc(100% - 50px);
            height: 600px;
        }
        .conteudoBox .container .aboutForm h2{
            font-size: 1em;            
        }
        .conteudoBox .container .aboutForm h3{
            font-size: 14px;            
        }
        .conteudoBox .container .aboutForm span{
            font-size: 12px;            
        }
        .conteudoBox .container .photoinfo{
            top: -60px;     
            left: -30px;       
        }
        .conteudoBox .container .photoinfo img{
            width: 150px;
            
        }

        .videos{
            padding: 15px 10px 10px 10px;
        }
        .videos .content .videoBx{
            width: 100%;
            padding: 10px;
        }
        .videos .content .videoBx iframe{
            width: 100%;
        }
        
        .depoimentos{            
            padding: 15px 10px 10px 10px;
        }
        .depoimentos .content .depoimentoBx{
            width: 100%;
        }

        .contact{
            padding: 20px 20px 20px 20px;
        }
        .contact .content .contactInfo{
            width: 100%;
        }        
        .contact .content .formBx{
            width: 100%;
        }

        .credit .box{
            width: 100%;            
        }
        .credit .box .copyright{            
            font-size: 12px;
            padding-left: 20px;
        }        
        .credit .box .credit{
            text-align: left;
            padding-left: 20px;
            padding-right: 0px;
            font-size: 12px;
        }
    }


    @media (max-width: 600px){
        header{
            padding: 20px 10px;
        }
        .banner{
            padding: 150px 20px 100px;
        }
        section{
            padding: 100px 20px;
        }

    }


    /* whatsapp */
    .whatsapp{
        position: fixed;
        bottom: 800px;
        left: 0px;
        width: 110px;
        height: 110px;
        background: url("../images/redes_sociais/whatapp.png");
        background-size: 100px;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 100000;
        visibility: hidden;
        opacity: 1;
        transition: 0.5s;
    } 
    .whatsapp.active{
        bottom: 10px;
        visibility: visible;
        opacity: 1;
    }

        @media (max-width: 992px){
            .whatsapp{            
                right: 50px; 
                width: 100px;
                height: 100px;       
            } 
        }

/* Scroll Top */
.scrollTop{
    position: fixed;
    bottom: 800px;
    right: 10px;
    width: 80px;
    height: 80px;
    background: rgba(88, 88, 88, 0.5) url("../images/up.png");
    border-radius: 50%;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    filter: invert(1);
} 
    .scrollTop.active{
        bottom: 10px;
        visibility: visible;
        opacity: 1;
    }