footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 var(--space-lg);
    width: calc(100% - 2 * var(--space-lg));
    padding-top: 20px;
}


.links-footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    margin-bottom: 10px;
}


.links-footer {
    width: 490px;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px
}

.links-footer li {
    width: 90px;
    border-radius: 8px;
    height: 35px;
    background: white;
    border: 1px solid var(--bordaCinza);
}

.links-footer li a {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(100% - 10px);
    margin-left: 10px;
    color: black;
    font-weight: 500;
    text-decoration: none;
}

.copyright-footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.copyright-footer {
    width: 490px;
    color: var(--textoCinza);
    font-size: 0.875rem;
    padding-bottom: 20px;
}

@media (min-width: 800px) {
    footer {
        width: calc(100% - 2 * var(--space-lg));
        margin: 20px auto;
        padding: 0 var(--space-lg);
        justify-content: center;
        align-items: center;
        height: fit-content;
    }

    .links-footer-container {
        width: 600px;
    }

    .links-footer {
        width: 600px;
    }

    .links-footer li {
        width: 110px;
    }

    .copyright-footer-container {
        width: 600px;
    }

    .copyright-footer {
        width: 600px;
    }
}

@media (min-width: 1200px) {
    footer {
        width: 1200px;
        margin: 20px auto;
        padding: 0 var(--space-lg);
        justify-content: center;
        align-items: center;
        height: fit-content;
    }

    .links-footer-container {
        width: 1200px;
    }

    .links-footer {
        width: 1200px;
    }

    .links-footer li {
        width: 225px;
        height: 50px;
    }

    .links-footer li a {
        margin-left: 15px;
    }

    .copyright-footer-container {
        width: 1200px;
    }

    .copyright-footer {
        width: 1200px;
    }
}