/* =====================================================
   REDES SOCIALES DEL PIE DE PÁGINA
===================================================== */

.footer-social-column {
    display: flex;
    justify-content: flex-end;
}

.footer-socials.footer-socials-bottom {
    position: static;
    top: auto;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.footer-socials.footer-socials-bottom li {
    float: none;
    margin: 0;
}

.footer-socials.footer-socials-bottom a {
    width: 40px;
    height: 40px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.footer-socials.footer-socials-bottom a span {
    opacity: 1;
    line-height: 1;
}

.footer-socials.footer-socials-bottom a:hover,
.footer-socials.footer-socials-bottom a:focus {
    color: #2e2747;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .footer-social-column {
        margin-top: 18px;
        justify-content: flex-start;
        text-align: left !important;
    }

    .footer-socials.footer-socials-bottom {
        justify-content: flex-start;
    }
}
