diff --git a/src/content/learn/responding-to-events.md b/src/content/learn/responding-to-events.md
index 4450c4613..83b5439eb 100644
--- a/src/content/learn/responding-to-events.md
+++ b/src/content/learn/responding-to-events.md
@@ -1,24 +1,24 @@
---
-title: Responding to Events
+title: Respondendo a Eventos
---
-React lets you add *event handlers* to your JSX. Event handlers are your own functions that will be triggered in response to interactions like clicking, hovering, focusing form inputs, and so on.
+O React permite você adicionar *manipuladores de eventos* (event handlers) ao seu JSX. Os manipuladores de eventos são funções independentes que são acionadas em resposta a interações como clicar com o mouse, passar o cursor do mouse sobre um certo elemento, focar em campos de formulário, entre outros.
-* Different ways to write an event handler
-* How to pass event handling logic from a parent component
-* How events propagate and how to stop them
+* Diferentes maneiras de escrever um manipulador de eventos
+* Como herdar a lógica de manipulação de eventos de um componente pai
+* Como os eventos se propagam e como pará-los
-## Adding event handlers {/*adding-event-handlers*/}
+## Adicionando manipuladores de eventos {/*adding-event-handlers*/}
-To add an event handler, you will first define a function and then [pass it as a prop](/learn/passing-props-to-a-component) to the appropriate JSX tag. For example, here is a button that doesn't do anything yet:
+Para adicionar um manipulador de eventos, primeiro defina uma função e depois [passe-a como uma prop](/learn/passing-props-to-a-component) para o elemento JSX desejado. Por exemplo, aqui temos um botão que ainda não faz nada:
@@ -26,7 +26,7 @@ To add an event handler, you will first define a function and then [pass it as a
export default function Button() {
return (
);
}
@@ -34,23 +34,23 @@ export default function Button() {
-You can make it show a message when a user clicks by following these three steps:
+Seguindo esses três passos, você poderá fazer com que uma mensagem seja exibida quando um usuário clicar no botão:
-1. Declare a function called `handleClick` *inside* your `Button` component.
-2. Implement the logic inside that function (use `alert` to show the message).
-3. Add `onClick={handleClick}` to the `