@riligar/components-kit 1.0.1 → 1.1.1

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.esm.js CHANGED
@@ -1,11 +1,9 @@
1
- import { createTheme, Stack, Text, Title, Center, Box, Button, Container, Paper, Group, SimpleGrid, Image, List, ThemeIcon, Grid, Badge, Code, RingProgress, Divider, SegmentedControl, Accordion, Avatar, Anchor, ActionIcon } from '@mantine/core';
2
- import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
3
- import { useWindowScroll } from '@mantine/hooks';
4
- import { IconCheck, IconBolt, IconQuote, IconCircleCheck } from '@tabler/icons-react';
5
- import { Fragment as Fragment$1 } from 'react';
6
-
7
- // RiLiGar Design System Theme — same as console
8
- const theme = createTheme({
1
+ import { createTheme as q, Stack as p, Text as c, Title as ee, Center as v, Box as m, Button as H, Container as G, Paper as x, Group as f, SimpleGrid as S, Image as O, List as R, ThemeIcon as I, Grid as b, Badge as k, Code as re, RingProgress as le, Divider as _, SegmentedControl as ie, Accordion as z, Avatar as ne } from "@mantine/core";
2
+ import { jsxs as n, jsx as e, Fragment as K } from "react/jsx-runtime";
3
+ import { useWindowScroll as ae } from "@mantine/hooks";
4
+ import { IconCheck as L, IconBolt as U, IconQuote as te, IconCircleCheck as ce } from "@tabler/icons-react";
5
+ import { Fragment as oe } from "react";
6
+ const Te = q({
9
7
  fontFamily: 'Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
10
8
  headings: {
11
9
  fontFamily: 'Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
@@ -13,33 +11,34 @@ const theme = createTheme({
13
11
  },
14
12
  colors: {
15
13
  // RiLiGar Monochrome Palette - Zen Optimized
16
- gray: ["#FFFFFF",
17
- // 0: App Base (Pure White)
18
- "#F9FAFB",
19
- // 1: Hover / Secondary Background
20
- "#F3F4F6",
21
- // 2: Border Standard
22
- "#E5E7EB",
23
- // 3: Disabled / Muted Border
24
- "#9CA3AF",
25
- // 4: Quaternary Text
26
- "#6B7280",
27
- // 5: Tertiary Text (Labels)
28
- "#4B5563",
29
- // 6: Secondary Text
30
- "#374151",
31
- // 7: Secondary Text Dark
32
- "#1F2937",
33
- // 8: Primary Text Dark
34
- "#11181C" // 9: Primary Text (RiLiGar Absolute)
14
+ gray: [
15
+ "#FFFFFF",
16
+ // 0: App Base (Pure White)
17
+ "#F9FAFB",
18
+ // 1: Hover / Secondary Background
19
+ "#F3F4F6",
20
+ // 2: Border Standard
21
+ "#E5E7EB",
22
+ // 3: Disabled / Muted Border
23
+ "#9CA3AF",
24
+ // 4: Quaternary Text
25
+ "#6B7280",
26
+ // 5: Tertiary Text (Labels)
27
+ "#4B5563",
28
+ // 6: Secondary Text
29
+ "#374151",
30
+ // 7: Secondary Text Dark
31
+ "#1F2937",
32
+ // 8: Primary Text Dark
33
+ "#11181C"
34
+ // 9: Primary Text (RiLiGar Absolute)
35
35
  ]
36
36
  },
37
37
  primaryColor: "gray",
38
38
  primaryShade: 9,
39
- autoContrast: true,
39
+ autoContrast: !0,
40
40
  defaultRadius: "0",
41
41
  // Zen prefers sharp or very subtle radius, defaulting to 0 for inputs/buttons
42
-
43
42
  components: {
44
43
  Container: {
45
44
  defaultProps: {
@@ -50,7 +49,7 @@ const theme = createTheme({
50
49
  },
51
50
  Paper: {
52
51
  defaultProps: {
53
- withBorder: true,
52
+ withBorder: !0,
54
53
  shadow: "none",
55
54
  radius: "0",
56
55
  bg: "white"
@@ -58,7 +57,7 @@ const theme = createTheme({
58
57
  },
59
58
  Card: {
60
59
  defaultProps: {
61
- withBorder: false,
60
+ withBorder: !1,
62
61
  // Zen reduces borders
63
62
  shadow: "none",
64
63
  radius: "0",
@@ -85,7 +84,8 @@ const theme = createTheme({
85
84
  defaultProps: {
86
85
  size: "lg",
87
86
  radius: "0",
88
- variant: "unstyled" // Zen Minimalist Inputs
87
+ variant: "unstyled"
88
+ // Zen Minimalist Inputs
89
89
  },
90
90
  styles: {
91
91
  input: {
@@ -99,7 +99,8 @@ const theme = createTheme({
99
99
  defaultProps: {
100
100
  lh: 1.1,
101
101
  c: "gray.9",
102
- ls: "-0.04em" // Zen Massive Hierarchy
102
+ ls: "-0.04em"
103
+ // Zen Massive Hierarchy
103
104
  }
104
105
  },
105
106
  Text: {
@@ -140,1253 +141,878 @@ const theme = createTheme({
140
141
  }
141
142
  }
142
143
  });
143
-
144
- function SectionHeader({
145
- subtitle,
146
- title,
147
- titleOrder = 2,
148
- titleFz = "var(--fz-section-title)",
149
- ta = "left",
150
- maw
144
+ function J({
145
+ subtitle: r,
146
+ title: t,
147
+ titleOrder: a = 2,
148
+ titleFz: l = "var(--fz-section-title)",
149
+ ta: i = "left",
150
+ maw: d
151
151
  }) {
152
- if (!title && !subtitle) return null;
153
- return /*#__PURE__*/jsxs(Stack, {
154
- gap: "xs",
155
- align: ta === "center" ? "center" : "flex-start",
156
- ta: ta,
157
- children: [subtitle && /*#__PURE__*/jsx(Text, {
158
- c: "gray.4",
159
- size: "xs",
160
- fw: 800,
161
- tt: "uppercase",
162
- ls: "1.5px",
163
- children: subtitle
164
- }), title && /*#__PURE__*/jsx(Title, {
165
- order: titleOrder,
166
- fz: titleFz,
167
- maw: maw,
168
- children: title
169
- })]
170
- });
152
+ return !t && !r ? null : /* @__PURE__ */ n(p, { gap: "xs", align: i === "center" ? "center" : "flex-start", ta: i, children: [
153
+ r && /* @__PURE__ */ e(c, { c: "gray.4", size: "xs", fw: 800, tt: "uppercase", ls: "1.5px", children: r }),
154
+ t && /* @__PURE__ */ e(ee, { order: a, fz: l, maw: d, children: t })
155
+ ] });
171
156
  }
172
-
173
- function MediaBlock({
174
- video,
175
- image,
176
- width = "100%",
177
- alt
178
- }) {
179
- if (video) {
180
- return /*#__PURE__*/jsx(Center, {
181
- children: /*#__PURE__*/jsx(Box, {
182
- component: "video",
183
- src: video.src,
184
- autoPlay: true,
185
- loop: true,
186
- muted: true,
187
- playsInline: true,
188
- "aria-label": alt || "Demonstração em vídeo",
189
- w: video.width || width,
190
- h: "auto",
191
- style: {
192
- filter: video.filter || "none"
193
- }
194
- })
195
- });
196
- }
197
- if (image) {
198
- return /*#__PURE__*/jsx(Center, {
199
- children: /*#__PURE__*/jsx(Box, {
200
- component: "img",
201
- src: image,
202
- alt: alt || "",
203
- w: width,
204
- h: "auto"
205
- })
206
- });
207
- }
208
- return null;
157
+ function X({ video: r, image: t, width: a = "100%", alt: l }) {
158
+ return r ? /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e(
159
+ m,
160
+ {
161
+ component: "video",
162
+ src: r.src,
163
+ autoPlay: !0,
164
+ loop: !0,
165
+ muted: !0,
166
+ playsInline: !0,
167
+ "aria-label": l || "Demonstração em vídeo",
168
+ w: r.width || a,
169
+ h: "auto",
170
+ style: { filter: r.filter || "none" }
171
+ }
172
+ ) }) : t ? /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e(m, { component: "img", src: t, alt: l || "", w: a, h: "auto" }) }) : null;
209
173
  }
210
-
211
- function CTAButton({
212
- label,
213
- href,
214
- onClick,
215
- icon,
216
- size = "lg",
217
- variant = "filled",
218
- color,
219
- target,
220
- px,
221
- fullWidth,
222
- leftSection,
223
- ...rest
174
+ function T({
175
+ label: r,
176
+ href: t,
177
+ onClick: a,
178
+ icon: l,
179
+ size: i = "lg",
180
+ variant: d = "filled",
181
+ color: h,
182
+ target: o,
183
+ px: y,
184
+ fullWidth: s,
185
+ leftSection: g,
186
+ ...u
224
187
  }) {
225
- return /*#__PURE__*/jsx(Button, {
226
- size: size,
227
- component: href ? "a" : "button",
228
- href: href,
229
- onClick: onClick,
230
- target: target,
231
- rightSection: icon,
232
- leftSection: leftSection,
233
- variant: variant,
234
- color: color,
235
- px: px,
236
- fullWidth: fullWidth,
237
- ...rest,
238
- children: label
239
- });
188
+ return /* @__PURE__ */ e(
189
+ H,
190
+ {
191
+ size: i,
192
+ component: t ? "a" : "button",
193
+ href: t,
194
+ onClick: a,
195
+ target: o,
196
+ rightSection: l,
197
+ leftSection: g,
198
+ variant: d,
199
+ color: h,
200
+ px: y,
201
+ fullWidth: s,
202
+ ...u,
203
+ children: r
204
+ }
205
+ );
240
206
  }
241
-
242
- function Layout({
243
- children,
244
- title,
245
- subtitle,
246
- id,
247
- bg = "white",
248
- py = {
249
- base: 80,
250
- md: 120
251
- },
252
- maw = 800,
253
- ta = "left",
254
- stackGap = "xl"
207
+ const $ = {
208
+ white: "white",
209
+ gray: "gray.0"
210
+ }, D = (r) => $[r] || $.white;
211
+ function F({
212
+ children: r,
213
+ title: t,
214
+ subtitle: a,
215
+ id: l,
216
+ background: i = "white",
217
+ py: d = { base: 80, md: 120 },
218
+ maw: h = 800,
219
+ ta: o = "left",
220
+ stackGap: y = "xl"
255
221
  }) {
256
- return /*#__PURE__*/jsx(Box, {
257
- component: "section",
258
- id: id,
259
- bg: bg,
260
- py: py,
261
- style: {
262
- overflow: "hidden"
263
- },
264
- children: /*#__PURE__*/jsx(Container, {
265
- size: "lg",
266
- children: /*#__PURE__*/jsxs(Stack, {
267
- gap: stackGap,
268
- children: [/*#__PURE__*/jsx(SectionHeader, {
269
- subtitle: subtitle,
270
- title: title,
271
- ta: ta,
272
- maw: maw
273
- }), /*#__PURE__*/jsx(Box, {
274
- children: children
275
- })]
276
- })
277
- })
278
- });
222
+ const s = D(i);
223
+ return /* @__PURE__ */ e(
224
+ m,
225
+ {
226
+ component: "section",
227
+ id: l,
228
+ bg: s,
229
+ py: d,
230
+ style: { overflow: "hidden" },
231
+ children: /* @__PURE__ */ e(G, { size: "lg", children: /* @__PURE__ */ n(p, { gap: y, children: [
232
+ /* @__PURE__ */ e(J, { subtitle: a, title: t, ta: o, maw: h }),
233
+ /* @__PURE__ */ e(m, { children: r })
234
+ ] }) })
235
+ }
236
+ );
279
237
  }
280
-
281
- function Header({
282
- logo,
283
- navLinks = [],
284
- loginCta,
285
- signupCta
238
+ function se({
239
+ logo: r,
240
+ navLinks: t = [],
241
+ loginCta: a,
242
+ signupCta: l,
243
+ background: i = "white"
286
244
  }) {
287
- const [scroll] = useWindowScroll();
288
- const scrolled = scroll.y > 10;
289
- const handleNavClick = target => {
290
- if (target === "top") {
291
- window.scrollTo({
292
- top: 0,
293
- behavior: "smooth"
294
- });
295
- } else {
296
- document.getElementById(target)?.scrollIntoView({
297
- behavior: "smooth"
298
- });
299
- }
245
+ const d = D(i), [h] = ae(), o = h.y > 10, y = (g) => {
246
+ g === "top" ? window.scrollTo({ top: 0, behavior: "smooth" }) : document.getElementById(g)?.scrollIntoView({ behavior: "smooth" });
247
+ }, s = (g, u) => {
248
+ (g.key === "Enter" || g.key === " ") && (g.preventDefault(), y(u));
300
249
  };
301
- const handleNavKeyDown = (e, target) => {
302
- if (e.key === "Enter" || e.key === " ") {
303
- e.preventDefault();
304
- handleNavClick(target);
250
+ return /* @__PURE__ */ e(
251
+ m,
252
+ {
253
+ component: "header",
254
+ pos: "sticky",
255
+ top: 0,
256
+ w: "100%",
257
+ style: { zIndex: 100, pointerEvents: "none" },
258
+ children: /* @__PURE__ */ e(G, { size: "xl", py: "md", children: /* @__PURE__ */ e(
259
+ x,
260
+ {
261
+ shadow: o ? "sm" : "none",
262
+ radius: "0",
263
+ p: "xs",
264
+ bg: d,
265
+ bd: o ? "1px solid var(--mantine-color-gray-2)" : "1px solid transparent",
266
+ style: { pointerEvents: "auto", transition: "all 0.2s ease" },
267
+ children: /* @__PURE__ */ n(
268
+ f,
269
+ {
270
+ justify: "space-between",
271
+ align: "center",
272
+ px: { base: "xs", sm: "md" },
273
+ children: [
274
+ r && /* @__PURE__ */ e(
275
+ "a",
276
+ {
277
+ href: "#",
278
+ "aria-label": "Voltar ao topo",
279
+ onClick: (g) => {
280
+ g.preventDefault(), window.scrollTo({ top: 0, behavior: "smooth" });
281
+ },
282
+ style: { display: "inline-flex" },
283
+ children: /* @__PURE__ */ e(
284
+ "img",
285
+ {
286
+ src: r.src,
287
+ alt: r.alt || "",
288
+ height: r.height || 32,
289
+ style: { objectFit: "contain" }
290
+ }
291
+ )
292
+ }
293
+ ),
294
+ t.length > 0 && /* @__PURE__ */ e(
295
+ f,
296
+ {
297
+ gap: "xl",
298
+ visibleFrom: "sm",
299
+ component: "nav",
300
+ role: "navigation",
301
+ "aria-label": "Menu principal",
302
+ children: t.map((g) => /* @__PURE__ */ e(
303
+ c,
304
+ {
305
+ size: "sm",
306
+ fw: 900,
307
+ tt: "uppercase",
308
+ ls: "1px",
309
+ c: "dark",
310
+ role: "link",
311
+ tabIndex: 0,
312
+ style: { cursor: "pointer" },
313
+ onClick: () => y(g.target),
314
+ onKeyDown: (u) => s(u, g.target),
315
+ children: g.label
316
+ },
317
+ g.label
318
+ ))
319
+ }
320
+ ),
321
+ /* @__PURE__ */ n(f, { gap: "sm", children: [
322
+ a && /* @__PURE__ */ e(
323
+ H,
324
+ {
325
+ variant: "subtle",
326
+ component: a.href ? "a" : "button",
327
+ href: a.href,
328
+ onClick: a.onClick,
329
+ c: "gray.7",
330
+ size: "sm",
331
+ radius: "0",
332
+ visibleFrom: "xs",
333
+ fw: 900,
334
+ children: a.label
335
+ }
336
+ ),
337
+ l && /* @__PURE__ */ n(
338
+ H,
339
+ {
340
+ component: l.href ? "a" : "button",
341
+ href: l.href,
342
+ onClick: l.onClick,
343
+ size: "sm",
344
+ radius: "0",
345
+ color: "dark",
346
+ variant: "filled",
347
+ children: [
348
+ /* @__PURE__ */ e(c, { span: !0, visibleFrom: "sm", c: "white", fw: 900, size: "sm", children: l.label }),
349
+ /* @__PURE__ */ e(c, { span: !0, hiddenFrom: "sm", c: "white", fw: 900, size: "xs", children: l.labelMobile || l.label })
350
+ ]
351
+ }
352
+ )
353
+ ] })
354
+ ]
355
+ }
356
+ )
357
+ }
358
+ ) })
305
359
  }
306
- };
307
- return /*#__PURE__*/jsx(Box, {
308
- component: "header",
309
- pos: "sticky",
310
- top: 0,
311
- w: "100%",
312
- style: {
313
- zIndex: 100,
314
- pointerEvents: "none"
315
- },
316
- children: /*#__PURE__*/jsx(Container, {
317
- size: "xl",
318
- py: "md",
319
- children: /*#__PURE__*/jsx(Paper, {
320
- shadow: scrolled ? "sm" : "none",
321
- radius: "0",
322
- p: "xs",
323
- bg: "white",
324
- bd: scrolled ? "1px solid var(--mantine-color-gray-2)" : "1px solid transparent",
325
- style: {
326
- pointerEvents: "auto",
327
- transition: "all 0.2s ease"
328
- },
329
- children: /*#__PURE__*/jsxs(Group, {
330
- justify: "space-between",
331
- align: "center",
332
- px: {
333
- base: "xs",
334
- sm: "md"
335
- },
336
- children: [logo && /*#__PURE__*/jsx("a", {
337
- href: "#",
338
- "aria-label": "Voltar ao topo",
339
- onClick: e => {
340
- e.preventDefault();
341
- window.scrollTo({
342
- top: 0,
343
- behavior: "smooth"
344
- });
345
- },
346
- style: {
347
- display: "inline-flex"
348
- },
349
- children: /*#__PURE__*/jsx("img", {
350
- src: logo.src,
351
- alt: logo.alt || "",
352
- height: logo.height || 32,
353
- style: {
354
- objectFit: "contain"
355
- }
356
- })
357
- }), navLinks.length > 0 && /*#__PURE__*/jsx(Group, {
358
- gap: "xl",
359
- visibleFrom: "sm",
360
- component: "nav",
361
- role: "navigation",
362
- "aria-label": "Menu principal",
363
- children: navLinks.map(link => /*#__PURE__*/jsx(Text, {
364
- size: "sm",
365
- fw: 900,
366
- tt: "uppercase",
367
- ls: "1px",
368
- c: "dark",
369
- role: "link",
370
- tabIndex: 0,
371
- style: {
372
- cursor: "pointer"
373
- },
374
- onClick: () => handleNavClick(link.target),
375
- onKeyDown: e => handleNavKeyDown(e, link.target),
376
- children: link.label
377
- }, link.label))
378
- }), /*#__PURE__*/jsxs(Group, {
379
- gap: "sm",
380
- children: [loginCta && /*#__PURE__*/jsx(Button, {
381
- variant: "subtle",
382
- component: loginCta.href ? "a" : "button",
383
- href: loginCta.href,
384
- onClick: loginCta.onClick,
385
- c: "gray.7",
386
- size: "sm",
387
- radius: "0",
388
- visibleFrom: "xs",
389
- fw: 900,
390
- children: loginCta.label
391
- }), signupCta && /*#__PURE__*/jsxs(Button, {
392
- component: signupCta.href ? "a" : "button",
393
- href: signupCta.href,
394
- onClick: signupCta.onClick,
395
- size: "sm",
396
- radius: "0",
397
- color: "dark",
398
- variant: "filled",
399
- children: [/*#__PURE__*/jsx(Text, {
400
- span: true,
401
- visibleFrom: "sm",
402
- c: "white",
403
- fw: 900,
404
- size: "sm",
405
- children: signupCta.label
406
- }), /*#__PURE__*/jsx(Text, {
407
- span: true,
408
- hiddenFrom: "sm",
409
- c: "white",
410
- fw: 900,
411
- size: "xs",
412
- children: signupCta.labelMobile || signupCta.label
413
- })]
414
- })]
415
- })]
416
- })
417
- })
418
- })
419
- });
360
+ );
420
361
  }
421
-
422
- /** @deprecated Use Header instead */
423
- const Navbar = Header;
424
-
425
- function Hero({
426
- subtitle,
427
- title,
428
- description,
429
- cta,
430
- video,
431
- image
362
+ const Be = se;
363
+ function Pe({
364
+ subtitle: r,
365
+ title: t,
366
+ description: a,
367
+ cta: l,
368
+ video: i,
369
+ image: d,
370
+ background: h = "white"
432
371
  }) {
433
- return /*#__PURE__*/jsx(Box, {
434
- py: {
435
- base: 80,
436
- sm: 100,
437
- md: 140
438
- },
439
- id: "hero",
440
- bg: "white",
441
- children: /*#__PURE__*/jsx(Container, {
442
- size: "lg",
443
- children: /*#__PURE__*/jsxs(SimpleGrid, {
444
- cols: {
445
- base: 1,
446
- md: 2
447
- },
448
- spacing: {
449
- base: 60,
450
- md: 100
451
- },
452
- verticalSpacing: 60,
453
- children: [/*#__PURE__*/jsxs(Stack, {
454
- align: {
455
- base: "center",
456
- md: "flex-start"
457
- },
458
- justify: "center",
459
- gap: {
460
- base: 32,
461
- md: 48
462
- },
463
- ta: {
464
- base: "center",
465
- md: "left"
466
- },
467
- children: [/*#__PURE__*/jsx(SectionHeader, {
468
- subtitle: subtitle,
469
- title: title,
470
- titleOrder: 1,
471
- titleFz: "var(--fz-hero)",
472
- ta: "inherit"
473
- }), description && /*#__PURE__*/jsx(Center, {
474
- children: /*#__PURE__*/jsx(Text, {
475
- size: "xl",
476
- c: "gray.6",
477
- lh: 1.6,
478
- maw: 600,
479
- children: description
480
- })
481
- }), cta && /*#__PURE__*/jsx(Center, {
482
- children: /*#__PURE__*/jsx(Group, {
483
- gap: "md",
484
- justify: {
485
- base: "center",
486
- md: "flex-start"
487
- },
488
- children: /*#__PURE__*/jsx(CTAButton, {
489
- label: cta.label,
490
- href: cta.href,
491
- icon: cta.icon,
492
- size: cta.size || "xl",
493
- px: cta.px || 48,
494
- variant: cta.variant,
495
- color: cta.color
496
- })
497
- })
498
- })]
499
- }), /*#__PURE__*/jsx(MediaBlock, {
500
- video: video,
501
- image: image,
502
- alt: "Demonstra\xE7\xE3o do produto"
503
- })]
504
- })
505
- })
506
- });
372
+ const o = D(h);
373
+ return /* @__PURE__ */ e(m, { py: { base: 80, sm: 100, md: 140 }, id: "hero", bg: o, children: /* @__PURE__ */ e(G, { size: "lg", children: /* @__PURE__ */ n(
374
+ S,
375
+ {
376
+ cols: { base: 1, md: 2 },
377
+ spacing: { base: 60, md: 100 },
378
+ verticalSpacing: 60,
379
+ children: [
380
+ /* @__PURE__ */ n(
381
+ p,
382
+ {
383
+ align: { base: "center", md: "flex-start" },
384
+ justify: "center",
385
+ gap: { base: 32, md: 48 },
386
+ ta: { base: "center", md: "left" },
387
+ children: [
388
+ /* @__PURE__ */ e(
389
+ J,
390
+ {
391
+ subtitle: r,
392
+ title: t,
393
+ titleOrder: 1,
394
+ titleFz: "var(--fz-hero)",
395
+ ta: "inherit"
396
+ }
397
+ ),
398
+ a && /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e(c, { size: "xl", c: "gray.6", lh: 1.6, maw: 600, children: a }) }),
399
+ l && /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e(f, { gap: "md", justify: { base: "center", md: "flex-start" }, children: /* @__PURE__ */ e(
400
+ T,
401
+ {
402
+ label: l.label,
403
+ href: l.href,
404
+ icon: l.icon,
405
+ size: l.size || "xl",
406
+ px: l.px || 48,
407
+ variant: l.variant,
408
+ color: l.color
409
+ }
410
+ ) }) })
411
+ ]
412
+ }
413
+ ),
414
+ /* @__PURE__ */ e(
415
+ X,
416
+ {
417
+ video: i,
418
+ image: d,
419
+ alt: "Demonstração do produto"
420
+ }
421
+ )
422
+ ]
423
+ }
424
+ ) }) });
507
425
  }
508
-
509
- function LogoItem({
510
- logo,
511
- index
512
- }) {
513
- const imageProps = {
514
- src: logo.src,
515
- alt: logo.alt || `Logo ${index}`,
516
- h: logo.height || 50,
426
+ function de({ logo: r, index: t }) {
427
+ const a = {
428
+ src: r.src,
429
+ alt: r.alt || `Logo ${t}`,
430
+ h: r.height || 50,
517
431
  w: "auto",
518
432
  style: {
519
433
  filter: "grayscale(1) opacity(0.4)",
520
434
  transition: "filter 0.3s ease, opacity 0.3s ease",
521
- ...logo.style
435
+ ...r.style
522
436
  },
523
- onMouseEnter: e => {
524
- e.currentTarget.style.filter = "grayscale(0) opacity(0.8)";
437
+ onMouseEnter: (l) => {
438
+ l.currentTarget.style.filter = "grayscale(0) opacity(0.8)";
525
439
  },
526
- onMouseLeave: e => {
527
- e.currentTarget.style.filter = "grayscale(1) opacity(0.4)";
440
+ onMouseLeave: (l) => {
441
+ l.currentTarget.style.filter = "grayscale(1) opacity(0.4)";
528
442
  }
529
443
  };
530
- if (logo.url) {
531
- return /*#__PURE__*/jsx(Center, {
532
- children: /*#__PURE__*/jsx("a", {
533
- href: logo.url,
534
- target: "_blank",
535
- rel: "noopener noreferrer",
536
- children: /*#__PURE__*/jsx(Image, {
537
- ...imageProps
538
- })
539
- })
540
- });
541
- }
542
- return /*#__PURE__*/jsx(Center, {
543
- children: /*#__PURE__*/jsx(Image, {
544
- ...imageProps
545
- })
546
- });
444
+ return r.url ? /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e("a", { href: r.url, target: "_blank", rel: "noopener noreferrer", children: /* @__PURE__ */ e(O, { ...a }) }) }) : /* @__PURE__ */ e(v, { children: /* @__PURE__ */ e(O, { ...a }) });
547
445
  }
548
-
549
- /**
550
- * SocialProof - Logo bar showing partner/client logos.
551
- *
552
- * @param {string} id - Section ID for scroll navigation
553
- * @param {string} title - Optional heading text
554
- * @param {array} logos - [{ src, alt, height, url?, style? }]
555
- */
556
- function SocialProof({
557
- id,
558
- title,
559
- logos
560
- }) {
561
- if (!logos || logos.length === 0) return null;
562
- return /*#__PURE__*/jsx(Box, {
563
- component: "section",
564
- id: id,
565
- py: {
566
- base: 40,
567
- md: 60
568
- },
569
- bg: "white",
570
- bd: {
571
- bottom: "1px solid var(--mantine-color-gray-1)"
572
- },
573
- children: /*#__PURE__*/jsx(Container, {
574
- size: "lg",
575
- children: /*#__PURE__*/jsxs(Stack, {
576
- align: "center",
577
- ta: "center",
578
- gap: "xl",
579
- children: [title && /*#__PURE__*/jsx(Text, {
580
- fw: 500,
581
- c: "gray.5",
582
- size: "sm",
583
- tt: "uppercase",
584
- ls: "0.1em",
585
- children: title
586
- }), /*#__PURE__*/jsx(Group, {
587
- justify: "space-between",
588
- gap: {
589
- base: 40,
590
- md: 80
591
- },
592
- style: {
593
- rowGap: 40
594
- },
595
- w: "100%",
596
- children: logos.map((logo, i) => /*#__PURE__*/jsx(LogoItem, {
597
- logo: logo,
598
- index: i
599
- }, i))
600
- })]
601
- })
602
- })
603
- });
446
+ function ke({ id: r, title: t, logos: a, background: l = "gray" }) {
447
+ const i = D(l);
448
+ return !a || a.length === 0 ? null : /* @__PURE__ */ e(
449
+ m,
450
+ {
451
+ component: "section",
452
+ id: r,
453
+ py: { base: 40, md: 60 },
454
+ bg: i,
455
+ bd: { bottom: "1px solid var(--mantine-color-gray-1)" },
456
+ children: /* @__PURE__ */ e(G, { size: "lg", children: /* @__PURE__ */ n(p, { align: "center", ta: "center", gap: "xl", children: [
457
+ t && /* @__PURE__ */ e(c, { fw: 500, c: "gray.5", size: "sm", tt: "uppercase", ls: "0.1em", children: t }),
458
+ /* @__PURE__ */ e(
459
+ f,
460
+ {
461
+ justify: "space-between",
462
+ gap: { base: 40, md: 80 },
463
+ style: { rowGap: 40 },
464
+ w: "100%",
465
+ children: a.map((d, h) => /* @__PURE__ */ e(de, { logo: d, index: h }, h))
466
+ }
467
+ )
468
+ ] }) })
469
+ }
470
+ );
604
471
  }
605
-
606
- function FeatureSplit({
607
- id,
608
- subtitle,
609
- title,
610
- description,
611
- featuresList,
612
- cta,
613
- video,
614
- image,
615
- reverse = false,
616
- bg
472
+ function De({
473
+ id: r,
474
+ subtitle: t,
475
+ title: a,
476
+ description: l,
477
+ featuresList: i,
478
+ cta: d,
479
+ video: h,
480
+ image: o,
481
+ reverse: y = !1,
482
+ background: s = "white"
617
483
  }) {
618
- const listComponent = featuresList && featuresList.length > 0 && /*#__PURE__*/jsx(List, {
619
- spacing: "md",
620
- size: "md",
621
- center: true,
622
- icon: /*#__PURE__*/jsx(ThemeIcon, {
623
- color: "gray.2",
624
- size: 24,
625
- radius: "0",
626
- children: /*#__PURE__*/jsx(IconCheck, {
627
- size: 14,
628
- color: "var(--mantine-color-gray-9)"
629
- })
630
- }),
631
- children: featuresList.map((item, index) => /*#__PURE__*/jsx(List.Item, {
632
- children: item
633
- }, index))
634
- });
635
- const contentCol = /*#__PURE__*/jsxs(Stack, {
636
- justify: "center",
637
- gap: "lg",
638
- children: [description && /*#__PURE__*/jsx(Text, {
639
- c: "gray.6",
640
- size: "xl",
641
- lh: 1.6,
642
- children: description
643
- }), listComponent, cta && /*#__PURE__*/jsx(Group, {
644
- mt: "md",
645
- children: /*#__PURE__*/jsx(CTAButton, {
646
- label: cta.label,
647
- href: cta.href,
648
- icon: cta.icon,
649
- size: cta.size || "lg",
650
- variant: cta.variant,
651
- color: cta.color
652
- })
653
- })]
654
- });
655
- const mediaCol = (video || image) && /*#__PURE__*/jsx(MediaBlock, {
656
- video: video,
657
- image: image,
658
- width: "80%"
659
- });
660
- return /*#__PURE__*/jsx(Layout, {
661
- id: id,
662
- subtitle: subtitle,
663
- title: title,
664
- bg: bg,
665
- children: /*#__PURE__*/jsx(SimpleGrid, {
666
- cols: {
667
- base: 1,
668
- md: 2
669
- },
670
- spacing: {
671
- base: 40,
672
- md: 80
673
- },
674
- verticalSpacing: {
675
- base: 40,
676
- md: 50
677
- },
678
- children: reverse ? /*#__PURE__*/jsxs(Fragment, {
679
- children: [mediaCol, contentCol]
680
- }) : /*#__PURE__*/jsxs(Fragment, {
681
- children: [contentCol, mediaCol]
682
- })
683
- })
684
- });
484
+ const g = i && i.length > 0 && /* @__PURE__ */ e(
485
+ R,
486
+ {
487
+ spacing: "md",
488
+ size: "md",
489
+ center: !0,
490
+ icon: /* @__PURE__ */ e(I, { color: "gray.2", size: 24, radius: "0", children: /* @__PURE__ */ e(L, { size: 14, color: "var(--mantine-color-gray-9)" }) }),
491
+ children: i.map((A, w) => /* @__PURE__ */ e(R.Item, { children: A }, w))
492
+ }
493
+ ), u = /* @__PURE__ */ n(p, { justify: "center", gap: "lg", children: [
494
+ l && /* @__PURE__ */ e(c, { c: "gray.6", size: "xl", lh: 1.6, children: l }),
495
+ g,
496
+ d && /* @__PURE__ */ e(f, { mt: "md", children: /* @__PURE__ */ e(
497
+ T,
498
+ {
499
+ label: d.label,
500
+ href: d.href,
501
+ icon: d.icon,
502
+ size: d.size || "lg",
503
+ variant: d.variant,
504
+ color: d.color
505
+ }
506
+ ) })
507
+ ] }), B = (h || o) && /* @__PURE__ */ e(X, { video: h, image: o, width: "80%" });
508
+ return /* @__PURE__ */ e(F, { id: r, subtitle: t, title: a, background: s, children: /* @__PURE__ */ e(
509
+ S,
510
+ {
511
+ cols: { base: 1, md: 2 },
512
+ spacing: { base: 40, md: 80 },
513
+ verticalSpacing: { base: 40, md: 50 },
514
+ children: y ? /* @__PURE__ */ n(K, { children: [
515
+ B,
516
+ u
517
+ ] }) : /* @__PURE__ */ n(K, { children: [
518
+ u,
519
+ B
520
+ ] })
521
+ }
522
+ ) });
685
523
  }
686
-
687
- function FeaturesGrid({
688
- id,
689
- subtitle,
690
- title,
691
- bg = "gray.0",
692
- items = []
524
+ function Ae({
525
+ id: r,
526
+ subtitle: t,
527
+ title: a,
528
+ background: l = "gray.0",
529
+ items: i = []
693
530
  }) {
694
- return /*#__PURE__*/jsx(Layout, {
695
- id: id,
696
- subtitle: subtitle,
697
- title: title,
698
- bg: bg,
699
- children: /*#__PURE__*/jsx(Grid, {
700
- gutter: "lg",
701
- children: items.map((item, idx) => /*#__PURE__*/jsx(FeatureCard, {
702
- ...item
703
- }, idx))
704
- })
705
- });
531
+ return /* @__PURE__ */ e(F, { id: r, subtitle: t, title: a, background: l, children: /* @__PURE__ */ e(b, { gutter: "lg", children: i.map((d, h) => /* @__PURE__ */ e(he, { ...d }, h)) }) });
706
532
  }
707
- function FeatureCard({
708
- icon: Icon,
709
- iconVariant,
710
- iconColor,
711
- label,
712
- title,
713
- titleSize,
714
- description,
715
- descriptionSize,
716
- descriptionMaw,
717
- span = {
718
- base: 12,
719
- md: 6
720
- },
721
- bg = "white",
722
- dark = false,
723
- visual,
724
- secondaryVisual,
725
- layout = "stacked",
726
- badges,
727
- codeBlock,
728
- decorativeContent,
729
- style: extraStyle,
730
- ...props
533
+ function he({
534
+ icon: r,
535
+ iconVariant: t,
536
+ iconColor: a,
537
+ label: l,
538
+ title: i,
539
+ titleSize: d,
540
+ description: h,
541
+ descriptionSize: o,
542
+ descriptionMaw: y,
543
+ span: s = { base: 12, md: 6 },
544
+ bg: g = "white",
545
+ dark: u = !1,
546
+ visual: B,
547
+ secondaryVisual: A,
548
+ layout: w = "stacked",
549
+ badges: C,
550
+ codeBlock: N,
551
+ decorativeContent: V,
552
+ style: E,
553
+ ...M
731
554
  }) {
732
- const textColor = dark ? "white" : undefined;
733
- const descColor = dark ? "gray.4" : "gray.6";
734
- const labelColor = "gray.5";
735
- const resolvedIconVariant = iconVariant || (dark ? "filled" : "light");
736
- const resolvedIconColor = iconColor || (dark ? "gray.7" : "gray");
737
- const resolvedTitleSize = titleSize || (layout === "compact" ? "h4" : "h3");
738
- const resolvedDescSize = descriptionSize || (layout === "compact" ? "sm" : "lg");
739
- const headerContent = /*#__PURE__*/jsxs(Box, {
740
- children: [Icon && /*#__PURE__*/jsx(ThemeIcon, {
741
- size: 48,
742
- radius: "0",
743
- variant: resolvedIconVariant,
744
- color: resolvedIconColor,
745
- mb: "lg",
746
- style: dark ? {
747
- color: "white"
748
- } : undefined,
749
- children: /*#__PURE__*/jsx(Icon, {
750
- size: 24,
751
- stroke: 1.5
752
- })
753
- }), label && /*#__PURE__*/jsx(Text, {
754
- size: "sm",
755
- fw: 800,
756
- tt: "uppercase",
757
- ls: "1.5px",
758
- c: labelColor,
759
- mb: "xs",
760
- children: label
761
- }), title && /*#__PURE__*/jsx(Text, {
762
- fz: resolvedTitleSize,
763
- fw: 900,
764
- lh: 1.2,
765
- mb: "sm",
766
- c: textColor,
767
- children: title
768
- }), description && /*#__PURE__*/jsx(Text, {
769
- c: descColor,
770
- size: resolvedDescSize,
771
- maw: descriptionMaw,
772
- mb: badges ? "xl" : layout === "compact" ? "lg" : undefined,
773
- children: description
774
- }), badges && badges.length > 0 && /*#__PURE__*/jsx(Group, {
775
- children: badges.map((badge, i) => /*#__PURE__*/jsx(Badge, {
776
- variant: "dot",
777
- color: "gray",
778
- radius: "0",
779
- children: badge
780
- }, i))
781
- })]
782
- });
783
- const visualContent = visual ? renderVisual(visual, dark) : null;
784
- const secondaryVisualContent = secondaryVisual ? renderVisual(secondaryVisual, dark) : null;
785
-
786
- // Split layout: text left, visual/code right (via inner Grid)
787
- if (layout === "split") {
788
- return /*#__PURE__*/jsx(Grid.Col, {
789
- span: span,
790
- children: /*#__PURE__*/jsx(Paper, {
791
- h: "100%",
792
- p: {
793
- base: "xl",
794
- md: 40
795
- },
555
+ const j = /* @__PURE__ */ n(m, { children: [
556
+ r && /* @__PURE__ */ e(
557
+ I,
558
+ {
559
+ size: 48,
796
560
  radius: "0",
797
- bg: bg,
798
- bd: "1px solid var(--mantine-color-gray-2)",
799
- style: extraStyle,
800
- ...props,
801
- children: /*#__PURE__*/jsxs(Grid, {
802
- align: "center",
803
- gutter: "xl",
804
- children: [/*#__PURE__*/jsx(Grid.Col, {
805
- span: {
806
- base: 12,
807
- sm: 6
808
- },
809
- children: headerContent
810
- }), /*#__PURE__*/jsxs(Grid.Col, {
811
- span: {
812
- base: 12,
813
- sm: 6
814
- },
815
- children: [visualContent, codeBlock && /*#__PURE__*/jsx(Code, {
816
- block: true,
561
+ variant: t || (u ? "filled" : "light"),
562
+ color: a || (u ? "gray.7" : "gray"),
563
+ mb: "lg",
564
+ style: u ? { color: "white" } : void 0,
565
+ children: /* @__PURE__ */ e(r, { size: 24, stroke: 1.5 })
566
+ }
567
+ ),
568
+ l && /* @__PURE__ */ e(
569
+ c,
570
+ {
571
+ size: "sm",
572
+ fw: 800,
573
+ tt: "uppercase",
574
+ ls: "1.5px",
575
+ c: "gray.5",
576
+ mb: "xs",
577
+ children: l
578
+ }
579
+ ),
580
+ i && /* @__PURE__ */ e(c, { fz: d || (w === "compact" ? "h4" : "h3"), fw: 900, lh: 1.2, mb: "sm", c: u ? "white" : void 0, children: i }),
581
+ h && /* @__PURE__ */ e(
582
+ c,
583
+ {
584
+ c: u ? "gray.4" : "gray.6",
585
+ size: o || (w === "compact" ? "sm" : "lg"),
586
+ maw: y,
587
+ mb: C ? "xl" : w === "compact" ? "lg" : void 0,
588
+ children: h
589
+ }
590
+ ),
591
+ C && C.length > 0 && /* @__PURE__ */ e(f, { children: C.map((Y, Z) => /* @__PURE__ */ e(k, { variant: "dot", color: "gray", radius: "0", children: Y }, Z)) })
592
+ ] }), P = B ? Q(B, u) : null, W = A ? Q(A, u) : null;
593
+ return w === "split" ? /* @__PURE__ */ e(b.Col, { span: s, children: /* @__PURE__ */ e(
594
+ x,
595
+ {
596
+ h: "100%",
597
+ p: { base: "xl", md: 40 },
598
+ radius: "0",
599
+ bg: g,
600
+ bd: "1px solid var(--mantine-color-gray-2)",
601
+ style: E,
602
+ ...M,
603
+ children: /* @__PURE__ */ n(b, { align: "center", gutter: "xl", children: [
604
+ /* @__PURE__ */ e(b.Col, { span: { base: 12, sm: 6 }, children: j }),
605
+ /* @__PURE__ */ n(b.Col, { span: { base: 12, sm: 6 }, children: [
606
+ P,
607
+ N && /* @__PURE__ */ e(
608
+ re,
609
+ {
610
+ block: !0,
817
611
  color: "gray.0",
818
612
  c: "gray.7",
819
- style: {
820
- fontSize: 12,
821
- lineHeight: 1.4,
822
- borderRadius: 0
823
- },
824
- children: codeBlock
825
- })]
826
- })]
827
- })
828
- })
829
- });
830
- }
831
-
832
- // Compact layout: simpler card
833
- if (layout === "compact") {
834
- return /*#__PURE__*/jsx(Grid.Col, {
835
- span: span,
836
- children: /*#__PURE__*/jsxs(Paper, {
837
- h: "100%",
838
- p: {
839
- base: "xl",
840
- md: 40
841
- },
842
- radius: "0",
843
- bg: bg,
844
- bd: "1px solid var(--mantine-color-gray-2)",
845
- style: extraStyle,
846
- ...props,
847
- children: [headerContent, visualContent]
848
- })
849
- });
850
- }
851
-
852
- // Stacked layout with decorative content on the side (e.g. device icons)
853
- if (decorativeContent) {
854
- return /*#__PURE__*/jsx(Grid.Col, {
855
- span: span,
856
- children: /*#__PURE__*/jsx(Paper, {
857
- h: "100%",
858
- p: {
859
- base: "xl",
860
- md: 40
861
- },
862
- radius: "0",
863
- bg: bg,
864
- bd: "1px solid var(--mantine-color-gray-2)",
865
- pos: "relative",
866
- style: extraStyle,
867
- ...props,
868
- children: /*#__PURE__*/jsxs(Grid, {
869
- gutter: 0,
870
- pos: "relative",
871
- children: [/*#__PURE__*/jsx(Grid.Col, {
872
- span: {
873
- base: 12,
874
- sm: 7
875
- },
876
- style: {
877
- zIndex: 1
878
- },
879
- children: headerContent
880
- }), /*#__PURE__*/jsx(Grid.Col, {
881
- span: 5,
882
- visibleFrom: "sm",
883
- children: decorativeContent
884
- })]
885
- })
886
- })
887
- });
888
- }
889
-
890
- // Default stacked layout
891
- return /*#__PURE__*/jsx(Grid.Col, {
892
- span: span,
893
- children: /*#__PURE__*/jsxs(Paper, {
613
+ style: { fontSize: 12, lineHeight: 1.4, borderRadius: 0 },
614
+ children: N
615
+ }
616
+ )
617
+ ] })
618
+ ] })
619
+ }
620
+ ) }) : w === "compact" ? /* @__PURE__ */ e(b.Col, { span: s, children: /* @__PURE__ */ n(
621
+ x,
622
+ {
894
623
  h: "100%",
895
- p: {
896
- base: "xl",
897
- md: 40
898
- },
624
+ p: { base: "xl", md: 40 },
625
+ radius: "0",
626
+ bg: g,
627
+ bd: "1px solid var(--mantine-color-gray-2)",
628
+ style: E,
629
+ ...M,
630
+ children: [
631
+ j,
632
+ P
633
+ ]
634
+ }
635
+ ) }) : V ? /* @__PURE__ */ e(b.Col, { span: s, children: /* @__PURE__ */ e(
636
+ x,
637
+ {
638
+ h: "100%",
639
+ p: { base: "xl", md: 40 },
899
640
  radius: "0",
900
- bg: bg,
641
+ bg: g,
642
+ bd: "1px solid var(--mantine-color-gray-2)",
643
+ pos: "relative",
644
+ style: E,
645
+ ...M,
646
+ children: /* @__PURE__ */ n(b, { gutter: 0, pos: "relative", children: [
647
+ /* @__PURE__ */ e(b.Col, { span: { base: 12, sm: 7 }, style: { zIndex: 1 }, children: j }),
648
+ /* @__PURE__ */ e(b.Col, { span: 5, visibleFrom: "sm", children: V })
649
+ ] })
650
+ }
651
+ ) }) : /* @__PURE__ */ e(b.Col, { span: s, children: /* @__PURE__ */ n(
652
+ x,
653
+ {
654
+ h: "100%",
655
+ p: { base: "xl", md: 40 },
656
+ radius: "0",
657
+ bg: g,
901
658
  bd: "1px solid var(--mantine-color-gray-2)",
902
659
  display: "flex",
903
660
  style: {
904
661
  flexDirection: "column",
905
662
  justifyContent: "space-between",
906
- ...extraStyle
663
+ ...E
907
664
  },
908
- ...props,
909
- children: [headerContent, visualContent && secondaryVisualContent ? /*#__PURE__*/jsxs(Group, {
910
- gap: 40,
911
- align: "center",
912
- children: [visualContent, secondaryVisualContent]
913
- }) : visualContent]
914
- })
915
- });
665
+ ...M,
666
+ children: [
667
+ j,
668
+ P && W ? /* @__PURE__ */ n(f, { gap: 40, align: "center", children: [
669
+ P,
670
+ W
671
+ ] }) : P
672
+ ]
673
+ }
674
+ ) });
916
675
  }
917
- function renderVisual(visual, dark) {
918
- if (!visual) return null;
919
- switch (visual.type) {
676
+ function Q(r, t) {
677
+ if (!r) return null;
678
+ switch (r.type) {
920
679
  case "ring":
921
- return /*#__PURE__*/jsx(RingProgress, {
922
- size: visual.size || 140,
923
- thickness: visual.thickness || 12,
924
- sections: [{
925
- value: visual.value || 100,
926
- color: "gray.9"
927
- }],
928
- label: /*#__PURE__*/jsx(Center, {
929
- children: /*#__PURE__*/jsxs(Stack, {
930
- gap: 0,
931
- align: "center",
932
- children: [/*#__PURE__*/jsx(Text, {
933
- fw: 900,
934
- size: "xl",
935
- lh: 1,
936
- children: visual.label
937
- }), visual.sublabel && /*#__PURE__*/jsx(Text, {
938
- size: "xs",
939
- c: "gray.5",
940
- fw: 700,
941
- children: visual.sublabel
942
- })]
943
- })
944
- })
945
- });
680
+ return /* @__PURE__ */ e(
681
+ le,
682
+ {
683
+ size: r.size || 140,
684
+ thickness: r.thickness || 12,
685
+ sections: [{ value: r.value || 100, color: "gray.9" }],
686
+ label: /* @__PURE__ */ e(v, { children: /* @__PURE__ */ n(p, { gap: 0, align: "center", children: [
687
+ /* @__PURE__ */ e(c, { fw: 900, size: "xl", lh: 1, children: r.label }),
688
+ r.sublabel && /* @__PURE__ */ e(c, { size: "xs", c: "gray.5", fw: 700, children: r.sublabel })
689
+ ] }) })
690
+ }
691
+ );
946
692
  case "metric":
947
- return /*#__PURE__*/jsxs(Stack, {
948
- gap: 0,
949
- children: [/*#__PURE__*/jsx(Text, {
950
- fw: 900,
951
- fz: 32,
952
- c: "gray.9",
953
- lh: 1,
954
- children: visual.value
955
- }), /*#__PURE__*/jsx(Text, {
956
- size: "sm",
957
- c: "gray.5",
958
- mt: 4,
959
- children: visual.label
960
- }), visual.badge && /*#__PURE__*/jsx(Badge, {
961
- mt: "md",
962
- color: "gray",
963
- variant: "dot",
964
- radius: "0",
965
- children: visual.badge
966
- })]
967
- });
693
+ return /* @__PURE__ */ n(p, { gap: 0, children: [
694
+ /* @__PURE__ */ e(c, { fw: 900, fz: 32, c: "gray.9", lh: 1, children: r.value }),
695
+ /* @__PURE__ */ e(c, { size: "sm", c: "gray.5", mt: 4, children: r.label }),
696
+ r.badge && /* @__PURE__ */ e(k, { mt: "md", color: "gray", variant: "dot", radius: "0", children: r.badge })
697
+ ] });
968
698
  case "bars":
969
- return /*#__PURE__*/jsx(Group, {
970
- align: "flex-end",
971
- gap: 8,
972
- h: visual.height || 100,
973
- preventGrowOverflow: false,
974
- children: (visual.data || []).map((h, i) => /*#__PURE__*/jsx(Box, {
975
- w: 20,
976
- h: `${h}%`,
977
- bg: i === visual.highlight ? "gray.9" : "gray.2",
978
- radius: "0"
979
- }, i))
980
- });
699
+ return /* @__PURE__ */ e(
700
+ f,
701
+ {
702
+ align: "flex-end",
703
+ gap: 8,
704
+ h: r.height || 100,
705
+ preventGrowOverflow: !1,
706
+ children: (r.data || []).map((a, l) => /* @__PURE__ */ e(
707
+ m,
708
+ {
709
+ w: 20,
710
+ h: `${a}%`,
711
+ bg: l === r.highlight ? "gray.9" : "gray.2",
712
+ radius: "0"
713
+ },
714
+ l
715
+ ))
716
+ }
717
+ );
981
718
  case "typography":
982
- return /*#__PURE__*/jsx(Center, {
983
- h: visual.height || 160,
984
- bg: dark ? "gray.8" : "gray.1",
985
- radius: "0",
986
- children: /*#__PURE__*/jsx(Text, {
987
- fz: visual.fontSize || 100,
988
- fw: 900,
989
- c: dark ? "gray.6" : "gray.3",
990
- style: {
991
- letterSpacing: -6
992
- },
993
- children: visual.text || "Aa"
994
- })
995
- });
996
- case "icon-large":
997
- {
998
- const LargeIcon = visual.icon;
999
- if (!LargeIcon) return null;
1000
- return /*#__PURE__*/jsx(LargeIcon, {
1001
- size: visual.size || 64,
1002
- stroke: visual.stroke || 1,
1003
- color: visual.color || "var(--mantine-color-gray-2)"
1004
- });
1005
- }
719
+ return /* @__PURE__ */ e(
720
+ v,
721
+ {
722
+ h: r.height || 160,
723
+ bg: t ? "gray.8" : "gray.1",
724
+ radius: "0",
725
+ children: /* @__PURE__ */ e(
726
+ c,
727
+ {
728
+ fz: r.fontSize || 100,
729
+ fw: 900,
730
+ c: t ? "gray.6" : "gray.3",
731
+ style: { letterSpacing: -6 },
732
+ children: r.text || "Aa"
733
+ }
734
+ )
735
+ }
736
+ );
737
+ case "icon-large": {
738
+ const a = r.icon;
739
+ return a ? /* @__PURE__ */ e(
740
+ a,
741
+ {
742
+ size: r.size || 64,
743
+ stroke: r.stroke || 1,
744
+ color: r.color || "var(--mantine-color-gray-2)"
745
+ }
746
+ ) : null;
747
+ }
1006
748
  default:
1007
749
  return null;
1008
750
  }
1009
751
  }
1010
-
1011
- function Comparison({
1012
- id,
1013
- subtitle,
1014
- title,
1015
- traditionalCol,
1016
- newCol
752
+ function Ce({
753
+ id: r,
754
+ subtitle: t,
755
+ title: a,
756
+ traditionalCol: l,
757
+ newCol: i,
758
+ background: d = "white"
1017
759
  }) {
1018
- return /*#__PURE__*/jsx(Layout, {
1019
- id: id,
1020
- subtitle: subtitle,
1021
- title: title,
1022
- bg: "white",
1023
- children: /*#__PURE__*/jsx(Paper, {
760
+ return /* @__PURE__ */ e(F, { id: r, subtitle: t, title: a, background: d, children: /* @__PURE__ */ e(
761
+ x,
762
+ {
1024
763
  radius: "0",
1025
764
  bd: "1px solid var(--mantine-color-gray-2)",
1026
- style: {
1027
- overflow: "hidden"
1028
- },
1029
- children: /*#__PURE__*/jsxs(SimpleGrid, {
1030
- cols: {
1031
- base: 1,
1032
- md: 2
1033
- },
1034
- spacing: 0,
1035
- children: [/*#__PURE__*/jsx(Box, {
1036
- bg: "gray.0",
1037
- p: {
1038
- base: 30,
1039
- md: 60
1040
- },
1041
- children: /*#__PURE__*/jsxs(Stack, {
1042
- gap: "xl",
1043
- children: [/*#__PURE__*/jsxs(Box, {
1044
- children: [/*#__PURE__*/jsx(Text, {
1045
- fw: 900,
1046
- fz: "h2",
1047
- c: "gray.9",
1048
- mb: 4,
1049
- children: traditionalCol.title
1050
- }), /*#__PURE__*/jsx(Text, {
1051
- size: "sm",
1052
- fw: 800,
1053
- tt: "uppercase",
1054
- ls: "1.5px",
1055
- c: "gray.5",
1056
- children: traditionalCol.subtitle
1057
- })]
1058
- }), /*#__PURE__*/jsx(Stack, {
1059
- gap: "md",
1060
- mb: 40,
1061
- children: traditionalCol.items.map((item, index) => /*#__PURE__*/jsxs(Fragment$1, {
1062
- children: [/*#__PURE__*/jsxs(Group, {
1063
- justify: "space-between",
1064
- children: [/*#__PURE__*/jsx(Text, {
1065
- size: "sm",
1066
- c: "gray.6",
1067
- children: item.label
1068
- }), /*#__PURE__*/jsx(Text, {
1069
- fw: 700,
1070
- c: "gray.9",
1071
- children: item.value
1072
- })]
1073
- }), index < traditionalCol.items.length - 1 && /*#__PURE__*/jsx(Divider, {
1074
- color: "var(--mantine-color-gray-2)"
1075
- })]
1076
- }, index))
1077
- }), /*#__PURE__*/jsxs(Box, {
765
+ style: { overflow: "hidden" },
766
+ children: /* @__PURE__ */ n(S, { cols: { base: 1, md: 2 }, spacing: 0, children: [
767
+ /* @__PURE__ */ e(m, { bg: "gray.0", p: { base: 30, md: 60 }, children: /* @__PURE__ */ n(p, { gap: "xl", children: [
768
+ /* @__PURE__ */ n(m, { children: [
769
+ /* @__PURE__ */ e(c, { fw: 900, fz: "h2", c: "gray.9", mb: 4, children: l.title }),
770
+ /* @__PURE__ */ e(c, { size: "sm", fw: 800, tt: "uppercase", ls: "1.5px", c: "gray.5", children: l.subtitle })
771
+ ] }),
772
+ /* @__PURE__ */ e(p, { gap: "md", mb: 40, children: l.items.map((h, o) => /* @__PURE__ */ n(oe, { children: [
773
+ /* @__PURE__ */ n(f, { justify: "space-between", children: [
774
+ /* @__PURE__ */ e(c, { size: "sm", c: "gray.6", children: h.label }),
775
+ /* @__PURE__ */ e(c, { fw: 700, c: "gray.9", children: h.value })
776
+ ] }),
777
+ o < l.items.length - 1 && /* @__PURE__ */ e(_, { color: "var(--mantine-color-gray-2)" })
778
+ ] }, o)) }),
779
+ /* @__PURE__ */ n(
780
+ m,
781
+ {
1078
782
  bg: "white",
1079
783
  p: "lg",
1080
784
  radius: "0",
1081
785
  bd: "1px solid var(--mantine-color-gray-2)",
1082
- children: [/*#__PURE__*/jsxs(Group, {
1083
- justify: "space-between",
1084
- children: [/*#__PURE__*/jsx(Text, {
1085
- fw: 900,
1086
- c: "gray.7",
1087
- children: traditionalCol.totalLabel || "Total Estimado"
1088
- }), /*#__PURE__*/jsx(Text, {
1089
- fw: 900,
1090
- fz: 32,
1091
- c: "gray.9",
1092
- children: traditionalCol.totalValue
1093
- })]
1094
- }), traditionalCol.footerText && /*#__PURE__*/jsx(Text, {
1095
- size: "xs",
1096
- c: "red.6",
1097
- ta: "right",
1098
- mt: 4,
1099
- children: traditionalCol.footerText
1100
- })]
1101
- })]
1102
- })
1103
- }), /*#__PURE__*/jsx(Box, {
1104
- bg: "white",
1105
- p: {
1106
- base: 30,
1107
- md: 60
1108
- },
1109
- pos: "relative",
1110
- children: /*#__PURE__*/jsxs(Stack, {
1111
- gap: "xl",
1112
- h: "100%",
1113
- children: [/*#__PURE__*/jsxs(Box, {
1114
- children: [/*#__PURE__*/jsxs(Group, {
1115
- gap: "xs",
1116
- children: [/*#__PURE__*/jsx(Text, {
1117
- fw: 900,
1118
- fz: "h2",
1119
- c: "gray.9",
1120
- mb: 4,
1121
- children: newCol.title
1122
- }), newCol.badge && /*#__PURE__*/jsx(Badge, {
1123
- color: "gray.9",
1124
- variant: "filled",
1125
- radius: "0",
1126
- children: newCol.badge
1127
- })]
1128
- }), /*#__PURE__*/jsx(Text, {
1129
- size: "sm",
1130
- c: "gray.6",
1131
- children: newCol.description
1132
- })]
1133
- }), /*#__PURE__*/jsx(List, {
786
+ children: [
787
+ /* @__PURE__ */ n(f, { justify: "space-between", children: [
788
+ /* @__PURE__ */ e(c, { fw: 900, c: "gray.7", children: l.totalLabel || "Total Estimado" }),
789
+ /* @__PURE__ */ e(c, { fw: 900, fz: 32, c: "gray.9", children: l.totalValue })
790
+ ] }),
791
+ l.footerText && /* @__PURE__ */ e(c, { size: "xs", c: "red.6", ta: "right", mt: 4, children: l.footerText })
792
+ ]
793
+ }
794
+ )
795
+ ] }) }),
796
+ /* @__PURE__ */ e(m, { bg: "white", p: { base: 30, md: 60 }, pos: "relative", children: /* @__PURE__ */ n(p, { gap: "xl", h: "100%", children: [
797
+ /* @__PURE__ */ n(m, { children: [
798
+ /* @__PURE__ */ n(f, { gap: "xs", children: [
799
+ /* @__PURE__ */ e(c, { fw: 900, fz: "h2", c: "gray.9", mb: 4, children: i.title }),
800
+ i.badge && /* @__PURE__ */ e(k, { color: "gray.9", variant: "filled", radius: "0", children: i.badge })
801
+ ] }),
802
+ /* @__PURE__ */ e(c, { size: "sm", c: "gray.6", children: i.description })
803
+ ] }),
804
+ /* @__PURE__ */ e(
805
+ R,
806
+ {
1134
807
  spacing: "md",
1135
808
  size: "md",
1136
809
  c: "gray.6",
1137
- icon: /*#__PURE__*/jsx(ThemeIcon, {
1138
- color: "gray.0",
1139
- size: 20,
1140
- radius: "0",
1141
- bd: "1px solid var(--mantine-color-gray-2)",
1142
- children: /*#__PURE__*/jsx(IconCheck, {
1143
- size: 12,
1144
- color: "var(--mantine-color-gray-9)"
1145
- })
1146
- }),
1147
- children: newCol.items.map((item, index) => /*#__PURE__*/jsx(List.Item, {
1148
- children: item
1149
- }, index))
1150
- }), newCol.pricingBox && /*#__PURE__*/jsx(Box, {
810
+ icon: /* @__PURE__ */ e(
811
+ I,
812
+ {
813
+ color: "gray.0",
814
+ size: 20,
815
+ radius: "0",
816
+ bd: "1px solid var(--mantine-color-gray-2)",
817
+ children: /* @__PURE__ */ e(L, { size: 12, color: "var(--mantine-color-gray-9)" })
818
+ }
819
+ ),
820
+ children: i.items.map((h, o) => /* @__PURE__ */ e(R.Item, { children: h }, o))
821
+ }
822
+ ),
823
+ i.pricingBox && /* @__PURE__ */ e(
824
+ m,
825
+ {
1151
826
  bg: "gray.0",
1152
827
  p: "lg",
1153
828
  radius: "0",
1154
829
  bd: "1px solid var(--mantine-color-gray-2)",
1155
- children: /*#__PURE__*/jsxs(Stack, {
1156
- gap: 4,
1157
- children: [/*#__PURE__*/jsx(Text, {
1158
- size: "sm",
1159
- fw: 800,
1160
- tt: "uppercase",
1161
- ls: "1.5px",
1162
- c: "gray.5",
1163
- children: newCol.pricingBox.label
1164
- }), /*#__PURE__*/jsx(Text, {
1165
- fw: 900,
1166
- fz: 48,
1167
- c: "gray.9",
1168
- lh: 1,
1169
- children: newCol.pricingBox.price
1170
- }), newCol.pricingBox.subtext && /*#__PURE__*/jsx(Text, {
1171
- size: "xs",
1172
- c: "gray.5",
1173
- mt: "sm",
1174
- children: newCol.pricingBox.subtext
1175
- })]
1176
- })
1177
- }), newCol.cta && /*#__PURE__*/jsx(Box, {
1178
- mt: "xl",
1179
- children: /*#__PURE__*/jsx(CTAButton, {
1180
- label: newCol.cta.label,
1181
- href: newCol.cta.href,
1182
- icon: newCol.cta.icon,
1183
- size: newCol.cta.size || "lg",
1184
- color: newCol.cta.color || "gray.9",
1185
- fullWidth: true
1186
- })
1187
- })]
1188
- })
1189
- })]
1190
- })
1191
- })
1192
- });
830
+ children: /* @__PURE__ */ n(p, { gap: 4, children: [
831
+ /* @__PURE__ */ e(
832
+ c,
833
+ {
834
+ size: "sm",
835
+ fw: 800,
836
+ tt: "uppercase",
837
+ ls: "1.5px",
838
+ c: "gray.5",
839
+ children: i.pricingBox.label
840
+ }
841
+ ),
842
+ /* @__PURE__ */ e(c, { fw: 900, fz: 48, c: "gray.9", lh: 1, children: i.pricingBox.price }),
843
+ i.pricingBox.subtext && /* @__PURE__ */ e(c, { size: "xs", c: "gray.5", mt: "sm", children: i.pricingBox.subtext })
844
+ ] })
845
+ }
846
+ ),
847
+ i.cta && /* @__PURE__ */ e(m, { mt: "xl", children: /* @__PURE__ */ e(
848
+ T,
849
+ {
850
+ label: i.cta.label,
851
+ href: i.cta.href,
852
+ icon: i.cta.icon,
853
+ size: i.cta.size || "lg",
854
+ color: i.cta.color || "gray.9",
855
+ fullWidth: !0
856
+ }
857
+ ) })
858
+ ] }) })
859
+ ] })
860
+ }
861
+ ) });
1193
862
  }
1194
-
1195
- function Pricing({
1196
- id,
1197
- subtitle,
1198
- title,
1199
- billingOptions = [{
1200
- label: "Mensal",
1201
- value: "monthly"
1202
- }, {
1203
- label: "Anual",
1204
- value: "annual"
1205
- }],
1206
- billing,
1207
- setBilling,
1208
- promoBadge,
1209
- plans
863
+ function Ee({
864
+ id: r,
865
+ subtitle: t,
866
+ title: a,
867
+ billingOptions: l = [
868
+ { label: "Mensal", value: "monthly" },
869
+ { label: "Anual", value: "annual" }
870
+ ],
871
+ billing: i,
872
+ setBilling: d,
873
+ promoBadge: h,
874
+ plans: o,
875
+ background: y = "white"
1210
876
  }) {
1211
- return /*#__PURE__*/jsxs(Layout, {
1212
- id: id,
1213
- subtitle: subtitle,
1214
- title: title,
1215
- ta: "center",
1216
- children: [billingOptions && billingOptions.length > 0 && /*#__PURE__*/jsx(Stack, {
1217
- align: "center",
1218
- gap: "xl",
1219
- mb: 80,
1220
- children: /*#__PURE__*/jsxs(Group, {
1221
- gap: "xs",
1222
- children: [/*#__PURE__*/jsx(SegmentedControl, {
1223
- value: billing,
1224
- onChange: setBilling,
1225
- radius: "0",
1226
- size: "md",
1227
- data: billingOptions,
1228
- color: "gray.9",
1229
- bg: "white",
1230
- style: {
1231
- border: "1px solid var(--mantine-color-gray-2)"
1232
- }
1233
- }), billing === "annual" && promoBadge && /*#__PURE__*/jsx(Badge, {
1234
- variant: "filled",
1235
- color: "gray.9",
1236
- radius: "0",
1237
- size: "lg",
1238
- children: promoBadge
1239
- })]
1240
- })
1241
- }), /*#__PURE__*/jsx(SimpleGrid, {
1242
- cols: {
1243
- base: 1,
1244
- md: plans.length <= 3 ? plans.length : 3
1245
- },
1246
- spacing: "xl",
1247
- verticalSpacing: "xl",
1248
- children: plans.map(plan => /*#__PURE__*/jsxs(Paper, {
1249
- p: "xl",
1250
- radius: "0",
1251
- withBorder: true,
1252
- bd: plan.highlight ? "2px solid var(--mantine-color-gray-9)" : "1px solid var(--mantine-color-gray-2)",
1253
- display: "flex",
1254
- h: "100%",
1255
- style: {
1256
- flexDirection: "column"
1257
- },
1258
- bg: "white",
1259
- children: [/*#__PURE__*/jsxs(Stack, {
1260
- gap: "md",
1261
- mb: "xl",
1262
- children: [/*#__PURE__*/jsxs(Group, {
1263
- justify: "space-between",
1264
- align: "center",
1265
- children: [/*#__PURE__*/jsx(Text, {
1266
- size: "xs",
1267
- fw: 800,
1268
- tt: "uppercase",
1269
- ls: "1.5px",
1270
- c: "gray.4",
1271
- children: plan.name
1272
- }), plan.highlight && /*#__PURE__*/jsx(Badge, {
1273
- variant: "dot",
877
+ return /* @__PURE__ */ n(
878
+ F,
879
+ {
880
+ id: r,
881
+ subtitle: t,
882
+ title: a,
883
+ ta: "center",
884
+ background: y,
885
+ children: [
886
+ l && l.length > 0 && /* @__PURE__ */ e(p, { align: "center", gap: "xl", mb: 80, children: /* @__PURE__ */ n(f, { gap: "xs", children: [
887
+ /* @__PURE__ */ e(
888
+ ie,
889
+ {
890
+ value: i,
891
+ onChange: d,
892
+ radius: "0",
893
+ size: "md",
894
+ data: l,
1274
895
  color: "gray.9",
1275
- children: plan.highlightBadge || "RECOMENDADO"
1276
- })]
1277
- }), /*#__PURE__*/jsx(Text, {
1278
- size: "sm",
1279
- c: "gray.6",
1280
- fw: 500,
1281
- lh: 1.5,
1282
- h: {
1283
- md: 42
1284
- },
1285
- children: plan.description
1286
- })]
1287
- }), /*#__PURE__*/jsxs(Box, {
1288
- mb: "xl",
1289
- children: [/*#__PURE__*/jsx(Text, {
1290
- size: "xs",
1291
- c: "gray.4",
1292
- fw: 800,
1293
- tt: "uppercase",
1294
- ls: "1px",
1295
- mb: 4,
1296
- children: plan.pricePrefix || "A partir de"
1297
- }), /*#__PURE__*/jsxs(Group, {
1298
- gap: 8,
1299
- align: "flex-start",
1300
- children: [/*#__PURE__*/jsx(Text, {
1301
- size: "xl",
1302
- fw: 900,
1303
- c: "gray.9",
1304
- style: {
1305
- marginTop: 8
896
+ bg: "white",
897
+ style: { border: "1px solid var(--mantine-color-gray-2)" }
898
+ }
899
+ ),
900
+ i === "annual" && h && /* @__PURE__ */ e(k, { variant: "filled", color: "gray.9", radius: "0", size: "lg", children: h })
901
+ ] }) }),
902
+ /* @__PURE__ */ e(
903
+ S,
904
+ {
905
+ cols: { base: 1, md: o.length <= 3 ? o.length : 3 },
906
+ spacing: "xl",
907
+ verticalSpacing: "xl",
908
+ children: o.map((s) => /* @__PURE__ */ n(
909
+ x,
910
+ {
911
+ p: "xl",
912
+ radius: "0",
913
+ withBorder: !0,
914
+ bd: s.highlight ? "2px solid var(--mantine-color-gray-9)" : "1px solid var(--mantine-color-gray-2)",
915
+ display: "flex",
916
+ h: "100%",
917
+ style: { flexDirection: "column" },
918
+ bg: "white",
919
+ children: [
920
+ /* @__PURE__ */ n(p, { gap: "md", mb: "xl", children: [
921
+ /* @__PURE__ */ n(f, { justify: "space-between", align: "center", children: [
922
+ /* @__PURE__ */ e(c, { size: "xs", fw: 800, tt: "uppercase", ls: "1.5px", c: "gray.4", children: s.name }),
923
+ s.highlight && /* @__PURE__ */ e(k, { variant: "dot", color: "gray.9", children: s.highlightBadge || "RECOMENDADO" })
924
+ ] }),
925
+ /* @__PURE__ */ e(c, { size: "sm", c: "gray.6", fw: 500, lh: 1.5, h: { md: 42 }, children: s.description })
926
+ ] }),
927
+ /* @__PURE__ */ n(m, { mb: "xl", children: [
928
+ /* @__PURE__ */ e(
929
+ c,
930
+ {
931
+ size: "xs",
932
+ c: "gray.4",
933
+ fw: 800,
934
+ tt: "uppercase",
935
+ ls: "1px",
936
+ mb: 4,
937
+ children: s.pricePrefix || "A partir de"
938
+ }
939
+ ),
940
+ /* @__PURE__ */ n(f, { gap: 8, align: "flex-start", children: [
941
+ /* @__PURE__ */ e(c, { size: "xl", fw: 900, c: "gray.9", style: { marginTop: 8 }, children: s.priceDisplay?.currency }),
942
+ /* @__PURE__ */ n(f, { gap: 4, align: "flex-end", children: [
943
+ /* @__PURE__ */ e(
944
+ c,
945
+ {
946
+ fz: "var(--fz-big-metric)",
947
+ fw: 900,
948
+ ls: "-0.04em",
949
+ lh: 0.8,
950
+ c: "gray.9",
951
+ children: s.priceDisplay?.whole
952
+ }
953
+ ),
954
+ s.priceDisplay?.fraction && /* @__PURE__ */ n(p, { gap: 0, mb: 6, children: [
955
+ /* @__PURE__ */ n(c, { size: "xl", fw: 900, lh: 1, c: "gray.9", children: [
956
+ ",",
957
+ s.priceDisplay.fraction
958
+ ] }),
959
+ /* @__PURE__ */ e(
960
+ c,
961
+ {
962
+ size: "xs",
963
+ c: "gray.5",
964
+ fw: 800,
965
+ tt: "uppercase",
966
+ ls: "0.5px",
967
+ children: s.period || s.priceSuffix || "/mês"
968
+ }
969
+ )
970
+ ] })
971
+ ] })
972
+ ] })
973
+ ] }),
974
+ /* @__PURE__ */ e(_, { mb: "xl", color: "gray.1" }),
975
+ /* @__PURE__ */ e(p, { gap: "sm", mb: 40, style: { flex: 1 }, children: s.features.map((g, u) => /* @__PURE__ */ n(f, { gap: "sm", wrap: "nowrap", align: "flex-start", children: [
976
+ /* @__PURE__ */ e(
977
+ L,
978
+ {
979
+ size: 16,
980
+ color: "var(--mantine-color-gray-9)",
981
+ style: { marginTop: 2, flexShrink: 0 }
982
+ }
983
+ ),
984
+ /* @__PURE__ */ e(c, { size: "sm", fw: 500, c: "gray.6", lh: 1.4, children: g })
985
+ ] }, u)) }),
986
+ /* @__PURE__ */ e(m, { mt: "auto", children: /* @__PURE__ */ e(
987
+ T,
988
+ {
989
+ label: s.cta.label,
990
+ href: s.cta.href,
991
+ size: s.cta.size || "xl",
992
+ variant: s.cta.variant,
993
+ color: s.cta.color || "gray.9",
994
+ fullWidth: !0
995
+ }
996
+ ) })
997
+ ]
1306
998
  },
1307
- children: plan.priceDisplay?.currency
1308
- }), /*#__PURE__*/jsxs(Group, {
1309
- gap: 4,
1310
- align: "flex-end",
1311
- children: [/*#__PURE__*/jsx(Text, {
1312
- fz: "var(--fz-big-metric)",
1313
- fw: 900,
1314
- ls: "-0.04em",
1315
- lh: 0.8,
1316
- c: "gray.9",
1317
- children: plan.priceDisplay?.whole
1318
- }), plan.priceDisplay?.fraction && /*#__PURE__*/jsxs(Stack, {
1319
- gap: 0,
1320
- mb: 6,
1321
- children: [/*#__PURE__*/jsxs(Text, {
1322
- size: "xl",
1323
- fw: 900,
1324
- lh: 1,
1325
- c: "gray.9",
1326
- children: [",", plan.priceDisplay.fraction]
1327
- }), /*#__PURE__*/jsx(Text, {
1328
- size: "xs",
1329
- c: "gray.5",
1330
- fw: 800,
1331
- tt: "uppercase",
1332
- ls: "0.5px",
1333
- children: plan.period || plan.priceSuffix || "/mês"
1334
- })]
1335
- })]
1336
- })]
1337
- })]
1338
- }), /*#__PURE__*/jsx(Divider, {
1339
- mb: "xl",
1340
- color: "gray.1"
1341
- }), /*#__PURE__*/jsx(Stack, {
1342
- gap: "sm",
1343
- mb: 40,
1344
- style: {
1345
- flex: 1
1346
- },
1347
- children: plan.features.map((feature, i) => /*#__PURE__*/jsxs(Group, {
1348
- gap: "sm",
1349
- wrap: "nowrap",
1350
- align: "flex-start",
1351
- children: [/*#__PURE__*/jsx(IconCheck, {
1352
- size: 16,
1353
- color: "var(--mantine-color-gray-9)",
1354
- style: {
1355
- marginTop: 2,
1356
- flexShrink: 0
1357
- }
1358
- }), /*#__PURE__*/jsx(Text, {
1359
- size: "sm",
1360
- fw: 500,
1361
- c: "gray.6",
1362
- lh: 1.4,
1363
- children: feature
1364
- })]
1365
- }, i))
1366
- }), /*#__PURE__*/jsx(Box, {
1367
- mt: "auto",
1368
- children: /*#__PURE__*/jsx(CTAButton, {
1369
- label: plan.cta.label,
1370
- href: plan.cta.href,
1371
- size: plan.cta.size || "xl",
1372
- variant: plan.cta.variant,
1373
- color: plan.cta.color || "gray.9",
1374
- fullWidth: true
1375
- })
1376
- })]
1377
- }, plan.name))
1378
- })]
1379
- });
999
+ s.name
1000
+ ))
1001
+ }
1002
+ )
1003
+ ]
1004
+ }
1005
+ );
1380
1006
  }
1381
-
1382
- function FAQ({
1383
- id,
1384
- subtitle,
1385
- title,
1386
- questions = [],
1387
- contactCard
1007
+ function Me({
1008
+ id: r,
1009
+ subtitle: t,
1010
+ title: a,
1011
+ questions: l = [],
1012
+ contactCard: i,
1013
+ background: d = "white"
1388
1014
  }) {
1389
- const accordionStyles = {
1015
+ const h = {
1390
1016
  item: {
1391
1017
  backgroundColor: "white",
1392
1018
  border: "1px solid var(--mantine-color-gray-2)"
@@ -1405,419 +1031,237 @@ function FAQ({
1405
1031
  color: "var(--mantine-color-gray-5)"
1406
1032
  }
1407
1033
  };
1408
- return /*#__PURE__*/jsxs(Layout, {
1409
- id: id,
1410
- subtitle: subtitle,
1411
- title: title,
1412
- bg: "white",
1413
- children: [/*#__PURE__*/jsxs(SimpleGrid, {
1414
- cols: {
1415
- base: 1,
1416
- md: 2
1417
- },
1418
- spacing: "xl",
1419
- children: [/*#__PURE__*/jsx(Accordion, {
1420
- variant: "separated",
1421
- radius: "0",
1422
- chevronPosition: "right",
1423
- styles: accordionStyles,
1424
- children: questions.slice(0, Math.ceil(questions.length / 2)).map((item, i) => /*#__PURE__*/jsxs(Accordion.Item, {
1425
- value: item.value || String(i),
1426
- mb: "md",
1427
- children: [/*#__PURE__*/jsx(Accordion.Control, {
1428
- icon: /*#__PURE__*/jsx(ThemeIcon, {
1429
- variant: "light",
1430
- color: "gray",
1431
- radius: "0",
1432
- children: /*#__PURE__*/jsx(IconBolt, {
1433
- size: 16
1434
- })
1435
- }),
1436
- children: item.question
1437
- }), /*#__PURE__*/jsx(Accordion.Panel, {
1438
- c: "gray.6",
1439
- children: item.answer
1440
- })]
1441
- }, item.value || i))
1442
- }), /*#__PURE__*/jsx(Accordion, {
1443
- variant: "separated",
1034
+ return /* @__PURE__ */ n(F, { id: r, subtitle: t, title: a, background: d, children: [
1035
+ /* @__PURE__ */ n(S, { cols: { base: 1, md: 2 }, spacing: "xl", children: [
1036
+ /* @__PURE__ */ e(
1037
+ z,
1038
+ {
1039
+ variant: "separated",
1040
+ radius: "0",
1041
+ chevronPosition: "right",
1042
+ styles: h,
1043
+ children: l.slice(0, Math.ceil(l.length / 2)).map((o, y) => /* @__PURE__ */ n(
1044
+ z.Item,
1045
+ {
1046
+ value: o.value || String(y),
1047
+ mb: "md",
1048
+ children: [
1049
+ /* @__PURE__ */ e(
1050
+ z.Control,
1051
+ {
1052
+ icon: /* @__PURE__ */ e(I, { variant: "light", color: "gray", radius: "0", children: /* @__PURE__ */ e(U, { size: 16 }) }),
1053
+ children: o.question
1054
+ }
1055
+ ),
1056
+ /* @__PURE__ */ e(z.Panel, { c: "gray.6", children: o.answer })
1057
+ ]
1058
+ },
1059
+ o.value || y
1060
+ ))
1061
+ }
1062
+ ),
1063
+ /* @__PURE__ */ e(
1064
+ z,
1065
+ {
1066
+ variant: "separated",
1067
+ radius: "0",
1068
+ chevronPosition: "right",
1069
+ styles: h,
1070
+ children: l.slice(Math.ceil(l.length / 2)).map((o, y) => /* @__PURE__ */ n(
1071
+ z.Item,
1072
+ {
1073
+ value: o.value || String(y),
1074
+ mb: "md",
1075
+ children: [
1076
+ /* @__PURE__ */ e(
1077
+ z.Control,
1078
+ {
1079
+ icon: /* @__PURE__ */ e(I, { variant: "light", color: "gray", radius: "0", children: /* @__PURE__ */ e(U, { size: 16 }) }),
1080
+ children: o.question
1081
+ }
1082
+ ),
1083
+ /* @__PURE__ */ e(z.Panel, { c: "gray.6", children: o.answer })
1084
+ ]
1085
+ },
1086
+ o.value || y
1087
+ ))
1088
+ }
1089
+ )
1090
+ ] }),
1091
+ i && /* @__PURE__ */ e(
1092
+ x,
1093
+ {
1094
+ mt: { base: 40, md: 80 },
1444
1095
  radius: "0",
1445
- chevronPosition: "right",
1446
- styles: accordionStyles,
1447
- children: questions.slice(Math.ceil(questions.length / 2)).map((item, i) => /*#__PURE__*/jsxs(Accordion.Item, {
1448
- value: item.value || String(i),
1449
- mb: "md",
1450
- children: [/*#__PURE__*/jsx(Accordion.Control, {
1451
- icon: /*#__PURE__*/jsx(ThemeIcon, {
1452
- variant: "light",
1453
- color: "gray",
1454
- radius: "0",
1455
- children: /*#__PURE__*/jsx(IconBolt, {
1456
- size: 16
1457
- })
1458
- }),
1459
- children: item.question
1460
- }), /*#__PURE__*/jsx(Accordion.Panel, {
1461
- c: "gray.6",
1462
- children: item.answer
1463
- })]
1464
- }, item.value || i))
1465
- })]
1466
- }), contactCard && /*#__PURE__*/jsx(Paper, {
1467
- mt: {
1468
- base: 40,
1469
- md: 80
1470
- },
1471
- radius: "0",
1472
- p: {
1473
- base: "xl",
1474
- md: 60
1475
- },
1476
- bg: "gray.0",
1477
- bd: "1px solid var(--mantine-color-gray-1)",
1478
- pos: "relative",
1479
- style: {
1480
- overflow: "hidden"
1481
- },
1482
- children: /*#__PURE__*/jsxs(SimpleGrid, {
1483
- cols: {
1484
- base: 1,
1485
- md: 2
1486
- },
1487
- spacing: "xl",
1488
- style: {
1489
- position: "relative",
1490
- zIndex: 1,
1491
- alignItems: "center"
1492
- },
1493
- children: [/*#__PURE__*/jsxs(Stack, {
1494
- gap: "sm",
1495
- ta: {
1496
- base: "center",
1497
- md: "left"
1498
- },
1499
- align: {
1500
- base: "center",
1501
- md: "flex-start"
1502
- },
1503
- children: [/*#__PURE__*/jsx(Text, {
1504
- fz: "h2",
1505
- fw: 900,
1506
- c: "gray.9",
1507
- lh: 1.2,
1508
- children: contactCard.title
1509
- }), /*#__PURE__*/jsx(Text, {
1510
- c: "gray.6",
1511
- maw: 500,
1512
- size: "lg",
1513
- children: contactCard.description
1514
- })]
1515
- }), /*#__PURE__*/jsx(Stack, {
1516
- align: {
1517
- base: "center",
1518
- md: "flex-end"
1519
- },
1520
- children: /*#__PURE__*/jsx(CTAButton, {
1521
- label: contactCard.cta.label,
1522
- href: contactCard.cta.href,
1523
- target: contactCard.cta.target,
1524
- leftSection: contactCard.cta.icon,
1525
- size: contactCard.cta.size || "xl",
1526
- color: contactCard.cta.color || "dark"
1527
- })
1528
- })]
1529
- })
1530
- })]
1531
- });
1096
+ p: { base: "xl", md: 60 },
1097
+ bg: "gray.0",
1098
+ bd: "1px solid var(--mantine-color-gray-1)",
1099
+ pos: "relative",
1100
+ style: { overflow: "hidden" },
1101
+ children: /* @__PURE__ */ n(
1102
+ S,
1103
+ {
1104
+ cols: { base: 1, md: 2 },
1105
+ spacing: "xl",
1106
+ style: { position: "relative", zIndex: 1, alignItems: "center" },
1107
+ children: [
1108
+ /* @__PURE__ */ n(
1109
+ p,
1110
+ {
1111
+ gap: "sm",
1112
+ ta: { base: "center", md: "left" },
1113
+ align: { base: "center", md: "flex-start" },
1114
+ children: [
1115
+ /* @__PURE__ */ e(c, { fz: "h2", fw: 900, c: "gray.9", lh: 1.2, children: i.title }),
1116
+ /* @__PURE__ */ e(c, { c: "gray.6", maw: 500, size: "lg", children: i.description })
1117
+ ]
1118
+ }
1119
+ ),
1120
+ /* @__PURE__ */ e(p, { align: { base: "center", md: "flex-end" }, children: /* @__PURE__ */ e(
1121
+ T,
1122
+ {
1123
+ label: i.cta.label,
1124
+ href: i.cta.href,
1125
+ target: i.cta.target,
1126
+ leftSection: i.cta.icon,
1127
+ size: i.cta.size || "xl",
1128
+ color: i.cta.color || "dark"
1129
+ }
1130
+ ) })
1131
+ ]
1132
+ }
1133
+ )
1134
+ }
1135
+ )
1136
+ ] });
1532
1137
  }
1533
-
1534
- function Testimonials({
1535
- id,
1536
- bg = "gray.0",
1537
- title,
1538
- subtitle,
1539
- items = []
1138
+ function je({
1139
+ id: r,
1140
+ subtitle: t,
1141
+ items: a = [],
1142
+ background: l = "gray"
1540
1143
  }) {
1541
- return /*#__PURE__*/jsx(Layout, {
1542
- id: id,
1543
- bg: bg,
1544
- title: title,
1545
- subtitle: subtitle,
1546
- children: /*#__PURE__*/jsx(SimpleGrid, {
1547
- cols: {
1548
- base: 1,
1549
- md: items.length > 3 ? 4 : items.length || 3
1550
- },
1144
+ return /* @__PURE__ */ e(F, { id: r, background: l, title, subtitle: t, children: /* @__PURE__ */ e(
1145
+ S,
1146
+ {
1147
+ cols: { base: 1, md: a.length > 3 ? 4 : a.length || 3 },
1551
1148
  spacing: "xl",
1552
- children: items.map((item, index) => /*#__PURE__*/jsx(Paper, {
1553
- p: "xl",
1554
- radius: "0",
1555
- bd: "1px solid var(--mantine-color-gray-2)",
1556
- bg: "white",
1557
- children: /*#__PURE__*/jsxs(Stack, {
1558
- gap: "md",
1559
- align: "flex-start",
1560
- h: "100%",
1561
- children: [/*#__PURE__*/jsx(IconQuote, {
1562
- size: 32,
1563
- color: "var(--mantine-color-gray-3)"
1564
- }), /*#__PURE__*/jsxs(Text, {
1565
- size: "lg",
1566
- c: "gray.7",
1567
- lh: 1.6,
1568
- fs: "italic",
1569
- flex: 1,
1570
- children: ["\"", item.content, "\""]
1571
- }), /*#__PURE__*/jsxs(Group, {
1572
- gap: "sm",
1573
- mt: "xl",
1574
- children: [/*#__PURE__*/jsx(Avatar, {
1575
- size: "md",
1576
- radius: "0",
1577
- color: "gray",
1578
- src: item.avatarSrc,
1579
- children: item.initials
1580
- }), /*#__PURE__*/jsxs(Stack, {
1581
- gap: 0,
1582
- children: [/*#__PURE__*/jsx(Text, {
1583
- size: "sm",
1584
- fw: 900,
1585
- children: item.name
1586
- }), /*#__PURE__*/jsx(Text, {
1587
- size: "xs",
1588
- fw: 800,
1589
- tt: "uppercase",
1590
- ls: "1px",
1591
- c: "gray.5",
1592
- children: item.role
1593
- })]
1594
- })]
1595
- })]
1596
- })
1597
- }, index))
1598
- })
1599
- });
1149
+ children: a.map((i, d) => /* @__PURE__ */ e(
1150
+ x,
1151
+ {
1152
+ p: "xl",
1153
+ radius: "0",
1154
+ bd: "1px solid var(--mantine-color-gray-2)",
1155
+ bg: "white",
1156
+ children: /* @__PURE__ */ n(p, { gap: "md", align: "flex-start", h: "100%", children: [
1157
+ /* @__PURE__ */ e(te, { size: 32, color: "var(--mantine-color-gray-3)" }),
1158
+ /* @__PURE__ */ n(c, { size: "lg", c: "gray.7", lh: 1.6, fs: "italic", flex: 1, children: [
1159
+ '"',
1160
+ i.content,
1161
+ '"'
1162
+ ] }),
1163
+ /* @__PURE__ */ n(f, { gap: "sm", mt: "xl", children: [
1164
+ /* @__PURE__ */ e(ne, { size: "md", radius: "0", color: "gray", src: i.avatarSrc, children: i.initials }),
1165
+ /* @__PURE__ */ n(p, { gap: 0, children: [
1166
+ /* @__PURE__ */ e(c, { size: "sm", fw: 900, children: i.name }),
1167
+ /* @__PURE__ */ e(c, { size: "xs", fw: 800, tt: "uppercase", ls: "1px", c: "gray.5", children: i.role })
1168
+ ] })
1169
+ ] })
1170
+ ] })
1171
+ },
1172
+ d
1173
+ ))
1174
+ }
1175
+ ) });
1600
1176
  }
1601
-
1602
- function CTABanner({
1603
- id,
1604
- title,
1605
- description,
1606
- cta,
1607
- bg = "gray.0"
1177
+ function ge({
1178
+ id: r,
1179
+ title: t,
1180
+ description: a,
1181
+ cta: l,
1182
+ background: i = "gray.0"
1608
1183
  }) {
1609
- return /*#__PURE__*/jsx(Layout, {
1610
- id: id,
1611
- bg: bg,
1612
- ta: "center",
1613
- children: /*#__PURE__*/jsx(Paper, {
1614
- p: {
1615
- base: "xl",
1616
- sm: 80
1617
- },
1184
+ return /* @__PURE__ */ e(F, { id: r, background: i, ta: "center", children: /* @__PURE__ */ e(
1185
+ x,
1186
+ {
1187
+ p: { base: "xl", sm: 80 },
1618
1188
  bg: "white",
1619
1189
  radius: "0",
1620
1190
  bd: "1px solid var(--mantine-color-gray-2)",
1621
- style: {
1622
- borderTop: "4px solid var(--mantine-color-gray-9)"
1623
- },
1624
- children: /*#__PURE__*/jsxs(Stack, {
1625
- align: "center",
1626
- ta: "center",
1627
- gap: "xl",
1628
- children: [title && /*#__PURE__*/jsx(Text, {
1629
- fz: "var(--fz-section-title)",
1630
- fw: 900,
1631
- lh: 1.2,
1632
- ls: "-0.04em",
1633
- maw: 700,
1634
- children: title
1635
- }), description && /*#__PURE__*/jsx(Text, {
1636
- c: "gray.7",
1637
- size: "xl",
1638
- maw: 550,
1639
- children: description
1640
- }), cta && /*#__PURE__*/jsx(Box, {
1641
- mt: "md",
1642
- children: /*#__PURE__*/jsx(CTAButton, {
1643
- label: cta.label,
1644
- href: cta.href,
1645
- size: cta.size || "xl",
1646
- px: cta.px || {
1647
- base: 32,
1648
- md: 60
1649
- },
1650
- variant: cta.variant,
1651
- color: cta.color
1652
- })
1653
- })]
1654
- })
1655
- })
1656
- });
1657
- }
1658
-
1659
- /** @deprecated Use CTABanner instead */
1660
- const SecondaryCTA = CTABanner;
1661
-
1662
- function TrustBadge({
1663
- text = "Selo Exclusivo RiLiGar",
1664
- color = "green.6"
1665
- }) {
1666
- return /*#__PURE__*/jsx(Box, {
1667
- p: "xs",
1668
- bg: "gray.1",
1669
- style: {
1670
- borderRadius: "8px",
1671
- border: "1px solid var(--mantine-color-gray-2)",
1672
- display: "inline-block"
1673
- },
1674
- children: /*#__PURE__*/jsxs(Group, {
1675
- gap: "xs",
1676
- children: [/*#__PURE__*/jsx(ThemeIcon, {
1677
- color: color,
1678
- variant: "light",
1679
- size: "sm",
1680
- radius: "xl",
1681
- children: /*#__PURE__*/jsx(IconCircleCheck, {
1682
- size: 14,
1683
- "aria-hidden": "true"
1684
- })
1685
- }), /*#__PURE__*/jsx(Text, {
1686
- size: "xs",
1687
- fw: 700,
1688
- c: "gray.7",
1689
- tt: "uppercase",
1690
- lts: 0.5,
1691
- children: text
1692
- })]
1693
- })
1694
- });
1191
+ style: { borderTop: "4px solid var(--mantine-color-gray-9)" },
1192
+ children: /* @__PURE__ */ n(p, { align: "center", ta: "center", gap: "xl", children: [
1193
+ t && /* @__PURE__ */ e(
1194
+ c,
1195
+ {
1196
+ fz: "var(--fz-section-title)",
1197
+ fw: 900,
1198
+ lh: 1.2,
1199
+ ls: "-0.04em",
1200
+ maw: 700,
1201
+ children: t
1202
+ }
1203
+ ),
1204
+ a && /* @__PURE__ */ e(c, { c: "gray.7", size: "xl", maw: 550, children: a }),
1205
+ l && /* @__PURE__ */ e(m, { mt: "md", children: /* @__PURE__ */ e(
1206
+ T,
1207
+ {
1208
+ label: l.label,
1209
+ href: l.href,
1210
+ size: l.size || "xl",
1211
+ px: l.px || { base: 32, md: 60 },
1212
+ variant: l.variant,
1213
+ color: l.color
1214
+ }
1215
+ ) })
1216
+ ] })
1217
+ }
1218
+ ) });
1695
1219
  }
1696
-
1697
- /** @deprecated Use TrustBadge instead */
1698
- const SeloExclusivo = TrustBadge;
1699
-
1700
- function Footer({
1701
- logo,
1702
- description,
1703
- sections = [],
1704
- socialLinks = [],
1705
- copyrightText,
1706
- madeByText,
1707
- bg = "gray.0"
1220
+ const Re = ge;
1221
+ function me({
1222
+ text: r = "Selo Exclusivo RiLiGar",
1223
+ color: t = "green.6",
1224
+ background: a = "gray"
1708
1225
  }) {
1709
- return /*#__PURE__*/jsx(Box, {
1710
- component: "footer",
1711
- py: "xl",
1712
- bg: bg,
1713
- bd: {
1714
- top: "1px solid var(--mantine-color-gray-2)"
1715
- },
1716
- children: /*#__PURE__*/jsxs(Container, {
1717
- size: "xl",
1718
- children: [/*#__PURE__*/jsxs(SimpleGrid, {
1719
- cols: {
1720
- base: 1,
1721
- sm: 2
1722
- },
1723
- spacing: "xl",
1724
- children: [/*#__PURE__*/jsxs(Stack, {
1725
- gap: "lg",
1726
- children: [logo && /*#__PURE__*/jsx("img", {
1727
- src: logo.src,
1728
- alt: logo.alt || "",
1729
- height: logo.height || 32,
1730
- style: {
1731
- objectFit: "contain",
1732
- objectPosition: "left"
1733
- }
1734
- }), description && /*#__PURE__*/jsx(Text, {
1735
- size: "md",
1736
- c: "gray.6",
1737
- lh: 1.6,
1738
- maw: 400,
1739
- children: description
1740
- })]
1741
- }), /*#__PURE__*/jsxs(SimpleGrid, {
1742
- cols: {
1743
- base: 2,
1744
- sm: sections.length || 4
1745
- },
1746
- spacing: "xl",
1747
- children: [sections.map((section, idx) => /*#__PURE__*/jsxs(Stack, {
1748
- gap: "md",
1749
- children: [/*#__PURE__*/jsx(Text, {
1750
- fw: 900,
1751
- size: "xs",
1752
- tt: "uppercase",
1753
- ls: "1.5px",
1754
- children: section.title
1755
- }), /*#__PURE__*/jsx(Stack, {
1756
- gap: "xs",
1757
- children: section.links.map((link, linkIdx) => /*#__PURE__*/jsx(Anchor, {
1758
- c: "gray.6",
1759
- size: "sm",
1760
- component: link.href ? "a" : "button",
1761
- href: link.href,
1762
- onClick: link.onClick,
1763
- fw: 500,
1764
- children: link.label
1765
- }, linkIdx))
1766
- })]
1767
- }, idx)), socialLinks && socialLinks.length > 0 && /*#__PURE__*/jsxs(Stack, {
1768
- gap: "md",
1769
- children: [/*#__PURE__*/jsx(Text, {
1770
- fw: 900,
1771
- size: "xs",
1772
- tt: "uppercase",
1773
- ls: "1.5px",
1774
- children: "Social"
1775
- }), /*#__PURE__*/jsx(Group, {
1776
- gap: "xs",
1777
- children: socialLinks.map((social, socialIdx) => /*#__PURE__*/jsx(ActionIcon, {
1778
- size: "md",
1779
- variant: "subtle",
1780
- color: "gray",
1781
- component: "a",
1782
- href: social.href,
1783
- target: "_blank",
1784
- radius: "0",
1785
- "aria-label": social.label || `Social link ${socialIdx + 1}`,
1786
- children: social.icon
1787
- }, socialIdx))
1788
- })]
1789
- })]
1790
- })]
1791
- }), /*#__PURE__*/jsx(Divider, {
1792
- my: "xl",
1793
- color: "gray.2"
1794
- }), /*#__PURE__*/jsxs(Group, {
1795
- justify: "space-between",
1796
- mt: 30,
1797
- wrap: "wrap",
1798
- gap: "sm",
1799
- children: [/*#__PURE__*/jsx(Text, {
1800
- size: "xs",
1801
- fw: 800,
1802
- tt: "uppercase",
1803
- ls: "1px",
1804
- c: "gray.5",
1805
- children: copyrightText
1806
- }), madeByText && /*#__PURE__*/jsx(Group, {
1807
- gap: "sm",
1808
- children: /*#__PURE__*/jsx(Text, {
1809
- size: "xs",
1810
- fw: 800,
1811
- tt: "uppercase",
1812
- ls: "1px",
1813
- c: "gray.5",
1814
- children: madeByText
1815
- })
1816
- })]
1817
- })]
1818
- })
1819
- });
1226
+ const l = D(a);
1227
+ return /* @__PURE__ */ e(
1228
+ m,
1229
+ {
1230
+ p: "xs",
1231
+ bg: l,
1232
+ style: {
1233
+ borderRadius: "8px",
1234
+ border: "1px solid var(--mantine-color-gray-2)",
1235
+ display: "inline-block"
1236
+ },
1237
+ children: /* @__PURE__ */ n(f, { gap: "xs", children: [
1238
+ /* @__PURE__ */ e(I, { color: t, variant: "light", size: "sm", radius: "xl", children: /* @__PURE__ */ e(ce, { size: 14, "aria-hidden": "true" }) }),
1239
+ /* @__PURE__ */ e(c, { size: "xs", fw: 700, c: "gray.7", tt: "uppercase", lts: 0.5, children: r })
1240
+ ] })
1241
+ }
1242
+ );
1820
1243
  }
1821
-
1822
- export { CTABanner, CTAButton, Comparison, FAQ, FeatureSplit, FeaturesGrid, Footer, Header, Hero, Layout, MediaBlock, Navbar, Pricing, SecondaryCTA, SectionHeader, SeloExclusivo, SocialProof, Testimonials, TrustBadge, theme };
1823
- //# sourceMappingURL=index.esm.js.map
1244
+ const Ge = me;
1245
+ export {
1246
+ ge as CTABanner,
1247
+ T as CTAButton,
1248
+ Ce as Comparison,
1249
+ Me as FAQ,
1250
+ De as FeatureSplit,
1251
+ Ae as FeaturesGrid,
1252
+ se as Header,
1253
+ Pe as Hero,
1254
+ F as Layout,
1255
+ X as MediaBlock,
1256
+ Be as Navbar,
1257
+ Ee as Pricing,
1258
+ $ as SECTION_BACKGROUNDS,
1259
+ Re as SecondaryCTA,
1260
+ J as SectionHeader,
1261
+ Ge as SeloExclusivo,
1262
+ ke as SocialProof,
1263
+ je as Testimonials,
1264
+ me as TrustBadge,
1265
+ D as resolveBackground,
1266
+ Te as theme
1267
+ };