@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0; 
    overflow-x: hidden;
    background-image: url("../img/bg-azul.png");
    background-size: 100%;
    background-attachment: fixed;
    color: whitesmoke;
    font-family:'M PLUS 1p', sans-serif;
    text-align: center;
}

.cabecalho{
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    box-sizing: content-box;
    display: inline-block;
    color: whitesmoke;
    background: rgba(255, 255, 255, 0.161);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
}
.logo{
    height: 80px;
    padding: 15px;
    float: left;
    background: none;
    border: none;
}
.logo img{
    height: 100%;
}

.menu{
    display: flex;
    float: left;
    margin: 28px 10px;
}
.menu ul{
    margin: 0;
    padding: 0;
}
.menu li{
    display: inline-block;
}
.menu a:hover{
    font-weight: bolder;
}
.cabecalho a{
    text-decoration: none;
    color: whitesmoke;
    font-size: 1.3rem; 
    padding-left: 15px;  
    padding-right: 15px;
}

.busca{
    float: right;
    height:80px;
    padding: 30px 10px;
}
.formulario input{
    border: none;
    padding: 0.3rem;
    border-radius: 5px;
    box-shadow: 3px lightgreen;
}

.formulario #proc:hover{
    background: rgb(91, 92, 92);
}
@media (max-width: 1288px) {
    .busca{
        display: none;
    }
}
@media (max-width: 1000px) {
    .menu{
        display: none;
    }
}


/* Rodapé */
footer{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.161);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );

}
.boxs{
    width: 600px;
}

.boxs p{
    width: 400px;
    margin-left: 10px;
}

.boxs h2{
    color: whitesmoke;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
    text-align: left;
}

.boxs p{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 11pt;
    color: #fff;
    text-align: left;
    line-height: 25px;
    
}
.boxs a{
    text-decoration: none;
    color: #fff;
    text-align: justify;
}
.boxs a:hover{
    color: lightgrey;
}
@media (max-width: 1300px) {
    footer{
        flex-direction: column;
        height: 450px;
        font-size: 10pt;
    }
}
