 /* Estilo del botón flotante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }

        .whatsapp-float img {
            width: 60px;
            height: 60px;
            transition: all 0.3s ease;
        }

        .whatsapp-float img:hover {
            transform: scale(1.1);
        }

        /* Estilo de la notificación */
        .whatsapp-notification {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            max-width: 250px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 99;
            display: flex;
            align-items: center;
        }

        .whatsapp-notification.show {
            transform: translateY(0);
            opacity: 1;
        }

        .notification-badge {
            background: #ff0000;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 12px;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        .notification-close {
            margin-left: 10px;
            cursor: pointer;
            color: #888;
            font-weight: bold;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Animación de caída */
        @keyframes dropIn {
            0% { transform: translateY(-100px); opacity: 0; }
            80% { transform: translateY(10px); opacity: 1; }
            100% { transform: translateY(0); }
        }

        .whatsapp-float img.drop-animation {
            animation: dropIn 1s ease-out;
        }

        /* Estilo del badge en el botón */
.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    opacity: 0; /* Inicialmente invisible */
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite; /* Animación de latido */
}

.whatsapp-badge.show {
    opacity: 1; /* Se muestra después */
}