/* footer mobile */
#footer {
    margin-top: auto;
    background: var(--color-primary);
}

#footer .footer-content {
    display: grid;
    gap: 40px;
}

#footer .footer-list {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 20px;
}

#footer .footer-item {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#footer .footer-logo-img {
    display: block;
    margin-inline: auto;
    max-width: 460px;
    width: 80%;
}

#footer .footer-group {
    display: flex;
    gap: 24px;
    color: var(--color-light);
}

#footer .footer-icon {
    font-size: 18px;
}

#footer .footer-contact {
    color: inherit;
}

#footer .footer-ass {
    text-align: center;
    padding-block: 16px 80px;
    background: var(--color-dark);
    color: var(--color-primary);
}

#footer .footer-ass > * {
    line-height: 1.5;
}

#footer .footer-ass, #footer .footer-ass a {
    font-size: clamp(14px, 13.3333px + 0.2083vw, 16px);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* fim - footer mobile */

/* footer desktop */
@media (min-width: 992px) {
    #footer .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    #footer .footer-buttons {
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-bottom: 80px;
    }

    #footer .footer-buttons .btn {
        font-family: 'Azo Sans Medium', sans-serif;
    }

    #footer .footer-logo {
        order: 3;
    }

    #footer .footer-logo-img {
        margin-inline: auto 0;
    }

    #footer .footer-buttons {
        grid-column: span 2;
    }

    #footer .footer-ass {
        padding-bottom: 1em;
    }
}

/* fim - footer desktop */