#myFooter {
    position: fixed;
    z-index: 200;
    background-color: #222d32;
    color: white;
    overflow-y: hidden;
    bottom: 0;
    width: 100%;
    display: flex;
    /* Adiciona display flex */
    justify-content: space-between;
    /* Alinha os itens ao longo do eixo principal com espaço entre eles */
    align-items: center;
    /* Alinha os itens ao longo do eixo transversal */
}

#myFooter .footer-copyright {
    background-color: #222d32;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    flex-grow: 1;
    /* Ocupa menos espaço */
}

#myFooter a {
    color: #d2d1d1;
    text-decoration: none;
}

#myFooter a:hover,
#myFooter a:focus {
    text-decoration: none;
    color: white;
}

#myFooter .social-networks {
    text-align: center;
    text-decoration: none;
    flex-grow: 2;
    /* Ocupa menos espaço */
}

#myFooter .social-networks a {
    font-size: 20px;
    color: #f9f9f9;
    padding: 10px;
    transition: 0.2s;
}

#myFooter .social-networks a:hover {
    text-decoration: none;
}

#myFooter .facebook:hover {
    color: #3b5998;
}

#myFooter .whatsapp:hover {
    color: #25d366;
}

#myFooter .instagram:hover {
    color: #833AB4;
}

#myFooter .youtube:hover {
    color: #c4302b;
}

#myFooter .twitter:hover {
    color: #00acee;
}

@media (min-width: 1900px) {
    #myFooter {
        position: absolute;
        /* ou static */
    }
}