Aprendizaje digital

A tu manera

Aprendizaje digital

A tu manera

BE reúne la educación dirigida por expertos y herramientas de aprendizaje inteligente en una sola experiencia digital.

¿Necesitas ayuda?

Descubre BE

En el corazón hay una plataforma educativa práctica.
A su alrededor, herramientas inteligentes que apoyan su viaje.
Sin atajos, solo aprendizaje real.

La experiencia principal

Plataforma educativa interactiva

Todos aprenden de manera diferente. Es por eso que combinamos sesiones en vivo, herramientas gamificadas y seguimiento del progreso para ayudarlo a aprender mejor.

Es más que contenido. Es un sistema completo diseñado para ayudar a que las cosas hagan clic.

Diseñado para guiar. Construido para apoyar.

Herramientas que aceleran el aprendizaje

Las herramientas inteligentes y la educación dirigida por expertos aportan mayor claridad al proceso de aprendizaje, ayudándote a explorar ideas, comprender temas complejos y seguir aprendiendo a tu propio ritmo.

Educación financiera interactiva

Entiende el dinero

Convierte temas financieros complejos en algo que puedas explorar paso a paso. Módulos interactivos, actividades guiadas y ejercicios prácticos te ayudan a entender las ideas detrás de las decisiones financieras cotidianas.

Qué esperar:

.step1-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .step1-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .step1-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .step1-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .step1-progress-fill.animating { transition: width linear; } .step1-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .step1-item.active { width: 40px; height: 40px; } .step1-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .step1-item.active .step1-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .step1-content { text-align: left; position: relative; } .step1-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .step1-text.active { display: block; opacity: 1; transform: translateY(0); } .step1-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .step1-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .step1-title { font-size: 24px; } @media (max-width: 768px) { .step1-title { font-size: 16px; } }
1
2
3

Módulos estructurados

Actividades interactivas

Escenarios prácticos

class AnimatedSteps1 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.step1-item'); this.stepTexts = container.querySelectorAll('.step1-text'); this.continuousProgressFill = container.querySelector('.step1-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Educación dirigida por expertos

Aprende de personas que conocen el tema

Ve más allá de la teoría con educadores que dan vida a las ideas. Únete a sesiones en directo o aprende bajo demanda sobre negocios, inteligencia artificial, educación financiera, desarrollo personal y mentalidad.

Qué esperar:

.steps2-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps2-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps2-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps2-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps2-progress-fill.animating { transition: width linear; } .steps2-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps2-item.active { width: 40px; height: 40px; } .steps2-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps2-item.active .steps2-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps2-content { text-align: left; position: relative; } .steps2-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps2-text.active { display: block; opacity: 1; transform: translateY(0); } .steps2-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps2-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps2-title { font-size: 24px; } @media (max-width: 768px) { .steps2-title { font-size: 16px; } }
1
2
3

Sesiones en directo

Lecciones bajo demanda

Áreas temáticas diversas

class AnimatedSteps2 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps2-item'); this.stepTexts = container.querySelectorAll('.steps2-text'); this.continuousProgressFill = container.querySelector('.steps2-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Compañero de Aprendizaje de IA

Sigue la conversación

La curiosidad no sigue un horario. Haz preguntas, revisa ideas clave y explora temas relacionados a través de una conversación de aprendizaje impulsada por IA disponible siempre que quieras aprender.

Qué esperar:

.steps3-container { padding-top: 20px; max-width: 420px; width: 100%; height: 113px; } .steps3-wrapper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; position: relative; height: 40px; } .steps3-progress-line { width: 90%; position: absolute; top: 50%; left: 4%; right: 10%; height: 4px; background: rgba(255, 255, 255, 0.6); z-index: 1; transform: translateY(-50%); } .steps3-progress-fill { height: 100%; background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); width: 0%; transition: none; border-radius: 3px; position: relative; } .steps3-progress-fill.animating { transition: width linear; } .steps3-item { width: 24px; height: 24px; display: flex; align-items: center; position: relative; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; } .steps3-item.active { width: 40px; height: 40px; } .steps3-circle { width: 24px; height: 24px; background: #fff; display: flex; align-items: center; justify-content: center; color: #020617; font-weight: bold; font-size: 14px; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border-radius: 8px; } .steps3-item.active .steps3-circle { background: linear-gradient(90deg, #169388 0%, #57D6A7 97.77%); color: white; width: 40px; height: 40px; border-radius: 8px; font-size: 20px; } @keyframes shimmer { 0% { transform: translateX(-20px); } 100% { transform: translateX(20px); } } .steps3-content { text-align: left; position: relative; } .steps3-text { display: none; opacity: 0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(20px); } .steps3-text.active { display: block; opacity: 1; transform: translateY(0); } .steps3-des { font-size: 12px; line-height: 150%; font-weight: 100; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } .steps3-title { font-size: 16px; line-height: 150%; font-weight: 700; font-family: "Ease Standard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #020617; margin: 0; } @keyframes shimmerVertical { 0% { transform: translateY(-20px); } 100% { transform: translateY(20px); } } .steps3-title { font-size: 24px; } @media (max-width: 768px) { .steps3-title { font-size: 16px; } }
1
2
3

Aprendizaje conversacional

Explicaciones claras

Exploración temática

class AnimatedSteps3 { constructor(container) { this.container = container; this.steps = container.querySelectorAll('.steps3-item'); this.stepTexts = container.querySelectorAll('.steps3-text'); this.continuousProgressFill = container.querySelector('.steps3-progress-fill'); this.totalSteps = this.steps.length; this.currentStep = 0; this.duration = 10; // 10 seconds this.interval = null; this.timeLeft = this.duration; this.init(); } init() { this.startTimer(); } startTimer() { this.startProgressAnimation(); this.interval = setInterval(() => { this.timeLeft--; if (this.timeLeft = this.totalSteps - 1) { // We're at the last step, reset to first step to create loop this.resetToFirstStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } else { // Move to next step this.nextStep(); this.timeLeft = this.duration; setTimeout(() => this.startProgressAnimation(), 100); } } }, 1000); } startProgressAnimation() { if (this.continuousProgressFill) { // Reset progress line this.continuousProgressFill.classList.remove('animating'); // Calculate step-to-step progress // Show progress only up to current step, then animate to next step const currentStepProgress = (this.currentStep / (this.totalSteps - 1)) * 100; const nextStepProgress = ((this.currentStep + 1) / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${currentStepProgress}%`; this.continuousProgressFill.style.height = '100%'; // Force reflow this.continuousProgressFill.offsetHeight; // Start animation to next step this.continuousProgressFill.classList.add('animating'); this.continuousProgressFill.style.transitionDuration = `${this.duration}s`; // Only animate if we're not at the last step if (this.currentStep { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Reset continuous progress line if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); this.continuousProgressFill.style.width = '0%'; this.continuousProgressFill.style.height = '100%'; this.continuousProgressFill.style.transitionDuration = ''; } // Set first step as active this.currentStep = 0; this.steps[0].classList.add('active'); this.stepTexts[0].classList.add('active'); this.timeLeft = this.duration; } nextStep() { if (this.currentStep = 0 && stepIndex { step.classList.remove('active', 'completed'); this.stepTexts[index].classList.remove('active'); }); // Set continuous progress line based on target step if (this.continuousProgressFill) { this.continuousProgressFill.classList.remove('animating'); const progressPercentage = (stepIndex / (this.totalSteps - 1)) * 100; this.continuousProgressFill.style.width = `${progressPercentage}%`; this.continuousProgressFill.style.height = '100%'; } // Set completed steps for (let i = 0; i { circle.addEventListener('click', () => { animatedSteps.goToStep(index); }); }); });

Renuncia

Los productos de BE solo proporcionan contenido educativo y herramientas de aprendizaje. No ofrecen asesoramiento financiero, de inversión ni profesional, y no se garantiza ningún resultado específico de aprendizaje o financiero. El contenido y las características varían según la suscripción.

Aprendiendo eso

Movimientos contigo

Siempre tendrás apoyo cuando lo necesites y espacio para crecer.

Empieza por lo que te interesa. Explora a tu propio ritmo. Vuelve siempre que la curiosidad te lleve a un lugar nuevo.

Elige tu experiencia de aprendizaje

Compara planes de suscripción y encuentra la combinación de productos y funciones EdTech que mejor te funcione.

Preguntas frecuentes sobre los productos de BE Club

¿Qué productos ofrece BE (BE Club)?

BE (BE Club) ofrece tres productos EdTech: Educación Financiera Interactiva, Educación Dirigida por Expertos y un Compañero de Aprendizaje con IA.

Es una experiencia de aprendizaje digital que utiliza módulos estructurados, actividades guiadas y ejercicios prácticos para facilitar la exploración y comprensión de los conceptos financieros.

Combina sesiones en vivo y lecciones bajo demanda impartidas por educadores de ámbitos empresariales, inteligencia artificial, educación financiera, desarrollo personal y mentalidad.

Es una herramienta de aprendizaje impulsada por IA que permite a los usuarios hacer preguntas, revisitar ideas clave y explorar temas relacionados a través de la conversación.

Las asignaturas disponibles incluyen negocios, inteligencia artificial, educación financiera, desarrollo personal y mentalidad. El contenido varía según la suscripción.

Los productos están diseñados para diferentes niveles de experiencia, con contenido guiado que permite a los usuarios comenzar con temas fundamentales y avanzar a su propio ritmo.

Sí. Los formatos de aprendizaje disponibles incluyen sesiones en vivo para educadores y clases bajo demanda. Los horarios, asignaturas y disponibilidad varían según la suscripción.

Los productos BE (BE Club) se entregan digitalmente a través de planes de suscripción. Los detalles de acceso se proporcionan después de activar la suscripción seleccionada.

Cada suscripción proporciona acceso a productos, contenidos y características seleccionados. Revisa detenidamente los detalles del plan, ya que el acceso varía según la suscripción y la ubicación.

Los precios varían según la suscripción seleccionada y la ubicación. Visita la página de Precios para comparar las opciones disponibles actualmente.

Las compras elegibles pueden optar a un reembolso en un plazo de 7 o 14 días, dependiendo de tu ubicación y los términos aplicables. Revisa la Política de Reembolsos antes de comprar.

El AI Learning Companion está diseñado para apoyar el aprendizaje, pero las respuestas generadas por IA pueden ser incompletas o inexactas. La información importante siempre debe ser verificada de forma independiente

Renuncia

Los productos BE (BE Club) se proporcionan únicamente con fines educativos y no constituyen asesoramiento financiero, de inversión, legal o fiscal. El contenido generado por IA puede ser incompleto o inexacto y debe ser verificado de forma independiente. No se garantiza ningún resultado específico de aprendizaje, profesional o financiero.

Solicite una demostración del producto

Rellene este breve formulario para solicitar una demostración personalizada del producto.

Si fue referido por un afiliado independiente, es posible que le hagan un seguimiento directamente. De lo contrario, lo conectaremos con uno de nuestros especialistas en productos que puede guiarlo a través de las funciones y responder sus preguntas.

Esto no es un argumento de venta, solo una oportunidad para explorar el producto en acción y ver cómo se adapta a sus necesidades.

  • Si te ha recomendado un afiliado independiente de BE, por favor introduce su nombre o identificación.
  • Si has venido a través de un enlace de recomendación, este campo puede rellenarse automáticamente por ti.
  • Si no tienes una recomendación, déjala en blanco y BE te asignará un afiliado.

¡Gracias!

Se ha recibido su solicitud de demostración.

Si fue referido por un afiliado independiente, es posible que se comuniquen con usted directamente. De lo contrario, lo conectaremos con un especialista en productos que lo guiará a través de la demostración de su producto seleccionado y responderá sus preguntas.

Recibirás una respuesta en un plazo de 24 a 48 horas por correo electrónico o WhatsApp con los detalles de tu demostración.

Solicite una demostración del producto

Rellene este breve formulario para solicitar una demostración personalizada del producto.

Si fue referido por un afiliado independiente, es posible que le hagan un seguimiento directamente. De lo contrario, lo conectaremos con uno de nuestros especialistas en productos que puede guiarlo a través de las funciones y responder sus preguntas.

Esto no es un argumento de venta, solo una oportunidad para explorar el producto en acción y ver cómo se adapta a sus necesidades.

  • Si te ha recomendado un afiliado independiente de BE, por favor introduce su nombre o identificación.
  • Si has venido a través de un enlace de recomendación, este campo puede rellenarse automáticamente por ti.
  • Si no tienes una recomendación, déjala en blanco y BE te asignará un afiliado.

¡Gracias!

Se ha recibido su solicitud de demostración.

Si fue referido por un afiliado independiente, es posible que se comuniquen con usted directamente. De lo contrario, lo conectaremos con un especialista en productos que lo guiará a través de la demostración de su producto seleccionado y responderá sus preguntas.

Recibirás una respuesta en un plazo de 24 a 48 horas por correo electrónico o WhatsApp con los detalles de tu demostración.

Comience su viaje de aprendizaje: sin presión, sin compromiso

Formulario de solicitud de consulta

Complete este breve formulario para solicitar una consulta educativa gratuita.

Si fue referido por un afiliado independiente, es posible que le hagan un seguimiento directamente. De lo contrario, podemos conectarlo con uno de nuestros afiliados capacitados que puede responder sus preguntas y guiarlo a través de los paquetes disponibles.

Esto no es un argumento de venta o una consulta financiera, solo una oportunidad sin compromiso para obtener más información.

  • Si te ha recomendado un afiliado independiente de BE, por favor introduce su nombre o identificación.
  • Si has venido a través de un enlace de recomendación, este campo puede rellenarse automáticamente por ti.
  • Si no tienes una recomendación, déjala en blanco y BE te asignará un afiliado.
Icono de información

Divulgación

Las afiliadas son independientes y gestionan sus propios negocios. No son empleados ni representantes de la plataforma. Todas las orientaciones compartidas son solo educativas. No se ofrece asesoramiento financiero ni garantías de producto.

¡Gracias!

Su solicitud ha sido recibida.

Si fue referido por un afiliado independiente, es posible que se comuniquen con usted directamente.
De lo contrario, podemos asignar su solicitud a un afiliado independiente calificado que se comunicará con usted para ayudarlo a responder sus preguntas.

Recibirás una respuesta en un plazo de 24 a 48 horas por correo electrónico o WhatsApp.

Tenga en cuenta: Los afiliados independientes no son empleados de la empresa.

Operan sus propios negocios y brindan orientación únicamente con fines educativos. No se requiere asesoramiento financiero ni compra.