oraculo-ui 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -32,16 +32,21 @@ var index_exports = {};
32
32
  __export(index_exports, {
33
33
  OraculoButton: () => OraculoButton,
34
34
  OraculoCarousel: () => OraculoCarousel_default,
35
+ OraculoCarouselDots: () => OraculoCarouselDots_default,
36
+ OraculoClubOlimpoVisual: () => OraculoClubOlimpoVisual_default,
35
37
  OraculoGameCard: () => OraculoGameCard_default,
36
38
  OraculoGameRankCard: () => OraculoGameRankCard,
37
39
  OraculoGameSlide: () => OraculoGameSlide_default,
38
40
  OraculoLiveCasinoCard: () => OraculoLiveCasinoCard_default,
41
+ OraculoSeccionBonoBienvenida: () => OraculoSeccionBonoBienvenida_default,
39
42
  OraculoSeccionCasino: () => OraculoSeccionCasino_default,
40
43
  OraculoSeccionCasinoEnVivo: () => OraculoSeccionCasinoEnVivo_default,
44
+ OraculoSeccionClubOlimpo: () => OraculoSeccionClubOlimpo_default,
41
45
  OraculoSeccionDestacados: () => OraculoSeccionDestacados,
42
46
  OraculoSeccionTopJuegos: () => OraculoSeccionTopJuegos,
43
47
  OraculoSeccionVirtuales: () => OraculoSeccionVirtuales_default,
44
- OraculoSectionTitle: () => OraculoSectionTitle
48
+ OraculoSectionTitle: () => OraculoSectionTitle,
49
+ OraculoWelcomeBanner: () => OraculoWelcomeBanner_default
45
50
  });
46
51
  module.exports = __toCommonJS(index_exports);
47
52
 
@@ -142,10 +147,34 @@ function OraculoSectionTitle({
142
147
  ] });
143
148
  }
144
149
 
150
+ // src/atoms/OraculoCarouselDots/OraculoCarouselDots.tsx
151
+ var import_jsx_runtime3 = require("react/jsx-runtime");
152
+ var OraculoCarouselDots = ({
153
+ total,
154
+ active,
155
+ onSelect,
156
+ className = ""
157
+ }) => {
158
+ if (total <= 1) return null;
159
+ const rootClass = ["orc-dots", className].filter(Boolean).join(" ");
160
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: rootClass, role: "tablist", children: Array.from({ length: total }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("span", { className: "orc-dots__cell", children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
161
+ "button",
162
+ {
163
+ type: "button",
164
+ role: "tab",
165
+ "aria-selected": i === active,
166
+ "aria-label": `Ir al slide ${i + 1}`,
167
+ className: "orc-dots__dot" + (i === active ? " orc-dots__dot--active" : ""),
168
+ onClick: () => onSelect == null ? void 0 : onSelect(i)
169
+ }
170
+ ) }, i)) });
171
+ };
172
+ var OraculoCarouselDots_default = OraculoCarouselDots;
173
+
145
174
  // src/molecules/OraculoCarousel/OraculoCarousel.tsx
146
175
  var import_react = require("react");
147
176
  var import_react_splide = require("@splidejs/react-splide");
148
- var import_jsx_runtime3 = require("react/jsx-runtime");
177
+ var import_jsx_runtime4 = require("react/jsx-runtime");
149
178
  var Splide = import_react_splide.Splide;
150
179
  var SplideSlide = import_react_splide.SplideSlide;
151
180
  var OraculoCarousel = (0, import_react.forwardRef)(
@@ -194,7 +223,7 @@ var OraculoCarousel = (0, import_react.forwardRef)(
194
223
  },
195
224
  [handleMove]
196
225
  );
197
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className, style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
226
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className, style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
198
227
  Splide,
199
228
  {
200
229
  ref: splideRef,
@@ -216,7 +245,7 @@ var OraculoCarousel = (0, import_react.forwardRef)(
216
245
  onMounted: handleMounted,
217
246
  children: items.map((item, index) => {
218
247
  var _a;
219
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SplideSlide, { children: renderItem(item, index) }, (_a = item.id) != null ? _a : index);
248
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SplideSlide, { children: renderItem(item, index) }, (_a = item.id) != null ? _a : index);
220
249
  })
221
250
  }
222
251
  ) });
@@ -226,7 +255,7 @@ var OraculoCarousel_default = OraculoCarousel;
226
255
 
227
256
  // src/molecules/OraculoGameRankCard/OraculoGameRankCard.tsx
228
257
  var import_Box = __toESM(require("@mui/material/Box"));
229
- var import_jsx_runtime4 = require("react/jsx-runtime");
258
+ var import_jsx_runtime5 = require("react/jsx-runtime");
230
259
  function OraculoGameRankCard({
231
260
  imageUrl,
232
261
  orden = 1,
@@ -252,7 +281,7 @@ function OraculoGameRankCard({
252
281
  xs: Math.round(((_b = (_a = sizes.xs) == null ? void 0 : _a.font) != null ? _b : 64) * 0.28),
253
282
  md: Math.round(((_d = (_c = sizes.md) == null ? void 0 : _c.font) != null ? _d : 64) * 0.28)
254
283
  };
255
- return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
284
+ return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
256
285
  import_Box.default,
257
286
  {
258
287
  onClick,
@@ -274,7 +303,7 @@ function OraculoGameRankCard({
274
303
  "&:hover": { transform: "translateY(-2px)", boxShadow: 8 }
275
304
  },
276
305
  children: [
277
- /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
306
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
278
307
  import_Box.default,
279
308
  {
280
309
  sx: {
@@ -284,7 +313,7 @@ function OraculoGameRankCard({
284
313
  overflow: "hidden"
285
314
  },
286
315
  children: [
287
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
316
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
288
317
  "img",
289
318
  {
290
319
  src: imageUrl,
@@ -298,7 +327,7 @@ function OraculoGameRankCard({
298
327
  }
299
328
  }
300
329
  ),
301
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
330
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
302
331
  import_Box.default,
303
332
  {
304
333
  sx: {
@@ -312,7 +341,7 @@ function OraculoGameRankCard({
312
341
  ]
313
342
  }
314
343
  ),
315
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
344
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
316
345
  import_Box.default,
317
346
  {
318
347
  component: "span",
@@ -345,7 +374,7 @@ function OraculoGameRankCard({
345
374
  // src/molecules/OraculoLiveCasinoCard/OraculoLiveCasinoCard.tsx
346
375
  var import_Box2 = __toESM(require("@mui/material/Box"));
347
376
  var import_Typography = __toESM(require("@mui/material/Typography"));
348
- var import_jsx_runtime5 = require("react/jsx-runtime");
377
+ var import_jsx_runtime6 = require("react/jsx-runtime");
349
378
  var OraculoLiveCasinoCard = ({
350
379
  logo,
351
380
  provider,
@@ -354,7 +383,7 @@ var OraculoLiveCasinoCard = ({
354
383
  onClick
355
384
  }) => {
356
385
  var _a;
357
- return /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(
386
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsxs)(
358
387
  import_Box2.default,
359
388
  {
360
389
  onClick,
@@ -378,7 +407,7 @@ var OraculoLiveCasinoCard = ({
378
407
  }
379
408
  },
380
409
  children: [
381
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
410
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
382
411
  import_Box2.default,
383
412
  {
384
413
  component: "img",
@@ -394,7 +423,7 @@ var OraculoLiveCasinoCard = ({
394
423
  }
395
424
  }
396
425
  ),
397
- /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
426
+ /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
398
427
  import_Box2.default,
399
428
  {
400
429
  className: "orc-live-provider-label",
@@ -408,7 +437,7 @@ var OraculoLiveCasinoCard = ({
408
437
  transition: "opacity .25s ease",
409
438
  pointerEvents: "none"
410
439
  },
411
- children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
440
+ children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
412
441
  import_Typography.default,
413
442
  {
414
443
  sx: {
@@ -430,14 +459,14 @@ var OraculoLiveCasinoCard_default = OraculoLiveCasinoCard;
430
459
 
431
460
  // src/molecules/OraculoGameCard/OraculoGameCard.tsx
432
461
  var import_Box3 = __toESM(require("@mui/material/Box"));
433
- var import_jsx_runtime6 = require("react/jsx-runtime");
462
+ var import_jsx_runtime7 = require("react/jsx-runtime");
434
463
  var OraculoGameCard = ({
435
464
  imageUrl,
436
465
  onClick,
437
466
  size = "sm"
438
467
  }) => {
439
468
  const dim = size === "lg" ? { w: 280, h: 352 } : { w: 152, h: 168 };
440
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
469
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
441
470
  import_Box3.default,
442
471
  {
443
472
  onClick,
@@ -457,7 +486,7 @@ var OraculoGameCard = ({
457
486
  },
458
487
  opacity: 1
459
488
  },
460
- children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
489
+ children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
461
490
  "img",
462
491
  {
463
492
  src: imageUrl,
@@ -479,7 +508,7 @@ var OraculoGameCard_default = OraculoGameCard;
479
508
 
480
509
  // src/molecules/OraculoGameSlide/OraculoGameSlide.tsx
481
510
  var import_Box4 = __toESM(require("@mui/material/Box"));
482
- var import_jsx_runtime7 = require("react/jsx-runtime");
511
+ var import_jsx_runtime8 = require("react/jsx-runtime");
483
512
  var GAP = 12;
484
513
  var OraculoGameSlide = ({
485
514
  items,
@@ -489,7 +518,7 @@ var OraculoGameSlide = ({
489
518
  if (layout === "mosaic") {
490
519
  const big = items[0];
491
520
  const smalls = items.slice(1, 5);
492
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
521
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
493
522
  import_Box4.default,
494
523
  {
495
524
  sx: {
@@ -513,7 +542,7 @@ var OraculoGameSlide = ({
513
542
  justifyItems: "stretch"
514
543
  },
515
544
  children: [
516
- big && /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
545
+ big && /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
517
546
  import_Box4.default,
518
547
  {
519
548
  sx: {
@@ -524,7 +553,7 @@ var OraculoGameSlide = ({
524
553
  borderRadius: 2,
525
554
  "& > *": { width: "100%", height: "100%" }
526
555
  },
527
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
556
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
528
557
  OraculoGameCard_default,
529
558
  {
530
559
  imageUrl: big.imageUrl,
@@ -534,7 +563,7 @@ var OraculoGameSlide = ({
534
563
  )
535
564
  }
536
565
  ),
537
- smalls.map((it) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
566
+ smalls.map((it) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
538
567
  import_Box4.default,
539
568
  {
540
569
  sx: {
@@ -544,7 +573,7 @@ var OraculoGameSlide = ({
544
573
  borderRadius: 2,
545
574
  "& > *": { width: "100%", height: "100%" }
546
575
  },
547
- children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
576
+ children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
548
577
  OraculoGameCard_default,
549
578
  {
550
579
  imageUrl: it.imageUrl,
@@ -559,7 +588,7 @@ var OraculoGameSlide = ({
559
588
  }
560
589
  );
561
590
  }
562
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
591
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
563
592
  import_Box4.default,
564
593
  {
565
594
  sx: {
@@ -579,7 +608,7 @@ var OraculoGameSlide = ({
579
608
  "& > *": { width: "100%", height: "100%" }
580
609
  }
581
610
  },
582
- children: items.map((it) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_Box4.default, { children: /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
611
+ children: items.map((it) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_Box4.default, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
583
612
  OraculoGameCard_default,
584
613
  {
585
614
  imageUrl: it.imageUrl,
@@ -592,6 +621,216 @@ var OraculoGameSlide = ({
592
621
  };
593
622
  var OraculoGameSlide_default = OraculoGameSlide;
594
623
 
624
+ // src/molecules/OraculoWelcomeBanner/OraculoWelcomeBanner.tsx
625
+ var import_Box5 = __toESM(require("@mui/material/Box"));
626
+ var import_Typography2 = __toESM(require("@mui/material/Typography"));
627
+ var import_jsx_runtime9 = require("react/jsx-runtime");
628
+ var OraculoWelcomeBanner = ({
629
+ title,
630
+ amount,
631
+ subtitle,
632
+ buttonText,
633
+ onButtonClick,
634
+ backgroundImage,
635
+ alt,
636
+ className = "",
637
+ variant = "small"
638
+ }) => {
639
+ const symbol = amount ? amount.slice(0, 2) : "";
640
+ const value = amount ? amount.slice(2) : "";
641
+ const isLarge = variant === "large";
642
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
643
+ import_Box5.default,
644
+ {
645
+ className,
646
+ sx: {
647
+ position: "relative",
648
+ width: "100%",
649
+ maxWidth: {
650
+ xs: 328,
651
+ lg: isLarge ? 618 : 456
652
+ },
653
+ mx: "auto"
654
+ },
655
+ children: [
656
+ backgroundImage && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
657
+ import_Box5.default,
658
+ {
659
+ sx: {
660
+ position: "relative",
661
+ width: "100%",
662
+ aspectRatio: {
663
+ xs: "328 / 188",
664
+ lg: isLarge ? "618 / 346" : "456 / 272"
665
+ },
666
+ borderRadius: "14px",
667
+ overflow: "hidden"
668
+ },
669
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
670
+ import_Box5.default,
671
+ {
672
+ component: "img",
673
+ src: backgroundImage,
674
+ alt: alt != null ? alt : "Fondo promocional",
675
+ sx: {
676
+ width: "100%",
677
+ height: "100%",
678
+ objectFit: "cover",
679
+ objectPosition: {
680
+ xs: "50% 0%",
681
+ lg: "45% 0%"
682
+ },
683
+ display: "block"
684
+ }
685
+ }
686
+ )
687
+ }
688
+ ),
689
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
690
+ import_Box5.default,
691
+ {
692
+ sx: {
693
+ position: "absolute",
694
+ inset: 0,
695
+ display: "flex",
696
+ alignItems: "center",
697
+ justifyContent: "flex-end",
698
+ color: "#e7f8ff",
699
+ textAlign: "center",
700
+ pl: "14%",
701
+ pr: { xs: "14%", lg: "15%" }
702
+ },
703
+ children: /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
704
+ import_Box5.default,
705
+ {
706
+ sx: {
707
+ maxWidth: "60%",
708
+ display: "flex",
709
+ flexDirection: "column",
710
+ alignItems: "center"
711
+ },
712
+ children: [
713
+ title && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
714
+ import_Typography2.default,
715
+ {
716
+ sx: {
717
+ fontSize: { xs: 12, lg: 20 },
718
+ fontWeight: 400,
719
+ color: "#e7f8ff"
720
+ },
721
+ children: title
722
+ }
723
+ ),
724
+ amount && /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(
725
+ import_Box5.default,
726
+ {
727
+ component: "p",
728
+ sx: {
729
+ lineHeight: { xs: 0.9, lg: 0.87 },
730
+ m: "4px 0",
731
+ background: "linear-gradient(175deg, #EDC421 -12.56%, #FFFABF 17.99%, #EDC421 49.74%)",
732
+ WebkitBackgroundClip: "text",
733
+ WebkitTextFillColor: "transparent",
734
+ WebkitTextStroke: "0.5px #fff8c1",
735
+ filter: "drop-shadow(0px 4px 0px #8D4406) drop-shadow(0px 4px 4px rgba(28, 28, 28, 0.4))",
736
+ display: "flex",
737
+ alignItems: "baseline",
738
+ justifyContent: "center"
739
+ },
740
+ children: [
741
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
742
+ import_Box5.default,
743
+ {
744
+ component: "span",
745
+ sx: { fontSize: { xs: 35, lg: 48 }, mr: 0.5 },
746
+ children: symbol
747
+ }
748
+ ),
749
+ /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
750
+ import_Box5.default,
751
+ {
752
+ component: "span",
753
+ sx: { fontSize: { xs: 52, lg: 77 } },
754
+ children: value
755
+ }
756
+ )
757
+ ]
758
+ }
759
+ ),
760
+ subtitle && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
761
+ import_Typography2.default,
762
+ {
763
+ sx: {
764
+ pb: "20px",
765
+ fontSize: 14,
766
+ fontWeight: 600,
767
+ color: "#e7f8ff"
768
+ },
769
+ children: subtitle
770
+ }
771
+ ),
772
+ buttonText && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(OraculoButton, { onClick: onButtonClick, children: buttonText })
773
+ ]
774
+ }
775
+ )
776
+ }
777
+ )
778
+ ]
779
+ }
780
+ );
781
+ };
782
+ var OraculoWelcomeBanner_default = OraculoWelcomeBanner;
783
+
784
+ // src/molecules/OraculoClubOlimpoVisual/OraculoClubOlimpoVisual.tsx
785
+ var import_jsx_runtime10 = require("react/jsx-runtime");
786
+ var OraculoClubOlimpoVisual = ({
787
+ text,
788
+ buttonLabel = "Conoce m\xE1s",
789
+ onClick,
790
+ imgAlt = "Club Olimpo",
791
+ imgSrcMobile,
792
+ imgSrcDesktopBg,
793
+ imgSrcDesktopLogo
794
+ }) => {
795
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(import_jsx_runtime10.Fragment, { children: [
796
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "orc-co-bgMobile", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
797
+ "img",
798
+ {
799
+ src: imgSrcMobile,
800
+ alt: imgAlt,
801
+ className: "orc-co-bgMobileImg"
802
+ }
803
+ ) }),
804
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "orc-co-bgDesktop", children: [
805
+ imgSrcDesktopBg && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "orc-co-fillHost", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
806
+ "img",
807
+ {
808
+ src: imgSrcDesktopBg,
809
+ alt: `${imgAlt} fondo`,
810
+ className: "orc-co-bgDesktopImg"
811
+ }
812
+ ) }),
813
+ imgSrcDesktopLogo && /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", { className: "orc-co-logo", children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
814
+ "img",
815
+ {
816
+ src: imgSrcDesktopLogo,
817
+ alt: `${imgAlt} logo`,
818
+ className: "orc-co-logoImg"
819
+ }
820
+ ) }),
821
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "orc-co-desktopContent", children: [
822
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "orc-co-captionDesktop", children: text }),
823
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(OraculoButton, { onClick, variant: "primary", size: "md", children: buttonLabel })
824
+ ] })
825
+ ] }),
826
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("div", { className: "orc-co-bottom", children: [
827
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("p", { className: "orc-co-caption", children: text }),
828
+ /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(OraculoButton, { onClick, variant: "primary", size: "md", children: buttonLabel })
829
+ ] })
830
+ ] });
831
+ };
832
+ var OraculoClubOlimpoVisual_default = OraculoClubOlimpoVisual;
833
+
595
834
  // src/organisms/OraculoSeccionDestacados/OraculoSeccionDestacados.tsx
596
835
  var import_react2 = require("react");
597
836
 
@@ -599,19 +838,19 @@ var import_react2 = require("react");
599
838
  var import_utils = require("@mui/material/utils");
600
839
 
601
840
  // ../node_modules/@mui/icons-material/esm/ChevronLeftRounded.js
602
- var import_jsx_runtime8 = require("react/jsx-runtime");
603
- var ChevronLeftRounded_default = (0, import_utils.createSvgIcon)(/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("path", {
841
+ var import_jsx_runtime11 = require("react/jsx-runtime");
842
+ var ChevronLeftRounded_default = (0, import_utils.createSvgIcon)(/* @__PURE__ */ (0, import_jsx_runtime11.jsx)("path", {
604
843
  d: "M14.71 6.71a.996.996 0 0 0-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41"
605
844
  }), "ChevronLeftRounded");
606
845
 
607
846
  // ../node_modules/@mui/icons-material/esm/ChevronRightRounded.js
608
- var import_jsx_runtime9 = require("react/jsx-runtime");
609
- var ChevronRightRounded_default = (0, import_utils.createSvgIcon)(/* @__PURE__ */ (0, import_jsx_runtime9.jsx)("path", {
847
+ var import_jsx_runtime12 = require("react/jsx-runtime");
848
+ var ChevronRightRounded_default = (0, import_utils.createSvgIcon)(/* @__PURE__ */ (0, import_jsx_runtime12.jsx)("path", {
610
849
  d: "M9.29 6.71c-.39.39-.39 1.02 0 1.41L13.17 12l-3.88 3.88c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01"
611
850
  }), "ChevronRightRounded");
612
851
 
613
852
  // src/organisms/OraculoSeccionDestacados/OraculoSeccionDestacados.tsx
614
- var import_jsx_runtime10 = require("react/jsx-runtime");
853
+ var import_jsx_runtime13 = require("react/jsx-runtime");
615
854
  function OraculoSeccionDestacados({
616
855
  items,
617
856
  title = "Destacados",
@@ -633,8 +872,8 @@ function OraculoSeccionDestacados({
633
872
  onViewMore == null ? void 0 : onViewMore();
634
873
  };
635
874
  const sectionClassName = className || void 0;
636
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)("section", { className: sectionClassName, style: { width: "100%" }, children: [
637
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
875
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)("section", { className: sectionClassName, style: { width: "100%" }, children: [
876
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
638
877
  "header",
639
878
  {
640
879
  style: {
@@ -646,7 +885,7 @@ function OraculoSeccionDestacados({
646
885
  marginBottom: 16
647
886
  },
648
887
  children: [
649
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
888
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
650
889
  OraculoSectionTitle,
651
890
  {
652
891
  title,
@@ -654,7 +893,7 @@ function OraculoSeccionDestacados({
654
893
  size: "md"
655
894
  }
656
895
  ),
657
- /* @__PURE__ */ (0, import_jsx_runtime10.jsxs)(
896
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
658
897
  "div",
659
898
  {
660
899
  style: {
@@ -662,24 +901,24 @@ function OraculoSeccionDestacados({
662
901
  gap: 8
663
902
  },
664
903
  children: [
665
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
904
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
666
905
  OraculoButton,
667
906
  {
668
907
  ariaLabel: "Anterior",
669
908
  variant: "secondary",
670
909
  iconOnly: true,
671
- leftIcon: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(ChevronLeftRounded_default, {}),
910
+ leftIcon: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ChevronLeftRounded_default, {}),
672
911
  onClick: handlePrev,
673
912
  disabled: navState.isStart
674
913
  }
675
914
  ),
676
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
915
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
677
916
  OraculoButton,
678
917
  {
679
918
  ariaLabel: "Siguiente",
680
919
  variant: "secondary",
681
920
  iconOnly: true,
682
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(ChevronRightRounded_default, {}),
921
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ChevronRightRounded_default, {}),
683
922
  onClick: handleNext,
684
923
  disabled: navState.isEnd
685
924
  }
@@ -687,11 +926,11 @@ function OraculoSeccionDestacados({
687
926
  ]
688
927
  }
689
928
  ),
690
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" })
929
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" })
691
930
  ]
692
931
  }
693
932
  ),
694
- /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
933
+ /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
695
934
  OraculoCarousel_default,
696
935
  {
697
936
  ref: carouselRef,
@@ -705,14 +944,14 @@ function OraculoSeccionDestacados({
705
944
  },
706
945
  renderItem: (item) => {
707
946
  var _a;
708
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
947
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
709
948
  "div",
710
949
  {
711
950
  style: {
712
951
  textAlign: "center",
713
952
  marginTop: 16
714
953
  },
715
- children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
954
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
716
955
  "img",
717
956
  {
718
957
  src: item.src,
@@ -737,8 +976,8 @@ function OraculoSeccionDestacados({
737
976
 
738
977
  // src/organisms/OraculoSeccionTopJuegos/OraculoSeccionTopJuegos.tsx
739
978
  var import_Stack = __toESM(require("@mui/material/Stack"));
740
- var import_Box5 = __toESM(require("@mui/material/Box"));
741
- var import_jsx_runtime11 = require("react/jsx-runtime");
979
+ var import_Box6 = __toESM(require("@mui/material/Box"));
980
+ var import_jsx_runtime14 = require("react/jsx-runtime");
742
981
  function OraculoSeccionTopJuegos({
743
982
  items,
744
983
  title = "Top Juegos",
@@ -746,10 +985,10 @@ function OraculoSeccionTopJuegos({
746
985
  onCardClick,
747
986
  className
748
987
  }) {
749
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)("section", { className, style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime11.jsxs)(import_Stack.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
750
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(OraculoSectionTitle, { title, iconUrl, size: "md" }),
751
- /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
752
- import_Box5.default,
988
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("section", { className, style: { width: "100%" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_Stack.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
989
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(OraculoSectionTitle, { title, iconUrl, size: "md" }),
990
+ /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
991
+ import_Box6.default,
753
992
  {
754
993
  sx: {
755
994
  display: "grid",
@@ -761,7 +1000,7 @@ function OraculoSeccionTopJuegos({
761
1000
  justifyItems: "center",
762
1001
  width: "100%"
763
1002
  },
764
- children: items.slice(0, 6).map((juego, idx) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1003
+ children: items.slice(0, 6).map((juego, idx) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
765
1004
  OraculoGameRankCard,
766
1005
  {
767
1006
  imageUrl: juego.logo || "",
@@ -776,10 +1015,10 @@ function OraculoSeccionTopJuegos({
776
1015
  }
777
1016
 
778
1017
  // src/organisms/OraculoSeccionCasinoEnVivo/OraculoSeccionCasinoEnVivo.tsx
779
- var import_Box6 = __toESM(require("@mui/material/Box"));
1018
+ var import_Box7 = __toESM(require("@mui/material/Box"));
780
1019
  var import_Stack2 = __toESM(require("@mui/material/Stack"));
781
- var import_Typography2 = __toESM(require("@mui/material/Typography"));
782
- var import_jsx_runtime12 = require("react/jsx-runtime");
1020
+ var import_Typography3 = __toESM(require("@mui/material/Typography"));
1021
+ var import_jsx_runtime15 = require("react/jsx-runtime");
783
1022
  var OraculoSeccionCasinoEnVivo = ({
784
1023
  items,
785
1024
  title = "Casino en vivo",
@@ -790,8 +1029,8 @@ var OraculoSeccionCasinoEnVivo = ({
790
1029
  onViewMore,
791
1030
  className
792
1031
  }) => {
793
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
794
- import_Box6.default,
1032
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1033
+ import_Box7.default,
795
1034
  {
796
1035
  className,
797
1036
  sx: {
@@ -804,8 +1043,8 @@ var OraculoSeccionCasinoEnVivo = ({
804
1043
  overflow: "hidden"
805
1044
  },
806
1045
  children: [
807
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
808
- import_Box6.default,
1046
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1047
+ import_Box7.default,
809
1048
  {
810
1049
  sx: {
811
1050
  position: "absolute",
@@ -829,8 +1068,8 @@ var OraculoSeccionCasinoEnVivo = ({
829
1068
  }
830
1069
  }
831
1070
  ),
832
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
833
- import_Box6.default,
1071
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
1072
+ import_Box7.default,
834
1073
  {
835
1074
  sx: {
836
1075
  position: "relative",
@@ -847,9 +1086,9 @@ var OraculoSeccionCasinoEnVivo = ({
847
1086
  textAlign: { xs: "center", md: "left" }
848
1087
  },
849
1088
  children: [
850
- /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(import_Stack2.default, { spacing: 3, sx: { maxWidth: { md: 280 } }, children: [
851
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
852
- import_Typography2.default,
1089
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(import_Stack2.default, { spacing: 3, sx: { maxWidth: { md: 280 } }, children: [
1090
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1091
+ import_Typography3.default,
853
1092
  {
854
1093
  variant: "h4",
855
1094
  sx: {
@@ -861,8 +1100,8 @@ var OraculoSeccionCasinoEnVivo = ({
861
1100
  children: title
862
1101
  }
863
1102
  ),
864
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
865
- import_Typography2.default,
1103
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1104
+ import_Typography3.default,
866
1105
  {
867
1106
  sx: {
868
1107
  fontSize: { xs: 14, md: 18 },
@@ -873,7 +1112,7 @@ var OraculoSeccionCasinoEnVivo = ({
873
1112
  children: subtitle
874
1113
  }
875
1114
  ),
876
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_Box6.default, { sx: { display: { xs: "none", md: "block" } }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1115
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_Box7.default, { sx: { display: { xs: "none", md: "block" } }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
877
1116
  OraculoButton,
878
1117
  {
879
1118
  variant: "primary",
@@ -883,8 +1122,8 @@ var OraculoSeccionCasinoEnVivo = ({
883
1122
  }
884
1123
  ) })
885
1124
  ] }),
886
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
887
- import_Box6.default,
1125
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1126
+ import_Box7.default,
888
1127
  {
889
1128
  sx: {
890
1129
  display: "flex",
@@ -896,7 +1135,7 @@ var OraculoSeccionCasinoEnVivo = ({
896
1135
  },
897
1136
  children: items.map((juego, idx) => {
898
1137
  var _a, _b;
899
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1138
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
900
1139
  OraculoLiveCasinoCard_default,
901
1140
  {
902
1141
  logo: (_b = juego.logo) != null ? _b : "",
@@ -910,7 +1149,7 @@ var OraculoSeccionCasinoEnVivo = ({
910
1149
  })
911
1150
  }
912
1151
  ),
913
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_Box6.default, { sx: { display: { xs: "block", md: "none" } }, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1152
+ /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_Box7.default, { sx: { display: { xs: "block", md: "none" } }, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
914
1153
  OraculoButton,
915
1154
  {
916
1155
  variant: "primary",
@@ -931,8 +1170,8 @@ var OraculoSeccionCasinoEnVivo_default = OraculoSeccionCasinoEnVivo;
931
1170
  // src/organisms/OraculoSeccionCasino/OraculoSeccionCasino.tsx
932
1171
  var import_react3 = require("react");
933
1172
  var import_Stack3 = __toESM(require("@mui/material/Stack"));
934
- var import_Box7 = __toESM(require("@mui/material/Box"));
935
- var import_jsx_runtime13 = require("react/jsx-runtime");
1173
+ var import_Box8 = __toESM(require("@mui/material/Box"));
1174
+ var import_jsx_runtime16 = require("react/jsx-runtime");
936
1175
  var buildCasinoSlides = (games, mosaicFirst = true, gridSize = 4) => {
937
1176
  const baseItems = games.map((g, idx) => {
938
1177
  var _a, _b, _c, _d;
@@ -988,9 +1227,9 @@ var OraculoSeccionCasino = ({
988
1227
  const handleViewMore = () => {
989
1228
  onViewMore == null ? void 0 : onViewMore();
990
1229
  };
991
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("section", { className, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(import_Stack3.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
992
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
993
- import_Box7.default,
1230
+ return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("section", { className, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_Stack3.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
1231
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1232
+ import_Box8.default,
994
1233
  {
995
1234
  sx: {
996
1235
  display: "grid",
@@ -1000,7 +1239,7 @@ var OraculoSeccionCasino = ({
1000
1239
  rowGap: 1
1001
1240
  },
1002
1241
  children: [
1003
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1242
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1004
1243
  OraculoSectionTitle,
1005
1244
  {
1006
1245
  title,
@@ -1008,8 +1247,8 @@ var OraculoSeccionCasino = ({
1008
1247
  size: "md"
1009
1248
  }
1010
1249
  ),
1011
- /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
1012
- import_Box7.default,
1250
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
1251
+ import_Box8.default,
1013
1252
  {
1014
1253
  sx: {
1015
1254
  display: "flex",
@@ -1017,24 +1256,24 @@ var OraculoSeccionCasino = ({
1017
1256
  justifyContent: "flex-end"
1018
1257
  },
1019
1258
  children: [
1020
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1259
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1021
1260
  OraculoButton,
1022
1261
  {
1023
1262
  ariaLabel: "Anterior",
1024
1263
  variant: "secondary",
1025
1264
  iconOnly: true,
1026
- leftIcon: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ChevronLeftRounded_default, {}),
1265
+ leftIcon: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ChevronLeftRounded_default, {}),
1027
1266
  onClick: handlePrev,
1028
1267
  disabled: navState.isStart
1029
1268
  }
1030
1269
  ),
1031
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1270
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1032
1271
  OraculoButton,
1033
1272
  {
1034
1273
  ariaLabel: "Siguiente",
1035
1274
  variant: "secondary",
1036
1275
  iconOnly: true,
1037
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(ChevronRightRounded_default, {}),
1276
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ChevronRightRounded_default, {}),
1038
1277
  onClick: handleNext,
1039
1278
  disabled: navState.isEnd
1040
1279
  }
@@ -1042,11 +1281,11 @@ var OraculoSeccionCasino = ({
1042
1281
  ]
1043
1282
  }
1044
1283
  ),
1045
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_Box7.default, { sx: { justifySelf: "end" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" }) })
1284
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(import_Box8.default, { sx: { justifySelf: "end" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" }) })
1046
1285
  ]
1047
1286
  }
1048
1287
  ),
1049
- /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1288
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1050
1289
  OraculoCarousel_default,
1051
1290
  {
1052
1291
  ref: carouselRef,
@@ -1062,7 +1301,7 @@ var OraculoSeccionCasino = ({
1062
1301
  drag: true,
1063
1302
  focus: "start"
1064
1303
  },
1065
- renderItem: (slide) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { style: { alignSelf: "start" }, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1304
+ renderItem: (slide) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { style: { alignSelf: "start" }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1066
1305
  OraculoGameSlide_default,
1067
1306
  {
1068
1307
  items: slide.items,
@@ -1088,8 +1327,8 @@ var OraculoSeccionCasino_default = OraculoSeccionCasino;
1088
1327
  // src/organisms/OraculoSeccionVirtuales/OraculoSeccionVirtuales.tsx
1089
1328
  var import_react4 = require("react");
1090
1329
  var import_Stack4 = __toESM(require("@mui/material/Stack"));
1091
- var import_Box8 = __toESM(require("@mui/material/Box"));
1092
- var import_jsx_runtime14 = require("react/jsx-runtime");
1330
+ var import_Box9 = __toESM(require("@mui/material/Box"));
1331
+ var import_jsx_runtime17 = require("react/jsx-runtime");
1093
1332
  var buildVirtualSlides = (games, mosaicFirst = true, gridSize = 4) => {
1094
1333
  const baseItems = games.map((g, idx) => {
1095
1334
  var _a, _b, _c, _d;
@@ -1145,9 +1384,9 @@ var OraculoSeccionVirtuales = ({
1145
1384
  const handleViewMore = () => {
1146
1385
  onViewMore == null ? void 0 : onViewMore();
1147
1386
  };
1148
- return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("section", { className, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_Stack4.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
1149
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1150
- import_Box8.default,
1387
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("section", { className, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(import_Stack4.default, { direction: "column", spacing: 2, useFlexGap: true, children: [
1388
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1389
+ import_Box9.default,
1151
1390
  {
1152
1391
  sx: {
1153
1392
  display: "grid",
@@ -1157,7 +1396,7 @@ var OraculoSeccionVirtuales = ({
1157
1396
  rowGap: 1
1158
1397
  },
1159
1398
  children: [
1160
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1399
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1161
1400
  OraculoSectionTitle,
1162
1401
  {
1163
1402
  title,
@@ -1165,8 +1404,8 @@ var OraculoSeccionVirtuales = ({
1165
1404
  size: "md"
1166
1405
  }
1167
1406
  ),
1168
- /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
1169
- import_Box8.default,
1407
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1408
+ import_Box9.default,
1170
1409
  {
1171
1410
  sx: {
1172
1411
  display: "flex",
@@ -1174,24 +1413,24 @@ var OraculoSeccionVirtuales = ({
1174
1413
  justifyContent: "flex-end"
1175
1414
  },
1176
1415
  children: [
1177
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1416
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1178
1417
  OraculoButton,
1179
1418
  {
1180
1419
  ariaLabel: "Anterior",
1181
1420
  variant: "secondary",
1182
1421
  iconOnly: true,
1183
- leftIcon: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(ChevronLeftRounded_default, {}),
1422
+ leftIcon: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(ChevronLeftRounded_default, {}),
1184
1423
  onClick: handlePrev,
1185
1424
  disabled: navState.isStart
1186
1425
  }
1187
1426
  ),
1188
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1427
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1189
1428
  OraculoButton,
1190
1429
  {
1191
1430
  ariaLabel: "Siguiente",
1192
1431
  variant: "secondary",
1193
1432
  iconOnly: true,
1194
- rightIcon: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(ChevronRightRounded_default, {}),
1433
+ rightIcon: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(ChevronRightRounded_default, {}),
1195
1434
  onClick: handleNext,
1196
1435
  disabled: navState.isEnd
1197
1436
  }
@@ -1199,11 +1438,11 @@ var OraculoSeccionVirtuales = ({
1199
1438
  ]
1200
1439
  }
1201
1440
  ),
1202
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(import_Box8.default, { sx: { justifySelf: "end" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" }) })
1441
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_Box9.default, { sx: { justifySelf: "end" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(OraculoButton, { variant: "secondary", onClick: handleViewMore, children: "Ver m\xE1s" }) })
1203
1442
  ]
1204
1443
  }
1205
1444
  ),
1206
- /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1445
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1207
1446
  OraculoCarousel_default,
1208
1447
  {
1209
1448
  ref: carouselRef,
@@ -1220,7 +1459,7 @@ var OraculoSeccionVirtuales = ({
1220
1459
  focus: "start",
1221
1460
  perMove: 1
1222
1461
  },
1223
- renderItem: (slide) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { style: { alignSelf: "start" }, children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1462
+ renderItem: (slide) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { style: { alignSelf: "start" }, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1224
1463
  OraculoGameSlide_default,
1225
1464
  {
1226
1465
  items: slide.items,
@@ -1242,18 +1481,271 @@ var OraculoSeccionVirtuales = ({
1242
1481
  ] }) });
1243
1482
  };
1244
1483
  var OraculoSeccionVirtuales_default = OraculoSeccionVirtuales;
1484
+
1485
+ // src/organisms/OraculoSeccionBonoBienvenida/OraculoSeccionBonoBienvenida.tsx
1486
+ var import_react5 = require("react");
1487
+ var import_Box10 = __toESM(require("@mui/material/Box"));
1488
+ var import_Typography4 = __toESM(require("@mui/material/Typography"));
1489
+ var import_useMediaQuery = __toESM(require("@mui/material/useMediaQuery"));
1490
+ var import_jsx_runtime18 = require("react/jsx-runtime");
1491
+ var buildSectionSx = (bgUrl) => ({
1492
+ width: "100vw",
1493
+ position: "relative",
1494
+ left: "50%",
1495
+ right: "50%",
1496
+ marginLeft: "-50vw",
1497
+ marginRight: "-50vw",
1498
+ py: 8,
1499
+ color: "#fff",
1500
+ backgroundImage: `
1501
+ linear-gradient(to bottom,#121212 0%, rgba(18,18,18,0) 10%),
1502
+ linear-gradient(to top, #121212 0%, rgba(18,18,18,0) 10%),
1503
+ linear-gradient(to left, #121212 0%, rgba(18,18,18,0) 10%),
1504
+ linear-gradient(to right, #121212 0%, rgba(18,18,18,0) 10%),
1505
+ url("${bgUrl}")
1506
+ `,
1507
+ backgroundRepeat: "no-repeat",
1508
+ backgroundPosition: "center",
1509
+ backgroundSize: "cover"
1510
+ });
1511
+ var headlineBaseSx = {
1512
+ textAlign: "center",
1513
+ lineHeight: 1.1,
1514
+ mb: 1.5
1515
+ };
1516
+ var hlTopSx = {
1517
+ display: "inline-block",
1518
+ fontWeight: 600,
1519
+ fontSize: 24
1520
+ };
1521
+ var hlBottomSx = {
1522
+ display: "inline-block",
1523
+ fontSize: 24,
1524
+ lineHeight: 1.1,
1525
+ WebkitTextStroke: "0.3px rgba(255, 255, 255, .5)",
1526
+ textShadow: `
1527
+ 0 0 2px rgba(255, 255, 255, .95),
1528
+ 0 0 6px rgba(255, 255, 255, .6),
1529
+ 0 1px 0 rgba(137, 137, 137, .85)
1530
+ `
1531
+ };
1532
+ var OraculoSeccionBonoBienvenida = ({
1533
+ headline,
1534
+ items,
1535
+ backgroundImageUrl
1536
+ }) => {
1537
+ const [hl1 = "", hl2 = ""] = (headline || "").split("\n");
1538
+ const isMobile = (0, import_useMediaQuery.default)("(max-width: 767px)");
1539
+ const showDots = items.length > 1;
1540
+ const bgUrl = backgroundImageUrl != null ? backgroundImageUrl : "/assets/img/home/BonoBienvenida/Fondobg.png";
1541
+ const sectionSx = buildSectionSx(bgUrl);
1542
+ const carouselRef = (0, import_react5.useRef)(null);
1543
+ const [navState, setNavState] = (0, import_react5.useState)({ isStart: true, isEnd: false });
1544
+ const [activeIndex, setActiveIndex] = (0, import_react5.useState)(0);
1545
+ if (isMobile) {
1546
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1547
+ import_Box10.default,
1548
+ {
1549
+ component: "section",
1550
+ sx: {
1551
+ ...sectionSx,
1552
+ textAlign: "center"
1553
+ },
1554
+ children: [
1555
+ (hl1 || hl2) && /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_Box10.default, { sx: headlineBaseSx, children: [
1556
+ hl1 && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Typography4.default, { component: "span", sx: hlTopSx, children: hl1 }),
1557
+ hl2 && /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
1558
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("br", {}),
1559
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Typography4.default, { component: "span", sx: hlBottomSx, children: hl2 })
1560
+ ] })
1561
+ ] }),
1562
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_Box10.default, { children: [
1563
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1564
+ OraculoCarousel_default,
1565
+ {
1566
+ ref: carouselRef,
1567
+ items,
1568
+ perPage: 1,
1569
+ gap: "12px",
1570
+ breakpoints: {
1571
+ 480: {
1572
+ perPage: 1,
1573
+ gap: "8px",
1574
+ padding: { left: "8px", right: "8px" }
1575
+ },
1576
+ 768: {
1577
+ perPage: 1,
1578
+ gap: "12px",
1579
+ padding: { left: "8px", right: "8px" }
1580
+ }
1581
+ },
1582
+ options: {
1583
+ autoWidth: false
1584
+ },
1585
+ renderItem: (it) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(OraculoWelcomeBanner_default, { ...it }),
1586
+ onMove: ({ index, isStart, isEnd }) => {
1587
+ setNavState({ isStart, isEnd });
1588
+ setActiveIndex(index);
1589
+ }
1590
+ }
1591
+ ),
1592
+ showDots && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1593
+ OraculoCarouselDots_default,
1594
+ {
1595
+ total: items.length,
1596
+ active: activeIndex,
1597
+ onSelect: (i) => {
1598
+ var _a;
1599
+ setActiveIndex(i);
1600
+ (_a = carouselRef.current) == null ? void 0 : _a.go(i);
1601
+ }
1602
+ }
1603
+ )
1604
+ ] })
1605
+ ]
1606
+ }
1607
+ );
1608
+ }
1609
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Box10.default, { component: "section", sx: sectionSx, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1610
+ import_Box10.default,
1611
+ {
1612
+ sx: {
1613
+ maxWidth: 1200,
1614
+ mx: 5,
1615
+ px: 2,
1616
+ display: "grid",
1617
+ gridTemplateColumns: "200px auto",
1618
+ alignItems: "center"
1619
+ },
1620
+ children: [
1621
+ (hl1 || hl2) && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1622
+ import_Box10.default,
1623
+ {
1624
+ sx: {
1625
+ display: "flex",
1626
+ alignItems: "center",
1627
+ justifyContent: "flex-start",
1628
+ minHeight: "100%"
1629
+ },
1630
+ children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
1631
+ import_Box10.default,
1632
+ {
1633
+ sx: {
1634
+ ...headlineBaseSx,
1635
+ textAlign: "left",
1636
+ mb: 0
1637
+ },
1638
+ children: [
1639
+ hl1 && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Typography4.default, { component: "span", sx: hlTopSx, children: hl1 }),
1640
+ hl2 && /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
1641
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("br", {}),
1642
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_Typography4.default, { component: "span", sx: hlBottomSx, children: hl2 })
1643
+ ] })
1644
+ ]
1645
+ }
1646
+ )
1647
+ }
1648
+ ),
1649
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1650
+ import_Box10.default,
1651
+ {
1652
+ sx: {
1653
+ display: "flex",
1654
+ justifyContent: "center",
1655
+ alignItems: "center",
1656
+ flexWrap: "nowrap",
1657
+ gap: 4
1658
+ },
1659
+ children: items.map((it, idx) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
1660
+ OraculoWelcomeBanner_default,
1661
+ {
1662
+ ...it
1663
+ },
1664
+ idx
1665
+ ))
1666
+ }
1667
+ )
1668
+ ]
1669
+ }
1670
+ ) });
1671
+ };
1672
+ var OraculoSeccionBonoBienvenida_default = OraculoSeccionBonoBienvenida;
1673
+
1674
+ // src/organisms/OraculoSeccionClubOlimpo/OraculoSeccionClubOlimpo.tsx
1675
+ var import_react6 = require("react");
1676
+ var import_jsx_runtime19 = require("react/jsx-runtime");
1677
+ var OraculoSeccionClubOlimpo = ({
1678
+ className = "",
1679
+ fullBleed = true,
1680
+ items,
1681
+ selectedIndex = 0,
1682
+ ariaLabel
1683
+ }) => {
1684
+ const rootRef = (0, import_react6.useRef)(null);
1685
+ const bottomRef = (0, import_react6.useRef)(null);
1686
+ if (!items || items.length === 0) return null;
1687
+ const safeIndex = Math.min(Math.max(selectedIndex, 0), items.length - 1);
1688
+ const item = items[safeIndex];
1689
+ (0, import_react6.useLayoutEffect)(() => {
1690
+ if (!rootRef.current || !bottomRef.current) return;
1691
+ if (typeof ResizeObserver === "undefined") return;
1692
+ const root = rootRef.current;
1693
+ const bottom = bottomRef.current;
1694
+ const update = () => {
1695
+ root.style.setProperty(
1696
+ "--orc-co-bottomH",
1697
+ `${bottom.offsetHeight + 16}px`
1698
+ );
1699
+ };
1700
+ const ro = new ResizeObserver(update);
1701
+ ro.observe(bottom);
1702
+ update();
1703
+ return () => ro.disconnect();
1704
+ }, []);
1705
+ const rootClass = [
1706
+ "orc-co-wrap",
1707
+ fullBleed ? "orc-co-fullBleed" : "",
1708
+ className
1709
+ ].filter(Boolean).join(" ");
1710
+ return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1711
+ "section",
1712
+ {
1713
+ ref: rootRef,
1714
+ className: rootClass,
1715
+ "aria-label": ariaLabel || item.imgAlt || "Club Olimpo",
1716
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)("div", { ref: bottomRef, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
1717
+ OraculoClubOlimpoVisual_default,
1718
+ {
1719
+ text: item.text,
1720
+ onClick: item.onClick,
1721
+ imgAlt: item.imgAlt,
1722
+ imgSrcMobile: item.images.mobile,
1723
+ imgSrcDesktopBg: item.images.desktopBg,
1724
+ imgSrcDesktopLogo: item.images.desktopLogo,
1725
+ priority: item.priority
1726
+ }
1727
+ ) })
1728
+ }
1729
+ );
1730
+ };
1731
+ var OraculoSeccionClubOlimpo_default = OraculoSeccionClubOlimpo;
1245
1732
  // Annotate the CommonJS export names for ESM import in node:
1246
1733
  0 && (module.exports = {
1247
1734
  OraculoButton,
1248
1735
  OraculoCarousel,
1736
+ OraculoCarouselDots,
1737
+ OraculoClubOlimpoVisual,
1249
1738
  OraculoGameCard,
1250
1739
  OraculoGameRankCard,
1251
1740
  OraculoGameSlide,
1252
1741
  OraculoLiveCasinoCard,
1742
+ OraculoSeccionBonoBienvenida,
1253
1743
  OraculoSeccionCasino,
1254
1744
  OraculoSeccionCasinoEnVivo,
1745
+ OraculoSeccionClubOlimpo,
1255
1746
  OraculoSeccionDestacados,
1256
1747
  OraculoSeccionTopJuegos,
1257
1748
  OraculoSeccionVirtuales,
1258
- OraculoSectionTitle
1749
+ OraculoSectionTitle,
1750
+ OraculoWelcomeBanner
1259
1751
  });