﻿/* ===================================================================
   REDES SOCIALES FLOTANTES (Inferior Derecha)
   =================================================================== */
.floating-social-widget {
    position: fixed;
    bottom: 38px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fsw-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

    /* Iconos de 20x20 para que queden bien balanceados */
    .fsw-btn svg {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease;
    }

/* Colores de Fondo de Marca Permanentes */
.fsw-wa {
    background: #25D366;
}

.fsw-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fsw-fb {
    background: #1877F2;
}

/* Animación Hover */
.fsw-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

    .fsw-btn:hover svg {
        transform: scale(1.1);
    }

/* Responsive Celulares */
@media (max-width: 768px) {
    .floating-social-widget {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .fsw-btn {
        width: 40px;
        height: 40px;
    }

        .fsw-btn svg {
            width: 18px;
            height: 18px;
        }
}
