@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap');
body, html{
    margin: 0;
    padding: 0;
}

body{
    background-color: #F9F9F9;
    font-family: 'Open Sans', sans-serif!important;
}

nav{
    margin: 20px 0;
}

.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    animation-name: example;
    animation-duration: 0.6s;
    outline: none;
}

@keyframes example {
    0%   {transform: rotateX(0deg);}
    50%  {transform: rotateX(60deg);}
    100% {transform: rotateX(0deg);}
  }

header{
    margin-top: 100px;
    margin-bottom: 100px;
}

.headerContainer{
    background-image: url("../svg/invisivel-ilustracao.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: 40%;
    min-height: 450px;
}

.logomarca{
    font-weight: bold;
    font-size: 1.5em;
}

.leme{
    font-style: italic;
    font-weight: normal;
}

h1{
    font-weight: bold;
}

.active{
    font-weight: bold;
}

.nav-item{
    margin-left: 30px;
}

.contatoBtn{
    display: inline-block;
    background-color: #536DFE;
    padding: 7px 30px;
    color: white!important;
    border-radius: 5px;
    border: 2px solid #536DFE;
}

.chamadaBtn{
    display: inline-block;
    background-color: #536DFE;
    padding: 7px 30px;
    color: white;
    border-radius: 5px;
    border: 2px solid #536DFE;
    margin-right: 20px;
    transition: 0.5s;
}

.chamadaBtn:hover{
    background-color: #203CD4;
    border-color: #203CD4;
    color: white!important;
}

.chamadaBtnOutlined{
    display: inline-block;
    background-color: transparent;
    padding: 7px 30px;
    color: #536DFE;
    border-radius: 5px;
    border: 2px solid #536DFE;
    transition: 0.5s;
}

.chamadaBtnOutlined:hover{
    border-color: #203CD4;
    color: #203CD4!important;
}

a{
    color: inherit;
}

a:hover{
    text-decoration: none;
}

#servicos{
    background-image: url("../svg/bg/servicos.svg");
    background-position: left;
    background-repeat: no-repeat;
}

article{
    background-color: white;
    box-shadow: 0px 8px 44px rgba(0,0,0,.16);
    padding: 50px 40px;
    margin: 40px 0;
    border-radius: 5px;
}

article h1{
    font-size: 1.8em;
    color: #707070;
    margin-bottom: 30px;
}

p{
    color: #707070;
}

#portfolio{
    background-image: url("../svg/bg/portfolio.svg");
    background-position: right;
    background-repeat: no-repeat;
    min-height: 700px;
    padding: 100px 0;
}

.portfolioItem{
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0px 8px 44px rgba(0,0,0,.16);
    height: 250px;;
    overflow: hidden;
    position: relative;
}

.portfolioItem:hover >.portfolioBotao{
    opacity: 1;
    visibility: visible;
}

.portfolioLegenda{
    color: white;
    margin: 0 0 5px 0;
    font-size: 1.3em;
}

.portfolioBotao{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.carousel-caption{
    background-color: rgba(0,0,0,.7);
    color: white;
    width: 100%;
    left: 0;
    bottom: 0;
}

.carousel-caption p{
    color: white!important;
    font-weight: normal;
}

.carousel-control-next,
.carousel-control-prev {
    filter: invert(100%);
}

#clientes{
    background-image: url("../svg/bg/clientes.svg");
    background-position: left;
    background-repeat: no-repeat;
    min-height: 700px;
    padding: 100px 0;
}

.clientes img{
    margin: 20px 30px;
    opacity: .7;
}

.clientes img:hover{
    opacity: 1;
}

.clientes img:nth-child(1){
    margin-left: 0;
}

.clientes img:nth-child(3n){
    margin-right: 0;
}

#contato{
    background-image: url("../svg/bg/contato.svg");
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

#contato h1{
    color: #536DFE;
    font-size: 5em;
    margin-bottom: 50px;
}

#contato p{
    margin-bottom: 30px;
}

#contato input{
    border: none;
    padding: 12px 20px;
    color: #C1C1C1;
    box-shadow: 10px 8px 44px rgba(0,0,0,.16);
}

#contato input[type="text"]{
    background-color: white;
    width: 30%;
    border-radius: 0px 0px 0px px;
}

#contato input[type="text"]:nth-child(1){
    border-radius: 5px 0 0 5px;
}

#contato input[type="submit"]{
    background-color: #536DFE;
    color: white;
    min-width: 10%;
    border-radius: 0px 5px 5px 0px;
}

#contato h2{
    color: #707070;
    margin-top: 50px;
    margin-bottom: 30px;
}

.chamarBtn{
    display: inline-block;
    background-color: #2ADE53;
    padding: 9px 40px;
    color: white;
    border-radius: 5px;
    border: 2px solid #2ADE53;
    box-shadow: 10px 8px 44px rgba(0,0,0,.16);
}

.chamarBtn:hover{
    color: white!important;
}

#contato h3{
    margin-top: 10px;
    font-size: 1.2em;
    color: #707070;
    font-weight: bold;
}

footer{
    background-color: #3F3D56;
    text-align: center;
    color: white;
    padding: 50px 0;
    margin-top: 100px;
}

footer h1{
    font-size: 4em;
}

footer p{
    color: white;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff!important;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.modal-content{
    border: none;
}

@media screen and (max-width: 991px){
    .portfolioItem{
        height: 120px;
    }
    
    #contato h1{
        color: #536DFE;
        font-size: 4em;
        margin-bottom: 50px;
    }

    footer h1{
        font-size: 2.5em;
    }
    .contatoBtn{
        display: inline-block;
        background-color: transparent;
        padding: 7px 30px;
        color: rgba(0,0,0,.5)!important;
        border-radius: 5px;
        border: none;
    }
}

@media screen and (max-width: 767px){
    .headerContainer{
        background-image: none;
        min-height: 450px;
    }
    .navbar-nav{
        text-align: center;
    }
    .nav-item{
        margin-left: 0px;
    }
    .wrapper{
        display: flex; 
        flex-direction: column;
    }

    .articleTextos{
        order: 2;
    }
    .articleImagem{
        order: 1;
        padding-bottom: 30px;
    }
    #contato input[type="text"]{
        width: 100%;
    }
    
    #contato input[type="submit"]{
        width: 100%;
    }
    #contato h2{
        font-size: 1.6em;
    }
}