<!DOCTYPE html>
<html lang=”pt-br”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Ofertas do Dia</title>

<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f7fb; /* fundo leve */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}

.container {
background: #ffffff;
max-width: 500px;
width: 90%;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
text-align: center;
}

h1 {
font-size: 22px;
color: #1a1a1a;
margin-bottom: 10px;
}

p {
font-size: 15px;
color: #555;
margin-bottom: 15px;
}

.highlight {
color: #2e7dff;
font-weight: bold;
}

.benefits {
text-align: left;
margin: 20px 0;
}

.benefits li {
margin-bottom: 8px;
font-size: 14px;
}

.alert {
background: #fff4e5;
color: #b26a00;
padding: 10px;
border-radius: 8px;
font-size: 14px;
margin: 15px 0;
}

.btn {
display: block;
width: 100%;
padding: 15px;
background: #25d366;
color: white;
font-size: 16px;
font-weight: bold;
text-decoration: none;
border-radius: 10px;
margin-top: 15px;
transition: 0.3s;
}

.btn:hover {
background: #1ebe5d;
}

.footer {
font-size: 12px;
color: #888;
margin-top: 15px;
}

img {
width: 100%;
border-radius: 10px;
margin: 15px 0;
}
</style>
</head>

<body>

<div class=”container”>

<h1>🔥 Promoções reais todos os dias com até 70% OFF</h1>

<p>Receba no <span class=”highlight”>WhatsApp</span> antes de todo mundo</p>

<img src=”https://via.placeholder.com/400×250″ alt=”Produtos em promoção”>

<p>Todos os dias liberamos ofertas como essas 👇</p>

<ul class=”benefits”>
<li>✅ Descontos reais (sem preço inflado)</li>
<li>✅ Produtos úteis e virais</li>
<li>✅ Links diretos com menor preço</li>
<li>✅ Sem spam — só oferta boa</li>
</ul>

<div class=”alert”>
⚠️ As melhores promoções acabam rápido
</div>

<a href=”SEU_LINK_WHATSAPP” class=”btn”>
👉 QUERO RECEBER AS OFERTAS
</a>

<div class=”footer”>
Entrada gratuita • Sem compromisso
</div>

</div>

</body>
</html>