.site-footer {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: var(--muted)
}

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem
}

/* =========================
   Redes (Instagram/LinkedIn)
   ========================= */
.social {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.social__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;

    padding: .5rem .7rem;
    border-radius: 999px;

    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);

    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.social__link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .16);
    color: #fff;
}

.social__link i {
    font-size: 16px;
    line-height: 1;
}

.social__text {
    font-size: 14px;
    line-height: 1;
}

/* Opcional: en pantallas chicas, dejar solo íconos para no ocupar tanto */
@media (max-width: 520px) {
    .social__text {
        display: none;
    }

    .social__link {
        padding: .5rem .6rem;
    }

    .social__link i {
        font-size: 18px;
    }
}

/* =========================
   WhatsApp floating button
   ========================= */
.wa {
    position: fixed;
    right: 18px;
    bottom: 18px;

    width: 46px;
    height: 46px;
    border-radius: 999px;

    background: radial-gradient(circle at 30% 30%, #39e26a, #1aa94a);
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
    text-decoration: none;

    z-index: 999;
    transition: transform .15s ease, filter .15s ease;
}

.wa:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.wa:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .35);
    outline-offset: 3px;
}

/* Ícono FontAwesome */
.wa i {
    font-size: 26px;
    line-height: 1;
    color: #fff;
}