template updated

Features implemented:

  1. Tooltips (vocab-tooltip) for words above A1 in story.
  2. Vocabulary: 10 A2-level words.
  3. 5 exercises per tab.
  4. Answers included as tooltips (answer-tooltip).
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #fdfdfd; } .container { max-width: 900px; margin: 20px auto; padding: 0 15px; } .tab-group { margin: 25px 0; } .tab-buttons { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; } .tab-buttons button { padding: 10px 18px; cursor: pointer; background-color: #ffe082; border: none; border-radius: 6px; font-weight: bold; } .tab-buttons button.active { background-color: #ffca28; } .tab-content { display: none; background-color: #fff8e1; padding: 20px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); } .tab-content.active { display: block; } h2 { color: #2e7d32; margin-top: 0; } textarea { width: 100%; padding: 10px; border-radius: 6px; border: 1px solid #ccc; } .vocab-tooltip { border-bottom: 1px dotted #333; cursor: help; font-weight: bold; color: #2e7d32; } .vocab-tooltip:hover::after { content: attr(data-tooltip); position: absolute; background: #333; color: white; padding: 5px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; transform: translate(-50%, -120%); } .answer-tooltip { border-bottom: 1px dotted #666; cursor: help; font-weight: bold; color: #1976d2; } .answer-tooltip:hover::after { content: attr(data-answer); position: absolute; background: #1976d2; color: white; padding: 8px 12px; border-radius: 4px; font-size: 13px; white-space: nowrap; transform: translate(-50%, -120%); }

Lesson Summary (25 words): Lucas moves to Brazil, practices Portuguese daily, learns grammar, vocabulary, and cultural expressions, gaining confidence through conversations, mistakes, and immersion.

Aprendendo Português no Brasil

Lucas chegou ao Brasil para morar em Belo Horizonte por um ano. No começo, ele sabia apenas algumas palavras em português, como “olá”, “obrigado” e “tudo bem”. Nos primeiros dias, tudo parecia difícil: pedir comida, pegar ônibus e falar com as pessoas.

Lucas começou a fazer aulas de português em uma escola para estrangeiros. A professora falava devagar e usava muitos exemplos do dia a dia. Ele aprendeu a usar o presente do indicativo e frases simples como “eu gosto de café” e “eu moro no Brasil”.

Fora da sala de aula, Lucas praticava muito. Ele conversava com o porteiro do prédio, com os colegas de trabalho e com o vendedor da padaria. Às vezes, ele errava a pronúncia, mas as pessoas eram pacientes e sempre ajudavam.

No fim de semana, Lucas gostava de ir ao mercado e pedir frutas em português. Também assistia à televisão brasileira e escutava músicas para aprender novas palavras. Ele percebeu que aprender português no Brasil era mais fácil porque podia praticar todos os dias.

Depois de alguns meses, Lucas já se sentia mais confiante. Ele conseguia conversar sobre sua rotina, fazer amigos e entender melhor a cultura brasileira. Aprender português não era só estudar gramática, mas viver o idioma todos os dias.

Learning Portuguese in Brazil

Lucas moved to Brazil to live in Belo Horizonte for one year. At first, he only knew a few words. Everything felt difficult: ordering food, taking the bus, talking to people.

He started Portuguese classes for foreigners. The teacher spoke slowly and used daily examples. He learned present tense and simple sentences.

Outside class, he practiced a lot. He spoke with neighbors, coworkers, and shopkeepers. Sometimes he made mistakes, but people were patient and helped him.

On weekends, he went to the market, watched TV, and listened to music to learn new words. Practicing every day made learning easier.

After a few months, Lucas felt confident. He could talk about his routine, make friends, and understand Brazilian culture. Learning Portuguese meant living the language.

Vocabulary (A2)

  • Difícil – difficult
  • Exemplo – example
  • Errar – to make mistakes
  • Praticar – to practice
  • Confiante – confident
  • Cultura – culture
  • Rotina – routine
  • Pronúncia – pronunciation
  • Estrangeiro – foreigner
  • Aulas – classes

Grammar

The present indicative (presente do indicativo) is used for routines, habits, and general facts. It is essential for A2 learners to talk about daily life. Lucas uses it to describe his actions and preferences.

Example: Eu pratico português todos os dias.

Idiomatic Expressions

  • Tudo bem? – How are you?
  • Ficar à vontade – Feel free / make yourself comfortable
  • Dar uma olhada – To take a look
  • Dar certo – To work out / succeed
  • Sem problemas – No problem

Cultural Insights

  • Brazilians are generally patient with language learners.
  • Practice and immersion help learning faster than only studying grammar.
  • Listening to TV and music improves pronunciation and vocabulary.
  • Daily conversation is key to gaining confidence.
  • Understanding routines and customs helps communication.

Audio

Audio recording coming soon.

10 Questions

  1. Onde Lucas mora no Brasil? (resposta)
  2. Ele sabia muitas palavras no começo? (resposta)
  3. O que ele aprendeu nas aulas? (resposta)
  4. Com quem ele praticava fora da aula? (resposta)
  5. O que ele percebeu sobre praticar todos os dias? (resposta)

True or False

  1. Lucas já falava português bem quando chegou. (resposta)
  2. Ele praticava português todos os dias. (resposta)
  3. A professora falava rápido. (resposta)
  4. Ele assistia TV brasileira para aprender. (resposta)
  5. Aprender português é só estudar gramática. (resposta)

Retell the Story

Rewrite the story in your own words (80–100 words).

Multiple Choice

  1. Onde Lucas fez aulas de português? (resposta)
    a) Em casa
    b) Na escola para estrangeiros
    c) Na internet
  2. Por que Lucas errava? (resposta)
    a) Porque não praticava
    b) Por causa da pronúncia
    c) Porque não gostava de português
  3. Como ele se sentia depois de meses? (resposta)
    a) Confiante
    b) Triste
    c) Cansado
  4. Qual recurso ajudava Lucas a aprender novas palavras? (resposta)
    a) Música e TV
    b) Dormir
    c) Pintura
  5. Aprender português no Brasil significa: (resposta)
    a) Só estudar gramática
    b) Viver o idioma todos os dias
    c) Viajar para outros países
document.querySelectorAll(‘.tab-group’).forEach(group => { const buttons = group.querySelectorAll(‘.tab-btn’); const contents = group.querySelectorAll(‘.tab-content’); buttons.forEach(button => { button.addEventListener(‘click’, () => { buttons.forEach(btn => btn.classList.remove(‘active’)); contents.forEach(content => content.classList.remove(‘active’)); button.classList.add(‘active’); document.getElementById(button.dataset.tab).classList.add(‘active’); }); }); });

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top