@cupcodev/ui 0.1.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.
@@ -0,0 +1,801 @@
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: #18013a;
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: #951ddb;
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: #951ddb;
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: #951ddb;
33
+ --blue-green-grey-light: #00b7eb;
34
+ --blue-green-grey-med: #228b22;
35
+ --blue-green-grey-dark: #696969;
36
+ }
37
+
38
+ .flex-center {
39
+ display: flex;
40
+ justify-content: space-around;
41
+ align-items: center;
42
+ }
43
+
44
+ .dock {
45
+ max-width: 100%;
46
+ width: 100%;
47
+ margin: 0 auto;
48
+ position: fixed;
49
+ bottom: 0;
50
+ left: 50%;
51
+ transform: translateX(-50%);
52
+ z-index: 1000;
53
+ max-width: 580px;
54
+ margin-bottom: 0.5rem;
55
+ border-radius: 2rem;
56
+ overflow: visible;
57
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
58
+ background: #fcfcfc87;
59
+ z-index: 100;
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: #951ddb;
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: flex;
92
+ flex-direction: column;
93
+ box-sizing: content-box;
94
+ overflow: visible;
95
+ transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
96
+ box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
97
+ }
98
+
99
+ .is-active-menu.tabbar {
100
+ height: auto;
101
+ transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
102
+ }
103
+
104
+ .tabbar ul,
105
+ .tabbar li {
106
+ list-style-type: none;
107
+ margin: 0;
108
+ padding: 0;
109
+ }
110
+
111
+ .tabbar ul {
112
+ position: relative;
113
+ width: 100%;
114
+ justify-content: center;
115
+ height: 80px;
116
+ z-index: 3;
117
+ padding: 0.5rem 1rem;
118
+ display: flex;
119
+ align-items: center;
120
+ gap: 10px;
121
+ overflow: hidden;
122
+ }
123
+
124
+ .tabbar li {
125
+ display: flex;
126
+ justify-content: center;
127
+ align-items: center;
128
+ font-size: 1rem;
129
+ width: 60px;
130
+ height: 60px;
131
+ position: relative;
132
+ color: var(--lg-text);
133
+ cursor: pointer;
134
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
135
+ }
136
+
137
+ .tabbar li:last-child {
138
+ margin-right: 0;
139
+ }
140
+
141
+ .tab-style1 li {
142
+ display: flex;
143
+ justify-content: center;
144
+ align-items: center;
145
+ width: 60px;
146
+ height: 60px;
147
+ flex-direction: column;
148
+ border-radius: 1.2rem;
149
+ padding: 1px;
150
+ position: relative;
151
+ }
152
+ .tab-style1 li::after {
153
+ content: '';
154
+ position: absolute;
155
+ top: -10px;
156
+ left: 50%;
157
+ transform: translateX(-50%);
158
+ width: 0;
159
+ height: 0;
160
+ border-left: 10px solid transparent;
161
+ border-right: 10px solid transparent;
162
+ border-top: 10px solid rgb(148 20 222 / 71%);
163
+ opacity: 0;
164
+ transition: opacity 0.4s;
165
+ z-index: 4;
166
+ }
167
+ .tab-style1 li.active::after {
168
+ opacity: 1;
169
+ }
170
+
171
+ .tab-style1 li:hover {
172
+ transform: scale(0.95);
173
+ box-shadow: 0 0 10px var(--lg-hover-glow);
174
+ }
175
+
176
+ .list-menu-mob-show {
177
+ position: absolute;
178
+ left: 0;
179
+ width: 100%;
180
+ z-index: 5;
181
+ display: none;
182
+ flex-direction: column;
183
+ align-items: center;
184
+ gap: 0.25rem;
185
+ pointer-events: none;
186
+ }
187
+
188
+ .list-menu-mob-show.show {
189
+ display: flex;
190
+ pointer-events: auto;
191
+ }
192
+
193
+ .list-menu-mob-show .mob-list-menu.hide {
194
+ display: none;
195
+ }
196
+
197
+ .list-menu-mob-show .mob-list-menu.show {
198
+ display: flex;
199
+ flex-direction: column;
200
+ align-items: center;
201
+ gap: 0.25rem;
202
+ }
203
+
204
+ .submenu-stack {
205
+ position: relative;
206
+ display: flex;
207
+ flex-direction: column;
208
+ align-items: center;
209
+ width: 100%;
210
+ max-width: 210px;
211
+ background: none;
212
+ }
213
+
214
+ .submenu-stack::before {
215
+ content: '';
216
+ position: absolute;
217
+ top: 0;
218
+ left: 0;
219
+ right: 0;
220
+ bottom: 0;
221
+ opacity: 0;
222
+ transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
223
+ z-index: -1;
224
+ }
225
+
226
+ .submenu-stack.visible::before {
227
+ opacity: 1;
228
+ transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
229
+ }
230
+
231
+ .submenu-stack:not(.visible)::before {
232
+ transition: opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 2.2);
233
+ }
234
+
235
+ .mob-list-menu.show .submenu-stack::after {
236
+ opacity: 1;
237
+ }
238
+
239
+ .submenu-stack.marketing::before {
240
+ 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));
241
+ }
242
+ .submenu-stack.mn-desenvolvimento::before {
243
+ 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));
244
+ }
245
+ .submenu-stack.mn-solucoes::before {
246
+ 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));
247
+ }
248
+ .submenu-stack.mn-cases-de-sucesso::before {
249
+ 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));
250
+ }
251
+ .submenu-stack.mn-sobre-nos::before {
252
+ 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));
253
+ }
254
+ .submenu-stack.mn-contato::before {
255
+ 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));
256
+ }
257
+
258
+ .marketing .submenu-stack::after { border-top-color: rgba(237, 30, 121, 0.8); }
259
+ .mn-desenvolvimento .submenu-stack::after { border-top-color: rgba(149, 29, 218, 0.8); }
260
+ .mn-solucoes .submenu-stack::after { border-top-color: rgba(0, 183, 235, 0.8); }
261
+ .mn-cases-de-sucesso .submenu-stack::after { border-top-color: rgba(255, 105, 180, 0.8); }
262
+ .mn-sobre-nos .submenu-stack::after { border-top-color: rgba(255, 255, 0, 0.8); }
263
+ .mn-contato .submenu-stack::after { border-top-color: rgba(34, 139, 34, 0.8); }
264
+
265
+ .submenu-card {
266
+ width: 280px;
267
+ height: 90px;
268
+ position: relative;
269
+ overflow: hidden;
270
+ display: flex;
271
+ align-items: center;
272
+ padding: 0;
273
+ margin: 0;
274
+ clip-path: polygon(0 0, 95% 5%, 100% 100%, 5% 95%);
275
+ border-radius: 10px 61px 20px 0;
276
+ 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);
277
+ will-change: transform, opacity;
278
+ isolation: isolate;
279
+ transform-origin: center bottom;
280
+ transform: translateY(100%);
281
+ opacity: 0;
282
+ }
283
+
284
+ .submenu-card.animate-in {
285
+ transform: translateY(0);
286
+ opacity: 1;
287
+ 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);
288
+ }
289
+
290
+ .submenu-card:not(.animate-in) {
291
+ 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);
292
+ }
293
+
294
+ .submenu-card:hover.animate-in {
295
+ transform: scale(1.02) translateY(-2px) !important;
296
+ }
297
+
298
+ .submenu-card:hover:not(.animate-in) {
299
+ transform: scale(1.02) translateY(-2px);
300
+ }
301
+
302
+ .marketing {
303
+ --c1: rgb(252 210 228 / 77%);
304
+ --c2: rgb(215 45 146 / 50%);
305
+ --c3: rgba(238, 135, 214, 0.35);
306
+ --base-angle: 119deg;
307
+ --p1: 0%;
308
+ --p2: 50.84%;
309
+ --p3: 100%;
310
+ }
311
+
312
+ .mn-desenvolvimento {
313
+ --c1: rgba(204, 127, 247, 0.6);
314
+ --c2: rgba(181, 160, 245, 0.55);
315
+ --c3: rgba(203, 132, 226, 0.69);
316
+ --base-angle: 150deg;
317
+ --p1: 21.01%;
318
+ --p2: 73.95%;
319
+ --p3: 100%;
320
+ }
321
+
322
+ .mn-cases-de-sucesso {
323
+ --c1: rgba(240, 173, 206, 0.69);
324
+ --c2: rgba(206, 82, 217, 0.62);
325
+ --c3: rgba(201, 243, 255, 0.5);
326
+ --base-angle: 45deg;
327
+ --p1: 0%;
328
+ --p2: 44.12%;
329
+ --p3: 100%;
330
+ }
331
+
332
+ .mn-sobre-nos {
333
+ --c1: rgba(230, 145, 218, 0.6);
334
+ --c2: rgba(198, 128, 238, 0.52);
335
+ --c3: rgba(241, 241, 212, 0.51);
336
+ --base-angle: 135deg;
337
+ --p1: 0%;
338
+ --p2: 50%;
339
+ --p3: 100%;
340
+ }
341
+
342
+ .mn-contato {
343
+ --c1: rgba(171, 217, 230, 0.65);
344
+ --c2: rgba(213, 240, 213, 0.63);
345
+ --c3: rgba(175, 214, 154, 0.61);
346
+ --base-angle: 135deg;
347
+ --p1: 0%;
348
+ --p2: 55.88%;
349
+ --p3: 100%;
350
+ }
351
+
352
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card {
353
+ --a: var(--base-angle, 135deg);
354
+ --o1: var(--c1);
355
+ --o2: var(--c2);
356
+ --o3: var(--c3);
357
+ background: linear-gradient(var(--a), var(--o1) var(--p1, 0%), var(--o2) var(--p2, 50%), var(--o3) var(--p3, 100%));
358
+ }
359
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:first-child {
360
+ --a: calc(var(--base-angle, 135deg) + 14deg);
361
+ --o1: var(--c3);
362
+ --o2: var(--c1);
363
+ --o3: var(--c2);
364
+ }
365
+ :is(.marketing, .mn-desenvolvimento, .mn-sobre-nos, .mn-contato) .submenu-card:last-child {
366
+ --a: calc(var(--base-angle, 135deg) + 180deg);
367
+ --o1: var(--c2);
368
+ --o2: var(--c3);
369
+ --o3: var(--c1);
370
+ }
371
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(odd) {
372
+ --a: calc(var(--base-angle, 135deg) + 31deg);
373
+ --o1: var(--c1);
374
+ --o2: var(--c3);
375
+ --o3: var(--c2);
376
+ }
377
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:not(:first-child):not(:last-child):nth-child(even) {
378
+ --a: calc(var(--base-angle, 135deg) - 16deg);
379
+ --o1: var(--c2);
380
+ --o2: var(--c1);
381
+ --o3: var(--c3);
382
+ }
383
+ :is(.marketing, .mn-desenvolvimento, .mn-cases-de-sucesso, .mn-sobre-nos, .mn-contato) .submenu-card:only-child {
384
+ --a: var(--base-angle, 135deg);
385
+ --o1: var(--c1);
386
+ --o2: var(--c2);
387
+ --o3: var(--c3);
388
+ }
389
+ :is(.mn-cases-de-sucesso) .submenu-card:last-child {
390
+ --a: calc(var(--base-angle, 45deg) + 180deg);
391
+ background: linear-gradient(
392
+ var(--a),
393
+ rgba(155, 26, 196, 0.68) 0%,
394
+ rgba(185, 82, 225, 0.71) 40%,
395
+ rgb(198 110 235 / 90%) 50%,
396
+ rgba(185, 82, 225, 0.71) 60%,
397
+ rgb(170 39 177 / 58%) 100%
398
+ );
399
+ background-size: 300% 100%;
400
+ animation: visibleFlare 7.5s ease-in-out infinite;
401
+ position: relative;
402
+ z-index: 1;
403
+ transform: translate3d(0, 0, 0);
404
+ backface-visibility: hidden;
405
+ will-change: background-position;
406
+ }
407
+
408
+ @keyframes visibleFlare {
409
+ 0% {
410
+ background-position: 0% 0%;
411
+ }
412
+ 25% {
413
+ background-position: 100% 100%;
414
+ }
415
+ 50% {
416
+ background-position: 0% 100%;
417
+ }
418
+ 75% {
419
+ background-position: 100% 0%;
420
+ }
421
+ 100% {
422
+ background-position: 0% 0%;
423
+ }
424
+ }
425
+
426
+ .mn-solucoes .submenu-card:nth-child(1) {
427
+ 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));
428
+ }
429
+ .mn-solucoes .submenu-card:nth-child(2) {
430
+ background: linear-gradient(to bottom right, rgba(255, 105, 180, 0.55), rgba(0, 183, 235, 0.66));
431
+ }
432
+ .mn-solucoes .submenu-card:nth-child(3) {
433
+ background: linear-gradient(to bottom right, rgba(149, 29, 218, 0.68) 46.22%, rgba(255, 171, 0, 0.7));
434
+ }
435
+ .mn-solucoes .submenu-card:nth-child(4) {
436
+ background: linear-gradient(to bottom right, rgba(132, 132, 132, 0.49), rgba(0, 0, 0, 0.59) 66.81%);
437
+ }
438
+ .mn-solucoes .submenu-card:nth-child(4) .card-content .text-content {
439
+ color: #fff;
440
+ }
441
+ .mn-solucoes .submenu-card:nth-child(5) {
442
+ 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%);
443
+ }
444
+ .mn-solucoes .submenu-card:nth-child(6) {
445
+ background: linear-gradient(to bottom right, rgba(255, 255, 0, 0.63), rgba(254, 123, 3, 0.64));
446
+ }
447
+
448
+ .submenu-card .fold {
449
+ position: absolute;
450
+ top: 0;
451
+ left: 0;
452
+ width: 30px;
453
+ height: 20px;
454
+ background: inherit;
455
+ transform: skewX(10deg);
456
+ transform-origin: right;
457
+ z-index: 1;
458
+ }
459
+
460
+ .submenu-card .glass-filter {
461
+ position: absolute;
462
+ inset: 0;
463
+ z-index: 0;
464
+ filter: url(#lg-dist);
465
+ isolation: isolate;
466
+ backdrop-filter: blur(3px);
467
+ }
468
+
469
+ @supports (-webkit-backdrop-filter: blur(3px)) {
470
+ .submenu-card .glass-filter,
471
+ .tabbar .glass-filter {
472
+ filter: url(#lg-dist);
473
+ }
474
+ }
475
+ @supports not (-webkit-backdrop-filter: blur(3px)) {
476
+ .submenu-card .glass-filter,
477
+ .tabbar .glass-filter {
478
+ backdrop-filter: blur(3px);
479
+ }
480
+ }
481
+
482
+ .submenu-card .glass-overlay {
483
+ position: absolute;
484
+ inset: 0;
485
+ z-index: 1;
486
+ background: rgb(0 0 0 / 25%);
487
+ }
488
+
489
+ .submenu-card .glass-specular {
490
+ position: absolute;
491
+ inset: 0;
492
+ z-index: 2;
493
+ overflow: hidden;
494
+ box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
495
+ }
496
+
497
+ .dark .tabbar .glass-specular {
498
+ 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%);
499
+ }
500
+
501
+ .submenu-card .card-content {
502
+ position: relative;
503
+ z-index: 3;
504
+ display: flex;
505
+ align-items: start;
506
+ justify-content: flex-start;
507
+ padding: 1rem 1rem 0 1rem;
508
+ height: 100%;
509
+ color: var(--lg-text);
510
+ width: 100%;
511
+ }
512
+
513
+ .submenu-card .card-content .icon {
514
+ width: 50px;
515
+ margin-right: 0.5rem;
516
+ flex-shrink: 0;
517
+ }
518
+
519
+ .submenu-card .card-content .text-content {
520
+ flex: 1;
521
+ display: flex;
522
+ flex-direction: column;
523
+ justify-content: center;
524
+ }
525
+
526
+ .submenu-card .card-content .title {
527
+ font-size: 0.8rem;
528
+ font-weight: bold;
529
+ }
530
+
531
+ .submenu-card .card-content .description {
532
+ font-size: 0.65rem;
533
+ opacity: 0.9;
534
+ line-height: 1.2;
535
+ }
536
+
537
+ .submenu-card .card-content .saiba-mais {
538
+ background: rgba(22, 185, 4, 0.69);
539
+ border: 1px solid rgba(255, 255, 255, 0.3);
540
+ border-radius: 0.5rem;
541
+ padding: 0.1rem 0.6rem;
542
+ color: #013a05;
543
+ text-decoration: none;
544
+ font-size: 0.75rem;
545
+ position: absolute;
546
+ bottom: -2px;
547
+ right: 0;
548
+ transition: background 0.3s;
549
+ white-space: nowrap;
550
+ }
551
+ .saiba-mais-1 {
552
+ background: rgba(22, 185, 4, 0.69);
553
+ border: 1px solid rgba(255, 255, 255, 0.3);
554
+ border-radius: 0.5rem;
555
+ padding: 0.1rem 0.6rem;
556
+ color: #013a05;
557
+ text-decoration: none;
558
+ font-size: 0.75rem;
559
+ position: absolute;
560
+ bottom: -2px;
561
+ right: 120px;
562
+ transition: background 0.3s;
563
+ white-space: nowrap;
564
+ }
565
+
566
+ .submenu-card .card-content .saiba-mais:hover, .saiba-mais-1:hover {
567
+ background: rgb(1 60 12 / 66%);
568
+ color: #fff;
569
+ }
570
+
571
+ .tabbar .glass-filter {
572
+ position: absolute;
573
+ inset: 0;
574
+ z-index: 0;
575
+ filter: url(#lg-dist);
576
+ isolation: isolate;
577
+ backdrop-filter: blur(3px);
578
+ border-radius: 40px;
579
+ }
580
+
581
+ .tabbar .glass-overlay {
582
+ position: absolute;
583
+ inset: 0;
584
+ z-index: 1;
585
+ background: rgba(255, 255, 255, 0.25);
586
+ border-radius: 35px;
587
+ }
588
+
589
+ .tabbar .glass-specular {
590
+ position: absolute;
591
+ inset: 0;
592
+ z-index: 2;
593
+ border-radius: inherit;
594
+ overflow: hidden;
595
+ box-shadow: inset 1px 1px 0 var(--lg-highlight), inset -1px -1px 0 var(--lg-highlight), inset 0 0 5px var(--lg-highlight);
596
+ }
597
+
598
+ .dark .tabbar .glass-specular {
599
+ 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%);
600
+ }
601
+ .dark .tabbar .glass-overlay {
602
+ background: rgba(0, 0, 0, 0.25);
603
+ }
604
+
605
+ .tab-style1 li img {
606
+ max-width: 40px;
607
+ max-height: 40px;
608
+ transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
609
+ }
610
+
611
+ .tab-style1 li:hover img {
612
+ transform: scale(0.95);
613
+ }
614
+
615
+ .tabbar li.marketing .bg-img-menu-fix-mob {
616
+ height: 60px;
617
+ width: 60px;
618
+ background-size: contain;
619
+ background-position: center;
620
+ background-repeat: no-repeat;
621
+ background-origin: content-box;
622
+ padding: 1px;
623
+ }
624
+
625
+ .tabbar li.mn-desenvolvimento .bg-img-menu-fix-mob {
626
+ height: 60px;
627
+ width: 60px;
628
+ background-size: contain;
629
+ background-position: center;
630
+ background-repeat: no-repeat;
631
+ background-origin: content-box;
632
+ padding: 1px;
633
+ }
634
+
635
+ .tabbar li.mn-homepage {
636
+ position: relative;
637
+ }
638
+
639
+ a.link-absolute-menu {
640
+ height: 100%;
641
+ width: 100%;
642
+ position: absolute;
643
+ }
644
+
645
+ .tabbar li.mn-homepage .bg-img-menu-fix-mob {
646
+ height: 60px;
647
+ width: 60px;
648
+ background-size: contain;
649
+ background-position: center;
650
+ background-repeat: no-repeat;
651
+ background-origin: content-box;
652
+ padding: 1px;
653
+ }
654
+
655
+ .tabbar li.mn-solucoes .bg-img-menu-fix-mob {
656
+ height: 60px;
657
+ width: 60px;
658
+ background-size: contain;
659
+ background-position: center;
660
+ background-repeat: no-repeat;
661
+ background-origin: content-box;
662
+ padding: 1px;
663
+ }
664
+
665
+ .tabbar li.mn-cases-de-sucesso .bg-img-menu-fix-mob {
666
+ height: 60px;
667
+ width: 60px;
668
+ background-size: contain;
669
+ background-position: center;
670
+ background-repeat: no-repeat;
671
+ background-origin: content-box;
672
+ padding: 1px;
673
+ }
674
+
675
+ .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob {
676
+ height: 60px;
677
+ width: 60px;
678
+ background-size: contain;
679
+ background-position: center;
680
+ background-repeat: no-repeat;
681
+ background-origin: content-box;
682
+ padding: 5px;
683
+ }
684
+
685
+ .tabbar li.mn-contato .bg-img-menu-fix-mob {
686
+ height: 60px;
687
+ width: 60px;
688
+ background-size: contain;
689
+ background-position: center;
690
+ background-repeat: no-repeat;
691
+ background-origin: content-box;
692
+ padding: 1px;
693
+ }
694
+
695
+ .tooltip {
696
+ z-index: 10000 !important;
697
+ filter: none !important;
698
+ }
699
+
700
+ .tooltip-inner {
701
+ background-color: rgba(0, 0, 0, 0.8) !important;
702
+ color: #fff !important;
703
+ font-weight: 600;
704
+ }
705
+
706
+ .tooltip .arrow::before {
707
+ border-top-color: rgba(0, 0, 0, 0.8) !important;
708
+ }
709
+
710
+ @media (max-width: 600px) {
711
+ .dock {
712
+ max-width: 90%;
713
+ min-width: 370px;
714
+ }
715
+ .submenu-card {
716
+ height: 90px;
717
+ width: 270px;
718
+ }
719
+
720
+ .submenu-stack {
721
+ max-width: 240px;
722
+ }
723
+
724
+ .tabbar li.marketing .bg-img-menu-fix-mob,
725
+ .tabbar li.mn-desenvolvimento .bg-img-menu-fix-mob,
726
+ .tabbar li.mn-solucoes .bg-img-menu-fix-mob,
727
+ .tabbar li.mn-cases-de-sucesso .bg-img-menu-fix-mob,
728
+ .tabbar li.mn-contato .bg-img-menu-fix-mob,
729
+ .tabbar li.mn-sobre-nos .bg-img-menu-fix-mob,
730
+ .tabbar li.mn-homepage .bg-img-menu-fix-mob {
731
+ height: 40px;
732
+ width: 40px;
733
+ }
734
+
735
+ .tab-style1 li {
736
+ width: 40px;
737
+ height: 40px;
738
+ }
739
+
740
+ .tabbar ul {
741
+ height: 60px;
742
+ padding: 0.5rem 0.5rem;
743
+ gap: 5px;
744
+ }
745
+
746
+ .tabbar {
747
+ height: 60px;
748
+ min-height: 60px;
749
+ }
750
+
751
+ .submenu-card .card-content .icon {
752
+ width: 40px;
753
+ margin-right: 0.25rem;
754
+ }
755
+
756
+ .submenu-card .card-content .title {
757
+ font-size: 0.8rem;
758
+ }
759
+
760
+ .submenu-card .card-content .description {
761
+ font-size: 0.65rem;
762
+ }
763
+
764
+ .submenu-card .card-content .saiba-mais {
765
+ font-size: 0.7rem;
766
+ padding: 0.1rem 0.4rem;
767
+ }
768
+ }
769
+
770
+ .tabbar ul::after {
771
+ content: '';
772
+ position: absolute;
773
+ top: var(--slider-top, 10px);
774
+ left: var(--slider-left, 0px);
775
+ width: var(--slider-width, 60px);
776
+ height: var(--slider-height, 60px);
777
+ border-radius: 1.2rem;
778
+ background: rgb(225 175 241 / 30%);
779
+ z-index: 2;
780
+ filter: url(#lg-dist);
781
+ backdrop-filter: blur(3px);
782
+ transition-property: left, width, height, top, transform;
783
+ transition-duration: var(--slider-duration, 0.4s);
784
+ transition-timing-function: var(--slider-ease, ease);
785
+ transform-origin: center;
786
+ box-shadow:
787
+ inset 0 0 0 1px rgba(255, 255, 255, 0.1),
788
+ inset 2px 1px 0px -1px rgba(255, 255, 255, 0.8),
789
+ inset -1.5px -1px 0px -1px rgba(255, 255, 255, 0.7),
790
+ inset -2px -6px 1px -5px rgba(255, 255, 255, 0.5),
791
+ inset -1px 2px 3px -1px rgba(24, 1, 58, 0.2),
792
+ inset 0px -4px 1px -2px rgba(24, 1, 58, 0.1),
793
+ 0px 3px 6px 0px rgba(24, 1, 58, 0.08);
794
+ z-index: -1;
795
+ will-change: left, width, height, top, transform;
796
+ transform: translateZ(0) scale(var(--slider-scale, 1));
797
+ }
798
+
799
+ .tabbar ul {
800
+ overflow: hidden;
801
+ }