/* Botón flotante de WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #00ca6e;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            
        }
        
        .whatsapp-float:hover {
            background-color: #00b362;
            color: #FFF;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-icon {
            font-size: 28px;
        }
        
        /* Efecto de pulso */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 202, 110, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(0, 202, 110, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 202, 110, 0);
            }
        }
        
        /* Texto flotante (opcional) */
        .whatsapp-text {
            position: fixed;
            bottom: 49px;
            right: 113px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            padding: 8px 12px;
            border-radius: 20px;
            font-family: sans-serif;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .whatsapp-float:hover + .whatsapp-text {
            opacity: 1;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 30px;
                right: 20px;
            }
            
            .whatsapp-icon {
                font-size: 24px;
            }
            
            .whatsapp-text {
                bottom: 90px;
                right: 15px;
            }
        }