File size: 21,012 Bytes
d116861
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<!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 - Bar e Restaurante</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@400;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f5f5;
        }
        
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .menu-item {
            transition: all 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .price-tag {
            background-color: #d1a054;
            color: white;
        }
        
        .section-divider {
            border-top: 2px dashed #d1a054;
        }
    </style>
</head>
<body>
    <!-- Hero Section -->
    <section class="hero text-white py-20 px-4 md:px-0 text-center">
        <div class="container mx-auto">
            <h1 class="text-4xl md:text-6xl font-bold mb-4">OLD RANCH</h1>
            <p class="text-xl md:text-2xl mb-8">Bar e Restaurante • Desde 2024</p>
            <div class="flex justify-center space-x-4">
                <a href="tel:65999297686" class="bg-amber-600 hover:bg-amber-700 px-6 py-3 rounded-full font-semibold transition duration-300">
                    <i class="fas fa-phone mr-2"></i> (65) 99929-7686
                </a>
                <a href="https://wa.me/5565999297686" class="bg-green-600 hover:bg-green-700 px-6 py-3 rounded-full font-semibold transition duration-300">
                    <i class="fab fa-whatsapp mr-2"></i> WhatsApp
                </a>
            </div>
        </div>
    </section>

    <!-- Info Section -->
    <section class="py-12 bg-white">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row items-center justify-between">
                <div class="md:w-1/2 mb-8 md:mb-0">
                    <h2 class="text-3xl font-bold text-gray-800 mb-4">Horário de Funcionamento</h2>
                    <div class="bg-gray-100 p-6 rounded-lg">
                        <div class="flex justify-between py-2 border-b border-gray-200">
                            <span class="font-semibold">Terça a Domingo</span>
                            <span>15:00 - 00:00</span>
                        </div>
                        <div class="flex justify-between py-2">
                            <span class="font-semibold">Segunda-feira</span>
                            <span>Fechado</span>
                        </div>
                    </div>
                </div>
                <div class="md:w-1/2 md:pl-12">
                    <h2 class="text-3xl font-bold text-gray-800 mb-4">Endereço</h2>
                    <div class="bg-gray-100 p-6 rounded-lg">
                        <p class="mb-4"><i class="fas fa-map-marker-alt text-amber-600 mr-2"></i> Assentamento Triunfo, Pontes e Lacerda - MT</p>
                        <p class="text-gray-600">Venha nos visitar e aproveite o melhor da gastronomia regional em um ambiente acolhedor e descontraído!</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Menu Section -->
    <section class="py-16 bg-gray-50">
        <div class="container mx-auto px-4">
            <h2 class="text-4xl font-bold text-center text-gray-800 mb-12">Nosso Cardápio</h2>
            
            <!-- Porções -->
            <div class="mb-16">
                <h3 class="text-2xl font-semibold text-gray-800 mb-6 flex items-center">
                    <i class="fas fa-utensils text-amber-600 mr-3"></i> Porções
                </h3>
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
                    <!-- Item 1 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Frango, Batata, Calabresa</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 45,00 / R$ 55,00</span>
                            </div>
                            <p class="text-gray-600 mt-2">Pequena: R$45,00 | Grande: R$55,00</p>
                        </div>
                    </div>
                    
                    <!-- Item 2 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Posta de Tabatinga</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 45,00 / R$ 55,00</span>
                            </div>
                            <p class="text-gray-600 mt-2">Pequena: R$45,00 | Grande: R$55,00</p>
                        </div>
                    </div>
                    
                    <!-- Item 3 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Ventrecha de Tabatinga</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 55,00 / R$ 65,00</span>
                            </div>
                            <p class="text-gray-600 mt-2">Pequena: R$55,00 | Grande: R$65,00</p>
                        </div>
                    </div>
                    
                    <!-- Item 4 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Tábua de Frios</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 80,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Item 5 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Pintado</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 75,00 / R$ 85,00</span>
                            </div>
                            <p class="text-gray-600 mt-2">Pequeno: R$75,00 | Grande: R$85,00</p>
                        </div>
                    </div>
                    
                    <!-- Item 6 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">Camarão</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 100,00</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            
            <div class="section-divider my-12"></div>
            
            <!-- Lanches -->
            <div class="mb-16">
                <h3 class="text-2xl font-semibold text-gray-800 mb-6 flex items-center">
                    <i class="fas fa-hamburger text-amber-600 mr-3"></i> Lanches
                </h3>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-xl font-semibold text-gray-800">X-Tudo (com batata)</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 30,00</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            
            <div class="section-divider my-12"></div>
            
            <!-- Bebidas -->
            <div class="mb-16">
                <h3 class="text-2xl font-semibold text-gray-800 mb-6 flex items-center">
                    <i class="fas fa-beer text-amber-600 mr-3"></i> Bebidas
                </h3>
                
                <h4 class="text-xl font-semibold text-gray-700 mb-4">Cervejas</h4>
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
                    <!-- Cerveja 1 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Brahma/Skol 600ml</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 12,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 2 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Original 600ml</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 14,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 3 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Amstel/Brahma/Skol (lata)</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 4,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 4 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Original (lata)</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 5,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 5 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Heineken (lata)</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 6,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 6 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Heineken Long Neck</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 12,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Cerveja 7 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Heineken Shot</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 9,00</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <h4 class="text-xl font-semibold text-gray-700 mb-4">Refrigerantes</h4>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
                    <!-- Refri 1 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Lata</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 5,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Refri 2 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">1 Litro</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 10,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Refri 3 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">2 Litros</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 13,50</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <h4 class="text-xl font-semibold text-gray-700 mb-4">Drinks</h4>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                    <!-- Drink 1 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Copão</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 25,00</span>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Drink 2 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Caipirinha</h4>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 18,00</span>
                            </div>
                        </div>
                    </div>
                </div>
                
                <h4 class="text-xl font-semibold text-gray-700 mt-8 mb-4">Tereré Saborizado</h4>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                    <!-- Tereré 1 -->
                    <div class="menu-item bg-white rounded-lg overflow-hidden shadow-md">
                        <div class="p-6">
                            <div class="flex justify-between items-start">
                                <h4 class="text-lg font-semibold text-gray-800">Sabores: Lemon Blue, Frutas Vermelhas, Tropicano, Limão e Laranja</h4>
                            </div>
                            <div class="mt-4 flex justify-between">
                                <span class="text-gray-600">Pequeno</span>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 18,00</span>
                            </div>
                            <div class="mt-2 flex justify-between">
                                <span class="text-gray-600">Grande</span>
                                <span class="price-tag px-3 py-1 rounded-full text-sm font-bold">R$ 25,00</span>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Call to Action -->
    <section class="py-16 bg-amber-600 text-white">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-3xl md:text-4xl font-bold mb-6">Venha conhecer o Old Ranch!</h2>
            <p class="text-xl mb-8">O melhor lugar para reunir os amigos, família e aproveitar momentos especiais.</p>
            <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
                <a href="tel:65999297686" class="bg-white text-amber-600 hover:bg-gray-100 px-8 py-4 rounded-full font-bold transition duration-300">
                    <i class="fas fa-phone mr-2"></i> Ligue agora
                </a>
                <a href="https://wa.me/5565999297686" class="bg-green-600 hover:bg-green-700 px-8 py-4 rounded-full font-bold transition duration-300">
                    <i class="fab fa-whatsapp mr-2"></i> Chame no WhatsApp
                </a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-8">
        <div class="container mx-auto px-4">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-6 md:mb-0">
                    <h3 class="text-2xl font-bold">OLD RANCH</h3>
                    <p class="text-gray-400">Bar e Restaurante</p>
                </div>
                <div class="flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white transition duration-300">
                        <i class="fab fa-facebook-f text-xl"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition duration-300">
                        <i class="fab fa-instagram text-xl"></i>
                    </a>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>&copy; 2024 Old Ranch. Todos os direitos reservados.</p>
            </div>
        </div>
    </footer>
<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" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>