<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>OrienteMe - Onboarding</title>
    <base href="/" />
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
    <link href="css/onboarding.css?v=12" rel="stylesheet" />
    <link href="css/animations.css?v=3" rel="stylesheet" />
</head>
<body>
    <div id="app">Carregando...</div>
    <script src="framework/blazor.webassembly.js"></script>
    <script>
        document.addEventListener('focusin', function(e) {
            var el = e.target;
            if (el && !['INPUT','TEXTAREA','SELECT','BUTTON','A'].includes(el.tagName)
                   && !el.getAttribute('contenteditable')) {
                el.blur();
            }
        }, true);
    </script>
</body>
</html>
