1. Interface e UX


[Tema]


[Interatividade]

.opcao-interativa {   cursor: pointer;   transition: all 0.2s ease-in-out; }  .opcao-interativa:hover {   background-color: #f0f0f0;   transform: scale(1.02); }
const elemento = document.querySelector(".opcao-interativa");  elemento.addEventListener("mouseenter", () => {   elemento.style.backgroundColor = "#f0f0f0"; });  elemento.addEventListener("mouseleave", () => {   elemento.style.backgroundColor = ""; });

[Elementos clicáveis]