<title>Cafeteria Delícia</title>
<style>
/* CSS Integrado */
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
}
.bg-brown {
background-color: #6f4e37;
}
.btn-brown {
background-color: #6f4e37;
color: white;
}
.btn-brown:hover {
background-color: #563927;
}
</style>
O melhor café artesanal da cidade!
Servimos cafés especiais, bolos e salgados fresquinhos em um ambiente acolhedor.
<section class="text-center my-4">
<img src="https://images.unsplash.com/photo-1509042239860-f550ce710b93" alt="Café" class="img-fluid rounded">
</section>
<section class="text-center">
<button class="btn btn-brown" onclick="fazerPedido()">Fazer Pedido</button>
</section>
© 2025 Cafeteria Delícia. Todos os direitos reservados.
<script>
// JavaScript Integrado
function fazerPedido() {
alert('Pedido iniciado! Em breve entraremos em contato.');
}
</script>