Aprendizagem Digital

À Tua Maneira

Aprendizagem Digital

À Tua Maneira

A BE reúne a educação liderada por especialistas e ferramentas de aprendizagem inteligente numa única experiência digital.

Descubra BE

No centro está uma plataforma de educação prática.
Em torno dele, ferramentas inteligentes que apoiam a sua jornada.
Sem atalhos, apenas aprendizagem real.

A Experiência Principal

Plataforma Interativa de Educação

Cada um aprende de forma diferente. É por isso que combinamos sessões ao vivo, ferramentas gamificadas e acompanhamento de progresso para oferecer suporte à melhor forma de aprender.

É mais do que conteúdo. É um sistema completo projetado para ajudar as coisas a clicar.

Projetado para guiar. Construído para suportar.

Ferramentas que aceleram a aprendizagem

Ferramentas inteligentes e educação orientada por especialistas trazem mais clareza ao processo de aprendizagem — ajudando-o a explorar ideias, compreender temas complexos e continuar a aprender ao seu próprio ritmo.

Literacia Financeira Interativa

Façam sentido do dinheiro

Transforme temas financeiros complexos em algo que possa explorar passo a passo. Módulos interativos, atividades guiadas e exercícios práticos ajudam-no a compreender as ideias por detrás das decisões financeiras do dia a dia.

O que 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 estruturados

Atividades interativas

Cenários práticos

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); }); }); });

Educação Orientada por Especialistas

Aprenda com Pessoas que Conhecem o Assunto

Vá além da teoria com educadores que dão vida a ideias. Participe em sessões ao vivo ou aprenda a pedido em negócios, inteligência artificial, literacia financeira, desenvolvimento pessoal e mentalidade.

O que 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

Sessões ao vivo

Aulas sob 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); }); }); });

Companheiro de Aprendizagem de IA

Mantém a Conversa Viva

A curiosidade não segue um calendário. Faça perguntas, revisite ideias-chave e explore temas relacionados através de uma conversa de aprendizagem baseada em IA, disponível sempre que quiser aprender.

O que 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

Aprendizagem conversacional

Explicações claras

Exploração do tema

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); }); }); });

Declaração de exoneração de responsabilidade

Os produtos da BE fornecem apenas conteúdos educativos e ferramentas de aprendizagem. Não fornecem aconselhamento financeiro, de investimento ou profissional, e não é garantido nenhum resultado específico de aprendizagem ou financeiro. O conteúdo e as funcionalidades variam consoante a subscrição.

Aprender isso

Move-se Contigo

Terás sempre apoio quando precisares e espaço para crescer.

Começa pelo que te interessa. Explora ao teu próprio ritmo. Volta sempre que a curiosidade te levar a um lugar novo.

Escolha a Sua Experiência de Aprendizagem

Compare planos de subscrição e encontre a combinação de produtos e funcionalidades EdTech que funcione para si.

Perguntas Frequentes sobre os Produtos BE Club

Que produtos oferece a BE (BE Club)?

O BE (BE Club) oferece três produtos EdTech: Literacia Financeira Interativa, Educação Liderada por Especialistas e um Companheiro de Aprendizagem em IA.

É uma experiência de aprendizagem digital que utiliza módulos estruturados, atividades guiadas e exercícios práticos para tornar os conceitos financeiros mais faciles de explorar e compreender.

Combina sessões presenciais e aulas sob demanda ministradas por educadores em áreas de negócios, inteligência artificial, literacia financeira, desenvolvimento pessoal e mentalidade.

É uma ferramenta de aprendizagem alimentada por IA que permite aos utilizadores colocar questões, revisitar ideias-chave e explorar temas relacionados através da conversa.

As disciplinas disponíveis incluem negócios, inteligência artificial, literacia financeira, desenvolvimento pessoal e mentalidade. O conteúdo varia consoante a subscrição.

Os produtos são concebidos para diferentes níveis de experiência, com conteúdos guiados que permitem aos utilizadores começar com tópicos fundamentais e progredir ao seu próprio ritmo.

Sim. Os formatos de aprendizagem disponíveis incluem sessões ao vivo com educadores e aulas sob demanda. Os horários, disciplinas e disponibilidade variam consoante a subscrição.

Os produtos BE (BE Club) são entregues digitalmente através de planos de subscrição. Os detalhes de acesso são fornecidos após a ativação da subscrição selecionada.

Cada subscrição proporciona acesso a produtos, conteúdos e funcionalidades selecionados. Revise cuidadosamente os detalhes do plano, pois o acesso varia consoante a subscrição e a localização.

Os preços variam consoante a subscrição e a localização selecionadas. Visite a página de Preços para comparar as opções atualmente disponíveis para si.

As compras elegíveis podem qualificar-se para reembolso no prazo de 7 ou 14 dias, dependendo da sua localização e dos termos aplicáveis. Consulte a Política de Reembolso antes de comprar.

O AI Learning Companion foi concebido para apoiar a aprendizagem, mas as respostas geradas por IA podem ser incompletas ou imprecisas. Informações importantes devem ser sempre verificadas de forma independente

Declaração de exoneração de responsabilidade

Os produtos BE (BE Club) são fornecidos apenas para fins educativos e não constituem aconselhamento financeiro, de investimento, jurídico ou fiscal. O conteúdo gerado por IA pode ser incompleto ou impreciso e deve ser verificado de forma independente. Não é garantido nenhum resultado específico de aprendizagem, profissional ou financeiro.

Solicite uma demonstração do produto

Preencha este pequeno formulário para solicitar uma demonstração personalizada do produto.

Se você foi encaminhado por uma afiliada independente, ela pode entrar em contato diretamente com você. Caso contrário, iremos contactá-lo com um dos nossos especialistas de produto, que poderá orientá-lo através das funcionalidades e responder às suas perguntas.

Este não é um argumento de vendas, apenas uma oportunidade para explorar o produto em ação e ver como ele atende às suas necessidades.

  • Se foi recomendado por um afiliado independente da BE, por favor introduza o nome ou ID dessa pessoa.
  • Se veio através de um link de referência, este campo pode preencher automaticamente para si.
  • Se não tiveres uma referência, deixa-a em branco e a BE atribuir-te-á um afiliado.

Obrigado!

O seu pedido de demonstração foi recebido.

Se você foi indicado por uma afiliada independente, ela pode contatá-lo diretamente. Caso contrário, iremos conectá-lo com um especialista de produto que irá orientá-lo através da demonstração do seu produto selecionado e responder às suas perguntas.

Você ouvirá de volta dentro de 24 a 48 horas por e-mail ou WhatsApp com seus detalhes de demonstração.

Comece sua jornada de aprendizagem – sem pressão, sem compromisso

Formulário de Pedido de Consulta

Preencha este pequeno formulário para solicitar uma consulta educacional gratuita.

Se você foi encaminhado por uma afiliada independente, ela pode entrar em contato diretamente com você. Caso contrário, podemos conectá-lo com um de nossos afiliados treinados que podem responder às suas perguntas e guiá-lo através dos pacotes disponíveis.

Não se trata de um discurso de vendas ou de uma consulta financeira, apenas de uma oportunidade sem compromisso para aprender mais.

  • Se foi recomendado por um afiliado independente da BE, por favor introduza o nome ou ID dessa pessoa.
  • Se veio através de um link de referência, este campo pode preencher automaticamente para si.
  • Se não tiveres uma referência, deixa-a em branco e a BE atribuir-te-á um afiliado.
Ícone de informação

Divulgação

Os afiliados são independentes e gerem os seus próprios negócios. Eles não são funcionários nem representantes da plataforma. Todas as orientações partilhadas são apenas educativas. Não são fornecidas consultas financeiras nem garantias de produto.

Obrigado!

O seu pedido foi recebido.

Se você foi indicado por uma afiliada independente, eles podem contatá-lo diretamente.
Caso contrário, poderemos atribuir o seu pedido a um afiliado independente qualificado que entrará em contacto para ajudar a responder às suas perguntas.

Você ouvirá de volta dentro de 24 a 48 horas por e-mail ou WhatsApp.

Atenção: Os afiliados independentes não são funcionários da empresa.

Eles operam seus próprios negócios e fornecem orientação apenas para fins educacionais. Não é necessário aconselhamento financeiro ou compra.