El banco digital
más grande de Argentina

Disponible en App StoreDisponible en PLay Store

Autorizados por el Banco Central

Comprometidos con nuestro impacto social, ambiental y económico.

Abrí tu cuenta gratis y mantenela sin costo
Abrí tu cuenta gratis y mantenela sin costo

Comprá dólar oficial

Al mejor precio, en segundos y sin restricciones.

Conocer más
Image

Tarjeta Open para todos

Usá tus dólares como respaldo para pedir una tarjeta de crédito

Conocer más
Image

Conectate con BruFon

La eSIM internacional de Brubank que te da datos móviles en tus viajes.

Conocer más
Image

Con Brubank, es más fácil

Adelantos y préstamos

Obtené las mejores tasas y una acreditación inmediata dónde y cuándo quieras.

Tarjetas sin complicaciones

Pedí tus tarjetas de débito y crédito Visa Brubank y arrancá a disfrutar de todos sus beneficios.

💸
Transferencias express

Rápidas, seguras y personalizadas.

Recibí transferencias inmediatas

Con Brubank podés recibir transferencias de quien quieras, enterarte cuándo llegó y cuándo fue vista.

Repartí sonrisas transfiriendo con GIFs

Image

¿CBU en foto? Lo solucionamos

🤑
Pagos seguros

Simples, no importa cuándo ni dónde.

QR rápido y sin contacto

Girá la ruedita de premios

Ruedita de premios

Tus compras y pagos participan  ¡Girala y probá tu suerte!

ImageImagen representativa. Logos Visa, Mastercard, Sube, Movistar, Claro, Aysa, Metrogas y Edenor

Pagá todos tus servicios sin complicaciones 🏠

Pagá todos tus servicios sin complicaciones 🏠

ImageImagen representativa. Logos Visa, Mastercard, Sube, Movistar, Claro, Aysa, Metrogas y Edenor

Apple Pay

Abrí la app Wallet,  presioná el signo “+”, ingresa los datos de tu tarjeta Brubank y empeza a pagar con Apple Pay.

Image

Google Pay

Descargá la app, vinculá tu tarjeta Visa Brubank y pagá directo con tu celular

Image

Inversiones inmediatas

A tu manera o con nuestras recetas.

Comprá dólar oficial cuando quieras

Image

Accedé a plazos fijos con las mejores tasas

Usá Fondos Comunes de Inversión


Asegurar tu cuenta es nuestra prioridad.

Activá la seguridad biométrica

Protegemos tu cuenta usando reconocimiento facial y de huella.

Configurá tu clave personal

Esta clave de 6 dígitos va a proteger tu cuenta de posibles robos o estafas.

Pausá y activá tu tarjeta al instante

Para mayor seguridad y control, podés activar tu tarjeta solo cuando la usas.

Image
Pausar tarjeta

Enterate de los movimientos de tu cuenta

Te avisamos de toda actividad que se haga en tu cuenta.

Image

Atención disponible 24/7

Contactá a soporte a través de chat de la app y recibí ayuda al instante.

Con Brubank, ahorrá siempre

foto hamburguesa con papas + logo Burger king + 20% de reintegro

Comé en Burger King con
descuentos increíbles

Ir a todos los beneficios
foto de farmacia + logo Farmacity + 20% de reintegro

Disfrutá de tus compras en Farmacity con descuento

Ir a todos los beneficios
foto hde local + logo get the look + 20% de reintegro

Aprovechá productos de
belleza a menor precio

Ir a todos los beneficios
foto hde estacion de servicio + logo Axion + 10% de reintegro

Cargá nafta todas las semanas con nuestros reintegros

Ir a todos los beneficios
Image

Cargá el tanque con App YPF

Ir a todos los beneficios
Hacé tap para continuar

Preguntas frecuentes xx

Ir a todas las preguntas
ImageImage

¿Que esperás para vivir la experiencia Brubank?

Descargá la app y sumate al banco digital que transforma tus finanzas.

Disponible en App Store y Play Store.
Descargar la App
Descargar la App
tag) document.addEventListener('DOMContentLoaded', function() { // Get all three Lottie elements by their IDs const lottieElements = [ document.getElementById('cuenta-sueldo'), document.getElementById('pagos'), document.getElementById('remesas') ]; // Check if all elements exist const validElements = lottieElements.filter(el => el !== null); if (validElements.length !== 3) { console.warn('Not all Lottie elements found. Check your IDs.'); return; } let currentIndex = 0; // Function to play animation at specific index function playAnimation(index) { // Hide all animations first lottieElements.forEach((el, i) => { if (el) { if (i === index) { el.style.display = 'block'; el.style.opacity = '1'; } else { el.style.display = 'none'; el.style.opacity = '0'; } } }); // Get the current Lottie element const currentElement = lottieElements[index]; // Trigger the animation if (currentElement && currentElement.querySelector('svg')) { // For Webflow Lottie animations, we need to restart the animation // This method works with most Webflow Lottie implementations const lottieInstance = currentElement._lottie || currentElement.lottie; if (lottieInstance) { lottieInstance.goToAndStop(0); lottieInstance.play(); // Listen for animation complete lottieInstance.addEventListener('complete', onAnimationComplete); } else { // Fallback: use CSS animation restart currentElement.style.animation = 'none'; currentElement.offsetHeight; // Trigger reflow currentElement.style.animation = null; // Estimate animation duration and move to next setTimeout(onAnimationComplete, 3000); // Adjust timing as needed } } else { // Fallback timing if Lottie instance not found setTimeout(onAnimationComplete, 3000); } } // Function called when animation completes function onAnimationComplete() { // Remove event listener to prevent multiple calls const currentElement = lottieElements[currentIndex]; const lottieInstance = currentElement._lottie || currentElement.lottie; if (lottieInstance) { lottieInstance.removeEventListener('complete', onAnimationComplete); } // Move to next animation currentIndex = (currentIndex + 1) % lottieElements.length; // Small delay before starting next animation setTimeout(() => { playAnimation(currentIndex); }, 500); // 500ms delay between animations } // Start the sequence playAnimation(0); }); // Alternative approach if the above doesn't work with your Webflow setup // This version uses Webflow's built-in Lottie trigger classes /* document.addEventListener('DOMContentLoaded', function() { const lottieIds = ['cuenta-sueldo', 'pagos', 'remesas']; let currentIndex = 0; function triggerNext() { // Hide all lottieIds.forEach(id => { const el = document.getElementById(id); if (el) { el.style.display = 'none'; el.classList.remove('w--current'); } }); // Show and trigger current const currentEl = document.getElementById(lottieIds[currentIndex]); if (currentEl) { currentEl.style.display = 'block'; currentEl.classList.add('w--current'); } // Move to next currentIndex = (currentIndex + 1) % lottieIds.length; // Schedule next animation (adjust timing as needed) setTimeout(triggerNext, 4000); // 4 seconds per animation } // Start the loop triggerNext(); }); */