|
|
<!DOCTYPE html> |
|
|
<html lang="pt-BR"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Old Ranch - Gastronomia e Bebidas</title> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
|
<style> |
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); |
|
|
body { |
|
|
font-family: 'Poppins', sans-serif; |
|
|
background-color: #f8f4e9; |
|
|
} |
|
|
.menu-category { |
|
|
transition: all 0.3s ease; |
|
|
} |
|
|
.menu-category:hover { |
|
|
transform: translateY(-5px); |
|
|
} |
|
|
.price-tag { |
|
|
background-color: #eab308; |
|
|
color: white; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body class="text-gray-800"> |
|
|
<div class="max-w-4xl mx-auto px-4 py-8"> |
|
|
|
|
|
<header class="text-center mb-12"> |
|
|
<h1 class="text-5xl font-bold text-amber-900 mb-2">OLD RANCH</h1> |
|
|
<p class="text-lg text-amber-700">Gastronomia & Bebidas • Desde 2024</p> |
|
|
<div class="mt-6 bg-amber-100 p-4 rounded-lg"> |
|
|
<p class="font-medium"><i class="fas fa-map-marker-alt mr-2"></i> Assentamento Triunfo, Pontes e Lacerda - MT</p> |
|
|
<p class="font-medium"><i class="fas fa-phone-alt mr-2"></i> (65) 99929-7686</p> |
|
|
<p class="font-medium"><i class="fas fa-clock mr-2"></i> Terça a Domingo • 15:00 - 00:00</p> |
|
|
</div> |
|
|
</header> |
|
|
|
|
|
|
|
|
<div class="grid md:grid-cols-2 gap-8"> |
|
|
|
|
|
<div class="menu-category bg-white p-6 rounded-lg shadow-lg border-l-4 border-amber-500"> |
|
|
<h2 class="text-2xl font-bold text-amber-800 mb-4 flex items-center"> |
|
|
<i class="fas fa-glass-cheers mr-3"></i> Bebidas |
|
|
</h2> |
|
|
|
|
|
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Cervejas (Lata)</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex justify-between"> |
|
|
<span>Brahma/Amstel/Skol</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 4,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>Original</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 5,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>Heineken</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 6,00</span> |
|
|
</li> |
|
|
</ul> |
|
|
|
|
|
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Cervejas (600ml)</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex justify-between"> |
|
|
<span>Brahma/Skol</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 12,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>Original</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 14,00</span> |
|
|
</li> |
|
|
</ul> |
|
|
|
|
|
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Heineken</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex justify-between"> |
|
|
<span>Long Neck</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 12,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>Shot</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 9,00</span> |
|
|
</li> |
|
|
</ul> |
|
|
|
|
|
<h3 class="text-lg font-semibold text-amber-700 mt-4 mb-2">Refrigerantes</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex justify-between"> |
|
|
<span>Latinha</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 5,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>1L</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 10,00</span> |
|
|
</li> |
|
|
<li class="flex justify-between"> |
|
|
<span>2L</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 13,50</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="menu-category bg-white p-6 rounded-lg shadow-lg border-l-4 border-amber-500"> |
|
|
<h2 class="text-2xl font-bold text-amber-800 mb-4 flex items-center"> |
|
|
<i class="fas fa-utensils mr-3"></i> Porções |
|
|
</h2> |
|
|
|
|
|
<ul class="space-y-4"> |
|
|
<li> |
|
|
<div class="flex justify-between items-baseline"> |
|
|
<span class="font-medium">Batata/Frango/Calabresa/Posta de Tabatinga</span> |
|
|
</div> |
|
|
<div class="flex justify-between mt-1"> |
|
|
<span class="text-sm">Pequena</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 45,00</span> |
|
|
</div> |
|
|
<div class="flex justify-between mt-1"> |
|
|
<span class="text-sm">Grande</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 55,00</span> |
|
|
</div> |
|
|
</li> |
|
|
|
|
|
<li> |
|
|
<div class="flex justify-between items-baseline"> |
|
|
<span class="font-medium">Ventrecha de Tabatinga</span> |
|
|
</div> |
|
|
<div class="flex justify-between mt-1"> |
|
|
<span class="text-sm">Pequena</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 55,00</span> |
|
|
</div> |
|
|
<div class="flex justify-between mt-1"> |
|
|
<span class="text-sm">Grande</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 65,00</span> |
|
|
</div> |
|
|
</li> |
|
|
|
|
|
<li class="flex justify-between"> |
|
|
<span class="font-medium">Tábua de Frios</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 80,00</span> |
|
|
</li> |
|
|
|
|
|
<li class="flex justify-between"> |
|
|
<span class="font-medium">Camarão</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 100,00</span> |
|
|
</li> |
|
|
</ul> |
|
|
|
|
|
<h3 class="text-lg font-semibold text-amber-700 mt-6 mb-2">Lanches</h3> |
|
|
<ul class="space-y-2"> |
|
|
<li class="flex justify-between"> |
|
|
<span>X-Tudo (Acompanha batata frita)</span> |
|
|
<span class="price-tag px-2 py-1 rounded-md text-sm font-bold">R$ 30,00</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="mt-12 text-center bg-amber-800 text-white p-6 rounded-lg"> |
|
|
<h3 class="text-2xl font-bold mb-3">Venha conhecer o Old Ranch!</h3> |
|
|
<p class="mb-4">Ambiente aconchegante para curtir com amigos e família</p> |
|
|
<a href="tel:+5565999297686" class="inline-block bg-white text-amber-800 font-bold py-2 px-6 rounded-full hover:bg-amber-100 transition"> |
|
|
<i class="fas fa-phone-alt mr-2"></i> Faça seu pedido |
|
|
</a> |
|
|
</div> |
|
|
|
|
|
|
|
|
<footer class="mt-12 text-center text-sm text-gray-600"> |
|
|
<p>© 2024 Old Ranch - Todos os direitos reservados</p> |
|
|
<p class="mt-1">Assentamento Triunfo, Pontes e Lacerda - MT</p> |
|
|
</footer> |
|
|
</div> |
|
|
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=kayqueJc/old-ranch" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |