


   
#header{
    width:100%;
    position:-webkit-sticky; /* Necessário para funcionar no Safari */
    position:fixed;
    top:0;
    z-index:99;
    box-shadow:0px 0px 6px 0px rgb(0, 0, 0);
    box-sizing:border-box;
    height:60px;
    margin-bottom: 44rem ;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#000000;
}
section{
 
    height: 100%;
    margin: 1rem;
    padding: 1rem;
 
}
#logo{
     margin-left:5rem;
    width:150px;
    height:auto;
}
.fotologo{
    margin-left:50%;

    width:100px;
    height:auto;
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5));

}
#menu{
    padding-top: 1rem;
    font-family:Arial;
    display:block;
    list-style:none;
    gap:.5rem;/*ESPAÇAMENTO*/
}
.a{ 
    display:block;
    padding:1rem;
    font-family:var(--roboto);
    color: white;
    text-decoration:none;
    
}
.a:hover{
    font-weight: 700;
     color: rgb(178, 10, 10);
    border-radius: .1rem;
    text-decoration: line-through
}
#btn-mobile{
    display:none; 
}
 
