footer {
    width: 90%;
    padding: 2em 5%;
    background-color: var(--aux-color-2);
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 15vh;
    color: var(--base-color);
    font-family: var(--aux-font);
}

footer > :first-child > p {
    font-family: var(--main-font);
    font-size: 0.75em;
    hyphens: auto;
    text-align: justify;
    padding-bottom: 1em;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: none;
    border-right: 100vw solid var(--aux-color-2);
    border-bottom: 5vh solid var(--aux-color-2);
    border-top: 5vh solid transparent;
    transform: translateY(-5vh);
}

footer h2 {
    margin-top: 1em;
}

footer #realizacao {
    display: flex;
    height: 2.5em;
    align-items: center;
    gap: 1em;
}

footer #realizacao > img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

footer .creditos {
    text-align: center;
    font-size: 0.75em;
    height: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5ch;
    margin-top: 1em;
}

footer .creditos .coracao::before {
    display: block;
    content: '❤︎';
    color: var(--aux-color-1);
    animation: pulse 2s infinite forwards;
}

footer .creditos a {
    font-weight: bolder;
    position: relative;
}

footer a::after {
    display: none;
}

footer .local {
    padding-top: 1em;
}

footer .local::before {
    background-image: url('/~sepromat/assets/img/pin/green-1.svg');
    padding-right: 0.5ch;
    display: inline-block;
    content: '';
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-size: 0.9em 0.9em;
    background-position: 0.05em 0.05em;
    vertical-align: -0.1em;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (orientation: landscape) {

    footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 3em;
        row-gap: 2em;
    }

    footer h2 {
        margin-top: unset;
    }

    footer .creditos {
        grid-column: 1/3;
    }

}