@cupcodev/ui 7.0.0 → 8.0.0

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/styles/dock.css CHANGED
@@ -1,595 +1,630 @@
1
- :root {
2
- --accent-color: #1fa8f5;
3
- --accent-color-fg: #fefefe;
4
- --app-content-background-color: transparent;
5
- --inset-shadow: rgba(7, 43, 74, 0.3);
6
- --outset-shadow: rgba(223, 240, 255, 0.25);
7
- --clay-box-shadow: rgba(7, 43, 74, 0.3);
8
- --clay-background-color: #c0d8ec;
9
- --clay-fg-color: #444;
10
- --lg-bg-color: rgba(255, 255, 255, 0.25);
11
- --lg-highlight: rgba(255, 255, 255, 0.75);
12
- --lg-text: #3a2a58;
13
- --lg-hover-glow: rgba(255, 255, 255, 0.4);
14
- --lg-grey: #5b5b5b;
15
- --card-spacing: 0.5rem;
16
- --marketing-base: #ed1e79;
17
- --desenvolvimento-base: #7c5bbb;
18
- --blue-sky-light: #87ceeb;
19
- --blue-sky-med: #00b7eb;
20
- --blue-sky-dark: #006bb3;
21
- --blue-pink-light: #ff69b4;
22
- --blue-pink-med: #00b7eb;
23
- --purple-orange-light: #ff4500;
24
- --purple-orange-med: #7c5bbb;
25
- --black-grey-light: #a9a9a9;
26
- --black-grey-med: #2f2f2f;
27
- --orange-base: #ffa500;
28
- --yellow-base: #ffff00;
29
- --pink-blue-light: #ff69b4;
30
- --pink-blue-med: #00b7eb;
31
- --yellow-purple-light: #ffff00;
32
- --yellow-purple-med: #7c5bbb;
33
- --blue-green-grey-light: #00b7eb;
34
- --blue-green-grey-med: #228b22;
35
- --blue-green-grey-dark: #696969;
36
- }
37
-
1
+ :root {
2
+ --accent-color: #1fa8f5;
3
+ --accent-color-fg: #fefefe;
4
+ --app-content-background-color: transparent;
5
+ --inset-shadow: rgba(7, 43, 74, 0.3);
6
+ --outset-shadow: rgba(223, 240, 255, 0.25);
7
+ --clay-box-shadow: rgba(7, 43, 74, 0.3);
8
+ --clay-background-color: #c0d8ec;
9
+ --clay-fg-color: #444;
10
+ --lg-bg-color: rgba(255, 255, 255, 0.25);
11
+ --lg-highlight: rgba(255, 255, 255, 0.75);
12
+ --lg-text: #3a2a58;
13
+ --lg-hover-glow: rgba(255, 255, 255, 0.4);
14
+ --lg-grey: #5b5b5b;
15
+ --card-spacing: 0.5rem;
16
+ --marketing-base: #ed1e79;
17
+ --desenvolvimento-base: #7c5bbb;
18
+ --blue-sky-light: #87ceeb;
19
+ --blue-sky-med: #00b7eb;
20
+ --blue-sky-dark: #006bb3;
21
+ --blue-pink-light: #ff69b4;
22
+ --blue-pink-med: #00b7eb;
23
+ --purple-orange-light: #ff4500;
24
+ --purple-orange-med: #7c5bbb;
25
+ --black-grey-light: #a9a9a9;
26
+ --black-grey-med: #2f2f2f;
27
+ --orange-base: #ffa500;
28
+ --yellow-base: #ffff00;
29
+ --pink-blue-light: #ff69b4;
30
+ --pink-blue-med: #00b7eb;
31
+ --yellow-purple-light: #ffff00;
32
+ --yellow-purple-med: #7c5bbb;
33
+ --blue-green-grey-light: #00b7eb;
34
+ --blue-green-grey-med: #228b22;
35
+ --blue-green-grey-dark: #696969;
36
+ }
37
+
38
38
  .flex-center {
39
39
  display: flex;
40
40
  justify-content: space-around;
41
41
  align-items: center;
42
42
  }
43
43
 
44
- .dock {
45
- width: fit-content;
46
- max-width: calc(100vw - 1rem);
47
- margin: 0 auto;
44
+ .app-dock {
48
45
  position: fixed;
49
- bottom: 0;
50
- left: 50%;
51
- transform: translateX(-50%);
52
- z-index: 1000;
53
- display: inline-flex;
54
- flex-direction: column;
55
- margin-bottom: 0.5rem;
56
- border-radius: 2rem;
57
- overflow: visible;
58
- transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
59
- background: #fcfcfc87;
60
- }
61
-
62
- .dark .dock {
63
- background: #00000087;
64
- }
65
-
66
- .marketing-style {
67
- --app-content-background-color: #ed1e79;
68
- }
69
- .mn-desenvolvimento-style {
70
- --app-content-background-color: #7c5bbb;
71
- }
72
- .mn-solucoes-style {
73
- --app-content-background-color: #00b7eb;
74
- }
75
- .mn-cases-de-sucesso-style {
76
- --app-content-background-color: #ff69b4;
77
- }
78
- .mn-sobre-nos-style {
79
- --app-content-background-color: #ffff00;
80
- }
81
- .mn-contato-style {
82
- --app-content-background-color: #228b22;
83
- }
84
-
85
- .tabbar {
86
- position: relative;
87
- background: transparent;
88
- border-radius: 2rem;
89
- height: 80px;
90
- min-height: 80px;
91
- display: inline-flex;
92
- flex-direction: column;
93
- width: fit-content;
94
- max-width: 100%;
95
- min-width: 0;
96
- box-sizing: content-box;
97
- overflow: visible;
98
- transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
99
- box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
100
- }
101
-
102
- .is-active-menu.tabbar {
103
- height: auto;
104
- transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
105
- }
106
-
107
- .tabbar ul,
108
- .tabbar li {
109
- list-style-type: none;
110
- margin: 0;
111
- padding: 0;
112
- }
113
-
114
- .tabbar ul {
115
- position: relative;
116
- width: fit-content;
117
- max-width: 100%;
118
- min-width: 0;
119
- justify-content: center;
120
- height: 80px;
121
- z-index: 3;
122
- padding: 0.5rem 1rem;
123
- display: flex;
124
- align-items: center;
125
- gap: 10px;
126
- margin: 0 auto;
127
- flex-wrap: nowrap;
128
- overflow: visible;
129
- }
130
-
131
- .tabbar li {
46
+ inset-inline: 0;
47
+ bottom: max(0.5rem, env(safe-area-inset-bottom));
48
+ z-index: 620;
132
49
  display: flex;
133
50
  justify-content: center;
134
- align-items: center;
135
- font-size: 1rem;
136
- width: 60px;
137
- height: 60px;
138
- position: relative;
139
- color: var(--lg-text);
140
- cursor: pointer;
141
- transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
142
- }
143
-
144
- .tabbar li:last-child {
145
- margin-right: 0;
146
- }
147
-
148
- .tab-style1 li {
149
- display: flex;
150
- justify-content: center;
151
- align-items: center;
152
- width: 60px;
153
- height: 60px;
154
- flex-direction: column;
155
- border-radius: 1.2rem;
156
- padding: 1px;
157
- position: relative;
158
- }
159
- .tab-style1 li::after {
160
- content: '';
161
- position: absolute;
162
- top: -10px;
163
- left: 50%;
164
- transform: translateX(-50%);
165
- width: 0;
166
- height: 0;
167
- border-left: 10px solid transparent;
168
- border-right: 10px solid transparent;
169
- border-top: 10px solid rgb(148 20 222 / 71%);
170
- opacity: 0;
171
- transition: opacity 0.4s;
172
- z-index: 4;
173
- }
174
- .tab-style1 li.active::after {
51
+ padding-inline: 0.5rem;
52
+ pointer-events: none;
53
+ transition:
54
+ transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
55
+ opacity 0.3s ease;
56
+ transform: translateY(0);
175
57
  opacity: 1;
176
58
  }
177
59
 
178
- .tab-style1 li:hover {
179
- transform: scale(0.95);
180
- box-shadow: 0 0 10px var(--lg-hover-glow);
181
- }
182
-
183
- .tab-style1 li.dock-divider:hover {
60
+ .app-dock .dock {
61
+ position: relative;
62
+ left: auto;
63
+ bottom: auto;
184
64
  transform: none;
185
- box-shadow: none;
186
- }
187
-
188
- .tab-style1 li.dock-divider::after {
189
- content: none;
190
- }
191
-
192
- .tab-style1 li.dock-divider {
193
- width: 1px;
194
- min-width: 1px;
195
- height: 44px;
196
- padding: 0;
197
- margin: 0 7px;
198
- border-radius: 999px;
199
- background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(120, 120, 120, 0.2));
200
- box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.55), 0 0 2px rgba(0, 0, 0, 0.25);
201
- pointer-events: none;
202
- cursor: default;
203
- align-self: center;
204
- }
205
-
206
- .tabbar ul > li:last-of-type::before {
207
- content: '';
208
- position: absolute;
209
- bottom: -10px;
210
- left: 50%;
211
- transform: translateX(-50%);
212
- width: 8px;
213
- height: 8px;
214
- border-radius: 50%;
215
- background: hsl(var(--cc-pink, 330 87% 52%));
216
- box-shadow: 0 0 6px rgba(237, 30, 121, 0.45);
217
- }
218
-
219
- .tabbar li .bg-img-menu-fix-mob {
220
- display: block;
221
- height: 60px;
222
- width: 60px;
223
- background-size: contain;
224
- background-position: center;
225
- background-repeat: no-repeat;
226
- background-origin: content-box;
227
- padding: 1px;
228
- }
229
-
230
- .tabbar li .bg-img-menu-fix-mob.dock-fallback {
231
- display: grid;
232
- place-items: center;
233
- border-radius: 1rem;
234
- background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2) 45%, rgba(124, 91, 187, 0.22) 75%);
235
- color: var(--lg-text);
236
- font-weight: 700;
237
- font-size: 0.85rem;
238
- letter-spacing: 0.04em;
239
- text-transform: uppercase;
240
- box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 12px rgba(58, 42, 88, 0.18);
241
- }
242
-
243
- .tabbar li .bg-img-menu-fix-mob.dock-fallback .dock-fallback-icon {
244
- line-height: 1;
245
- }
246
-
247
- .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob {
248
- padding: 5px;
249
- }
250
-
251
- .list-menu-mob-show {
252
- position: absolute;
253
- left: 0;
254
- width: 100%;
255
- z-index: 5;
256
- display: none;
257
- flex-direction: column;
258
- align-items: center;
259
- gap: 0.25rem;
260
- pointer-events: none;
261
- }
262
-
263
- .list-menu-mob-show.show {
264
- display: flex;
65
+ z-index: 620;
66
+ width: fit-content;
67
+ max-width: calc(100vw - 1rem);
68
+ min-width: 0;
69
+ margin: 0;
265
70
  pointer-events: auto;
266
71
  }
267
72
 
268
- .list-menu-mob-show .mob-list-menu.hide {
269
- display: none;
270
- }
271
-
272
- .list-menu-mob-show .mob-list-menu.show {
273
- display: flex;
274
- flex-direction: column;
275
- align-items: center;
276
- gap: 0.25rem;
277
- }
278
-
279
- .submenu-stack {
280
- position: relative;
281
- display: flex;
282
- flex-direction: column;
283
- align-items: center;
284
- width: 100%;
285
- max-width: 210px;
286
- background: none;
287
- }
288
-
289
- .submenu-stack::after {
290
- content: '';
291
- position: absolute;
292
- bottom: -14px;
293
- left: 50%;
294
- transform: translateX(-50%);
295
- width: 0;
296
- height: 0;
297
- border-left: 14px solid transparent;
298
- border-right: 14px solid transparent;
299
- border-top: 14px solid rgba(255, 255, 255, 0.6);
73
+ .app-dock--hidden {
74
+ transform: translateY(calc(100% + 1rem));
300
75
  opacity: 0;
301
- transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2);
302
76
  pointer-events: none;
303
- z-index: -1;
304
- }
305
-
306
- .submenu-stack::before {
307
- content: '';
308
- position: absolute;
309
- top: 0;
310
- left: 0;
311
- right: 0;
312
- bottom: 0;
313
- opacity: 0;
314
- transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
315
- z-index: -1;
316
- }
317
-
318
- .submenu-stack.visible::before {
319
- opacity: 1;
320
- transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
321
- }
322
-
323
- .submenu-stack:not(.visible)::before {
324
- transition: opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2);
325
- }
326
-
327
- .mob-list-menu.show .submenu-stack::after {
328
- opacity: 1;
329
- }
330
-
331
- .submenu-stack.marketing::before {
332
- background: linear-gradient(182deg, rgba(149, 29, 218, 0) 13.45%, rgba(184, 29, 218, 0.66) 18.07%, rgba(218, 10, 163, 0.77));
333
- }
334
- .submenu-stack.mn-desenvolvimento::before {
335
- background: linear-gradient(187deg, rgba(237, 29, 120, 0) 12.18%, rgba(241, 12, 202, 0.68) 14.29%, rgba(83, 1, 190, 0.73));
336
- }
337
- .submenu-stack.mn-solucoes::before {
338
- background: linear-gradient(182deg, rgba(255, 255, 0, 0) 12.18%, rgba(217, 0, 255, 0.62) 15.55%, rgba(239, 64, 176, 0.78));
339
- }
340
- .submenu-stack.mn-cases-de-sucesso::before {
341
- background: linear-gradient(192deg, rgba(135, 206, 235, 0) 13.45%, rgba(21, 43, 228, 0.49) 16.39%, rgba(178, 0, 235, 0.6));
342
- }
343
- .submenu-stack.mn-sobre-nos::before {
344
- background: linear-gradient(187deg, rgba(0, 182, 235, 0) 12.61%, rgba(73, 0, 235, 0.56) 15.97%, rgba(201, 209, 59, 0.62));
345
- }
346
- .submenu-stack.mn-contato::before {
347
- background: linear-gradient(192deg, rgba(255, 105, 180, 0) 10.92%, rgba(11, 149, 61, 0.68) 15.13%, rgba(0, 183, 235, 0.8));
348
- }
349
-
350
- .marketing .submenu-stack::after { border-top-color: rgba(237, 30, 121, 0.8); }
351
- .mn-desenvolvimento .submenu-stack::after { border-top-color: rgba(149, 29, 218, 0.8); }
352
- .mn-solucoes .submenu-stack::after { border-top-color: rgba(0, 183, 235, 0.8); }
353
- .mn-cases-de-sucesso .submenu-stack::after { border-top-color: rgba(255, 105, 180, 0.8); }
354
- .mn-sobre-nos .submenu-stack::after { border-top-color: rgba(255, 255, 0, 0.8); }
355
- .mn-contato .submenu-stack::after { border-top-color: rgba(34, 139, 34, 0.8); }
356
-
357
- .submenu-card {
358
- width: 280px;
359
- height: 90px;
360
- position: relative;
361
- overflow: hidden;
362
- display: flex;
363
- align-items: center;
364
- padding: 0;
365
- margin: 0;
366
- clip-path: polygon(0 0, 95% 5%, 100% 100%, 5% 95%);
367
- border-radius: 10px 61px 20px 0;
368
- transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
369
- will-change: transform, opacity;
370
- isolation: isolate;
371
- transform-origin: center bottom;
372
- transform: translateY(100%);
373
- opacity: 0;
374
- }
375
-
376
- .submenu-card.animate-in {
377
- transform: translateY(0);
378
- opacity: 1;
379
- transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
380
- }
381
-
382
- .submenu-card:not(.animate-in) {
383
- transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2);
384
- }
385
-
386
- .submenu-card:hover.animate-in {
387
- transform: scale(1.02) translateY(-2px) !important;
388
- }
389
-
390
- .submenu-card:hover:not(.animate-in) {
391
- transform: scale(1.02) translateY(-2px);
392
- }
393
-
394
- .marketing {
395
- --c1: rgb(252 210 228 / 77%);
396
- --c2: rgb(215 45 146 / 50%);
397
- --c3: rgba(238, 135, 214, 0.35);
398
- --base-angle: 119deg;
399
- --p1: 0%;
400
- --p2: 50.84%;
401
- --p3: 100%;
402
- }
403
-
404
- .mn-desenvolvimento {
405
- --c1: rgba(204, 127, 247, 0.6);
406
- --c2: rgba(181, 160, 245, 0.55);
407
- --c3: rgba(203, 132, 226, 0.69);
408
- --base-angle: 150deg;
409
- --p1: 21.01%;
410
- --p2: 73.95%;
411
- --p3: 100%;
412
- }
413
-
414
- .mn-cases-de-sucesso {
415
- --c1: rgba(240, 173, 206, 0.69);
416
- --c2: rgba(206, 82, 217, 0.62);
417
- --c3: rgba(201, 243, 255, 0.5);
418
- --base-angle: 45deg;
419
- --p1: 0%;
420
- --p2: 44.12%;
421
- --p3: 100%;
422
- }
423
-
424
- .mn-sobre-nos {
425
- --c1: rgba(230, 145, 218, 0.6);
426
- --c2: rgba(198, 128, 238, 0.52);
427
- --c3: rgba(241, 241, 212, 0.51);
428
- --base-angle: 135deg;
429
- --p1: 0%;
430
- --p2: 50%;
431
- --p3: 100%;
432
- }
433
-
434
- .mn-contato {
435
- --c1: rgba(171, 217, 230, 0.65);
436
- --c2: rgba(213, 240, 213, 0.63);
437
- --c3: rgba(175, 214, 154, 0.61);
438
- --base-angle: 135deg;
439
- --p1: 0%;
440
- --p2: 55.88%;
441
- --p3: 100%;
442
- }
443
-
444
- :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card {
445
- --a: var(--base-angle, 135deg);
446
- --o1: var(--c1);
447
- --o2: var(--c2);
448
- --o3: var(--c3);
449
- background: linear-gradient(var(--a), var(--o1) var(--p1, 0%), var(--o2) var(--p2, 50%), var(--o3) var(--p3, 100%));
450
- }
451
- :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:first-child {
452
- --a: calc(var(--base-angle, 135deg) + 14deg);
453
- --o1: var(--c3);
454
- --o2: var(--c1);
455
- --o3: var(--c2);
456
- }
457
- :is(.marketing, .mn-desenvolvimento, .mn-sobre-nos, .mn-contato) .submenu-card:last-child {
458
- --a: calc(var(--base-angle, 135deg) + 180deg);
459
- --o1: var(--c2);
460
- --o2: var(--c3);
461
- --o3: var(--c1);
462
- }
463
- :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(odd) {
464
- --a: calc(var(--base-angle, 135deg) + 31deg);
465
- --o1: var(--c1);
466
- --o2: var(--c3);
467
- --o3: var(--c2);
468
- }
469
- :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(even) {
470
- --a: calc(var(--base-angle, 135deg) - 16deg);
471
- --o1: var(--c2);
472
- --o2: var(--c1);
473
- --o3: var(--c3);
474
- }
475
- :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:only-child {
476
- --a: var(--base-angle, 135deg);
477
- --o1: var(--c1);
478
- --o2: var(--c2);
479
- --o3: var(--c3);
480
- }
481
- :is(.mn-cases-de-sucesso) .submenu-card:last-child {
482
- --a: calc(var(--base-angle, 45deg) + 180deg);
483
- background: linear-gradient(
484
- var(--a),
485
- rgba(155, 26, 196, 0.68) 0%,
486
- rgba(185, 82, 225, 0.71) 40%,
487
- rgb(198 110 235 / 90%) 50%,
488
- rgba(185, 82, 225, 0.71) 60%,
489
- rgb(170 39 177 / 58%) 100%
490
- );
491
- background-size: 300% 100%;
492
- animation: visibleFlare 7.5s ease-in-out infinite;
493
- position: relative;
494
- z-index: 1;
495
- transform: translate3d(0, 0, 0);
496
- backface-visibility: hidden;
497
- will-change: background-position;
498
- }
499
-
500
- @keyframes visibleFlare {
501
- 0% {
502
- background-position: 0% 0%;
503
- }
504
- 25% {
505
- background-position: 100% 100%;
506
- }
507
- 50% {
508
- background-position: 0% 100%;
509
- }
510
- 75% {
511
- background-position: 100% 0%;
512
- }
513
- 100% {
514
- background-position: 0% 0%;
515
- }
516
- }
517
-
518
- .mn-solucoes .submenu-card:nth-child(1) {
519
- background: linear-gradient(to bottom right, rgba(39, 109, 177, 0.68), rgba(156, 212, 255, 0.71) 49.16%, rgba(252, 195, 212, 0.58));
520
- }
521
- .mn-solucoes .submenu-card:nth-child(2) {
522
- background: linear-gradient(to bottom right, rgba(255, 105, 180, 0.55), rgba(0, 183, 235, 0.66));
523
- }
524
- .mn-solucoes .submenu-card:nth-child(3) {
525
- background: linear-gradient(to bottom right, rgba(149, 29, 218, 0.68) 46.22%, rgba(255, 171, 0, 0.7));
526
- }
527
- .mn-solucoes .submenu-card:nth-child(4) {
528
- background: linear-gradient(to bottom right, rgba(132, 132, 132, 0.49), rgba(0, 0, 0, 0.59) 66.81%);
529
- }
530
- .mn-solucoes .submenu-card:nth-child(4) .card-content .text-content {
531
- color: #fff;
532
- }
533
- .mn-solucoes .submenu-card:nth-child(5) {
534
- background: linear-gradient(166deg, rgba(255, 128, 0, 0.64) 54.62%, color(display-p3 0.06 0.036 0.441 / 0.56) 92.86%);
535
- }
536
- .mn-solucoes .submenu-card:nth-child(6) {
537
- background: linear-gradient(to bottom right, rgba(255, 255, 0, 0.63), rgba(254, 123, 3, 0.64));
538
- }
539
-
540
- .submenu-card .fold {
541
- position: absolute;
542
- top: 0;
543
- left: 0;
544
- width: 30px;
545
- height: 20px;
546
- background: inherit;
547
- transform: skewX(10deg);
548
- transform-origin: right;
549
- z-index: 1;
550
- }
551
-
552
- .submenu-card .glass-filter {
553
- position: absolute;
554
- inset: 0;
555
- z-index: 0;
556
- filter: url(#lg-dist);
557
- isolation: isolate;
558
- backdrop-filter: blur(3px);
559
- }
560
-
561
- @supports (-webkit-backdrop-filter: blur(3px)) {
562
- .submenu-card .glass-filter,
563
- .tabbar .glass-filter {
564
- filter: url(#lg-dist);
565
- }
566
- }
567
- @supports not (-webkit-backdrop-filter: blur(3px)) {
568
- .submenu-card .glass-filter,
569
- .tabbar .glass-filter {
570
- backdrop-filter: blur(3px);
571
- }
572
- }
573
-
574
- .submenu-card .glass-overlay {
575
- position: absolute;
576
- inset: 0;
577
- z-index: 1;
578
- background: rgb(0 0 0 / 25%);
579
- }
580
-
581
- .submenu-card .glass-specular {
582
- position: absolute;
583
- inset: 0;
584
- z-index: 2;
585
- overflow: hidden;
586
- box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
587
- }
588
-
589
- .dark .tabbar .glass-specular {
590
- box-shadow: inset 1px 1px 0 rgb(44 44 44 / 75%), inset -1px -1px 0 rgb(29 29 29 / 75%), inset 0 0 5px rgb(189 189 189 / 75%);
591
77
  }
592
78
 
79
+ .dock {
80
+ width: fit-content;
81
+ max-width: calc(100vw - 1rem);
82
+ margin: 0 auto;
83
+ position: fixed;
84
+ bottom: 0;
85
+ left: 50%;
86
+ transform: translateX(-50%);
87
+ z-index: 1000;
88
+ display: inline-flex;
89
+ flex-direction: column;
90
+ margin-bottom: 0.5rem;
91
+ border-radius: 2rem;
92
+ overflow: visible;
93
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
94
+ background: #fcfcfc87;
95
+ }
96
+
97
+ .dark .dock {
98
+ background: #00000087;
99
+ }
100
+
101
+ .marketing-style {
102
+ --app-content-background-color: #ed1e79;
103
+ }
104
+ .mn-desenvolvimento-style {
105
+ --app-content-background-color: #7c5bbb;
106
+ }
107
+ .mn-solucoes-style {
108
+ --app-content-background-color: #00b7eb;
109
+ }
110
+ .mn-cases-de-sucesso-style {
111
+ --app-content-background-color: #ff69b4;
112
+ }
113
+ .mn-sobre-nos-style {
114
+ --app-content-background-color: #ffff00;
115
+ }
116
+ .mn-contato-style {
117
+ --app-content-background-color: #228b22;
118
+ }
119
+
120
+ .tabbar {
121
+ position: relative;
122
+ background: transparent;
123
+ border-radius: 2rem;
124
+ height: 80px;
125
+ min-height: 80px;
126
+ display: inline-flex;
127
+ flex-direction: column;
128
+ width: fit-content;
129
+ max-width: 100%;
130
+ min-width: 0;
131
+ box-sizing: content-box;
132
+ overflow: visible;
133
+ transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
134
+ box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
135
+ }
136
+
137
+ .is-active-menu.tabbar {
138
+ height: auto;
139
+ transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
140
+ }
141
+
142
+ .tabbar ul,
143
+ .tabbar li {
144
+ list-style-type: none;
145
+ margin: 0;
146
+ padding: 0;
147
+ }
148
+
149
+ .tabbar ul {
150
+ position: relative;
151
+ width: fit-content;
152
+ max-width: 100%;
153
+ min-width: 0;
154
+ justify-content: center;
155
+ height: 80px;
156
+ z-index: 3;
157
+ padding: 0.5rem 1rem;
158
+ display: flex;
159
+ align-items: center;
160
+ gap: 10px;
161
+ margin: 0 auto;
162
+ flex-wrap: nowrap;
163
+ overflow: visible;
164
+ }
165
+
166
+ .tabbar li {
167
+ display: flex;
168
+ justify-content: center;
169
+ align-items: center;
170
+ font-size: 1rem;
171
+ width: 60px;
172
+ height: 60px;
173
+ position: relative;
174
+ color: var(--lg-text);
175
+ cursor: pointer;
176
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
177
+ }
178
+
179
+ .tabbar li:last-child {
180
+ margin-right: 0;
181
+ }
182
+
183
+ .tab-style1 li {
184
+ display: flex;
185
+ justify-content: center;
186
+ align-items: center;
187
+ width: 60px;
188
+ height: 60px;
189
+ flex-direction: column;
190
+ border-radius: 1.2rem;
191
+ padding: 1px;
192
+ position: relative;
193
+ }
194
+ .tab-style1 li::after {
195
+ content: '';
196
+ position: absolute;
197
+ top: -10px;
198
+ left: 50%;
199
+ transform: translateX(-50%);
200
+ width: 0;
201
+ height: 0;
202
+ border-left: 10px solid transparent;
203
+ border-right: 10px solid transparent;
204
+ border-top: 10px solid rgb(148 20 222 / 71%);
205
+ opacity: 0;
206
+ transition: opacity 0.4s;
207
+ z-index: 4;
208
+ }
209
+ .tab-style1 li.active::after {
210
+ opacity: 1;
211
+ }
212
+
213
+ .tab-style1 li:hover {
214
+ transform: scale(0.95);
215
+ box-shadow: 0 0 10px var(--lg-hover-glow);
216
+ }
217
+
218
+ .tab-style1 li.dock-divider:hover {
219
+ transform: none;
220
+ box-shadow: none;
221
+ }
222
+
223
+ .tab-style1 li.dock-divider::after {
224
+ content: none;
225
+ }
226
+
227
+ .tab-style1 li.dock-divider {
228
+ width: 1px;
229
+ min-width: 1px;
230
+ height: 44px;
231
+ padding: 0;
232
+ margin: 0 7px;
233
+ border-radius: 999px;
234
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(120, 120, 120, 0.2));
235
+ box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.55), 0 0 2px rgba(0, 0, 0, 0.25);
236
+ pointer-events: none;
237
+ cursor: default;
238
+ align-self: center;
239
+ }
240
+
241
+ .tabbar ul > li:last-of-type::before {
242
+ content: '';
243
+ position: absolute;
244
+ bottom: -10px;
245
+ left: 50%;
246
+ transform: translateX(-50%);
247
+ width: 8px;
248
+ height: 8px;
249
+ border-radius: 50%;
250
+ background: hsl(var(--cc-pink, 330 87% 52%));
251
+ box-shadow: 0 0 6px rgba(237, 30, 121, 0.45);
252
+ }
253
+
254
+ .tabbar li .bg-img-menu-fix-mob {
255
+ display: block;
256
+ height: 60px;
257
+ width: 60px;
258
+ background-size: contain;
259
+ background-position: center;
260
+ background-repeat: no-repeat;
261
+ background-origin: content-box;
262
+ padding: 1px;
263
+ }
264
+
265
+ .tabbar li .bg-img-menu-fix-mob.dock-fallback {
266
+ display: grid;
267
+ place-items: center;
268
+ border-radius: 1rem;
269
+ background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.2) 45%, rgba(124, 91, 187, 0.22) 75%);
270
+ color: var(--lg-text);
271
+ font-weight: 700;
272
+ font-size: 0.85rem;
273
+ letter-spacing: 0.04em;
274
+ text-transform: uppercase;
275
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 12px rgba(58, 42, 88, 0.18);
276
+ }
277
+
278
+ .tabbar li .bg-img-menu-fix-mob.dock-fallback .dock-fallback-icon {
279
+ line-height: 1;
280
+ }
281
+
282
+ .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob {
283
+ padding: 5px;
284
+ }
285
+
286
+ .list-menu-mob-show {
287
+ position: absolute;
288
+ left: 0;
289
+ width: 100%;
290
+ z-index: 5;
291
+ display: none;
292
+ flex-direction: column;
293
+ align-items: center;
294
+ gap: 0.25rem;
295
+ pointer-events: none;
296
+ }
297
+
298
+ .list-menu-mob-show.show {
299
+ display: flex;
300
+ pointer-events: auto;
301
+ }
302
+
303
+ .list-menu-mob-show .mob-list-menu.hide {
304
+ display: none;
305
+ }
306
+
307
+ .list-menu-mob-show .mob-list-menu.show {
308
+ display: flex;
309
+ flex-direction: column;
310
+ align-items: center;
311
+ gap: 0.25rem;
312
+ }
313
+
314
+ .submenu-stack {
315
+ position: relative;
316
+ display: flex;
317
+ flex-direction: column;
318
+ align-items: center;
319
+ width: 100%;
320
+ max-width: 210px;
321
+ background: none;
322
+ }
323
+
324
+ .submenu-stack::after {
325
+ content: '';
326
+ position: absolute;
327
+ bottom: -14px;
328
+ left: 50%;
329
+ transform: translateX(-50%);
330
+ width: 0;
331
+ height: 0;
332
+ border-left: 14px solid transparent;
333
+ border-right: 14px solid transparent;
334
+ border-top: 14px solid rgba(255, 255, 255, 0.6);
335
+ opacity: 0;
336
+ transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 2.2);
337
+ pointer-events: none;
338
+ z-index: -1;
339
+ }
340
+
341
+ .submenu-stack::before {
342
+ content: '';
343
+ position: absolute;
344
+ top: 0;
345
+ left: 0;
346
+ right: 0;
347
+ bottom: 0;
348
+ opacity: 0;
349
+ transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
350
+ z-index: -1;
351
+ }
352
+
353
+ .submenu-stack.visible::before {
354
+ opacity: 1;
355
+ transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
356
+ }
357
+
358
+ .submenu-stack:not(.visible)::before {
359
+ transition: opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2);
360
+ }
361
+
362
+ .mob-list-menu.show .submenu-stack::after {
363
+ opacity: 1;
364
+ }
365
+
366
+ .submenu-stack.marketing::before {
367
+ background: linear-gradient(182deg, rgba(149, 29, 218, 0) 13.45%, rgba(184, 29, 218, 0.66) 18.07%, rgba(218, 10, 163, 0.77));
368
+ }
369
+ .submenu-stack.mn-desenvolvimento::before {
370
+ background: linear-gradient(187deg, rgba(237, 29, 120, 0) 12.18%, rgba(241, 12, 202, 0.68) 14.29%, rgba(83, 1, 190, 0.73));
371
+ }
372
+ .submenu-stack.mn-solucoes::before {
373
+ background: linear-gradient(182deg, rgba(255, 255, 0, 0) 12.18%, rgba(217, 0, 255, 0.62) 15.55%, rgba(239, 64, 176, 0.78));
374
+ }
375
+ .submenu-stack.mn-cases-de-sucesso::before {
376
+ background: linear-gradient(192deg, rgba(135, 206, 235, 0) 13.45%, rgba(21, 43, 228, 0.49) 16.39%, rgba(178, 0, 235, 0.6));
377
+ }
378
+ .submenu-stack.mn-sobre-nos::before {
379
+ background: linear-gradient(187deg, rgba(0, 182, 235, 0) 12.61%, rgba(73, 0, 235, 0.56) 15.97%, rgba(201, 209, 59, 0.62));
380
+ }
381
+ .submenu-stack.mn-contato::before {
382
+ background: linear-gradient(192deg, rgba(255, 105, 180, 0) 10.92%, rgba(11, 149, 61, 0.68) 15.13%, rgba(0, 183, 235, 0.8));
383
+ }
384
+
385
+ .marketing .submenu-stack::after { border-top-color: rgba(237, 30, 121, 0.8); }
386
+ .mn-desenvolvimento .submenu-stack::after { border-top-color: rgba(149, 29, 218, 0.8); }
387
+ .mn-solucoes .submenu-stack::after { border-top-color: rgba(0, 183, 235, 0.8); }
388
+ .mn-cases-de-sucesso .submenu-stack::after { border-top-color: rgba(255, 105, 180, 0.8); }
389
+ .mn-sobre-nos .submenu-stack::after { border-top-color: rgba(255, 255, 0, 0.8); }
390
+ .mn-contato .submenu-stack::after { border-top-color: rgba(34, 139, 34, 0.8); }
391
+
392
+ .submenu-card {
393
+ width: 280px;
394
+ height: 90px;
395
+ position: relative;
396
+ overflow: hidden;
397
+ display: flex;
398
+ align-items: center;
399
+ padding: 0;
400
+ margin: 0;
401
+ clip-path: polygon(0 0, 95% 5%, 100% 100%, 5% 95%);
402
+ border-radius: 10px 61px 20px 0;
403
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
404
+ will-change: transform, opacity;
405
+ isolation: isolate;
406
+ transform-origin: center bottom;
407
+ transform: translateY(100%);
408
+ opacity: 0;
409
+ }
410
+
411
+ .submenu-card.animate-in {
412
+ transform: translateY(0);
413
+ opacity: 1;
414
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
415
+ }
416
+
417
+ .submenu-card:not(.animate-in) {
418
+ transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2), opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2);
419
+ }
420
+
421
+ .submenu-card:hover.animate-in {
422
+ transform: scale(1.02) translateY(-2px) !important;
423
+ }
424
+
425
+ .submenu-card:hover:not(.animate-in) {
426
+ transform: scale(1.02) translateY(-2px);
427
+ }
428
+
429
+ .marketing {
430
+ --c1: rgb(252 210 228 / 77%);
431
+ --c2: rgb(215 45 146 / 50%);
432
+ --c3: rgba(238, 135, 214, 0.35);
433
+ --base-angle: 119deg;
434
+ --p1: 0%;
435
+ --p2: 50.84%;
436
+ --p3: 100%;
437
+ }
438
+
439
+ .mn-desenvolvimento {
440
+ --c1: rgba(204, 127, 247, 0.6);
441
+ --c2: rgba(181, 160, 245, 0.55);
442
+ --c3: rgba(203, 132, 226, 0.69);
443
+ --base-angle: 150deg;
444
+ --p1: 21.01%;
445
+ --p2: 73.95%;
446
+ --p3: 100%;
447
+ }
448
+
449
+ .mn-cases-de-sucesso {
450
+ --c1: rgba(240, 173, 206, 0.69);
451
+ --c2: rgba(206, 82, 217, 0.62);
452
+ --c3: rgba(201, 243, 255, 0.5);
453
+ --base-angle: 45deg;
454
+ --p1: 0%;
455
+ --p2: 44.12%;
456
+ --p3: 100%;
457
+ }
458
+
459
+ .mn-sobre-nos {
460
+ --c1: rgba(230, 145, 218, 0.6);
461
+ --c2: rgba(198, 128, 238, 0.52);
462
+ --c3: rgba(241, 241, 212, 0.51);
463
+ --base-angle: 135deg;
464
+ --p1: 0%;
465
+ --p2: 50%;
466
+ --p3: 100%;
467
+ }
468
+
469
+ .mn-contato {
470
+ --c1: rgba(171, 217, 230, 0.65);
471
+ --c2: rgba(213, 240, 213, 0.63);
472
+ --c3: rgba(175, 214, 154, 0.61);
473
+ --base-angle: 135deg;
474
+ --p1: 0%;
475
+ --p2: 55.88%;
476
+ --p3: 100%;
477
+ }
478
+
479
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card {
480
+ --a: var(--base-angle, 135deg);
481
+ --o1: var(--c1);
482
+ --o2: var(--c2);
483
+ --o3: var(--c3);
484
+ background: linear-gradient(var(--a), var(--o1) var(--p1, 0%), var(--o2) var(--p2, 50%), var(--o3) var(--p3, 100%));
485
+ }
486
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:first-child {
487
+ --a: calc(var(--base-angle, 135deg) + 14deg);
488
+ --o1: var(--c3);
489
+ --o2: var(--c1);
490
+ --o3: var(--c2);
491
+ }
492
+ :is(.marketing, .mn-desenvolvimento, .mn-sobre-nos, .mn-contato) .submenu-card:last-child {
493
+ --a: calc(var(--base-angle, 135deg) + 180deg);
494
+ --o1: var(--c2);
495
+ --o2: var(--c3);
496
+ --o3: var(--c1);
497
+ }
498
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(odd) {
499
+ --a: calc(var(--base-angle, 135deg) + 31deg);
500
+ --o1: var(--c1);
501
+ --o2: var(--c3);
502
+ --o3: var(--c2);
503
+ }
504
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(even) {
505
+ --a: calc(var(--base-angle, 135deg) - 16deg);
506
+ --o1: var(--c2);
507
+ --o2: var(--c1);
508
+ --o3: var(--c3);
509
+ }
510
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:only-child {
511
+ --a: var(--base-angle, 135deg);
512
+ --o1: var(--c1);
513
+ --o2: var(--c2);
514
+ --o3: var(--c3);
515
+ }
516
+ :is(.mn-cases-de-sucesso) .submenu-card:last-child {
517
+ --a: calc(var(--base-angle, 45deg) + 180deg);
518
+ background: linear-gradient(
519
+ var(--a),
520
+ rgba(155, 26, 196, 0.68) 0%,
521
+ rgba(185, 82, 225, 0.71) 40%,
522
+ rgb(198 110 235 / 90%) 50%,
523
+ rgba(185, 82, 225, 0.71) 60%,
524
+ rgb(170 39 177 / 58%) 100%
525
+ );
526
+ background-size: 300% 100%;
527
+ animation: visibleFlare 7.5s ease-in-out infinite;
528
+ position: relative;
529
+ z-index: 1;
530
+ transform: translate3d(0, 0, 0);
531
+ backface-visibility: hidden;
532
+ will-change: background-position;
533
+ }
534
+
535
+ @keyframes visibleFlare {
536
+ 0% {
537
+ background-position: 0% 0%;
538
+ }
539
+ 25% {
540
+ background-position: 100% 100%;
541
+ }
542
+ 50% {
543
+ background-position: 0% 100%;
544
+ }
545
+ 75% {
546
+ background-position: 100% 0%;
547
+ }
548
+ 100% {
549
+ background-position: 0% 0%;
550
+ }
551
+ }
552
+
553
+ .mn-solucoes .submenu-card:nth-child(1) {
554
+ background: linear-gradient(to bottom right, rgba(39, 109, 177, 0.68), rgba(156, 212, 255, 0.71) 49.16%, rgba(252, 195, 212, 0.58));
555
+ }
556
+ .mn-solucoes .submenu-card:nth-child(2) {
557
+ background: linear-gradient(to bottom right, rgba(255, 105, 180, 0.55), rgba(0, 183, 235, 0.66));
558
+ }
559
+ .mn-solucoes .submenu-card:nth-child(3) {
560
+ background: linear-gradient(to bottom right, rgba(149, 29, 218, 0.68) 46.22%, rgba(255, 171, 0, 0.7));
561
+ }
562
+ .mn-solucoes .submenu-card:nth-child(4) {
563
+ background: linear-gradient(to bottom right, rgba(132, 132, 132, 0.49), rgba(0, 0, 0, 0.59) 66.81%);
564
+ }
565
+ .mn-solucoes .submenu-card:nth-child(4) .card-content .text-content {
566
+ color: #fff;
567
+ }
568
+ .mn-solucoes .submenu-card:nth-child(5) {
569
+ background: linear-gradient(166deg, rgba(255, 128, 0, 0.64) 54.62%, color(display-p3 0.06 0.036 0.441 / 0.56) 92.86%);
570
+ }
571
+ .mn-solucoes .submenu-card:nth-child(6) {
572
+ background: linear-gradient(to bottom right, rgba(255, 255, 0, 0.63), rgba(254, 123, 3, 0.64));
573
+ }
574
+
575
+ .submenu-card .fold {
576
+ position: absolute;
577
+ top: 0;
578
+ left: 0;
579
+ width: 30px;
580
+ height: 20px;
581
+ background: inherit;
582
+ transform: skewX(10deg);
583
+ transform-origin: right;
584
+ z-index: 1;
585
+ }
586
+
587
+ .submenu-card .glass-filter {
588
+ position: absolute;
589
+ inset: 0;
590
+ z-index: 0;
591
+ filter: url(#lg-dist);
592
+ isolation: isolate;
593
+ backdrop-filter: blur(3px);
594
+ }
595
+
596
+ @supports (-webkit-backdrop-filter: blur(3px)) {
597
+ .submenu-card .glass-filter,
598
+ .tabbar .glass-filter {
599
+ filter: url(#lg-dist);
600
+ }
601
+ }
602
+ @supports not (-webkit-backdrop-filter: blur(3px)) {
603
+ .submenu-card .glass-filter,
604
+ .tabbar .glass-filter {
605
+ backdrop-filter: blur(3px);
606
+ }
607
+ }
608
+
609
+ .submenu-card .glass-overlay {
610
+ position: absolute;
611
+ inset: 0;
612
+ z-index: 1;
613
+ background: rgb(0 0 0 / 25%);
614
+ }
615
+
616
+ .submenu-card .glass-specular {
617
+ position: absolute;
618
+ inset: 0;
619
+ z-index: 2;
620
+ overflow: hidden;
621
+ box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
622
+ }
623
+
624
+ .dark .tabbar .glass-specular {
625
+ box-shadow: inset 1px 1px 0 rgb(44 44 44 / 75%), inset -1px -1px 0 rgb(29 29 29 / 75%), inset 0 0 5px rgb(189 189 189 / 75%);
626
+ }
627
+
593
628
  .submenu-card .card-content {
594
629
  position: relative;
595
630
  z-index: 3;
@@ -598,285 +633,305 @@
598
633
  justify-content: flex-start;
599
634
  padding: 1rem 1rem 0 1rem;
600
635
  height: 100%;
601
- color: var(--lg-text);
636
+ color: #fff;
602
637
  width: 100%;
603
- }
604
-
605
- .submenu-card .card-content .icon {
606
- width: 50px;
607
- margin-right: 0.5rem;
608
- flex-shrink: 0;
609
- }
610
-
611
- .submenu-card .card-content .text-content {
612
- flex: 1;
613
- display: flex;
614
- flex-direction: column;
615
- justify-content: center;
616
- }
617
-
638
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
639
+ }
640
+
641
+ .submenu-card .card-content .icon {
642
+ width: 50px;
643
+ margin-right: 0.5rem;
644
+ flex-shrink: 0;
645
+ }
646
+
647
+ .submenu-card .card-content .text-content {
648
+ flex: 1;
649
+ display: flex;
650
+ flex-direction: column;
651
+ justify-content: center;
652
+ }
653
+
618
654
  .submenu-card .card-content .title {
619
655
  font-size: 0.8rem;
620
- font-weight: bold;
656
+ font-weight: 800;
657
+ color: #fff;
621
658
  }
622
659
 
623
660
  .submenu-card .card-content .description {
624
661
  font-size: 0.65rem;
625
- opacity: 0.9;
662
+ color: rgba(255, 255, 255, 0.86);
663
+ opacity: 1;
626
664
  line-height: 1.2;
627
665
  }
628
666
 
629
667
  .submenu-card .card-content .saiba-mais {
630
- background: rgba(22, 185, 4, 0.69);
668
+ background: rgba(22, 185, 4, 0.82);
631
669
  border: 1px solid rgba(255, 255, 255, 0.3);
632
670
  border-radius: 0.5rem;
633
671
  padding: 0.1rem 0.6rem;
634
- color: #013a05;
672
+ color: #fff;
635
673
  text-decoration: none;
636
674
  font-size: 0.75rem;
675
+ font-weight: 700;
637
676
  position: absolute;
638
677
  bottom: -2px;
639
678
  right: 0;
640
679
  transition: background 0.3s;
641
680
  white-space: nowrap;
681
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
642
682
  }
643
683
  .saiba-mais-1 {
644
- background: rgba(22, 185, 4, 0.69);
684
+ background: rgba(22, 185, 4, 0.82);
645
685
  border: 1px solid rgba(255, 255, 255, 0.3);
646
686
  border-radius: 0.5rem;
647
687
  padding: 0.1rem 0.6rem;
648
- color: #013a05;
688
+ color: #fff;
649
689
  text-decoration: none;
650
690
  font-size: 0.75rem;
691
+ font-weight: 700;
651
692
  position: absolute;
652
693
  bottom: -2px;
653
694
  right: 120px;
654
695
  transition: background 0.3s;
655
696
  white-space: nowrap;
656
- }
657
-
658
- .submenu-card .card-content .saiba-mais:hover, .saiba-mais-1:hover {
659
- background: rgb(1 60 12 / 66%);
660
- color: #fff;
661
- }
662
-
663
- .tabbar .glass-filter {
664
- position: absolute;
665
- inset: 0;
666
- z-index: 0;
667
- filter: url(#lg-dist);
668
- isolation: isolate;
669
- backdrop-filter: blur(3px);
670
- border-radius: 40px;
671
- }
672
-
673
- .tabbar .glass-overlay {
674
- position: absolute;
675
- inset: 0;
676
- z-index: 1;
677
- background: rgba(255, 255, 255, 0.25);
678
- border-radius: 35px;
679
- }
680
-
681
- .tabbar .glass-specular {
682
- position: absolute;
683
- inset: 0;
684
- z-index: 2;
685
- border-radius: inherit;
686
- overflow: hidden;
687
- box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
688
- }
689
-
690
- .dark .tabbar .glass-specular {
691
- box-shadow: inset 1px 1px 0 rgb(44 44 44 / 75%), inset -1px -1px 0 rgb(29 29 29 / 75%), inset 0 0 5px rgb(189 189 189 / 75%);
692
- }
693
- .dark .tabbar .glass-overlay {
694
- background: rgba(0, 0, 0, 0.25);
695
- }
696
-
697
- .tab-style1 li img {
698
- max-width: 40px;
699
- max-height: 40px;
700
- transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
701
- }
702
-
703
- .tab-style1 li:hover img {
704
- transform: scale(0.95);
705
- }
706
-
707
- .tabbar li.mn-homepage {
708
- position: relative;
709
- }
710
-
711
- a.link-absolute-menu {
712
- display: block;
713
- height: 100%;
714
- width: 100%;
715
- position: absolute;
716
- inset: 0;
717
- }
718
-
719
- .tabbar li.mn-homepage .bg-img-menu-fix-mob {
720
- height: 60px;
721
- width: 60px;
722
- background-size: contain;
723
- background-position: center;
724
- background-repeat: no-repeat;
725
- background-origin: content-box;
726
- padding: 1px;
727
- }
728
-
729
- .tooltip {
730
- z-index: 10000 !important;
731
- filter: none !important;
732
- }
733
-
734
- .tooltip-inner {
735
- background-color: rgba(0, 0, 0, 0.8) !important;
736
- color: #fff !important;
737
- font-weight: 600;
738
- }
739
-
740
- .tooltip .arrow::before {
741
- border-top-color: rgba(0, 0, 0, 0.8) !important;
742
- }
743
-
697
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
698
+ }
699
+
700
+ .submenu-card .card-content .saiba-mais:hover, .saiba-mais-1:hover {
701
+ background: rgb(1 60 12 / 66%);
702
+ color: #fff;
703
+ }
704
+
705
+ .tabbar .glass-filter {
706
+ position: absolute;
707
+ inset: 0;
708
+ z-index: 0;
709
+ filter: url(#lg-dist);
710
+ isolation: isolate;
711
+ backdrop-filter: blur(3px);
712
+ border-radius: 40px;
713
+ }
714
+
715
+ .tabbar .glass-overlay {
716
+ position: absolute;
717
+ inset: 0;
718
+ z-index: 1;
719
+ background: rgba(255, 255, 255, 0.25);
720
+ border-radius: 35px;
721
+ }
722
+
723
+ .tabbar .glass-specular {
724
+ position: absolute;
725
+ inset: 0;
726
+ z-index: 2;
727
+ border-radius: inherit;
728
+ overflow: hidden;
729
+ box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
730
+ }
731
+
732
+ .dark .tabbar .glass-specular {
733
+ box-shadow: inset 1px 1px 0 rgb(44 44 44 / 75%), inset -1px -1px 0 rgb(29 29 29 / 75%), inset 0 0 5px rgb(189 189 189 / 75%);
734
+ }
735
+ .dark .tabbar .glass-overlay {
736
+ background: rgba(0, 0, 0, 0.25);
737
+ }
738
+
739
+ .tab-style1 li img {
740
+ max-width: 40px;
741
+ max-height: 40px;
742
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
743
+ }
744
+
745
+ .tab-style1 li:hover img {
746
+ transform: scale(0.95);
747
+ }
748
+
749
+ .tabbar li.mn-homepage {
750
+ position: relative;
751
+ }
752
+
753
+ a.link-absolute-menu {
754
+ display: block;
755
+ height: 100%;
756
+ width: 100%;
757
+ position: absolute;
758
+ inset: 0;
759
+ }
760
+
761
+ .tabbar li.mn-homepage .bg-img-menu-fix-mob {
762
+ height: 60px;
763
+ width: 60px;
764
+ background-size: contain;
765
+ background-position: center;
766
+ background-repeat: no-repeat;
767
+ background-origin: content-box;
768
+ padding: 1px;
769
+ }
770
+
771
+ .tooltip {
772
+ z-index: 10000 !important;
773
+ filter: none !important;
774
+ }
775
+
776
+ .tooltip-inner {
777
+ background-color: rgba(0, 0, 0, 0.8) !important;
778
+ color: #fff !important;
779
+ font-weight: 600;
780
+ }
781
+
782
+ .tooltip .arrow::before {
783
+ border-top-color: rgba(0, 0, 0, 0.8) !important;
784
+ }
785
+
744
786
  @media (max-width: 600px) {
745
- .dock {
746
- max-width: calc(100vw - 1rem);
747
- }
748
- .submenu-card {
749
- height: 90px;
750
- width: 270px;
751
- }
752
-
753
- .submenu-stack {
754
- max-width: 240px;
755
- }
756
-
757
- .tabbar li .bg-img-menu-fix-mob {
758
- height: 40px;
759
- width: 40px;
760
- }
761
-
762
- .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob {
763
- padding: 4px;
764
- }
765
-
766
- .tab-style1 li {
767
- width: 40px;
768
- height: 40px;
787
+ .app-dock {
788
+ padding-inline: 0.5rem;
769
789
  }
770
790
 
771
- .tabbar ul {
772
- height: 60px;
773
- padding: 0.5rem 0.5rem;
774
- gap: 5px;
775
- }
776
-
777
- .tabbar {
778
- height: 60px;
779
- min-height: 60px;
780
- }
781
-
782
- .tab-style1 li.dock-divider {
783
- height: 32px;
784
- margin: 0 6px;
785
- }
786
-
787
- .tabbar ul > li:last-of-type::before {
788
- bottom: -8px;
789
- }
790
-
791
- .submenu-card .card-content .icon {
792
- width: 40px;
793
- margin-right: 0.25rem;
794
- }
795
-
796
- .submenu-card .card-content .title {
797
- font-size: 0.8rem;
791
+ .app-dock .dock {
792
+ width: fit-content;
793
+ max-width: calc(100vw - 1rem);
798
794
  }
799
795
 
800
- .submenu-card .card-content .description {
801
- font-size: 0.65rem;
796
+ .app-dock .submenu-card {
797
+ width: min(270px, calc(100vw - 3rem));
802
798
  }
803
799
 
804
- .submenu-card .card-content .saiba-mais {
805
- font-size: 0.7rem;
806
- padding: 0.1rem 0.4rem;
800
+ .dock {
801
+ max-width: calc(100vw - 1rem);
807
802
  }
808
- }
809
-
810
- .tabbar ul::after {
811
- content: '';
812
- position: absolute;
813
- top: var(--slider-top, 10px);
814
- left: var(--slider-left, 0px);
815
- width: var(--slider-width, 60px);
816
- height: var(--slider-height, 60px);
817
- border-radius: 1.2rem;
818
- background: rgb(225 175 241 / 30%);
819
- z-index: 2;
820
- backdrop-filter: blur(3px);
821
- transition-property: left, width, height, top, transform;
822
- transition-duration: var(--slider-duration, 0.4s);
823
- transition-timing-function: var(--slider-ease, ease);
824
- transform-origin: center;
825
- box-shadow:
826
- inset 0 0 0 1px rgba(255, 255, 255, 0.1),
827
- inset 2px 1px 0px -1px rgba(255, 255, 255, 0.8),
828
- inset -1.5px -1px 0px -1px rgba(255, 255, 255, 0.7),
829
- inset -2px -6px 1px -5px rgba(255, 255, 255, 0.5),
830
- inset -1px 2px 3px -1px rgba(58, 42, 88, 0.2),
831
- inset 0px -4px 1px -2px rgba(58, 42, 88, 0.1),
832
- 0px 3px 6px 0px rgba(58, 42, 88, 0.08);
833
- z-index: -1;
834
- will-change: left, width, height, top, transform;
835
- transform: translateZ(0) scale(var(--slider-scale, 1));
836
- }
837
-
838
- .tabbar ul {
839
- overflow: visible;
840
- }
841
- /* Custom dock backgrounds */
842
- @keyframes dockFloatFast {
843
- 0% { transform: translate3d(0,0,0); }
844
- 50% { transform: translate3d(0,-4px,0); }
845
- 100% { transform: translate3d(0,0,0); }
846
- }
847
- .submenu-card {
848
- backdrop-filter: blur(3px);
849
- }
850
-
851
- .submenu-card.submenu-card--particle-stars {
852
- background: radial-gradient(circle at 20% 20%, rgb(255 255 255 / 45%) 0%, rgb(212 100 228 / 56%) 45%, rgb(122 16 191 / 49%) 100%);
853
- }
854
-
855
- .submenu-card.submenu-card--purple {
856
- background: linear-gradient(135deg, rgba(83, 37, 167, 0.78), rgb(126 77 237 / 52%), rgb(176 78 236 / 60%));
857
- }
858
-
859
- .submenu-card.submenu-card--pink {
860
- background: linear-gradient(140deg, rgb(237 30 121 / 40%), rgba(255, 177, 213, 0.62), rgb(208 47 121 / 55%));
861
- }
862
-
863
- .submenu-card.submenu-card--comet {
864
- background: var(--cc-gradient-comet);
865
- }
866
- .submenu-card.submenu-card--comet .glass-overlay {
867
- background: radial-gradient(circle at 20% 20%, rgb(217 90 220 / 64%), rgb(64 9 116 / 65%), rgb(109 17 96 / 65%));
868
- }
869
- .submenu-card.submenu-card--comet .card-content .text-content {
870
- color: #f6f6ff;
871
- }
872
-
873
- .submenu-card.submenu-card--sunset {
874
- background: linear-gradient(155deg, rgb(255 168 66 / 56%), rgb(184 66 155 / 62%), rgb(94 25 180 / 58%));
875
- }
876
-
877
- .submenu-card.submenu-card--particle-comets {
878
- background: linear-gradient(150deg, rgb(223 35 213 / 56%), rgb(132 78 211 / 54%), rgb(132 78 211 / 48%));
879
- }
880
- .submenu-card.submenu-card--particle-comets .card-content {
881
- animation: dockFloatFast 7.5s ease-in-out infinite;
882
- }
803
+ .submenu-card {
804
+ height: 90px;
805
+ width: 270px;
806
+ }
807
+
808
+ .submenu-stack {
809
+ max-width: 240px;
810
+ }
811
+
812
+ .tabbar li .bg-img-menu-fix-mob {
813
+ height: 40px;
814
+ width: 40px;
815
+ }
816
+
817
+ .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob {
818
+ padding: 4px;
819
+ }
820
+
821
+ .tab-style1 li {
822
+ width: 40px;
823
+ height: 40px;
824
+ }
825
+
826
+ .tabbar ul {
827
+ height: 60px;
828
+ padding: 0.5rem 0.5rem;
829
+ gap: 5px;
830
+ }
831
+
832
+ .tabbar {
833
+ height: 60px;
834
+ min-height: 60px;
835
+ }
836
+
837
+ .tab-style1 li.dock-divider {
838
+ height: 32px;
839
+ margin: 0 6px;
840
+ }
841
+
842
+ .tabbar ul > li:last-of-type::before {
843
+ bottom: -8px;
844
+ }
845
+
846
+ .submenu-card .card-content .icon {
847
+ width: 40px;
848
+ margin-right: 0.25rem;
849
+ }
850
+
851
+ .submenu-card .card-content .title {
852
+ font-size: 0.8rem;
853
+ }
854
+
855
+ .submenu-card .card-content .description {
856
+ font-size: 0.65rem;
857
+ }
858
+
859
+ .submenu-card .card-content .saiba-mais {
860
+ font-size: 0.7rem;
861
+ padding: 0.1rem 0.4rem;
862
+ }
863
+ }
864
+
865
+ .tabbar ul::after {
866
+ content: '';
867
+ position: absolute;
868
+ top: var(--slider-top, 10px);
869
+ left: var(--slider-left, 0px);
870
+ width: var(--slider-width, 60px);
871
+ height: var(--slider-height, 60px);
872
+ border-radius: 1.2rem;
873
+ background: rgb(225 175 241 / 30%);
874
+ z-index: 2;
875
+ backdrop-filter: blur(3px);
876
+ transition-property: left, width, height, top, transform;
877
+ transition-duration: var(--slider-duration, 0.4s);
878
+ transition-timing-function: var(--slider-ease, ease);
879
+ transform-origin: center;
880
+ box-shadow:
881
+ inset 0 0 0 1px rgba(255, 255, 255, 0.1),
882
+ inset 2px 1px 0px -1px rgba(255, 255, 255, 0.8),
883
+ inset -1.5px -1px 0px -1px rgba(255, 255, 255, 0.7),
884
+ inset -2px -6px 1px -5px rgba(255, 255, 255, 0.5),
885
+ inset -1px 2px 3px -1px rgba(58, 42, 88, 0.2),
886
+ inset 0px -4px 1px -2px rgba(58, 42, 88, 0.1),
887
+ 0px 3px 6px 0px rgba(58, 42, 88, 0.08);
888
+ z-index: -1;
889
+ will-change: left, width, height, top, transform;
890
+ transform: translateZ(0) scale(var(--slider-scale, 1));
891
+ }
892
+
893
+ .tabbar ul {
894
+ overflow: visible;
895
+ }
896
+ /* Custom dock backgrounds */
897
+ @keyframes dockFloatFast {
898
+ 0% { transform: translate3d(0,0,0); }
899
+ 50% { transform: translate3d(0,-4px,0); }
900
+ 100% { transform: translate3d(0,0,0); }
901
+ }
902
+ .submenu-card {
903
+ backdrop-filter: blur(3px);
904
+ }
905
+
906
+ .submenu-card.submenu-card--particle-stars {
907
+ background: radial-gradient(circle at 20% 20%, rgb(255 255 255 / 45%) 0%, rgb(212 100 228 / 56%) 45%, rgb(122 16 191 / 49%) 100%);
908
+ }
909
+
910
+ .submenu-card.submenu-card--purple {
911
+ background: linear-gradient(135deg, rgba(83, 37, 167, 0.78), rgb(126 77 237 / 52%), rgb(176 78 236 / 60%));
912
+ }
913
+
914
+ .submenu-card.submenu-card--pink {
915
+ background: linear-gradient(140deg, rgb(237 30 121 / 40%), rgba(255, 177, 213, 0.62), rgb(208 47 121 / 55%));
916
+ }
917
+
918
+ .submenu-card.submenu-card--comet {
919
+ background: var(--cc-gradient-comet);
920
+ }
921
+ .submenu-card.submenu-card--comet .glass-overlay {
922
+ background: radial-gradient(circle at 20% 20%, rgb(217 90 220 / 64%), rgb(64 9 116 / 65%), rgb(109 17 96 / 65%));
923
+ }
924
+ .submenu-card.submenu-card--comet .card-content .text-content {
925
+ color: #f6f6ff;
926
+ }
927
+
928
+ .submenu-card.submenu-card--sunset {
929
+ background: linear-gradient(155deg, rgb(255 168 66 / 56%), rgb(184 66 155 / 62%), rgb(94 25 180 / 58%));
930
+ }
931
+
932
+ .submenu-card.submenu-card--particle-comets {
933
+ background: linear-gradient(150deg, rgb(223 35 213 / 56%), rgb(132 78 211 / 54%), rgb(132 78 211 / 48%));
934
+ }
935
+ .submenu-card.submenu-card--particle-comets .card-content {
936
+ animation: dockFloatFast 7.5s ease-in-out infinite;
937
+ }