 /* Estilos para el botón flotante del contactanos */
        .contactanos-flotante {
            position: fixed;
            right: 20px;
            top: 60%;
            transform: translateY(-50%);
            z-index: 800;
            animation: pulse 2s infinite;
        }
        
        .contactanos-btn {
            background: linear-gradient(135deg, #e83e8c, #6f42c1);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: 500;
            box-shadow: 0 5px 20px rgba(232, 62, 140, 0.4);
            align-items: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
            text-decoration: none;
        }
        
        .contactanos-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(232, 62, 140, 0.6);
        }
        
    
        
        
        
        
        
       
        
        