Files
acaoopcao/index.html
T
2026-08-21 22:57:44 +00:00

90 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ação e Opção Derivativos</title>
<style>
:root {
--bg: #0f172a;
--card: #111827;
--accent: #38bdf8;
--text: #e5e7eb;
--muted: #94a3b8;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at top, #1e293b, #0f172a 60%);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--text);
padding: 24px;
}
.card {
max-width: 560px;
width: 100%;
background: var(--card);
border: 1px solid rgba(148, 163, 184, 0.15);
border-radius: 16px;
padding: 48px 40px;
text-align: center;
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.badge {
display: inline-block;
padding: 6px 14px;
border-radius: 999px;
background: rgba(56, 189, 248, 0.12);
color: var(--accent);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
margin-bottom: 20px;
}
h1 {
margin: 0 0 12px;
font-size: 28px;
font-weight: 700;
color: #fff;
}
p {
margin: 0 0 8px;
color: var(--muted);
line-height: 1.6;
font-size: 15px;
}
.divider {
height: 1px;
background: rgba(148, 163, 184, 0.15);
margin: 28px 0;
}
.contact {
font-size: 14px;
color: var(--muted);
}
.contact a {
color: var(--accent);
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="card">
<span class="badge">Em breve</span>
<h1>Ação e Opção Derivativos</h1>
<p>Nosso site está em fase final de preparação.</p>
<p>Volte em breve para conferir as novidades.</p>
<div class="divider"></div>
<p class="contact">Dúvidas ou contato: <a href="mailto:contato@acaoeopcaoderivativos.systems">contato@acaoeopcaoderivativos.systems</a></p>
</div>
</body>
</html>