.footer-contact {
    position: relative;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-left: 15px;
    z-index: 100;
}

.footer-whatsapp {
    display: flex;
    align-items: center;

    font-size: 22px;
    line-height: 1;

    height: 28px;
    margin-bottom: 10px;

    overflow: hidden;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 22px;
    line-height: 1;

    height: 26px;
    margin-right: 15px;

    overflow: hidden;
}

/* texto fijo */
.social-label {
    flex: 0 0 auto;
    white-space: nowrap;
}

.social-scroll {
    height: 24px;
    overflow: hidden;
}

.social-scroll-inner {
    display: flex;
    flex-direction: column;

    transform: translateY(0);
    will-change: transform;
}

.social-item {
    height: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
}

/* scroll */
.whatsapp-scroll {
    height: 28px;
    overflow: hidden;
    position: relative;
}

.whatsapp-scroll-inner {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform;
}

.whatsapp-item {
    height: 28px;
    min-height: 28px;
    flex: 0 0 28px;

    display: flex;
    align-items: center;

    white-space: nowrap;
    overflow: hidden; /* 👈 evita que desborde texto/iconos */
}