/* ================================
   SOCIAL FLOAT — MOTOWOLF SSR
   ================================ */

.mw-socialfloat{
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6000;

    display: flex;
    flex-direction: column;
    gap: 12px;

    border: none;
    outline: none;
    box-shadow: none;

    /* evita interferir con layout */
    pointer-events: none;
}


/* ================================
   BOTONES
   ================================ */

.mw-socialfloat__btn{
    pointer-events: auto;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: none;
    outline: none;

    text-decoration: none;

    box-shadow: 0 8px 24px rgba(0,0,0,.25);

    transition:
            transform .18s ease,
            box-shadow .18s ease,
            background .18s ease;

    /* color default fallback */
    background: #fff;
    color: #111;
}


/* hover efecto pro */
.mw-socialfloat__btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}


/* ================================
   SVG ICON FIX (CRÍTICO)
   ================================ */

.mw-socialfloat__btn svg{
    width: 22px;
    height: 22px;

    fill: currentColor !important;
    stroke: currentColor !important;

    display: block;
}


/* ================================
   COLORES POR RED
   ================================ */

.mw-socialfloat__btn--fb{
    background: #1877F2;
    color: #fff;
}

.mw-socialfloat__btn--ig{
    background: #E1306C;
    color: #fff;
}

.mw-socialfloat__btn--tt{
    background: #111;
    color: #fff;
}

.mw-socialfloat__btn--wa{
    background: #25D366;
    color: #fff;
}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 768px){

    .mw-socialfloat{
        right: 12px;
        top: auto;
        bottom: 18px;
        transform: none;
        gap: 10px;
    }

    .mw-socialfloat__btn{
        width: 44px;
        height: 44px;
    }

    .mw-socialfloat__btn svg{
        width: 20px;
        height: 20px;
    }

}
