-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
941 lines (837 loc) · 39.8 KB
/
index.html
File metadata and controls
941 lines (837 loc) · 39.8 KB
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta lang="pt-br" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/src/style.css" rel="stylesheet" />
<title>Leaf</title>
<link rel="shortcut icon" href="/logo/logo.png" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body class="font-leaf">
<nav class="bg-leaf1 shadow-md lg:sticky lg:top-0 lg:z-50">
<div class="container mx-auto">
<div class="p-4 lg:p-0 flex justify-between items-center">
<!-- logo -->
<a href="#" class="flex gap-2 transition duration-700 ease-in-out hover:scale-110">
<img class="w-10 drop-shadow-xl" src="/logo/logo.png" alt="logo"/>
<h1 class="text-3xl text-shadow-lg/15 shadow-black text-white font-bold cursor-pointer text-shadow-xl">Leaf</h1>
</a>
<!-- Right side icons (only on mobile & tablet) -->
<div class="flex items-center gap-5 lg:hidden">
<!-- cart icon -->
<i class="fa-solid fa-cart-shopping text-2xl text-white cursor-pointer"></i>
<!-- Hamburger Button -->
<button id="menu-btn" class="text-2xl text-white cursor-pointer bg-leaf2 p-2 rounded-lg">
<i class="fa-solid fa-bars-staggered"></i> <!-- default icon -->
</button>
</div>
<!-- menu-items -->
<ul
id="menu"
class="hidden backdrop-blur-sm bg-black/30 lg:bg-leaf1 lg:space-y-0 flex-col absolute w-full p-5 left-0 top-20 gap-6 shadow-md lg:flex lg:flex-row lg:mx-auto lg:w-auto lg:static lg:shadow-none"
>
<li
class="cursor-pointer hover:border-bottom hover:border-b-[0.1rem] hover:bg-leaf2/65 lg:hover:bg-leaf1 hover:border-white p-2 lg:bg-none lg:p-0"
>
<a
href="#"
class="hover:duration-150 hover:transition-all hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-xl lg:text-lg lg:hover:text-leaf3 cursor-pointer font-light"
>Início</a
>
</li>
<li
class="cursor-pointer hover:border-bottom hover:border-b-[0.1rem] hover:bg-leaf2/65 lg:hover:bg-leaf1 hover:border-white p-2 lg:bg-none lg:p-0"
>
<a
href="#"
class="hover:duration-150 hover:transition-all hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-xl lg:text-lg lg:hover:text-leaf3 cursor-pointer font-light"
>Sobre Leaf</a
>
</li>
<li
class="cursor-pointer hover:border-bottom hover:border-b-[0.1rem] hover:bg-leaf2/65 lg:hover:bg-leaf1 hover:border-white p-2 lg:bg-none lg:p-0"
>
<a
href="#"
class="hover:duration-150 hover:transition-all hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-xl lg:text-lg lg:hover:text-leaf3 cursor-pointer font-light"
>Leafs</a
>
</li>
<li
class="cursor-pointer hover:border-bottom hover:border-b-[0.1rem] hover:bg-leaf2/65 lg:hover:bg-leaf1 hover:border-white p-2 lg:bg-none lg:p-0"
>
<a
href="#"
class="hover:duration-150 hover:transition-all hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-xl lg:text-lg lg:hover:text-leaf3 cursor-pointer font-light"
>Contato</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- 1 hero section -->
<main>
<section
class="py-44 md:py-64 lg:py-64" style="background-image: url(/bg/bg_2.jpg); background-position: center;
background-size: cover; background-repeat: no-repeat; background-attachment: fixed;">
<div class="mx-auto w-[300px] md:w-[500px] lg:w-[780px] mt-20 md:mt-5 lg:mt-0">
<h1
class="text-white text-center text-4xl md:text-6xl lg:text-7xl font-leaf font-bold"
>
Descubra as melhores folhas de chá secas
</h1>
<p
class="py-5 px-2 text-white text-center text-lg md:text-xl lg:text-xl font-leaf font-light"
>
Experimente o sabor autêntico de folhas de chá premium,
cuidadosamente selecionadas nos melhores jardins do mundo.
</p>
</div>
<div class="text-center mx-auto py-5 font-leaf space-x-5">
<button
class="rounded-lg hover:bg-leaf2 hover:transition-all hover:duration-300 hover:ease-in-out hover:text-white bg-leaf3 text-black cursor-pointer px-5 py-3"
>
Compre agora
</button>
<button
class="border rounded-lg backdrop-blur-sm bg-white/30 hover:bg-leaf2 hover:transition-all hover:duration-300 hover:ease-in-out text-white cursor-pointer px-5 py-3"
>
Saber mais
</button>
</div>
</section>
</main>
<!-- 2 hero sections -->
<main class="bg-leaf3">
<section
class="container mx-auto flex flex-col lg:flex lg:flex-row lg:justify-between lg:items-center"
>
<div
class="mx-auto flex-col lg:flex lg:flex-row lg:justify-between lg:items-center text-center gap-44 py-16"
>
<!-- 100% orgânico -->
<div class="mx-auto py-8">
<div
class="mx-auto flex items-center justify-center w-24 h-24 rounded-full overflow-hidden object-fit-cover bg-leaf2 shadow-lg"
>
<i class="fa-solid fa-leaf text-5xl text-white"></i>
</div>
<div class="mx-auto">
<h3
class="text-leaf2 text-xl md:text-xl lg:text-xl font-leaf font-medium"
>
100% orgânico
</h3>
</div>
<div class="mx-auto">
<p
class="text-leaf2 text-center text-sm md:text-sm lg:text-sm font-leaf font-light"
>
Cultivado naturalmente, sem pesticidas.
</p>
</div>
</div>
<!-- Qualidade Premium -->
<div class="mx-auto py-8">
<div
class="mx-auto flex items-center justify-center w-24 h-24 rounded-full overflow-hidden object-fit-cover bg-leaf2 shadow-lg"
>
<i class="fa-solid fa-star text-5xl text-white"></i>
</div>
<div class="mx-auto">
<h3
class="text-leaf2 text-xl md:text-xl lg:text-xl font-leaf font-medium"
>
Qualidade Premium
</h3>
</div>
<div class="mx-auto">
<p
class="text-leaf2 text-center text-sm md:text-sm lg:text-sm font-leaf font-light"
>
<span>Folhas da mais alta qualidade</span>
</p>
</div>
</div>
<!-- Frete grátis -->
<div class="mx-auto py-8">
<div
class="mx-auto flex items-center justify-center w-24 h-24 rounded-full overflow-hidden object-fit-cover bg-leaf2 shadow-lg"
>
<i class="fa-solid fa-truck text-5xl text-white"></i>
</div>
<div class="mx-auto">
<h3
class="text-leaf2 text-xl md:text-xl lg:text-xl font-leaf font-medium"
>
Frete grátis
</h3>
</div>
<div class="mx-auto">
<p
class="text-leaf2 text-center text-sm md:text-sm lg:text-sm font-leaf font-light"
>
Em pedidos acima de R$50
</p>
</div>
</div>
<!-- Pagamento seguro -->
<div class="mx-auto py-8">
<div
class="mx-auto flex items-center justify-center w-24 h-24 rounded-full overflow-hidden object-fit-cover bg-leaf2 shadow-lg"
>
<i class="fa-solid fa-shield text-5xl text-white"></i>
</div>
<div class="mx-auto">
<h3
class="text-leaf2 text-xl md:text-xl lg:text-xl font-leaf font-medium"
>
Pagamento seguro
</h3>
</div>
<div class="mx-auto">
<p
class="text-leaf2 text-center text-sm md:text-sm lg:text-sm font-leaf font-light"
>
Transações 100% seguras
</p>
</div>
</div>
</div>
</section>
</main>
<!-- 3 hero sections -->
<main>
<!-- Produtos em destaque -->
<section class="container mx-auto">
<div class="my-10">
<div class="mt-5 md:mt-10 lg:mt-8">
<h1 class="text-center text-3xl lg:text-3xl font-semibold">
<span>Produtos em destaque</span>
</h1>
<p class="py-5 mx-auto text-center w-72 md:w-lg lg:w-lg">
<span>
Explore nossa seleção exclusiva de folhas de chá secas premium,
provenientes dos melhores jardins de chá do mundo.
</span>
</p>
</div>
<!-- cartões de produtos em destaque -->
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 lg:gap-3 px-2"
>
<!-- Chá Verde Premium -->
<div
class="mx-auto block max-w-sm p-6 border-[0.1rem] border-solid border-slate-200 shadow-md rounded-lg transition duration-300 ease-in-out hover:-translate-y-1"
>
<a href="#"
><img
class="rounded-lg transition duration-700 ease-in-out hover:scale-105"
src="/cha_imagens/cha_verde_premium.png"
alt=""
/></a>
<div class="flex items-center space-x-3 mt-7">
<div class="flex items-center space-x-1">
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
</div>
<p
class="text-sm rounded-sm backdrop-blur-md bg-leaf1 text-leaf3 px-2 py-1"
>
<span>5.0</span>
</p>
</div>
<h3
class="mt-5 text-xl md:text-2xl font-semibold lg:text-2xl my-2"
>
<span>Chá Verde Premium</span>
</h3>
<p class="mb-6 text-light">
<span
>Hand-picked organic green tea leaves with delicate flavor and
rich antioxidants</span
>
</p>
<div class="flex justify-between items-center">
<p class="text-2xl font-semibold text-leaf2">
<span>R$24,99</span>
</p>
<button
class="text-sm font-semibold text-leaf2 bg-leaf5 p-3 rounded-xl hover:text-white hover:bg-leaf2 transition-all duration-300 ease-in cursor-pointer"
>
<a class="cursor-pointer" href="#"
><i class="fa-solid fa-cart-arrow-down mr-2"></i>Adicionar
ao carrinho</a
>
</button>
</div>
</div>
<!-- Chá preto -->
<div
class="mx-auto block max-w-sm p-6 border-[0.1rem] border-solid border-slate-200 shadow-md rounded-lg transition duration-300 ease-in-out hover:-translate-y-1"
>
<a href="#"
><img
class="rounded-lg transition duration-700 ease-in-out hover:scale-105"
src="/cha_imagens/chá_preto_clássico.png"
alt=""
/></a>
<div class="flex items-center space-x-3 mt-7">
<div class="flex items-center space-x-1">
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
</div>
<p
class="text-sm rounded-sm backdrop-blur-md bg-leaf1 text-leaf3 px-2 py-1"
>
<span>5.0</span>
</p>
</div>
<h3
class="mt-5 text-xl md:text-2xl font-semibold lg:text-2xl my-2"
>
<span>Chá preto</span>
</h3>
<p class="mb-6 text-light">
<span
>Folha oxidada, sabor intenso e cafeína: o chá preto traz
energia.</span
>
</p>
<div class="flex justify-between items-center">
<p class="text-2xl font-semibold text-leaf2">
<span>R$19,99</span>
</p>
<button
class="text-sm font-semibold text-leaf2 bg-leaf5 p-3 rounded-xl hover:text-white hover:bg-leaf2 transition-all duration-300 ease-in cursor-pointer"
>
<a class="cursor-pointer" href="#"
><i class="fa-solid fa-cart-arrow-down mr-2"></i>Adicionar
ao carrinho</a
>
</button>
</div>
</div>
<!-- Chá de ervas -->
<div
class="mx-auto block max-w-sm p-6 border-[0.1rem] border-solid border-slate-200 shadow-md rounded-lg transition duration-300 ease-in-out hover:-translate-y-1"
>
<a href="#"
><img
class="rounded-lg transition duration-700 ease-in-out hover:scale-105"
src="/cha_imagens/infusão_de_ervas.png"
alt=""
/></a>
<div class="flex items-center space-x-3 mt-7">
<div class="flex items-center space-x-1">
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-slate-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="none"
viewBox="0 0 24 24"
>
<path
stroke="currentColor"
stroke-width="2"
d="M11.083 5.104c.35-.8 1.485-.8 1.834 0l1.752 4.022a1 1 0 0 0 .84.597l4.463.342c.9.069 1.255 1.2.556 1.771l-3.33 2.723a1 1 0 0 0-.337 1.016l1.03 4.119c.214.858-.71 1.552-1.474 1.106l-3.913-2.281a1 1 0 0 0-1.008 0L7.583 20.8c-.764.446-1.688-.248-1.474-1.106l1.03-4.119A1 1 0 0 0 6.8 14.56l-3.33-2.723c-.698-.571-.342-1.702.557-1.771l4.462-.342a1 1 0 0 0 .84-.597l1.753-4.022Z"
/>
</svg>
</div>
<p
class="text-sm rounded-sm backdrop-blur-md bg-leaf1 text-leaf3 px-2 py-1"
>
<span>4.0</span>
</p>
</div>
<h3
class="mt-5 text-xl md:text-2xl font-semibold lg:text-2xl my-2"
>
<span>Chá de ervas</span>
</h3>
<p class="mb-6 text-light">
<span
>Infusões naturais e sem cafeína que trazem relaxamento.</span
>
</p>
<div class="flex justify-between items-center">
<p class="text-2xl font-semibold text-leaf2">
<span>R$21,99</span>
</p>
<button
class="text-sm font-semibold text-leaf2 bg-leaf5 p-3 rounded-xl hover:text-white hover:bg-leaf2 transition-all duration-300 ease-in cursor-pointer"
>
<a class="cursor-pointer" href="#"
><i class="fa-solid fa-cart-arrow-down mr-2"></i>Adicionar
ao carrinho</a
>
</button>
</div>
</div>
<!-- Chá branco -->
<div
class="mx-auto block max-w-sm p-6 border-[0.1rem] border-solid border-slate-200 shadow-md rounded-lg transition duration-300 ease-in-out hover:-translate-y-1"
>
<a href="#"
><img
class="rounded-lg transition duration-700 ease-in-out hover:scale-105"
src="/cha_imagens/coleção_de_chá_branco.png"
alt=""
/></a>
<div class="flex items-center space-x-3 mt-7">
<div class="flex items-center space-x-1">
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
<svg
class="w-5 h-5 cursor-pointer text-yellow-400"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="currentColor"
viewBox="0 0 24 24"
>
<path
d="M13.849 4.22c-.684-1.626-3.014-1.626-3.698 0L8.397 8.387l-4.552.361c-1.775.14-2.495 2.331-1.142 3.477l3.468 2.937-1.06 4.392c-.413 1.713 1.472 3.067 2.992 2.149L12 19.35l3.897 2.354c1.52.918 3.405-.436 2.992-2.15l-1.06-4.39 3.468-2.938c1.353-1.146.633-3.336-1.142-3.477l-4.552-.36-1.754-4.17Z"
/>
</svg>
</div>
<p
class="text-sm rounded-sm backdrop-blur-md bg-leaf1 text-leaf3 px-2 py-1"
>
<span>5.0</span>
</p>
</div>
<h3
class="mt-5 text-xl md:text-2xl font-semibold lg:text-2xl my-2"
>
<span>Chá branco</span>
</h3>
<p class="mb-6 text-light">
<span
>Folhas jovens, sabor delicado e muitos antioxidantes para sua
saúde.</span
>
</p>
<div class="flex justify-between items-center">
<p class="text-2xl font-semibold text-leaf2">
<span>R$29,99</span>
</p>
<button
class="text-sm font-semibold text-leaf2 bg-leaf5 p-3 rounded-xl hover:text-white hover:bg-leaf2 transition-all duration-300 ease-in cursor-pointer"
>
<a class="cursor-pointer" href="#"
><i class="fa-solid fa-cart-arrow-down mr-2"></i>Adicionar
ao carrinho</a
>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Categorias de Chá -->
<section class="container mx-auto">
<div class="my-10">
<div class="mt-5 md:mt-10 lg:mt-8">
<h1 class="text-center text-3xl lg:text-3xl font-semibold">
<span>Categorias de Chá</span>
</h1>
<p class="py-5 mx-auto text-center w-72 md:w-lg lg:w-lg">
<span>
Descubra o chá perfeito para cada momento e estado de espírito
</span>
</p>
</div>
</div>
<!-- Categorias de Chá imagens -->
<div
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 lg:gap-6 px-2 pb-10"
>
<!-- Chá Verde -->
<div
class="cursor-pointer bg-no-repeat bg bg-cover overflow-hidden rounded-lg card mx-auto max-w-sm w-full md:max-w-md lg:max-w-lg text-white px-5 py-5 mb-6 lg:mb-8"
style="background-image: url(/cha_imagens/cha_verde_premium.png)"
>
<div
class="mt-40 lg:mt-60 backdrop-blur-xs bg-black/55 p-3 rounded-lg"
>
<div class="font-bold text-2xl"><h1>Chá Verde</h1></div>
<div><p>Fresco, vibrante e repleto de antioxidantes</p></div>
<div>
<a href="#"
><p class="text-yellow-300">15 variedades disponíveis</p></a
>
</div>
</div>
</div>
<!-- Chá Preto -->
<div
class="cursor-pointer bg-no-repeat bg bg-cover overflow-hidden rounded-lg card mx-auto max-w-sm w-full md:max-w-md lg:max-w-lg text-white px-5 py-5 mb-6 lg:mb-8"
style="background-image: url(/cha_imagens/chá_preto_clássico.png)"
>
<div
class="mt-40 lg:mt-60 backdrop-blur-xs bg-black/55 p-3 rounded-lg"
>
<div class="font-bold text-2xl"><h1>Chá Preto</h1></div>
<div>
<p>Sabores intensos para o apreciador de chá clássico</p>
</div>
<div>
<a href="#"
><p class="text-yellow-300">12 variedades disponíveis</p></a
>
</div>
</div>
</div>
<!-- Chá Oolong -->
<div
class="cursor-pointer bg-no-repeat bg bg-cover overflow-hidden rounded-lg card mx-auto max-w-sm w-full md:max-w-md lg:max-w-lg text-white px-5 py-5 mb-6 lg:mb-8"
style="background-image: url(/cha_imagens/chá_oolong.png)"
>
<div
class="mt-40 lg:mt-60 backdrop-blur-xs bg-black/55 p-3 rounded-lg"
>
<div class="font-bold text-2xl"><h1>Chá Oolong</h1></div>
<div><p>Semi-oxidado para perfis de sabor complexos</p></div>
<div>
<a href="#"
><p class="text-yellow-300">8 variedades disponíveis</p></a
>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer>
<div class="bg-leaf1">
<div class="container mx-auto px-4">
<div class="py-10">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 lg:gap-4">
<!-- Leaf logo -->
<div class="">
<div class="flex justify-content-start items-center gap-2">
<img class="w-10 drop-shadow-xl" src="/logo/logo.png" alt="logo" />
<h1
class="text-3xl text-shadow-lg/15 shadow-black text-white font-bold cursor-pointer text-shadow-xl"
>
Leaf
</h1>
</div>
<div>
<p class="pt-5 px-2 text-white text-sm font-light">
<span
>Folhas de chá secas de qualidade superior, provenientes
dos melhores jardins do mundo. Experimente o sabor
autêntico em cada xícara.</span
>
</p>
</div>
</div>
<!-- Links Rápidos -->
<div class="mt-2 lg:mt-0">
<div class="flex flex-col space-y-2">
<p class="text-white lg:text-white text-lg font-bold text-shadow-lg/15 shadow-black">Links Rápidos</p>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light ">Início</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Sobre Leaf</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Leafs</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Contato</a>
</div>
</div>
<!-- Atendimento ao Cliente -->
<div class="mt-2 lg:mt-0">
<div class="flex flex-col space-y-2">
<p class="text-white lg:text-white text-lg font-bold text-shadow-lg/15 shadow-black">Atendimento ao Cliente</p>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Fale Conosco</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Informações de Envio</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Devoluções</a>
<a href="#" class="hover:duration-150 hover:transition-all
hover:ease-in-out text-white hover:text-leaf3 lg:text-white text-sm lg:hover:text-leaf3
cursor-pointer font-light">Perguntas frequentes</a>
</div>
</div>
<!-- Boletim informativo -->
<div class="mt-2 lg:mt-0">
<div class="flex flex-col space-y-2">
<p class="text-white lg:text-white text-lg font-bold text-shadow-lg/15 shadow-black">Boletim informativo</p>
<label class="text-white lg:text-white text-sm" for="">Inscreva-se para receber ofertas especiais e novidades.</label>
<div class="flex justify-center items-center gap-4 mt-2">
<input type="email" placeholder="Seu email" class="text-white w-full rounded-lg border-[0.1rem] p-2 text-sm lg:text-sm">
<button type="submit"><a href="#"><i class="fa-solid fa-envelope text-shadow-lg/15 shadow-black text-white text-3xl transition duration-300 ease-in-out hover:scale-110"></i></a></button>
</div>
</div>
</div>
</div>
</div>
<!-- Copyright -->
<div class="flex flex-col text-center lg:flex-row lg:justify-between lg:items-center py-5">
<p class="text-white text-sm text-shadow-lg/15 shadow-black">
<span>© 2024 Leaf. Todos os direitos reservados.</span>
</p>
<p class="text-white text-sm">
<a href="#">Design por <span class="text-lg">Suman Biswas <i class="fa-brands fa-instagram text-shadow-lg/15 shadow-black"></i></span></a>
</p>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/9898c47017.js"
crossorigin="anonymous"
></script>
<script src="/js/script.js"></script>
</body>
</html>