-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
982 lines (978 loc) · 32.8 KB
/
index.html
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
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Meta -->
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Para Pessoas que gostam de um lugar aconchegante e coberto por natureza Pedra Azul é seu próximo destino para conhecer, venha conhecer um pouquinho de Pedra Azul neste site!"
/>
<!-- Titulo -->
<title>Pedra Azul Turismo</title>
<!-- StyleSheets -->
<link
rel="stylesheet"
href="./styles/main.css"
/>
<!-- Favicon -->
<link
rel="shortcut icon"
href="img/favicon.ico"
type="image/x-icon"
/>
</head>
<body>
<div
class="h-dvh w-full bg-[url('./img/pedra-azul-e-pedra-do-lagarto.jpg')] bg-no-repeat bg-cover bg-center"
>
<header
class="px-10 md:px-20 lg:px-40 w-full -mt-2 flex justify-between items-center text-lg bg-transparent bg-gradient-to-t from-transparent to-gray-600 transition-all"
>
<div>
<img
src="./img/pedra-azul-logo.png"
alt="Logo"
class="size-28 md:size-40"
/>
</div>
<nav>
<ul
class="hidden lg:flex justify-around items-center gap-7 font-semibold text-white *:transition-colors"
>
<li class="hover:text-slate-300"><a href="#home">Home</a></li>
<li class="hover:text-slate-300"><a href="#about">Sobre</a></li>
<li class="hover:text-slate-300">
<a href="#what-to-do">O que fazer</a>
</li>
<li class="hover:text-slate-300">
<a href="#contact">Contato</a>
</li>
<li class="hover:text-slate-300">
<a href="#impressions">Impressões</a>
</li>
</ul>
</nav>
<div class="block lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-white size-10"
>
<path
fill="currentColor"
d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"
/>
</svg>
</div>
</header>
<section
id="home"
class="w-full h-full pt-20 xl:pt-32 2xl:pt-44 bg-gradient-to-b from-transparent to-black px-20 md:px-44 transition-all"
>
<div class="flex flex-col justify-start items-start gap-10 w-full">
<h1
class="text-xl md:text-4xl xl:text-5xl 2xl:text-8xl text-white font-bold"
>
BEM-VINDO A PEDRA AZUL
</h1>
<h class="text-white text-lg md:text-xl xl:w-6/12"
>Pedra Azul é um oásis de tranquilidade, de relaxamento e
contemplação em meio ao canto dos pássaros e à natureza exuberante,
com seus tapetes verdes e árvores floreiras!</h
>
<button
aria-label="Reservar"
class="text-white border w-56 border-white px-5 py-2 rounded-full backdrop-blur-sm hover:backdrop-blur-lg transition-all"
>
Reservar uma Visita
</button>
</div>
</section>
<section
id="about"
class="w-full h-full -mt-40 bg-gradient-to-t from-slate-900 to-black px-10 md:px-28 md:pr-0 md:pl-28 lg:pl-44 pt-10 md:pt-8 2xl:pt-2 -pb-40 transition-all"
>
<div
class="flex-col flex md:flex-row w-full justify-between items-center gap-6"
>
<aside class="flex flex-col gap-2 lg:gap-7">
<h2
class="text-white text-xl text-center md:text-left md:text-2xl lg:text-4xl 2xl:text-6xl font-semibold"
>
VENHA CONHECER
</h2>
<p
class="text-white text-center md:text-left md:text-lg lg:w-7/12 font-light lg:ml-20 mt-10"
>
Pedra Azul é uma região de belezas naturais mágicas, possui um dos
3 melhores climas do mundo e é a segunda maior cobertura da Mata
Atlântica do país. Tem como principal símbolo e cartão postal a
Pedra Azul, uma formação de granito e gnaisse de 1.822 m de
altitude que adquire coloração azul e esverdeada conforme a
incidência da luz solar.
</p>
</aside>
<aside clas="w-full h-full">
<img
src="./img/pedra-azul-2.jpg"
alt="Imagem da Pedra Azul"
class="h-[15rem] md:h-[22rem] w-[130rem] object-cover border-2 md:border-r-0 border-white rounded-md md:rounded-r-none"
/>
</aside>
</div>
</section>
<section
id="what-to-do"
class="relative w-full bg-slate-900 px-16 md:px-28 lg:px-32 xl:px-44 2xl:px-48 transition-all"
>
<div>
<img
src="./img/parapente.png"
alt="PNJ Parapente"
class="absolute hidden md:block -left-28 md:-top-20 lg:-top-28 xl:-top-40 xl:-left-32 2xl:-top-96 2xl:-left-40 size-[20rem] lg:size-[20rem] xl:size-[27rem] 2xl:size-[40rem]"
/>
</div>
<div
class="flex flex-col items-center justify-center gap-4 w-full h-full text-white"
>
<div class="flex flex-col items-center gap-4">
<span>UM LUXO SENSORIAL </span>
<h1
class="text-lg md:text-xl lg:text-2xl xl:text-4xl font-semibold"
>
RESPIRE FUNDO! PREPARE SEU CORAÇÃO!
</h1>
</div>
<div class="mt-10 md:mt-[9rem] w-full h-full">
<div clas="relative">
<div
class="hidden lg:block w-5 h-5 rounded-full bg-white absolute left-2/4 bottom-[68%]"
></div>
<div
class="hidden lg:block w-5 h-5 rounded-full bg-white absolute left-2/4 bottom-[40%]"
></div>
<div
class="hidden lg:block w-5 h-5 rounded-full bg-white absolute left-2/4 bottom-[10%]"
></div>
<div class="hidden lg:block vertical-line ml-2"></div>
</div>
<div class="flex flex-col gap-10 w-full">
<div
class="flex flex-col-reverse md:flex-row items-center gap-16 justify-between text-white w-full"
>
<aside class="flex flex-col text-center md:text-left gap-2">
<h2 class="text-md xl:text-lg 2xl:text-xl font-semibold">
Muitos Esportes e Esportes de Aventura.
</h2>
<p
class="text-xs lg:text-sm xl:text-md 2xl:text-lg lg:w-8/12 xl:w-7/12 2xl:w-6/12"
>
Pedra Azul e entorno têm vocação natural para esportes, em
especial esportes de aventura. Trilhas, corridas, rapel,
escaladas, alpinismo, parapente, bike, motos, cavalgadas,
canoagem, golfe. Alguns dos principais eventos esportivos
nacionais têm sido realizados na região.
</p>
</aside>
<img
src="./img/parapente-coletivo.jpg"
alt="Imagem de pessoas praticando parapente"
class="h-[14rem] w-[30rem] lg:h-[14rem] lg:w-[30rem] xl:h-[15rem] xl:w-[30rem] 2xl:h-[20rem] 2xl:w-[60rem] rounded-xl md:rounded-[50%] object-cover border-2"
/>
</div>
<div
class="flex flex-col md:flex-row items-center gap-10 lg:gap-[13rem] xl:gap-[16rem] 2xl:gap-[35rem] justify-between text-white w-full"
>
<img
src="./img/Vinhos.jpg"
alt="Imagem de Esportes"
class="h-[14rem] w-[30rem] lg:h-[14rem] lg:w-[30rem] xl:h-[15rem] xl:w-[30rem] 2xl:h-[20rem] 2xl:w-[60rem] rounded-xl md:rounded-[50%] object-cover border-2"
/>
<aside class="flex flex-col text-center md:text-left gap-2">
<h2 class="text-md xl:text-lg 2xl:text-xl font-semibold">
Pedra Azul é Convite Permanente para Uma Taça de Vinho.
</h2>
<p class="text-sm xl:text-md 2xl:text-lg">
A temperatura sempre amena e muito fria no inverno é um
convite permanente para celebração da vida e tomar vinho com
os amigos. Rosso, encarnado, sangre, rubro, tinto. Vinhos
alegram a alma. Alguns celebram e brindam a amizade.
Convites ao romance estão sempre no ar. Os 5 sentidos mais
uma vez aplaudem de pé.
</p>
</aside>
</div>
<div
class="flex flex-col-reverse md:flex-row items-center justify-between gap-16 text-white w-full"
>
<aside class="flex flex-col text-center md:text-left gap-2">
<h2
class="md:w-6/12 text-md xl:text-lg 2xl:text-xl font-semibold"
>
Agroturismo. Centenas de Propriedades Familiares Rurais.
</h2>
<p
class="text-xs lg:text-sm xl:text-md 2xl:text-lg lg:w-8/12 xl:w-7/12 2xl:w-6/12"
>
O agroturismo na Região de Pedra Azul, Venda Nova do
Imigrante e entorno é diversificado e inovador. Venda Nova
do Imigrante é a Capital Nacional do Agroturismo. Embutidos,
queijos especiais, pastas, mel, palmitos, geleias,
caponatas, pães, doces, bolos, morangos, orgânicos,
aguardentes, cervejas. O acesso a estas propriedades é
permitido aos turistas. Aqui você ainda vive uma experiência
única de contato com o modus vivendi rural.
</p>
</aside>
<img
src="./img/foto-alimentos.jpg"
alt="Imagem de Alimentos do Naturais"
class="h-[14rem] w-[30rem] lg:h-[14rem] lg:w-[30rem] xl:h-[15rem] xl:w-[30rem] 2xl:h-[20rem] 2xl:w-[60rem] rounded-xl md:rounded-[50%] object-cover border-2"
/>
</div>
</div>
</div>
</div>
</section>
<section
class="relative w-full bg-slate-900 px-4 md:px-20 2xl:px-40 text-white pt-28 md:pt-48 transition-all"
>
<div class="flex flex-col gap-4">
<h3 class="text-sm ml-28">O QUE FAZER ?</h3>
<h1
class="text-center md:text-left text-lg md:text-xl lg:text-2xl xl:text-4xl font-semibold"
>
OS LUGARES QUE OS VISITANTES MAIS AMAM!
</h1>
</div>
<div
class="mt-16 flex justify-center items-center gap-4 md:gap-10 2xl:gap-16"
>
<button
aria-label="Fotos à esquerda"
class="cursor-pointer border-0 hover:border rounded-full p-0 transition-all"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="0.5em"
height="1em"
viewBox="0 0 12 24"
class="size-10 md:size-16 rotate-180"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414"
/>
</svg>
</button>
<div
class="relative w-[18rem] h-[25rem] cursor-pointer rounded-lg group transition-all border-2"
>
<div
class="absolute w-full h-full flex justify-center items-center transition-all rounded-lg group-hover:backdrop-blur-sm"
>
<button
aria-label="Detalhes"
class="bg-white hover:bg-slate-100 rounded-lg text-slate-800 px-3 py-2 hidden group-hover:block"
>
Ver Detalhes
</button>
</div>
<img
src="./img/foto-parque-estadual.jpg"
alt="Foto do Parque Estadual"
class="w-full h-full object-cover rounded-lg hover:backdrop-sepia-0"
/>
<div class="absolute bottom-7 w-full flex justify-center">
<span class="font-bold text-lg backdrop-blur-sm px-3 rounded-xl"
>PARQUE ESTADUAL</span
>
</div>
</div>
<div
class="hidden md:block relative w-[18rem] h-[25rem] cursor-pointer rounded-lg group transition-all border-2"
>
<div
class="absolute w-full h-full flex justify-center items-center transition-all rounded-lg group-hover:backdrop-blur-sm"
>
<button
aria-label="Detalhes"
class="bg-white hover:bg-slate-100 rounded-lg text-slate-800 px-3 py-2 hidden group-hover:block"
>
Ver Detalhes
</button>
</div>
<img
src="./img/foto-gruta-do-limoeiro.jpg"
alt="Foto da Gruta do Limoeiro"
class="w-full h-full object-cover rounded-lg hover:backdrop-sepia-0"
/>
<div class="absolute bottom-7 w-full flex justify-center">
<span class="font-bold text-lg backdrop-blur-sm px-3 rounded-xl"
>GRUTA DO LIMOEIRO</span
>
</div>
</div>
<div
class="hidden lg:block relative w-[18rem] h-[25rem] cursor-pointer rounded-lg group transition-all border-2"
>
<div
class="absolute w-full h-full flex justify-center items-center transition-all rounded-lg group-hover:backdrop-blur-sm"
>
<button
aria-label="Detalhes"
class="bg-white hover:bg-slate-100 rounded-lg text-slate-800 px-3 py-2 hidden group-hover:block"
>
Ver Detalhes
</button>
</div>
<img
src="./img/zoo-park-da-montanha.jpg"
alt=" foto Zoo Park da Montanha"
class="w-full h-full object-cover rounded-lg hover:backdrop-sepia-0"
/>
<div class="absolute bottom-7 w-full flex justify-center">
<span class="font-bold text-lg backdrop-blur-sm px-3 rounded-xl"
>ZOO PARK DA MONTANHA</span
>
</div>
</div>
<div
class="hidden xl:block relative w-[18rem] h-[25rem] cursor-pointer rounded-lg group transition-all border-2"
>
<div
class="absolute w-full h-full flex justify-center items-center transition-all rounded-lg group-hover:backdrop-blur-sm"
>
<button
aria-label="Detalhes"
class="bg-white hover:bg-slate-100 rounded-lg text-slate-800 px-3 py-2 hidden group-hover:block"
>
Ver Detalhes
</button>
</div>
<img
src="./img/rota-do-lagarto.jpg"
alt="Imagem da Rota do Lagarto"
class="w-full h-full object-cover rounded-lg hover:backdrop-sepia-0"
/>
<div class="absolute bottom-7 w-full flex justify-center">
<span class="font-bold text-lg backdrop-blur-sm px-3 rounded-xl"
>ROTA DO LAGARTO</span
>
</div>
</div>
<button
aria-label="Fotos à direita"
class="cursor-pointer border-0 hover:border rounded-full p-0 transition-all"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="0.5em"
height="1em"
viewBox="0 0 12 24"
class="size-10 md:size-16"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414"
/>
</svg>
</button>
</div>
</section>
<section
id="gallery"
class="relative w-full bg-slate-900 px-10 md:px-32 lg:px-44 xl:px-52 text-white pt-28 md:pt-48 transition-all"
>
<div
class="flex flex-col items-center justify-center gap-4 w-full h-full text-white"
>
<div class="flex flex-col items-center gap-4">
<span>GALERIA DE FOTOS</span>
<h1
class="text-center md:text-left text-lg md:text-xl lg:text-2xl xl:text-4xl font-semibold"
>
CONTEMPLE A BELEZA DE PEDRA AZUL
</h1>
</div>
<div class="grid grid-cols-3 gap-8 w-full mt-20">
<div
class="col-span-full md:col-span-1 w-full h-[25rem] flex items-end justify-start pl-10 pb-10 select-none rounded-3xl bg-[url('./img/pedra-azul-hurb-2.jpg')] bg-cover hover:bg-center transition-all"
>
<span class="text-2xl font-semibold">Pousada Pedra Azul</span>
</div>
<div
class="col-span-full md:col-span-1 lg:col-span-2 w-full h-[25rem] flex items-end justify-start pl-10 pb-10 select-none rounded-3xl bg-[url('./img/Pedra-azul-entardecer.jpg')] bg-cover bg-center hover:bg-bottom transition-all"
>
<span class="text-2xl font-semibold">O Entardecer</span>
</div>
<div
class="col-span-full md:col-span-1 w-full h-[25rem] flex items-end justify-start pl-10 pb-10 select-none rounded-3xl bg-[url('./img/Pedra-Azul-ES.jpg')] bg-cover bg-bottom hover:bg-top transition-all"
>
<span class="text-2xl font-semibold">Vista da Pousada</span>
</div>
<div
class="hidden w-full h-[25rem] lg:flex items-end justify-start pl-10 pb-10 select-none rounded-3xl bg-[url('./img/Piscinas-pedra-azul.jpg')] bg-cover bg-left hover:bg-right transition-all"
>
<span class="text-2xl font-semibold">Piscinas Naturais</span>
</div>
<div
class="col-span-3 lg:col-span-1 w-full h-[25rem] flex items-end justify-start pl-10 pb-10 select-none rounded-3xl bg-[url('./img/pedra-azul-noite-estrelada.jpg')] bg-cover bg-right hover:bg-left transition-all"
>
<span class="text-2xl font-semibold">Noite de Pedra Azul</span>
</div>
</div>
<div class="mt-10">
<button
aria-label="Ver mais fotos"
class="bg-blue-950 hover:bg-blue-900 px-7 py-3 rounded-full transition-colors"
>
Ver mais fotos
</button>
</div>
</div>
</section>
<section
id="impressions"
class="relative w-full bg-slate-900 px-10 md:px-36 lg:px-38 xl:px-40 text-white pt-28 md:pt-48 pb-20"
>
<div class="flex flex-col items-center md:items-start gap-4">
<h3 class="text-sm md:ml-28">AINDA EM DÚVIDA?</h3>
<h1
class="text-center md:text-left text-lg md:text-xl lg:text-2xl xl:text-4xl font-semibold"
>
VEJA AS IMPRESSÕES DE PESSOAS QUE VISITARAM!
</h1>
</div>
<div
class="flex items-center gap-4 2xl:gap-0 justify-between mt-20 px-2"
>
<div
class="flex flex-col gap-10 bg-slate-950/35 max-w-[30rem] rounded-3xl shadow-md px-6 py-4"
>
<div class="flex gap-1 py-3">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
</div>
<div class="w-full text-sm 2xl:text-xl text-white">
<p class="">
"Ut fermentum sodales odio ac venenatis. Phasellus egestas vitae
arcu a vestibulum. Praesent a tincidunt nisi, vitae faucibus
nunc. Nam augue nulla, vehicula at magna vel, ultricies
dignissim eros."
</p>
</div>
<div class="flex gap-10">
<div class="w-16 h-16 rounded-full">
<img
src="img/jackie-chan-foto.jpg"
alt="foto [erfil do usuario"
class="object-cover w-full h-full rounded-full"
/>
</div>
<div class="flex flex-col py-2">
<span class="text-sm xl:text-lg font-bold text-white"
>Jackie Chan</span
>
<span class="text-xs lg:text-sm font-semibold text-white"
>20 de Fevereiro de 2017</span
>
</div>
</div>
</div>
<div
class="hidden md:flex flex-col gap-10 bg-slate-950/35 max-w-[30rem] rounded-3xl shadow-md px-6 py-4"
>
<div class="flex gap-1 py-3">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
</div>
<div class="w-full text-sm 2xl:text-xl text-white">
<p class="">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed
dignissim mattis auctor. Integer tempor rhoncus enim et
faucibus. Proin lectus massa, vehicula nec ornare at,
scelerisque in magna."
</p>
</div>
<div class="flex gap-10">
<div class="w-16 h-16 rounded-full">
<img
src="img/foto-padrao-de-perfil.jpg"
alt="Perfil do usuario"
class="object-cover w-full h-full rounded-full"
/>
</div>
<div class="flex flex-col py-2">
<span class="text-sm xl:text-lg font-bold text-white"
>Fulano Silva</span
>
<span class="text-xs lg:text-sm font-semibold text-white"
>14 de Agosto de 2024</span
>
</div>
</div>
</div>
<div
class="hidden lg:flex flex-col gap-10 bg-slate-950/35 max-w-[30rem] rounded-3xl shadow-md px-6 py-4"
>
<div class="flex gap-1 py-3">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="text-yellow-500 size-8"
>
<path
fill="currentColor"
d="m5.825 21l1.625-7.025L2 9.25l7.2-.625L12 2l2.8 6.625l7.2.625l-5.45 4.725L18.175 21L12 17.275z"
/>
</svg>
</div>
<div class="w-full text-sm 2xl:text-xl text-white">
<p>
"Donec sed risus at ipsum tincidunt molestie. Vestibulum vitae
ullamcorper lorem. Aenean sed sapien quis felis semper
porttitor. Curabitur faucibus velit tortor, a dignissim quam
bibendum maximus."
</p>
</div>
<div class="flex gap-10">
<div class="w-16 h-16 rounded-full">
<img
src="img/michael-jackson-foto.jpg"
alt="Perfil do usuario"
class="object-cover w-full h-full rounded-full"
/>
</div>
<div class="flex flex-col py-2">
<span class="text-sm xl:text-lg font-bold text-white"
>Michael Jackson</span
>
<span class="text-xs lg:text-sm font-semibold text-white"
>12 de Fevereiro de 2005</span
>
</div>
</div>
</div>
</div>
<div class="mt-20 flex w-full justify-center items-center">
<div class="flex gap-10">
<button
aria-label="carregar impressões esquerda"
class="cursor-pointer border hover:bg-slate-600 rounded-full p-0 transition-all"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="0.5em"
height="1em"
viewBox="0 0 12 24"
class="size-16 rotate-180"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414"
/>
</svg>
</button>
<button
aria-label="carregar impressões direita"
class="cursor-pointer border hover:bg-slate-600 rounded-full p-0 transition-all"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="0.5em"
height="1em"
viewBox="0 0 12 24"
class="size-16"
>
<path
fill="currentColor"
fill-rule="evenodd"
d="M10.157 12.711L4.5 18.368l-1.414-1.414l4.95-4.95l-4.95-4.95L4.5 5.64l5.657 5.657a1 1 0 0 1 0 1.414"
/>
</svg>
</button>
</div>
</div>
</section>
<section
id="contact"
class="relative w-full h-full bg-slate-900 text-white bg-[url('./img/Pedra-Azul-4.jpeg')] bg-no-repeat bg-cover bg-center"
>
<div
class="w-full h-full flex flex-col items-center bg-gradient-to-t from-transparent to-slate-900 py-52"
>
<div class="flex flex-col items-center gap-4">
<span>VAMOS LÁ</span>
<h1
class="text-lg md:text-xl lg:text-2xl xl:text-4xl font-semibold"
>
PREPARADO? RESERVE SUA VISITA!
</h1>
</div>
<div class="w-full flex items-center justify-center mt-20">
<form class="xl:w-2/12 flex flex-col gap-5">
<input
type="text"
placeholder="Seu Nome"
required
class="transition-all appearance-none outline-none focus:outline-white text-slate-900 bg-white w-full py-3 px-5 rounded-lg"
/>
<input
type="text"
placeholder="Seu Telefone"
required
class="transition-all appearance-none outline-none focus:outline-white text-slate-900 bg-white w-full py-3 px-5 rounded-lg"
/>
<button
aria-label="Enviar"
type="submit"
class="text-white text-lg border w-full border-white px-5 py-3 rounded-lg backdrop-blur-sm hover:backdrop-blur-lg transition-all"
>
Enviar
</button>
</form>
</div>
</div>
</section>
<footer
class="w-full md:h-96 flex flex-col md:flex-row gap-12 md:gap-40 justify-between px-10 py-14 bg-slate-900 text-white transition-all"
>
<div>
<img
src="./img/pedra-azul-logo.png"
alt="Logo"
class="size-32 md:size-auto"
/>
</div>
<div class="flex flex-col gap-8 w-full">
<div class="text-2xl">CONTATOS</div>
<div class="flex items-center gap-3 mt-5">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 256 256"
class="size-4 md:size-7"
>
<path
fill="currentColor"
d="M144.27 45.93a8 8 0 0 1 9.8-5.66a86.22 86.22 0 0 1 61.66 61.66a8 8 0 0 1-5.66 9.8a8.2 8.2 0 0 1-2.07.27a8 8 0 0 1-7.73-5.94a70.35 70.35 0 0 0-50.33-50.33a8 8 0 0 1-5.67-9.8m-2.33 41.8c13.79 3.68 22.65 12.54 26.33 26.33A8 8 0 0 0 176 120a8.2 8.2 0 0 0 2.07-.27a8 8 0 0 0 5.66-9.8c-5.12-19.16-18.5-32.54-37.66-37.66a8 8 0 1 0-4.13 15.46m81.94 95.35A56.26 56.26 0 0 1 168 232C88.6 232 24 167.4 24 88a56.26 56.26 0 0 1 48.92-55.88a16 16 0 0 1 16.62 9.52l21.12 47.15v.12a16 16 0 0 1-1.27 15.09c-.18.27-.37.52-.57.77L88 129.45c7.49 15.22 23.41 31 38.83 38.51l24.34-20.71a8 8 0 0 1 .75-.56a16 16 0 0 1 15.17-1.4l.13.06l47.11 21.11a16 16 0 0 1 9.55 16.62m-15.88-2h-.11l-47-21.05l-24.35 20.71a8 8 0 0 1-.74.56a16 16 0 0 1-15.75 1.14c-18.73-9.05-37.4-27.58-46.46-46.11a16 16 0 0 1 1-15.7a6 6 0 0 1 .57-.77L96 95.15l-21-47a.6.6 0 0 1 0-.12A40.2 40.2 0 0 0 40 88a128.14 128.14 0 0 0 128 128a40.21 40.21 0 0 0 40-34.93Z"
/>
</svg>
<a href="tel:+5527999900000">+ 55 (27) 99999-0000</a>
</div>
<div class="flex items-center gap-3">
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 512 512"
class="size-5 md:size-7"
>
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="32"
d="M256 48c-79.5 0-144 61.39-144 137c0 87 96 224.87 131.25 272.49a15.77 15.77 0 0 0 25.5 0C304 409.89 400 272.07 400 185c0-75.61-64.5-137-144-137"
/>
<circle
cx="256"
cy="192"
r="48"
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="32"
/>
</svg>
<a
href="https://maps.app.goo.gl/edi1h7dYyc7zJujw8"
target="_blank"
rel="noopener noreferrer"
class="text-sm md:text-auto md:max-w-[22rem]"
>BR 262 - KM 89 - Rota do Lagarto - Pedra Azul - Domingos
Martins/ES</a
>
</div>
<div class="flex items-center gap-7">
<!-- Instagram icone -->
<a
href="https://www.instagram.com/pedraazul.es/"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="size-4 md:size-7"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
color="currentColor"
>
<path
d="M2.5 12c0-4.478 0-6.718 1.391-8.109S7.521 2.5 12 2.5c4.478 0 6.718 0 8.109 1.391S21.5 7.521 21.5 12c0 4.478 0 6.718-1.391 8.109S16.479 21.5 12 21.5c-4.478 0-6.718 0-8.109-1.391S2.5 16.479 2.5 12"
/>
<path
d="M16.5 12a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m1.008-5.5h-.01"
/>
</g>
</svg>
</a>
<!-- Facebook icone -->
<a
href="https://facebook.com/"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="size-4 md:size-7"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
>
<path
d="M21 8v8a5 5 0 0 1-5 5H8a5 5 0 0 1-5-5V8a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5"
/>
<path d="M11 21v-9c0-2.187.5-4 4-4m-6 5h6" />
</g>
</svg>
</a>
<!-- Twitter icone -->
<a
href="https://x.com"
target="_blank"
rel="noopener noreferrer"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
class="size-4 md:size-7"
>
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.5"
color="currentColor"
>
<path
d="M2.5 12c0-4.478 0-6.718 1.391-8.109S7.521 2.5 12.001 2.5c4.478 0 6.717 0 8.108 1.391S21.5 7.521 21.5 12c0 4.478 0 6.718-1.391 8.109S16.479 21.5 12 21.5c-4.478 0-6.717 0-8.109-1.391c-1.39-1.392-1.39-3.63-1.39-8.109"
/>
<path
d="m7 17l4.194-4.193M17 7l-4.193 4.194m0 0L9.777 7H7l4.194 5.807m1.613-1.614L17 17h-2.778l-3.028-4.193"
/>
</g>
</svg>
</a>
</div>
</div>
<div class="flex flex-col gap-8 w-full">
<div class="text-2xl">MENU</div>
<a href="#home">Home</a>
<a href="#about">Sobre</a>
<a href="#what-to-do">O que fazer</a>
<a href="#impressions">Impressões</a>
</div>
</footer>
</div>
<!-- CDN Tailwindcss -->
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>