header {
    display: flex;
    transition: transform 300ms, box-shadow 300ms;
    z-index: 9999 !important;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.74);
}

ul {
    padding: 0px;
}

#imagem-header {
    cursor: pointer;
    transition: transform 300ms, box-shadow 300ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

#menus-meio {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menus-meio  li {
    font-family: 'NotoSans';
    color: white;
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

#menus-meio  li:hover {
    transform: translateY(-2px);
    cursor: pointer;
}

#menus-meio  a {
    color: white;
}

@media screen and (max-width:640px) {
    header {
        width: 100vw;
        max-height: 150px;
        height: 150px;
        flex-direction: column;
        align-items: center;
    }

    #imagem-header {
        width: 200px;
        height: 112,50px;
        margin: 20px 0px 20px 0px;
    }

    #menus-meio  {
        width: calc(100% - 100px);
        gap: 25px;
        margin: 0px;
    }

    #menus-meio  li {
        font-size: 70%;
    }
}

@media screen and (min-width: 641px) and (max-width:1007px) {
    header {
        width: 100vw;
        max-height: 70px;
        height: 70px;
    }

    #imagem-header {
        width: 175px;
        height: 78.75px;
        margin-left: 10px;
        padding-top: 18px;
    }

    #menus-meio  {
        width: calc(100% - 300px);
        gap: 50px;
    }

    #menus-meio  li {
        font-size: 80%;
    }
}

@media screen and (min-width:1008px) {
    header {
        width: 100vw;
        max-height: 70px;
        height: 70px;
    }

    #imagem-header {
        width: 200px;
        height: 90px;
        margin-left: 50px;
        padding-top: 10px;
    }

    #menus-meio  {
        width: calc(100% - 500px);
        gap: 50px;
    }

    #menus-meio  li {
        font-size: 80%;
    }
}