footer {
    width: 100vw;
    padding: 1rem 5rem;
    background-color: black;
    color: white;
    font-size: 0.8em;

    display: flex;
    align-items: center;
    gap: 2em;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25), 0 -2px 16px rgba(0, 0, 0, 0.15), 0 0px 32px rgba(0, 0, 0, 0.05)
}

footer .tagline,
footer .endereco {
    flex: 0 1 max-content;
    text-wrap: balance;
}

footer .endereco {
    text-align: right;
}

footer .contato {
    text-align: center;
    flex: 1
}

footer .contato div {
    text-wrap: nowrap;
}

footer .contato a {
    color: var(--main-color);
}

footer .intl {
    display: flex;
    flex-direction: column;

    justify-content: space-around;
    align-items: center;
}

footer .intl a {
    font-family: "Noto Color Emoji", sans-serif;
}

@media (max-width: 800px) {
    footer {
        flex-wrap: wrap;
        justify-content: center;
    }

    footer * {
        text-align: center !important;
    }

    footer .intl {
        flex-direction: row;
        gap: 3rem;
    }
}