Página de Vendas - Google Meu Negócio - Sem Vídeo
Página de Vendas - Google Meu Negócio - Sem Vídeo
Página de Vendas - Google Meu Negócio - Sem Vídeo
DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Página de Vendas - Otimização Online</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?
family=Merriweather:wght@700&display=swap">
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
width: 100%;
padding: 60px 0;
background-color: #fff;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
display: none; /* Removido o título */
}
.container {
width: 80%;
margin: 0 auto;
padding: 60px 0;
}
.copy {
text-align: center;
margin-bottom: 60px;
}
.copy h2 {
font-size: 36px;
color: #333;
margin-bottom: 30px;
}
.copy p {
font-size: 20px;
color: #555;
line-height: 1.8;
max-width: 900px;
margin: 0 auto;
}
.copy p.highlight {
background-color: #e9ffe8;
padding: 10px;
border-left: 4px solid #28a745;
font-style: italic;
}
.copy h3 {
font-size: 28px;
color: #333;
margin-bottom: 20px;
}
.copy ul {
list-style: disc;
padding: 0 20px;
margin: 20px auto;
font-size: 20px;
color: #555;
max-width: 800px;
text-align: left;
}
.copy ul li {
margin-bottom: 15px;
}
.cta {
text-align: center;
margin-top: 60px;
}
.cta a {
background-color: #25D366;
color: white;
padding: 20px 40px;
font-size: 22px;
border-radius: 50px;
text-transform: uppercase;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.cta a:hover {
background-color: #128C7E;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: 60px;
font-size: 16px;
}
.fade-in {
opacity: 0;
transform: translateY(50px);
transition: all 0.6s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
</div>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
});
document.querySelectorAll('.fade-in').forEach((element) => {
observer.observe(element);
});
</script>
</body>
</html>