*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.interface{
    max-width: 1280px;
    margin: 0 auto;

}

header{
    width: 100%;
    background-image: linear-gradient(180deg, yellow, #00b050);

}

.top-header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header{
    padding: 20px 4%;
}

.top-header h1{
    align-items: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    text-align: center;

}

.top-header .logotipo img{
    max-width: 100px;
}

footer .btn-social button{
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid black;
}

nav{
       background-color: #00b050;
}

nav ul{
           display: flex;
           align-items: center;
           justify-content: center;

          list-style-type: none;
}

nav ul li a{
                 color: white;
                padding: 20px 20px;
                text-decoration: none;
    
                 font-size: 20px;
                font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
                display: block;
                transition: .2s;
}

nav ul li a:hover{
                             background-color: yellow;
                             color: blue;
                             box-shadow: inset 0 0 8px blue;
}

.drop-hover{
    position: relative; 
}

.drop-hover .drop{
    position: absolute;
    background-color: #00b916;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: .2s;
}

.drop-hover .drop a{
     Padding: 20px;

}

.drop-hover:hover .drop{
    height: 400px;
}


.texto{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background: white;
}

.headline{
    margin-left: 5%;
    flex: 40%;
   /* border: 1px solid black;*/
}

.texto h2{
    font-weight: 900;
    font-size: 20px;
    color: blue;
    padding: 0;
    margin: 0;
}

.headline p{
    color: black;
    text-align: left;

}

.contact-btn{
    display: inline-block;
    background: #00b050;
    padding: 20px;
    color: white;
    //letra em maiuscula
    text-transform: uppercase;
    border-radius:5px;
    text-decoration: none;
}

.contact-btn1{
    display: inline-block;
    background: blue;
    text-align: right;
    padding: 8px;
    color: white;
    //letra em maiuscula
    text-transform: uppercase;
    border-radius:5px;
    text-decoration: none;
}

.contact-btn:hover{
    background: blue;
}
.img-headline{
    margin-right: 2%;
    margin-left: 2%;
    margin-top: 1%;
    flex: 40%;
    /*border: 1px solid red;*/
    text-align: center;
}

section{
    display: inline-block;
    margin-top: 80px;
    /*border: 1px solid black;*/
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    padding: 5%;
    /*width: 90%;*/
}

section h2{
    width: 100%;
    font-size: 50px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: blue;
}

.servicos{
    display: inline-block;
    margin-top: 5%;
}

.card{
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 1%;
    border: 1px solid #00b050;
}

.card:hover{
    background: #00b050;
    color: white;
    padding: 40px;
}

.card:hover img{
    display: none;
}

.card:hover .card-text{
    display: none;
}

.card:hover .texto-oculto{
    display: block;
}

.texto-oculto{
    display: none;
}

footer{
    margin-top: 80px;
    height: 300px;
    background-image: linear-gradient(180deg, yellow, #00b050);
    text-align: center;
    border-top: 5px solid blue;
}

.logo-rodape{
    padding: 100px;   
}

.logo-cabecalho{
    padding: 80px;   
}

.container{
    display: flex;
}
