-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1909 lines (1899 loc) · 154 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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>God of War Ragnarök - Juegos de PS5 y PS4 | PlayStation</title>
<link rel="preload" href="/videos/god-of-war-hero.mp4" as="video" />
<link rel="stylesheet" href="/css/style.css" />
<link rel="canonical" href="https://god-of-war-ragnarok-clone.netlify.app/" />
<script src="/js/nav.js" type="module"></script>
<script src="/js/loading.js" type="module"></script>
<script src="/js/slider.js" type="module"></script>
<script src="/js/parallax.js" type="module"></script>
<script src="/js/modal.js" type="module"></script>
<script src="/js/questions.js" type="module"></script>
<meta name="application-name" content="God of War Ragnarök - Juegos de PS5 y PS4 | PlayStation" />
<meta name="author" content="Jeremy Díaz" />
<meta name="description" content="Pelea para defender a los nueve reinos." />
<meta name="keywords" content="god of war, god of war ragnarok, god of war ps5, god of war playstation 5, god of war ragnarok playstation" />
<meta name="pageType" content="game" />
<meta property="og:locale" content="es_ES" />
<meta property="og:title" content="God of War Ragnarök - Juegos de PS5 y PS4 | PlayStation" />
<meta property="og:description" content="Pelea para defender a los nueve reinos." />
<meta property="og:url" content="https://god-of-war-ragnarok-clone.netlify.app/" />
<meta property="og:site_name" content="god-of-war-ragnarok-clone.netlify.app" />
<meta property="og:type" content="website game" />
</head>
<body class="isevent">
<div class="loading isopen flex">
<svg width="100" height="100" viewBox="0 0 50 50">
<path
d="M5.8,32.1C4.3,33.1,4.8,35,8,35.9c3.3,1.1,6.9,1.4,10.4,0.8c0.2,0,0.4-0.1,0.5-0.1v-3.4l-3.4,1.1c-1.3,0.4-2.6,0.5-3.9,0.2c-1-0.3-0.8-0.9,0.4-1.4l6.9-2.4V27l-9.6,3.3C8.1,30.7,6.9,31.3,5.8,32.1z M29,17.1v9.7c4.1,2,7.3,0,7.3-5.2c0-5.3-1.9-7.7-7.4-9.6C26,11,23,10.1,20,9.5v28.9l7,2.1V16.2c0-1.1,0-1.9,0.8-1.6C28.9,14.9,29,16,29,17.1zM42,29.8c-2.9-1-6-1.4-9-1.1c-1.6,0.1-3.1,0.5-4.5,1l-0.3,0.1v3.9l6.5-2.4c1.3-0.4,2.6-0.5,3.9-0.2c1,0.3,0.8,0.9-0.4,1.4l-10,3.7V40L42,34.9c1-0.4,1.9-0.9,2.7-1.7C45.4,32.2,45.1,30.8,42,29.8z"
fill="var(--color-ps)"
></path>
</svg>
<span class="loading__spinner margin--top"></span>
</div>
<div class="modal flex">
<div class="modal__close">
<button class="modal__close__link link link__tertiary" title="Cerrar">
<svg width="32" height="32" fill="currentColor" viewBox="0 0 16 16">
<path
d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"
/>
</svg>
</button>
</div>
</div>
<header class="header">
<div class="header__sony flex">
<a class="link" title="Sony" href="https://www.sony.com/" target="_blank" rel="noreferrer noopener">
<svg width="75" height="35" viewBox="0 0 500 88.03">
<path
d="M178.13 88C160 88 143.2 82.6 132 72.53a37.85 37.85 0 0 1-12.55-28.59A38.41 38.41 0 0 1 132 15.45C142.4 6 160.8 0 178.13 0c19.17 0 34.52 4.83 46.25 15.47a38.05 38.05 0 0 1 12.38 28.47 39.66 39.66 0 0 1-12.38 28.59C213.45 82.66 196.29 88 178.13 88V76.42c9.61 0 18.53-3.32 24.76-9.52s9.06-13.72 9.06-23c0-8.86-3.11-17.14-9.06-23-6.15-6.05-15.28-9.46-24.76-9.46s-18.65 3.38-24.8 9.46c-5.93 5.87-9 14.18-9 23a32.17 32.17 0 0 0 9 23c6.15 6.13 15.26 9.52 24.8 9.52zM45.75 0c-9.69 0-20.7 1.82-30 6C7.07 9.88 0 16.11 0 26.44A21.18 21.18 0 0 0 5.75 41c2.51 2.32 6.56 6.26 17.14 8.58 4.73 1 14.84 2.61 24.91 3.67s19.83 2 23.83 3.07c3.18.81 8.53 1.91 8.53 7.91s-5.63 7.8-6.61 8.19-7.74 3.49-19.88 3.49A84.54 84.54 0 0 1 30 71.84c-4.53-1.62-9.28-3.75-13.71-9.16A15.73 15.73 0 0 1 13.44 54h-11v30.8h12.22v-4.17a1.74 1.74 0 0 1 2.64-1.5 96.26 96.26 0 0 0 17.88 5.78c6.42 1.34 10.57 2.31 18.55 2.31a79.15 79.15 0 0 0 24.86-3.51 43.39 43.39 0 0 0 14.77-7.29 20.24 20.24 0 0 0 7.91-16.21 22.68 22.68 0 0 0-6.39-15.94A28.13 28.13 0 0 0 87 38.88a58.05 58.05 0 0 0-9.72-3.39C70.94 33.94 56.7 32 49.89 31.32c-7.14-.74-19.53-1.77-24.48-3.3-1.5-.47-4.56-1.92-4.56-5.47 0-2.53 1.4-4.67 4.16-6.4 4.39-2.75 13.25-4.46 22.49-4.46a65.23 65.23 0 0 1 26.06 5.09 28.46 28.46 0 0 1 6.2 3.7 18.64 18.64 0 0 1 6.11 10.22h9.87V3.89h-11V7c0 1-1 2.32-3 1.23C76.78 5.65 62.84.07 45.75 0zM287.24 4.92L341 53.43l-.55-32.66c-.06-4.29-.84-6.08-5.48-6.08h-10.1V4.92h46v9.77H361c-4.72 0-5 1.52-5.08 6.08l.83 62.41H341l-61.93-55.26v39.21c.05 4.27.25 6.28 4.64 6.28h11v9.77h-45.09v-9.77h10.56c3.94 0 3.78-3.76 3.78-6.5V21.14c0-3-.42-6.44-6.6-6.44h-8.56V4.92zM423.35 73.39a21.82 21.82 0 0 0 2.72-.17 3.37 3.37 0 0 0 2.12-1.88 10.94 10.94 0 0 0 .21-2.11V53.78c0-.52 0-.53-.66-1.35s-28.16-32-29.41-33.4c-1.56-1.7-4.3-4.33-8.47-4.33h-9.55V4.92h53.9v9.76h-6.5c-1.5 0-2.5 1.43-1.22 3 0 0 18.14 21.7 18.31 21.93s.32.28.55.07 18.59-21.8 18.73-22a1.87 1.87 0 0 0-1.6-3h-6.67V4.92H500v9.78h-9.87c-3.58 0-5 .66-7.73 3.7l-29.75 33.94a2.1 2.1 0 0 0-.36 1.44v15.44a11 11 0 0 0 .22 2.11 3.33 3.33 0 0 0 2.11 1.88 19.77 19.77 0 0 0 2.7.17h10.09v9.78h-53.62v-9.78z"
/>
</svg>
</a>
</div>
<div class="header__ps">
<nav class="header__ps__nav ps__nav flex">
<div>
<div class="ps__nav__responsive responsive">
<button class="responsive__button link" title="Abrir el menú">
<svg viewBox="0 0 80 40" width="20" height="20">
<rect class="responsive__rect responsive__rect--top" fill="currentColor" width="90" height="10"></rect>
<rect class="responsive__rect responsive__rect--bottom" fill="currentColor" y="30" width="90" height="10"></rect>
</svg>
</button>
</div>
<div>
<ul class="ps__nav__shared nav__shared gap flex">
<li class="nav__shared__li">
<a class="link" title="PlayStation" href="https://www.playstation.com" target="_blank" rel="noreferrer noopener">
<svg width="35" height="35" viewBox="0 0 50 50">
<path
d="M5.8,32.1C4.3,33.1,4.8,35,8,35.9c3.3,1.1,6.9,1.4,10.4,0.8c0.2,0,0.4-0.1,0.5-0.1v-3.4l-3.4,1.1c-1.3,0.4-2.6,0.5-3.9,0.2c-1-0.3-0.8-0.9,0.4-1.4l6.9-2.4V27l-9.6,3.3C8.1,30.7,6.9,31.3,5.8,32.1z M29,17.1v9.7c4.1,2,7.3,0,7.3-5.2c0-5.3-1.9-7.7-7.4-9.6C26,11,23,10.1,20,9.5v28.9l7,2.1V16.2c0-1.1,0-1.9,0.8-1.6C28.9,14.9,29,16,29,17.1zM42,29.8c-2.9-1-6-1.4-9-1.1c-1.6,0.1-3.1,0.5-4.5,1l-0.3,0.1v3.9l6.5-2.4c1.3-0.4,2.6-0.5,3.9-0.2c1,0.3,0.8,0.9-0.4,1.4l-10,3.7V40L42,34.9c1-0.4,1.9-0.9,2.7-1.7C45.4,32.2,45.1,30.8,42,29.8z"
fill="var(--color-ps)"
></path>
</svg>
</a>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Juegos">
Juegos
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Hardware">
Hardware
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Servicios">
Servicios
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Noticias">
Noticias
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Tienda">
Tienda
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
<li class="nav__shared__li">
<button class="link nav__shared__button" title="Asistencia">
Asistencia
<svg class="nav__shared__arrow" width="8" height="8" viewBox="0 0 128 128">
<path
d="M 90 24.25 c 0 -0.896 -0.342 -1.792 -1.025 -2.475 c -1.366 -1.367 -3.583 -1.367 -4.949 0 L 45 60.8 L 5.975 21.775 c -1.367 -1.367 -3.583 -1.367 -4.95 0 c -1.366 1.367 -1.366 3.583 0 4.95 l 41.5 41.5 c 1.366 1.367 3.583 1.367 4.949 0 l 41.5 -41.5 C 89.658 26.042 90 25.146 90 24.25 z"
fill="currentColor"
/>
</svg>
</button>
</li>
</ul>
</div>
</div>
<div>
<ul class="ps__nav__search nav__search gap flex">
<li>
<button class="link link__ps" title="Iniciar sesión">Iniciar sesión</button>
</li>
<li>
<button class="nav__search__button link link__ps" title="Búsqueda">
<svg width="16" height="16" viewBox="0 0 50 50">
<path
d="M8,20.913 C8,14.344 13.344,9 19.913,9 C26.482,9 31.827,14.344 31.827,20.913 C31.827,27.482 26.482,32.827 19.913,32.827 C13.344,32.827 8,27.482 8,20.913 M45.112,43.585 L32.346,30.82 C34.518,28.099 35.827,24.658 35.827,20.913 C35.827,12.139 28.688,5 19.913,5 C11.139,5 4,12.139 4,20.913 C4,29.688 11.139,36.827 19.913,36.827 C23.503,36.827 26.808,35.618 29.474,33.604 L42.284,46.413 C42.674,46.804 43.186,46.999 43.698,46.999 C44.209,46.999 44.721,46.804 45.112,46.413 C45.502,46.023 45.698,45.511 45.698,44.999 C45.698,44.488 45.502,43.976 45.112,43.585"
fill="currentColor"
></path>
</svg>
</button>
</li>
</ul>
</div>
<div class="ps__nav__search__page search__page">
<form class="search__page__form flex" role="search">
<button class="search__page__input search__page__close link" title="Cerrar" type="button">
<svg width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
<path
d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"
/>
</svg>
</button>
<input class="search__page__input" placeholder="Buscar en PlayStation.com" type="text" name="search" required />
<input class="search__page__input search__page__submit link" type="submit" title="Buscar" />
</form>
</div>
</nav>
</div>
<div class="header__game flex">
<div>
<a class="link" title="God of War Ragnarok" href="/">
<img class="header__game__logo" src="/images/header/god-of-war-ragnarok-logo.webp" alt="Logo de God of War Ragnarok" loading="lazy" decoding="async" />
</a>
</div>
<div>
<a class="link link__game" title="Comprar ahora" href="/#buy">Comprar ahora</a>
</div>
</div>
</header>
<main class="main">
<section class="main__hero hero">
<article class="hero__home home margin--top center">
<div class="hero__video__content">
<video class="hero__video" src="/videos/hero/god-of-war-hero.mp4" autoplay loop muted></video>
</div>
<header class="home__header margin--top">
<h1 class="title">
<span class="home__title__serie">God of War</span>
<span class="home__title__ragnarok salient">Ragnarök</span>
</h1>
<p class="margin--top bold">Sony Interactive Entertainment</p>
</header>
<section class="home__middle margin--top">
<p class="home__middle__available">
Disponible para <span class="tag">PS5</span>
<span class="tag">PS4</span>
</p>
<h2 class="home__middle__price margin--top">US$69.99</h2>
<div class="gap margin--top flex">
<button title="Agregar al carrito" class="link link__game">Agregar al carrito</button>
<button title="Agregar a los favoritos" class="link link__tertiary">
<svg width="14" height="14" fill="currentColor" viewBox="0 0 16 16">
<path
d="m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01L8 2.748zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143c.06.055.119.112.176.171a3.12 3.12 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15z"
/>
</svg>
</button>
</div>
<div class="flex gap margin--top">
<div>
<span class="bold">Disponible 09/11/2022</span>
<p class="margin--top">
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z"
/>
</svg>
Juego offline activado
</p>
<p>
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path
d="M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z"
/>
</svg>
1 jugador
</p>
<p>
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path
d="M11.5 6.027a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm-6.5-3h1v1h1v1h-1v1h-1v-1h-1v-1h1v-1z"
/>
<path
d="M3.051 3.26a.5.5 0 0 1 .354-.613l1.932-.518a.5.5 0 0 1 .62.39c.655-.079 1.35-.117 2.043-.117.72 0 1.443.041 2.12.126a.5.5 0 0 1 .622-.399l1.932.518a.5.5 0 0 1 .306.729c.14.09.266.19.373.297.408.408.78 1.05 1.095 1.772.32.733.599 1.591.805 2.466.206.875.34 1.78.364 2.606.024.816-.059 1.602-.328 2.21a1.42 1.42 0 0 1-1.445.83c-.636-.067-1.115-.394-1.513-.773-.245-.232-.496-.526-.739-.808-.126-.148-.25-.292-.368-.423-.728-.804-1.597-1.527-3.224-1.527-1.627 0-2.496.723-3.224 1.527-.119.131-.242.275-.368.423-.243.282-.494.575-.739.808-.398.38-.877.706-1.513.773a1.42 1.42 0 0 1-1.445-.83c-.27-.608-.352-1.395-.329-2.21.024-.826.16-1.73.365-2.606.206-.875.486-1.733.805-2.466.315-.722.687-1.364 1.094-1.772a2.34 2.34 0 0 1 .433-.335.504.504 0 0 1-.028-.079zm2.036.412c-.877.185-1.469.443-1.733.708-.276.276-.587.783-.885 1.465a13.748 13.748 0 0 0-.748 2.295 12.351 12.351 0 0 0-.339 2.406c-.022.755.062 1.368.243 1.776a.42.42 0 0 0 .426.24c.327-.034.61-.199.929-.502.212-.202.4-.423.615-.674.133-.156.276-.323.44-.504C4.861 9.969 5.978 9.027 8 9.027s3.139.942 3.965 1.855c.164.181.307.348.44.504.214.251.403.472.615.674.318.303.601.468.929.503a.42.42 0 0 0 .426-.241c.18-.408.265-1.02.243-1.776a12.354 12.354 0 0 0-.339-2.406 13.753 13.753 0 0 0-.748-2.295c-.298-.682-.61-1.19-.885-1.465-.264-.265-.856-.523-1.733-.708-.85-.179-1.877-.27-2.913-.27-1.036 0-2.063.091-2.913.27z"
/>
</svg>
Compatible con el Uso a distancia
</p>
</div>
<div>
<span class="bold">Versión para PS5</span>
<p class="margin--top">
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path
d="m7.788 2.34-.799 1.278A.25.25 0 0 0 7.201 4h1.598a.25.25 0 0 0 .212-.382l-.799-1.279a.25.25 0 0 0-.424 0Zm0 11.32-.799-1.277A.25.25 0 0 1 7.201 12h1.598a.25.25 0 0 1 .212.383l-.799 1.278a.25.25 0 0 1-.424 0ZM3.617 9.01 2.34 8.213a.25.25 0 0 1 0-.424l1.278-.799A.25.25 0 0 1 4 7.201V8.8a.25.25 0 0 1-.383.212Zm10.043-.798-1.277.799A.25.25 0 0 1 12 8.799V7.2a.25.25 0 0 1 .383-.212l1.278.799a.25.25 0 0 1 0 .424Z"
/>
<path
d="M6.5 0A1.5 1.5 0 0 0 5 1.5v3a.5.5 0 0 1-.5.5h-3A1.5 1.5 0 0 0 0 6.5v3A1.5 1.5 0 0 0 1.5 11h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 6.5 16h3a1.5 1.5 0 0 0 1.5-1.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 16 9.5v-3A1.5 1.5 0 0 0 14.5 5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 9.5 0h-3ZM6 1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 11.5 6h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a1.5 1.5 0 0 0-1.5 1.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 4.5 10h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 6 4.5v-3Z"
/>
</svg>
Se requiere la función de vibración
</p>
<p>
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" />
</svg>
Se requiere el efecto de gatillo
</p>
<p>
<svg width="16" height="16" fill="currentColor" class="bi bi-lightbulb" viewBox="0 0 16 16">
<path
d="M2 6a6 6 0 1 1 10.174 4.31c-.203.196-.359.4-.453.619l-.762 1.769A.5.5 0 0 1 10.5 13a.5.5 0 0 1 0 1 .5.5 0 0 1 0 1l-.224.447a1 1 0 0 1-.894.553H6.618a1 1 0 0 1-.894-.553L5.5 15a.5.5 0 0 1 0-1 .5.5 0 0 1 0-1 .5.5 0 0 1-.46-.302l-.761-1.77a1.964 1.964 0 0 0-.453-.618A5.984 5.984 0 0 1 2 6zm6-5a5 5 0 0 0-3.479 8.592c.263.254.514.564.676.941L5.83 12h4.342l.632-1.467c.162-.377.413-.687.676-.941A5 5 0 0 0 8 1z"
/>
</svg>
Compatible con Ayuda de juego
</p>
</div>
</div>
</section>
<footer class="home__footer flex margin--top">
<a title="Mature 17+" class="home__footer__mature link gap flex" href="https://www.esrb.org/ratings-guide/es/" target="_blank" rel="noreferrer noopener">
<figure>
<img src="/images/hero/m17.webp" alt="Mature 17+ years" loading="lazy" decoding="async" />
</figure>
Derramamiento de sangre, Lenguaje fuerte, Violencia intensa
</a>
</footer>
</article>
<div class="hero__gallery margin--top">
<div class="hero__gallery__content hero__gallery__arrow--first flex">
<button class="hero__gallery__arrow hero__gallery__arrow--left link">
<svg fill="currentColor" width="24" height="24" style="transform: rotate(180deg)">
<path d="M7.293 4.707 14.586 12l-7.293 7.293 1.414 1.414L17.414 12 8.707 3.293 7.293 4.707z" />
</svg>
</button>
<ul class="hero__gallery__list flex gap">
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
<li>
<a
class="hero__gallery__link link flex margin--top"
title="Ve el video"
href="https://www.youtube.com/watch?v=tQH0YK1rGVc"
target="_blank"
rel="noreferrer noopener"
tabindex="-1"
>
<div class="hero__gallery__icon">
<svg width="35" height="35" viewBox="0 0 64 64">
<path
fill="#000"
fill-opacity=".2"
d="M32 11.007c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994"
></path>
<path
d="M32 8.72c12.836 0 23.28 10.443 23.28 23.28 0 12.837-10.444 23.28-23.28 23.28C19.161 55.28 8.72 44.837 8.72 32 8.72 19.164 19.161 8.72 32 8.72zm0 2.287c-11.576 0-20.992 9.416-20.992 20.994 0 11.575 9.416 20.992 20.992 20.992 11.574 0 20.992-9.417 20.992-20.992 0-11.578-9.418-20.994-20.992-20.994zm-7.425 12.879l19.134 8.129-19.134 8.126V23.886z"
></path>
</svg>
</div>
<figure>
<img src="/images/hero/trailer.webp" alt="Trailer God of War Ragnarok" loading="lazy" decoding="async" />
</figure>
</a>
</li>
</ul>
<button class="hero__gallery__arrow hero__gallery__arrow--right link">
<svg fill="currentColor" width="24" height="24">
<path d="M7.293 4.707 14.586 12l-7.293 7.293 1.414 1.414L17.414 12 8.707 3.293 7.293 4.707z" />
</svg>
</button>
</div>
<div>
<ul class="hero__gallery__pagination margin--top center flex gap">
<li>
<button class="hero__gallery__next hero__gallery__next--active link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
<li>
<button class="hero__gallery__next link"></button>
</li>
</ul>
</div>
</div>
</section>
<section class="main__about about">
<div class="about__images">
<figure class="about__images__bfg">
<img class="about__image__bg" src="/images/section2/section2-bg.jpg" alt="Snow landscape" loading="lazy" decoding="async" />
<img class="about__image__fg" src="/images/section2/section2-fg.webp" alt="Smoke in landscape" loading="lazy" decoding="async" />
<img class="about__image__fg" src="/images/section2/section2-snow.webp" alt="Snow" loading="lazy" decoding="async" />
</figure>
<figure class="about__images__parallax">
<img class="about__image__fg" src="/images/section2/section2-snow.webp" alt="Snow" loading="lazy" decoding="async" />
<img class="about__image__parallax about__image__parallax--kratos" src="/images/section2/section2-kratos.webp" alt="Kratos" loading="lazy" decoding="async" />
<img class="about__image__parallax about__image__parallax--sled" src="/images/section2/section2-sled.webp" alt="Kratos sled" loading="lazy" decoding="async" />
<img class="about__image__parallax about__image__parallax--atreus" src="/images/section2/section2-atreus.webp" alt="Atreus" loading="lazy" decoding="async" />
<img class="about__image__parallax about__image__parallax--freya" src="/images/section2/section2-freya.webp" alt="Freya" loading="lazy" decoding="async" />
</figure>
</div>
<div class="about__game center margin--top section">
<h2 class="about__game__title title">
Embárcate en un épico y cordial viaje mientras
<span class="about__game__salient salient">Kratos</span>
y
<span class="about__game__salient salient">Atreus</span>
luchan por aferrarse y soltar
</h2>
<h3 class="about__game__abstract margin--top">
Desde Santa Monica Studio llega la secuela del aclamado por la crítica God of War (2018). Fimbulvetr ya está en camino. Kratos y Atreus deben viajar a cada uno de los nueve
reinos en búsqueda de respuestas, mientras que las fuerzas asgardianas se preparan para una batalla profetizada que terminará con el mundo. En el camino explorarán paisajes
increíbles y míticos, y se enfrentarán a aterradores enemigos en la forma de dioses nórdicos y monstruos. La amenaza del Ragnarök cada vez está más cerca. Kratos y Atreus deben
elegir entre su propia seguridad y la seguridad de los reinos.
</h3>
</div>
</section>
<section class="main__features features">
<figure class="features__image">
<img class="features__bg" src="/images/section3/section3-bg.webp" alt="Background God of War" loading="lazy" decoding="async" />
</figure>
<div class="center section">
<h2 class="features__title title margin--top">LA SAGA <span class="salient">NÓRDICA</span> CONTINÚA</h2>
<div class="features__cards flex margin--top gap">
<article class="features__card margin--top">
<img
class="features__card__image"
src="/images/section3/section3-feature.webp"
alt="Captura de pantalla de kratos y atreus en god of war ragnarok"
loading="lazy"
decoding="async"
/>
<h3 class="margin--top bold">Un futuro sin horizontes</h3>
<p class="margin--top">
Atreus busca conocimiento que lo ayude a entender la profecía de "Loki" y establecer su rol en Ragnarök. Kratos debe decidir entre quedarse atado al miedo de repetir
sus errores o librarse del pasado para ser el padre que Atreus necesita.
</p>
</article>
<article class="features__card margin--top">
<img
class="features__card__image"
src="/images/section3/section3-feature2.webp"
alt="captura de pantalla de instrumentos de guerra de god of war ragnarok"
loading="lazy"
decoding="async"
/>
<h3 class="margin--top bold">Instrumentos de guerra</h3>
<p class="margin--top">
El hacha Leviatán, las Espadas del Caos y el Escudo de guardián regresan junto con una amplia variedad de nuevas habilidades para Kratos y Atreus. Las habilidades
espartanas mortales de Kratos se pondrán a prueba como nunca antes, mientras pelea contra dioses y monstruos en los nueve reinos para proteger a su familia.
</p>
</article>
<article class="features__card margin--top">
<img
class="features__card__image"
src="/images/section3/section3-feature3.webp"
alt="Captura de pantalla de los inmensos reinos de god of war ragnarok"
loading="lazy"
decoding="async"
/>
<h3 class="margin--top bold">Explora inmensos reinos</h3>
<p class="margin--top">
Viaja a través de peligrosos e increíbles paisajes a la vez que te enfrentas a una variedad de criaturas enemigas, monstruos y dioses nórdicos mientras que Kratos y
Atreus buscan respuestas.
</p>
</article>
</div>
</div>
</section>
<section class="main__sell sell">
<div class="center">
<p>DISPONIBLE EN PLAYSTATION STORE</p>
<h2 class="title"><span class="salient">Comprar</span> God of War Ragnarök</h2>
<h2 class="margin--top" id="buy">Ediciones</h2>