/* FOOTER BASE */
.site-footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 2rem;
}

/* CONTAINER */
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 20px; */
}

/* LINKS */
.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #9c76e3;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    /* width: 56px; */
    height: 49px;
    background: #6d38fc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    transition: transform .2s ease, opacity .2s ease;
    color: #ffffff;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: .85;
}

.footer-social svg {
    width: 26px;
    height: 26px;
    fill: #000;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 1.125rem;
    margin: 0;
}

/* VISIBILIDADE */
.footer-links-mobile,
.footer-social-mobile {
    display: none;
}

/* MOBILE */
@media (max-width: 1023px) {

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links-desktop,
    .footer-social-desktop {
        display: none;
    }

    .footer-links-mobile,
    .footer-social-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social-mobile {
        flex-direction: row;
        margin-top: 1rem;
    }

    .footer-copy {
        margin-top: 1rem;
    }
}


svg{
  margin-bottom: 0px!important;
}