body{
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background: #eee;
}
*{
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: black;
}
.nav__bar{
    background:#eee;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: auto 2rem;
}
.nav__bar a{
    padding: .5rem 1rem;
    background-color: #3d5c7b;
    color: white;
    border-radius: 5px;
    transition: .5s;
    font-weight: 900;
    font-size: 1.3rem;
}
.nav__bar a span{
    font-size: 40px;
}
.nav__bar a:hover{
   color: #00b236;
   background: white;
   border-radius: 1px solid black;
}
.nav__bar img{
    margin-left:5em;
    
}
.header{
 background: #eee;
}
.painel{
    background: url(../img/servazul.jpg);
    background-position:center;
    background-size:cover;
    background-repeat: no-repeat;
    width: 100%;
    height:50vh;
    margin:auto auto 45px;
} 
.painel h1{
    display: none;
}
 /* .painel img {
    width:100%;
    height: 100%;
    background-image: rgba(.2,.2,.2,.5);
}  */
.main__title1{
    color:black;
    text-align: center;
    font-size: 3em;
}
/* MAIN */
.section__services{
    background: #222;
    display: inline-block;
}
.main__title{
    font-size: 2.5em;
    padding:.2em;
    margin-left: .5em;
}
.main__container{
    background:#eee;
}
.section__gallery{
    width: 100%;;
    padding: 32px;
}
.main__gallery{

}
.main__image{
    width:20%;
}
.main__title{
    color:white;
    text-align: center;
}
.services{
    margin-bottom: 2em;
}
.we__services{
    background: #333;
    padding: 2em; 
    border-radius:0.5em;
    margin: 2em 2em 2em 2em;
    transition: 1s;
}
.we__services:hover{
    box-shadow: 0 0 20px rgba(192,192,192,.6);
}
.we__services i{
    display:inline-block;
    color:#eee;
}
.we__services span, i , p{
    color:#eee;
}
.we__services span{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5em;
}
.we__services p {
    text-align:justify;
}
.button{
    background:#fff;
    padding: .4em;
    color: black;
    font-weight: 600;
    align-items: flex-end;
    transition: 1s;
    border-radius: 5px;
}
.button:hover{
    background:#333;
    color:white;
    border-bottom:2px solid blue;

}
.footer{
    background: #eee;
    width:80%;
    margin:auto;
}
.footer__contact li{
    list-style: none;
    text-align: center;
    margin-top: 0.5em ; 
    font-size: 1.5em;
    
}
.footer__contact a {
    color: #222;
}


@media screen and (min-width: 65.5em){
    .painel{
        background-size: cover;
        

    }
    .main__gallery{
        padding: 0.5em;
        margin: auto;
        margin-left:200px ;
    }
    .main__image{
        display:inline;
        width: 13%;
        margin: 2em 2em 2.5em 3em
    }
    .services{
        display:grid;
        grid-template-columns: repeat(3,1fr);
        
    }
}
