<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oportunidade de Investimento</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
text-align: center;
}
.container {
max-width: 600px;
margin: 50px auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
}
.price {
font-size: 24px;
font-weight: bold;
color: #27ae60;
}
.cta {
margin-top: 20px;
}
.cta a {
text-decoration: none;
background-color: #e74c3c;
color: white;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
}
.cta a:hover {
background-color: #c0392b;
}
</style>
</head>
<body>
<div class="container">
<h1>Oportunidade Imperdível em Vila Nova de Gaia!</h1>
<p>Terreno espaçoso de <strong>2600m²</strong> com potencial de construção total.</p>
<p class="price">Preço: 850.000€</p>
<p>Ideal para projetos residenciais ou comerciais numa localização estratégica e tranquila.</p>
<p>Certificação energética isenta.</p>
<div class="cta">
<a href="#">Agende já a sua visita!</a>
</div>
</div>
</body>
</html>
Ler mais