    .pissis-social-bar {
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 9998; /* Un poco menos que WhatsApp */
        display: flex;
        flex-direction: column;
    }

    /* Botón Flotante de WhatsApp (A la DERECHA en PC) */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        z-index: 9999; /* Siempre arriba */
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Estilo Base Botones Redes (PC) */
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        padding: 12px 15px;
        width: 45px; /* Solo icono al inicio */
        transition: width 0.4s ease, background-color 0.3s ease;
        border-radius: 0 8px 8px 0;
        margin-bottom: 5px;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    /* Icono Redes */
    .social-icon i { font-size: 20px; min-width: 20px; text-align: center; transition: color 0.3s ease; }

    /* Texto Oculto Redes */
    .social-text { margin-left: 15px; font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity 0.3s ease, color 0.3s ease; }

    /* Colores de marca */
    .facebook { background-color: #1877F2; color: #fff; }
    .instagram { background-color: #E4405F; color: #fff; }

    /* Efectos Hover (PC) */
    .social-icon:hover { width: 160px; } /* Se expande */
    .social-icon:hover .social-text { opacity: 1; color: #fff !important; } /* 🔥 Texto Blanco en Hover 🔥 */
    .whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); color: #fff; }

    /* Efecto Pulso WhatsApp (Opcional, pero queda lindo) */
    .whatsapp-float::before {
        content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
        background-color: #25d366; opacity: 0.7; z-index: -1;
        animation: pulse-green 2s infinite;
    }
    @keyframes pulse-green {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* ----------------------------------------------------------- */
    /* 🔥 MODO RESPONSIVO UNIFICADO (Móviles < 768px) 🔥 */
    /* ----------------------------------------------------------- */
   /* ----------------------------------------------------------- */
    /* 🔥 MODO RESPONSIVO: APILADO VERTICAL (Móviles < 768px) 🔥 */
    /* ----------------------------------------------------------- */
    @media screen and (max-width: 768px) {
        
        /* Contenedor de Redes: Se apila arriba de WhatsApp */
        .pissis-social-bar {
            top: auto;
            bottom: 80px; /* WhatsApp mide 55px + 15px de margen = 70px. Con 80px queda justo encima */
            left: auto;
            right: 15px; /* Alineado al mismo margen derecho que WhatsApp */
            flex-direction: column-reverse; /* Instagram abajo, Facebook arriba (o viceversa) */
            transform: none;
        }

        /* Redondeamos los iconos para el móvil */
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50% !important; /* Forzamos que sean círculos perfectos */
            margin-right: 0;
            margin-bottom: 10px; /* Espacio entre los iconos de la columna */
            justify-content: center;
            padding: 0;
            box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
        }

        /* WhatsApp: Se mantiene en su esquina */
        .whatsapp-float {
            width: 55px;
            height: 55px;
            bottom: 15px;
            right: 15px;
            font-size: 26px;
        }

        /* Desactivamos efectos de PC en móvil */
        .social-icon:hover { width: 50px; }
        .social-text { display: none; }
        .social-icon i { font-size: 22px; }
    }