


@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
html, body{
    margin:0;
    padding: 0;
    color: #525252;
    font-family: 'Lato';
}
::selection {
    background: #B27E16;
    color: #fff;
}


@keyframes lazy-zoom{0%{transform:scale(1)}100%{transform:scale(1.2)}}

#topo{
    background-image: url('../images/topo.jpg');
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center -220px;
    background-attachment: fixed;
    /*animation:lazy-zoom;
    background-repeat:no-repeat;
    background-position:center;
    transform-origin:center;
    animation-duration:10s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
    animation-timing-function:ease-in-out;*/
}


#box-perfil{
    margin-top: -50px;
    margin-bottom: 50px;
    background-color: #fff;
    box-shadow: -8px -8px 0px rgba(30, 26, 26, 0.52);
}

#right-perfil h1{
    font-size: 30px;
    color: #b27e16;
    padding-top: 18px;
    margin-top: 0;
}

p{
    font-size: 15px;
}

h2{
    font-size: 22px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 30px;
    display: inline-block;
}

i{
    float: left;
    margin-top: 2px;
    margin-right: 15px;
    font-size: 20px;
    color: #b27e16;
}

.section-black{
    background-color: #1f1b1b;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.campo-form{
    
    height: 40px;
    border: 2px solid #ffffff;
    background: #fff;
    padding: 15px;
    color: #1f1b1b;
}

#nome-campo{
    width: 100%;
    margin-bottom: 30px;
}

textarea{
    width: 100%;
    height: 100px !important;
    resize: none;
    
}

input, textarea{
    transition: color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86), background-color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    outline: 0;
}

input:focus, textarea:focus, input:hover, textarea:hover{
    border-color: #b27e16;
}

#email-campo{
    display: inline-block;
    margin-bottom: 30px;
    width: 55%;
}
#email{
    width: 100%;
}
#telefone-campo{
    float: right;
    width: 40%;    
}
#telefone{
    width: 100%;
}
#form-contato label{
    display: block;
    margin-bottom: 10px;
}

input:-internal-autofill-selected{
    background-color: #fff !important;
    color: #1f1b1b !important;
}

button{
    width: 100%;
    height: 40px;
    color: #fff;
    background-color: #b27e16;
    outline: 0;
    border: 0;
    margin-top: 20px;
    font-size: 20px;
    transition: color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86), background-color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 400ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    outline: 0;
}

button:hover{
    color: #fff;
    background-color: #444444;
}

footer{
    padding: 30px;
    background: #efefef;
}

.titulos-footer{
    margin: 0px 0 0;
    font-size: 18px;
}
.img-footer{
    max-width: 30%;
    margin-top: 20px;
}
.mb10{
    margin-bottom: 10px;
}



#right-perfil p{
    margin-top: 30px;
    width: 94%;
    line-height: 30px;
    text-align: center;
    font-size: 19px;
}

#right-perfil span{
    display: block;
    font-size: 20px;
    font-weight: bold;
}

#section-atuacao{
    margin-bottom: 30px;
}

.areas{
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.areas span{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    text-align: center;
    padding-top: 35%;
    font-size: 25px;
    color: #e4e4e4;
    line-height: 27px;
}
.areas img{
    transition: transform .3s ease;
}
.areas:hover img {
    transform: scale(1.5);
}
.areas:hover span {
    background-color: transparent;
    color: #ffffff;
    text-shadow: 0px 0px 10px #000;
}

.trabalhos{
    text-align: center;
}

@media only screen and (min-width: 1200px){
    .col-bb-3{
        width: 20%;
        float: left;
        padding-right: 5px;
        padding-left: 5px;
    }
    
}

@media only screen and (max-width: 1199px){
    .areas{
        width: 60%;
        margin: 0 auto;
        margin-bottom: 30px;
        margin-top: 50px;
    }
    .areas span{
        font-size: 45px;
    }
    #box-perfil{
        padding: 30px;
    }
    .trabalhos{
        width: 60%;
        margin: 10px auto;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    #email-campo,#telefone-campo{
        width: 100%;        
    }

    #right-perfil p{
        width: 100%;
    }
    #telefone{
        width: 100%;
        margin-bottom: 30px;
    }

    .areas span{
        font-size: 22px;
    }

}

@media only screen and (max-width: 600px) {
    #topo{
        height: 180px;
        background-position: center -160px !important;
    }
}


