footer {
    font-family: 'Inter', sans-serif;
    width: 100%;
    position: relative;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to right, #e21616a4, #dd2c2ca4), url("../img/footer.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 0.2em #ffffff;
}

img#logo_footer {
    width: 200px;
    margin-top: -20px;
    margin-left: 40px;
}

footer ul {
    color: #fff;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
}

footer ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

footer ul li img {
    width: 30px;
}

ul.menu {
    width: 70%;
}

/* ul.menu li:hover {
    color: #df2726;
    transition: 0.3s;
} */

div#midias {
    width: 8%;
    margin-right: 50px;
}

div#midias img {
    width: 25px;
}

/* div#midias img:hover{
    filter: invert(50%) sepia(80%) saturate(7000%) hue-rotate(700deg) brightness(88%) contrast(109%);
} */

div#midias ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li#youtube {
    margin-top: 5px;
}

@media (max-width: 800px) {
    footer {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    footer img#logo_footer {
        margin: auto;
        margin-bottom: -20px;
    }

    footer ul {
        flex-direction: column;
    }

    footer ul#menu {
        padding-left: 0px;
        margin-left: 0px;
        margin: auto;

    }

    footer ul {
        padding-left: 0px;
        margin-left: 0px;
        margin-right: 0px;
        margin: auto;
    }

    footer ul li {
        margin-bottom: 5px;
        font-size: 18px;
    }

    div#midias {
        padding-left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        margin: auto;
        margin-bottom: 20px;
    }

    div#midias ul {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        margin: auto;
    }
}