footer {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    background: url(../img/footer/bg-footer.png) no-repeat;
    background-size: cover;
    object-fit: cover;
}

.footer-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cor-primary-branca);
    width: 100%;
    padding: 2rem 0rem;
    gap: 1.5rem;
}

.footer-logo {
    width: 200px;
    height: 119px;
}

.text-footer {
    p {
        text-align: justify;
        line-height: 19px;
    }
}

.line {
    border: 1px solid var(--cor-primary-branca);
    width: 0;
    height: 320px;
}

.footer-link {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.fluxo {
    display: flex;
    justify-content: space-around;
}

.footer-link-col {
    width: 150px;
    display: flex;
    flex-direction: column;
}

.footer-link-col a {
    color: var(--cor-primary-branca);
    align-items: flex-end;
    text-decoration: none;
}

.post {
    margin-top: 5rem;
}

.post p {
    align-items: center;
}

.footer-mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    footer {
        width: 100%;
    }

    .footer-body {
        width: 100%;
        margin-top: 5rem;
        padding: 1rem 0rem;
        gap: 2rem;
    }

    .footer-logo {
        width: 50%;
        height: 50%;
    }
}

@media screen and (max-width: 990px) {
    footer {
        width: 100%;
        background: transparent;
    }

    .footer-body {
        display: none;
    }

    .footer-mobile {
        width: 100%;
        height: 100%;
        padding: 0rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--cor-primary-branca);
        color: var(--cor-secundary-preto);
    }

    .footer-mobile p {
        margin-top: 1.5rem;
        border-top: 1px solid #000000;
    }
}