<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Em Construção</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
height: 100vh;
background: #0f172a;
color: #e2e8f0;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
color: #38bdf8;
}
p {
opacity: 0.7;
margin-bottom: 30px;
}
.loader {
width: 60px;
height: 60px;
border: 4px solid #1e293b;
border-top: 4px solid #38bdf8;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.glow {
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 10px #38bdf8;
}
to {
text-shadow: 0 0 20px #0ea5e9, 0 0 30px #0ea5e9;
}
}
</style>
</head>
<body>
<div class="container">
<h1 class="glow">Em Construção</h1>
<p>Estamos preparando algo incrível para você.</p>
<div class="loader"></div>
</div>
</body>
</html>