<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metabolic Balance | Official Site</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
/* Reset e Estilos Gerais */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background-color: #ffffff;
color: #1a1a1a;
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Container Principal */
.container {
max-width: 900px;
margin: 0 auto;
padding: 60px 20px;
flex: 1; /* Faz o conteúdo ocupar o espaço e empurrar o footer */
text-align: center;
}
/* Headline */
h1 {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 40px;
letter-spacing: -1px;
line-height: 1.2;
}
/* Destaque para palavras chave (opcional, mas elegante) */
.highlight {
color: #0047ab;
}
/* Vídeo Responsivo */
.video-container {
position: relative;
padding-bottom: 56.25%; /* Proporção 16:9 */
height: 0;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
background: #000;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
/* Footer */
footer {
background-color: #001f3f; /* Azul escuro elegante */
color: #ffffff;
padding: 40px 20px;
text-align: center;
font-size: 0.9rem;
}
footer p {
opacity: 0.8;
}
/* Responsividade para telas menores */
@media (max-width: 600px) {
h1 {
font-size: 1.8rem;
}
.container {
padding: 40px 15px;
}
}
</style>
</head>
<body>
<main class="container">
<h1>Stop struggling with your weight and blood sugar: <span class="highlight">Discover the secret to a balanced metabolism</span></h1>
<div class="video-container">
<iframe
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Product Video"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
</main>
<footer>
<p>© 2026 Metabolic Health Solutions. All rights reserved.</p>
<p style="margin-top: 10px; font-size: 0.7rem;">Consult your doctor before starting any new health program.</p>
</footer>
</body>
</html>