q
File size: 14,618 Bytes
4aaebab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PicoléDaFirma - Os melhores picolés da região!</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>
        .flavor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .cart-item-enter {
            animation: slideIn 0.3s forwards;
        }
        .cart-item-exit {
            animation: slideOut 0.3s forwards;
        }
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        .pulse {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
    </style>
</head>
<body class="bg-gradient-to-b from-pink-50 to-blue-50 min-h-screen">
    <!-- Header -->
    <header class="bg-gradient-to-r from-pink-500 to-blue-500 text-white shadow-lg sticky top-0 z-50">
        <div class="container mx-auto px-4 py-4 flex justify-between items-center">
            <div class="flex items-center space-x-2">
                <i class="fas fa-ice-cream text-3xl"></i>
                <h1 class="text-2xl md:text-3xl font-bold">PicoléDaFirma</h1>
            </div>
            <div class="relative">
                <button id="cart-button" class="relative p-2 rounded-full hover:bg-white hover:bg-opacity-20 transition">
                    <i class="fas fa-shopping-cart text-xl"></i>
                    <span id="cart-count" class="absolute -top-1 -right-1 bg-yellow-400 text-black rounded-full w-5 h-5 flex items-center justify-center text-xs font-bold">0</span>
                </button>
                <div id="cart-dropdown" class="hidden absolute right-0 mt-2 w-72 md:w-96 bg-white rounded-lg shadow-xl z-50 border border-gray-200">
                    <div class="p-4 border-b border-gray-200 bg-gradient-to-r from-pink-100 to-blue-100 rounded-t-lg">
                        <h3 class="font-bold text-lg text-gray-800">Seu Carrinho</h3>
                    </div>
                    <div id="cart-items" class="max-h-96 overflow-y-auto p-4">
                        <p id="empty-cart-message" class="text-gray-500 text-center py-4">Seu carrinho está vazio</p>
                    </div>
                    <div class="p-4 border-t border-gray-200 bg-gray-50 rounded-b-lg">
                        <div class="flex justify-between mb-2">
                            <span class="font-semibold">Total:</span>
                            <span id="cart-total" class="font-bold">R$ 0,00</span>
                        </div>
                        <button id="checkout-btn" class="w-full bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 rounded-lg font-semibold hover:from-pink-600 hover:to-blue-600 transition disabled:opacity-50 disabled:cursor-not-allowed" disabled>
                            Finalizar Compra
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="py-12 px-4 bg-gradient-to-r from-pink-400 to-blue-400 text-white">
        <div class="container mx-auto flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-8 md:mb-0">
                <h2 class="text-4xl md:text-5xl font-bold mb-4">Os melhores picolés da região!</h2>
                <p class="text-xl mb-6">Refresque seu dia com nossos sabores exclusivos a apenas R$ 3,00 cada!</p>
                <a href="#flavors" class="bg-white text-pink-600 font-bold py-3 px-6 rounded-full hover:bg-gray-100 transition inline-block pulse">
                    Ver Sabores <i class="fas fa-arrow-down ml-2"></i>
                </a>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <img src="https://images.unsplash.com/photo-1558584731-0f0cd43e402e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                     alt="Picolés coloridos" 
                     class="rounded-lg shadow-2xl max-w-full h-auto max-h-96 object-cover border-4 border-white">
            </div>
        </div>
    </section>

    <!-- Flavors Section -->
    <section id="flavors" class="py-16 px-4">
        <div class="container mx-auto">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Nossos Sabores</h2>
            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Flocos -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1579954115545-a95591f28bfc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Flocos" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Flocos</h3>
                        <p class="text-gray-600 mb-4">Delicioso picolé de creme com flocos de chocolate crocantes.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Flocos" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Leitinho -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1560008581-09826d1de69e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Leitinho" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Leitinho</h3>
                        <p class="text-gray-600 mb-4">Cremoso picolé de leite condensado que derrete na boca.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Leitinho" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Uva -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1635405670481-1d8a5ca6e117?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Uva" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Uva</h3>
                        <p class="text-gray-600 mb-4">Refrescante picolé de uva com aquele gostinho de infância.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Uva" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Açai -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1606313564200-75a9eb814a90?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Açai" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Açai</h3>
                        <p class="text-gray-600 mb-4">Energético picolé de açaí puro, perfeito para os dias quentes.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Açai" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Morango -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1577234286642-fc512a5f8f11?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Morango" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Morango</h3>
                        <p class="text-gray-600 mb-4">Picolé de morango natural, doce e levemente ácido.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Morango" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>

                <!-- Abacaxi ao Vinho -->
                <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
                    <div class="h-48 overflow-hidden">
                        <img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" 
                             alt="Picolé de Abacaxi ao Vinho" 
                             class="w-full h-full object-cover hover:scale-105 transition duration-500">
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2 text-gray-800">Abacaxi ao Vinho</h3>
                        <p class="text-gray-600 mb-4">Sofisticado picolé de abacaxi com um toque especial de vinho.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
                            <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition" 
                                    data-name="Abacaxi ao Vinho" 
                                    data-price="3.00">
                                Adicionar <i class="fas fa-cart-plus ml-1"></i>
                            </button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="py-16 px-4 bg-gray-50">
        <div class="container mx-auto">
            <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">O que dizem nossos clientes</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white p-6 rounded-lg shadow-md">
                    <div class="flex items-center mb-4">
                        <div class="w-12 h-12 rounded-full bg-pink-500 flex items-center justify-center text-white font-bold text-xl">M</div>
                        <div class="ml-4">
                            <h4
</html>