<link href="https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
}
.zap-hero {
position: relative;
background-color: #0d0d0d;
padding: 80px 20px;
text-align: center;
font-family: 'Sora', sans-serif;
color: white;
border-radius: 16px;
overflow: hidden;
}
.zap-button-glow {
position: relative;
display: inline-flex;
align-items: center;
gap: 8px;
background-color: #ceff1a;
color: #000;
padding: 14px 28px;
border-radius: 999px;
font-weight: 600;
font-size: 16px;
text-decoration: none;
box-shadow: 0 0 20px #ceff1a80, 0 0 40px #ceff1a40;
transition: all 0.3s ease;
z-index: 1;
}
.zap-button-glow:hover {
box-shadow: 0 0 30px #ceff1acc, 0 0 60px #ceff1a99;
transform: scale(1.03);
}
.coin {
position: absolute;
width: 24px;
height: 24px;
background: url('https://escoladoimovel.com/wp-content/uploads/2025/04/money.png') no-repeat center center;
background-size: contain;
opacity: 0.15;
animation: fall linear infinite;
z-index: 0;
}
@keyframes fall {
0% {
transform: translateY(-100px) rotate(0deg);
opacity: 0;
}
10% {
opacity: 0.7;
}
100% {
transform: translateY(600px) rotate(360deg);
opacity: 0;
}
}
</style>
<div class="zap-hero">
<!-- Moedas caindo -->
<div class="coin" style="left: 10%; animation-duration: 6s; animation-delay: 0s;"></div>
<div class="coin" style="left: 30%; animation-duration: 7s; animation-delay: 1s;"></div>
<div class="coin" style="left: 60%; animation-duration: 5.5s; animation-delay: 0.5s;"></div>
<div class="coin" style="left: 80%; animation-duration: 6.5s; animation-delay: 1.5s;"></div>
<div class="coin" style="left: 50%; animation-duration: 8s; animation-delay: 2s;"></div>
<!-- Conteúdo principal -->
<div style="color: #ceff1a; font-weight: 600; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; position: relative; z-index: 1;">
ZAP FINANCEIRO
</div>
<h1 style="font-size: 36px; font-weight: 700; line-height: 1.3; margin: 0 0 24px; position: relative; z-index: 1;">
Destrave suas finanças<br>com inteligência e praticidade
</h1>
<a href="#conhecer" class="zap-button-glow">
Começar agora <span style="font-size: 18px;">→</span>
</a>
</div>