.footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--footer-background);
    position: relative;
}

.footer-container {
    width: 100%;
    height: auto;
    position: relative;
}

.footer-container::before {
    content: '';
    position: absolute;
    max-width: 100vw;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, .85),
            rgba(0, 0, 0, .85)),
        url('../../images/background/bg_footer.png');

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

.footer-elements {
    width: 100%;
    max-width: var(--container);
    padding: 30px 20px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.footer-column {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 300px;
}

.footer-column h2 {
    color: var(--footer-text);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 19px;
    text-transform: uppercase;
}

.footer-logo,
.footer-logo a {
    width: auto;
    height: auto;
}

.footer-logo a img {
    width: auto;
    height: 75px;
    object-fit: contain;
}

.footer-description {
    height: auto;
    width: auto;
}

.footer-description p {
    color: #A0A0A0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.footer-list-social {
    width: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.footer-list-social li {
    width: auto;
    height: auto;
}

.footer-list-social li a {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #fff;
}

.footer-list-social li a:hover {
    background-color: transparent;
}

.footer-list-social li a:hover svg path {
    fill: #fff;
}

.footer-list-categories {
     display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* flex-direction: column; */
    gap: 10px;
    list-style: none;
}


.footer-list-categories li a,
.footer-column>a {
    color: var(--footer-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.footer-list-categories li a:hover,
.footer-column>a:hover {
    color: var(--footer-hover);
}

.footer-list-tags {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.footer-list-tags li {
    width: auto;
    height: auto;
}

.footer-list-tags li a {
    border-radius: 5px;
    background: #FFF;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--body-text);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    border: 1px solid #fff;
    transition: all .3s ease-in-out;
}

.footer-list-tags li a:hover {
    background-color: transparent;
    color: #fff;
}

.footer hr {
    width: 100%;
    border: 1px solid #fff;
}

.footer-copywrite {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.footer-copywrite p {
    color: var(--footer-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    text-transform: uppercase;
}

/* Responsividade */
@media screen and (max-width: 991px) {
    .footer-logo a img {
        height: 65px;
    }

    .footer-elements {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 700px) {
    .footer-elements {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 550px) {
    .footer-elements {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .footer-column {
        max-width: 100%;
    }
}