@rainersoft/design-tokens 2.4.0 → 2.5.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/dist/index.d.mts CHANGED
@@ -11291,6 +11291,52 @@ declare function useDesignTokens(): {
11291
11291
  TO_BOTTOM_LEFT: string;
11292
11292
  };
11293
11293
  };
11294
+ /**
11295
+ * Delays de transição para animações e efeitos
11296
+ *
11297
+ * Conjunto de valores padronizados para delays de transição
11298
+ * usados em partículas, animações e efeitos visuais.
11299
+ *
11300
+ * @example
11301
+ * ```typescript
11302
+ * import { TRANSITION_DELAYS } from '@rainersoft/design-tokens'
11303
+ *
11304
+ * <div style={{ animationDelay: TRANSITION_DELAYS.particle2 }}>
11305
+ * // partícula animada
11306
+ * </div>
11307
+ * ```
11308
+ */
11309
+ declare const TRANSITION_DELAYS: {
11310
+ /** Delay de 1s para primeira partícula */
11311
+ readonly particle1: "1s";
11312
+ /** Delay de 2s para segunda partícula */
11313
+ readonly particle2: "2s";
11314
+ /** Delay de 3s para terceira partícula */
11315
+ readonly particle3: "3s";
11316
+ /** Delay de 1.5s (variação) */
11317
+ readonly short: "1.5s";
11318
+ /** Delay de 2.5s (variação) */
11319
+ readonly medium: "2.5s";
11320
+ /** Delay de 4s (variação) */
11321
+ readonly long: "4s";
11322
+ };
11323
+ /**
11324
+ * Alias para compatibilidade - ANIMATION_DELAYS aponta para TRANSITION_DELAYS
11325
+ */
11326
+ declare const ANIMATION_DELAYS: {
11327
+ /** Delay de 1s para primeira partícula */
11328
+ readonly particle1: "1s";
11329
+ /** Delay de 2s para segunda partícula */
11330
+ readonly particle2: "2s";
11331
+ /** Delay de 3s para terceira partícula */
11332
+ readonly particle3: "3s";
11333
+ /** Delay de 1.5s (variação) */
11334
+ readonly short: "1.5s";
11335
+ /** Delay de 2.5s (variação) */
11336
+ readonly medium: "2.5s";
11337
+ /** Delay de 4s (variação) */
11338
+ readonly long: "4s";
11339
+ };
11294
11340
 
11295
11341
  /**
11296
11342
  * @fileoverview Ponto de entrada principal da biblioteca @rainersoft/design-tokens
@@ -11334,4 +11380,4 @@ declare function useDesignTokens(): {
11334
11380
  */
11335
11381
  declare const cssVarsPath = "./src/css-vars.css";
11336
11382
 
11337
- export { type Animations, BACKGROUND, type Background, type Breakpoints, COLORS, type Colors, type DarkColors, type DarkTheme, GRADIENTS, GRADIENT_COLORS, GRADIENT_COMPOSITES, GRADIENT_DIRECTIONS, type GradientColors, type GradientComposites, type GradientDirections, type Gradients, type LightColors, type LightTheme, MOTION, type Motion, NAVIGATION, type Navigation, RESPONSIVE, type Radius, SHADOWS, type Shadows, type Spacing, type Themes, type Tokens, type Typography, type ZIndex, Z_INDEX, animationTokens, breakpointTokens, componentTokens, cssVarsPath, darkTheme, darkThemeColors, effectTokens, getContrast, getContrastInfo, getDarkColors, getLightColors, getLuminance, getRadius, getShadows, getSpacing, getTokenColor, getTypography, hexToRgb, lightTheme, lightThemeColors, loadDesignTokensSafely, meetsWCAGAA, meetsWCAGAAA, motionTokens, radius, radiusTokens, shadowTokens, spacing, spacingTokens, themes, tokens, typographyTokens, useDesignTokens, validateContrast, zIndexTokens };
11383
+ export { ANIMATION_DELAYS, type Animations, BACKGROUND, type Background, type Breakpoints, COLORS, type Colors, type DarkColors, type DarkTheme, GRADIENTS, GRADIENT_COLORS, GRADIENT_COMPOSITES, GRADIENT_DIRECTIONS, type GradientColors, type GradientComposites, type GradientDirections, type Gradients, type LightColors, type LightTheme, MOTION, type Motion, NAVIGATION, type Navigation, RESPONSIVE, type Radius, SHADOWS, type Shadows, type Spacing, TRANSITION_DELAYS, type Themes, type Tokens, type Typography, type ZIndex, Z_INDEX, animationTokens, breakpointTokens, componentTokens, cssVarsPath, darkTheme, darkThemeColors, effectTokens, getContrast, getContrastInfo, getDarkColors, getLightColors, getLuminance, getRadius, getShadows, getSpacing, getTokenColor, getTypography, hexToRgb, lightTheme, lightThemeColors, loadDesignTokensSafely, meetsWCAGAA, meetsWCAGAAA, motionTokens, radius, radiusTokens, shadowTokens, spacing, spacingTokens, themes, tokens, typographyTokens, useDesignTokens, validateContrast, zIndexTokens };
package/dist/index.d.ts CHANGED
@@ -11291,6 +11291,52 @@ declare function useDesignTokens(): {
11291
11291
  TO_BOTTOM_LEFT: string;
11292
11292
  };
11293
11293
  };
11294
+ /**
11295
+ * Delays de transição para animações e efeitos
11296
+ *
11297
+ * Conjunto de valores padronizados para delays de transição
11298
+ * usados em partículas, animações e efeitos visuais.
11299
+ *
11300
+ * @example
11301
+ * ```typescript
11302
+ * import { TRANSITION_DELAYS } from '@rainersoft/design-tokens'
11303
+ *
11304
+ * <div style={{ animationDelay: TRANSITION_DELAYS.particle2 }}>
11305
+ * // partícula animada
11306
+ * </div>
11307
+ * ```
11308
+ */
11309
+ declare const TRANSITION_DELAYS: {
11310
+ /** Delay de 1s para primeira partícula */
11311
+ readonly particle1: "1s";
11312
+ /** Delay de 2s para segunda partícula */
11313
+ readonly particle2: "2s";
11314
+ /** Delay de 3s para terceira partícula */
11315
+ readonly particle3: "3s";
11316
+ /** Delay de 1.5s (variação) */
11317
+ readonly short: "1.5s";
11318
+ /** Delay de 2.5s (variação) */
11319
+ readonly medium: "2.5s";
11320
+ /** Delay de 4s (variação) */
11321
+ readonly long: "4s";
11322
+ };
11323
+ /**
11324
+ * Alias para compatibilidade - ANIMATION_DELAYS aponta para TRANSITION_DELAYS
11325
+ */
11326
+ declare const ANIMATION_DELAYS: {
11327
+ /** Delay de 1s para primeira partícula */
11328
+ readonly particle1: "1s";
11329
+ /** Delay de 2s para segunda partícula */
11330
+ readonly particle2: "2s";
11331
+ /** Delay de 3s para terceira partícula */
11332
+ readonly particle3: "3s";
11333
+ /** Delay de 1.5s (variação) */
11334
+ readonly short: "1.5s";
11335
+ /** Delay de 2.5s (variação) */
11336
+ readonly medium: "2.5s";
11337
+ /** Delay de 4s (variação) */
11338
+ readonly long: "4s";
11339
+ };
11294
11340
 
11295
11341
  /**
11296
11342
  * @fileoverview Ponto de entrada principal da biblioteca @rainersoft/design-tokens
@@ -11334,4 +11380,4 @@ declare function useDesignTokens(): {
11334
11380
  */
11335
11381
  declare const cssVarsPath = "./src/css-vars.css";
11336
11382
 
11337
- export { type Animations, BACKGROUND, type Background, type Breakpoints, COLORS, type Colors, type DarkColors, type DarkTheme, GRADIENTS, GRADIENT_COLORS, GRADIENT_COMPOSITES, GRADIENT_DIRECTIONS, type GradientColors, type GradientComposites, type GradientDirections, type Gradients, type LightColors, type LightTheme, MOTION, type Motion, NAVIGATION, type Navigation, RESPONSIVE, type Radius, SHADOWS, type Shadows, type Spacing, type Themes, type Tokens, type Typography, type ZIndex, Z_INDEX, animationTokens, breakpointTokens, componentTokens, cssVarsPath, darkTheme, darkThemeColors, effectTokens, getContrast, getContrastInfo, getDarkColors, getLightColors, getLuminance, getRadius, getShadows, getSpacing, getTokenColor, getTypography, hexToRgb, lightTheme, lightThemeColors, loadDesignTokensSafely, meetsWCAGAA, meetsWCAGAAA, motionTokens, radius, radiusTokens, shadowTokens, spacing, spacingTokens, themes, tokens, typographyTokens, useDesignTokens, validateContrast, zIndexTokens };
11383
+ export { ANIMATION_DELAYS, type Animations, BACKGROUND, type Background, type Breakpoints, COLORS, type Colors, type DarkColors, type DarkTheme, GRADIENTS, GRADIENT_COLORS, GRADIENT_COMPOSITES, GRADIENT_DIRECTIONS, type GradientColors, type GradientComposites, type GradientDirections, type Gradients, type LightColors, type LightTheme, MOTION, type Motion, NAVIGATION, type Navigation, RESPONSIVE, type Radius, SHADOWS, type Shadows, type Spacing, TRANSITION_DELAYS, type Themes, type Tokens, type Typography, type ZIndex, Z_INDEX, animationTokens, breakpointTokens, componentTokens, cssVarsPath, darkTheme, darkThemeColors, effectTokens, getContrast, getContrastInfo, getDarkColors, getLightColors, getLuminance, getRadius, getShadows, getSpacing, getTokenColor, getTypography, hexToRgb, lightTheme, lightThemeColors, loadDesignTokensSafely, meetsWCAGAA, meetsWCAGAAA, motionTokens, radius, radiusTokens, shadowTokens, spacing, spacingTokens, themes, tokens, typographyTokens, useDesignTokens, validateContrast, zIndexTokens };
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";var b=Object.defineProperty;var D=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var z=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var a in r)b(e,a,{get:r[a],enumerable:!0})},G=(e,r,a,o)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of H(r))!z.call(e,t)&&t!==a&&b(e,t,{get:()=>r[t],enumerable:!(o=D(r,t))||o.enumerable});return e};var M=e=>G(b({},"__esModule",{value:!0}),e);var He={};B(He,{BACKGROUND:()=>re,COLORS:()=>oe,GRADIENTS:()=>l,GRADIENT_COLORS:()=>ee,GRADIENT_COMPOSITES:()=>J,GRADIENT_DIRECTIONS:()=>f,MOTION:()=>ae,NAVIGATION:()=>ne,RESPONSIVE:()=>te,SHADOWS:()=>ie,Z_INDEX:()=>se,animationTokens:()=>ue,breakpointTokens:()=>Ae,componentTokens:()=>ye,cssVarsPath:()=>De,darkTheme:()=>m,darkThemeColors:()=>de,effectTokens:()=>he,getContrast:()=>g,getContrastInfo:()=>L,getDarkColors:()=>Se,getLightColors:()=>Oe,getLuminance:()=>R,getRadius:()=>_e,getShadows:()=>Re,getSpacing:()=>Ee,getTokenColor:()=>Ne,getTypography:()=>Ie,hexToRgb:()=>_,lightTheme:()=>d,lightThemeColors:()=>pe,loadDesignTokensSafely:()=>w,meetsWCAGAA:()=>fe,meetsWCAGAAA:()=>ce,motionTokens:()=>Te,radius:()=>Le,radiusTokens:()=>be,shadowTokens:()=>xe,spacing:()=>Ce,spacingTokens:()=>ge,themes:()=>N,tokens:()=>p,typographyTokens:()=>me,useDesignTokens:()=>we,validateContrast:()=>le,zIndexTokens:()=>ve});module.exports=M(He);var x={$schema:"https://json.schemastore.org/theme.json",$description:"Light theme color palette - Modern and professional design with WCAG AA compliance",colors:{primary:{base:"#0891b2",hover:"#0e7490",active:"#155e75",disabled:"#d4d4d4",focus:"#0891b2",background:"#ecfeff",backgroundHover:"#cffafe",backgroundActive:"#a5f3fc",border:"#0891b2",borderHover:"#0e7490",borderFocus:"#06b6d4",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},secondary:{base:"#9333ea",hover:"#7e22ce",active:"#6b21a8",disabled:"#d4d4d4",focus:"#9333ea",background:"#faf5ff",backgroundHover:"#f3e8ff",backgroundActive:"#e9d5ff",border:"#9333ea",borderHover:"#7e22ce",borderFocus:"#a855f7",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},accent:{base:"#db2777",hover:"#be185d",active:"#9f1239",disabled:"#d4d4d4",focus:"#db2777",background:"#fdf2f8",backgroundHover:"#fce7f3",backgroundActive:"#fbcfe8",border:"#db2777",borderHover:"#be185d",borderFocus:"#ec4899",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},background:{primary:"#ffffff",secondary:"#fafafa",tertiary:"#f5f5f5",inverse:"#0a0a0f",overlay:"rgba(0, 0, 0, 0.5)",muted:"#f9fafb"},surface:{primary:"#ffffff",secondary:"#fafafa",tertiary:"#f5f5f5",elevated:"#ffffff",overlay:"rgba(0, 0, 0, 0.5)",hover:"#f9fafb",active:"#f3f4f6"},text:{primary:"#171717",secondary:"#404040",tertiary:"#737373",inverse:"#ffffff",disabled:"#a3a3a3",link:"#0891b2",linkHover:"#0e7490",linkActive:"#155e75",linkVisited:"#7e22ce",onPrimary:"#ffffff",onSecondary:"#ffffff",onAccent:"#ffffff",onBackground:"#171717",onSurface:"#171717"},border:{primary:"#e5e5e5",secondary:"#d4d4d4",tertiary:"#a3a3a3",focus:"#0891b2",focusRing:"#06b6d4",inverse:"#404040",hover:"#d4d4d4",active:"#a3a3a3",disabled:"#e5e5e5"},status:{success:{base:"#22c55e",hover:"#16a34a",active:"#15803d",background:"#f0fdf4",backgroundHover:"#dcfce7",border:"#86efac",text:"#ffffff",textOnBackground:"#166534"},warning:{base:"#f59e0b",hover:"#d97706",active:"#b45309",background:"#fffbeb",backgroundHover:"#fef3c7",border:"#fcd34d",text:"#ffffff",textOnBackground:"#92400e"},error:{base:"#ef4444",hover:"#dc2626",active:"#b91c1c",background:"#fef2f2",backgroundHover:"#fee2e2",border:"#fca5a5",text:"#ffffff",textOnBackground:"#991b1b"},info:{base:"#3b82f6",hover:"#2563eb",active:"#1d4ed8",background:"#eff6ff",backgroundHover:"#dbeafe",border:"#93c5fd",text:"#ffffff",textOnBackground:"#1e40af"}},interactive:{default:"#0891b2",hover:"#0e7490",active:"#155e75",disabled:"#d4d4d4",disabledText:"#a3a3a3",focus:"#0891b2",focusRing:"#06b6d4"},primitive:{cyan:{"50":"#ecfeff","100":"#cffafe","200":"#a5f3fc","300":"#67e8f9","400":"#22d3ee","500":"#06b6d4","600":"#0891b2","700":"#0e7490","800":"#155e75","900":"#164e63"},purple:{"50":"#faf5ff","100":"#f3e8ff","200":"#e9d5ff","300":"#d8b4fe","400":"#c084fc","500":"#a855f7","600":"#9333ea","700":"#7e22ce","800":"#6b21a8","900":"#581c87"},pink:{"50":"#fdf2f8","100":"#fce7f3","200":"#fbcfe8","300":"#f9a8d4","400":"#f472b6","500":"#ec4899","600":"#db2777","700":"#be185d","800":"#9f1239","900":"#831843"},blue:{"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a"},green:{"50":"#f0fdf4","100":"#dcfce7","200":"#bbf7d0","300":"#86efac","400":"#4ade80","500":"#22c55e","600":"#16a34a","700":"#15803d","800":"#166534","900":"#14532d"},orange:{"50":"#fff7ed","100":"#ffedd5","200":"#fed7aa","300":"#fdba74","400":"#fb923c","500":"#f97316","600":"#ea580c","700":"#c2410c","800":"#9a3412","900":"#7c2d12"},red:{"50":"#fef2f2","100":"#fee2e2","200":"#fecaca","300":"#fca5a5","400":"#f87171","500":"#ef4444","600":"#dc2626","700":"#b91c1c","800":"#991b1b","900":"#7f1d1d"},amber:{"50":"#fffbeb","100":"#fef3c7","200":"#fde68a","300":"#fcd34d","400":"#fbbf24","500":"#f59e0b","600":"#d97706","700":"#b45309","800":"#92400e","900":"#78350f"},emerald:{"50":"#ecfdf5","100":"#d1fae5","200":"#a7f3d0","300":"#6ee7b7","400":"#34d399","500":"#10b981","600":"#059669","700":"#047857","800":"#065f46","900":"#064e3b"},neutral:{"50":"#fafafa","100":"#f5f5f5","200":"#e5e5e5","300":"#d4d4d4","400":"#a3a3a3","500":"#737373","600":"#525252","700":"#404040","800":"#262626","900":"#171717","950":"#0a0a0f"}},effects:{matrixRain:{base:"#fbbf24"},stars:{base:"#00e6ff"}}}};var u={$schema:"https://json.schemastore.org/theme.json",$description:"Dark theme color palette - Cyberpunk neon style with WCAG AA compliance",colors:{primary:{base:"#00e6ff",hover:"#1affff",active:"#4dffff",disabled:"#404040",focus:"#00e6ff",background:"rgba(0, 230, 255, 0.1)",backgroundHover:"rgba(0, 230, 255, 0.15)",backgroundActive:"rgba(0, 230, 255, 0.2)",border:"#00e6ff",borderHover:"#1affff",borderFocus:"#4dffff",text:"#0a0a0f",textHover:"#0a0a0f",textDisabled:"#525252"},secondary:{base:"#7d00ff",hover:"#941aff",active:"#ab4dff",disabled:"#404040",focus:"#7d00ff",background:"rgba(125, 0, 255, 0.1)",backgroundHover:"rgba(125, 0, 255, 0.15)",backgroundActive:"rgba(125, 0, 255, 0.2)",border:"#7d00ff",borderHover:"#941aff",borderFocus:"#ab4dff",text:"#ffffff",textHover:"#ffffff",textDisabled:"#525252"},accent:{base:"#ff00ff",hover:"#ff1aff",active:"#ff4dff",disabled:"#404040",focus:"#ff00ff",background:"rgba(255, 0, 255, 0.1)",backgroundHover:"rgba(255, 0, 255, 0.15)",backgroundActive:"rgba(255, 0, 255, 0.2)",border:"#ff00ff",borderHover:"#ff1aff",borderFocus:"#ff4dff",text:"#0a0a0f",textHover:"#0a0a0f",textDisabled:"#525252"},background:{primary:"#0a0a0f",secondary:"#0f0f1a",tertiary:"#171717",inverse:"#ffffff",overlay:"rgba(0, 0, 0, 0.8)",muted:"#0f0f1a"},surface:{primary:"#171717",secondary:"#262626",tertiary:"#404040",elevated:"#262626",overlay:"rgba(0, 0, 0, 0.8)",glass:"rgba(15, 15, 26, 0.7)",glassHover:"rgba(15, 15, 26, 0.85)",hover:"#262626",active:"#404040"},text:{primary:"#b3ffff",secondary:"#4dffff",tertiary:"#00e6ff",inverse:"#0a0a0f",disabled:"#525252",link:"#1affff",linkHover:"#4dffff",linkActive:"#80ffff",linkVisited:"#941aff",onPrimary:"#0a0a0f",onSecondary:"#ffffff",onAccent:"#0a0a0f",onBackground:"#b3ffff",onSurface:"#b3ffff",glow:"#00e6ff",neonCyan:"#00e6ff",neonPink:"#ff00ff",neonPurple:"#7d00ff",neonGreen:"#00ff00"},border:{primary:"#262626",secondary:"#404040",tertiary:"#525252",focus:"#00e6ff",focusRing:"#1affff",inverse:"#e5e5e5",neon:"#00e6ff",neonGlow:"rgba(0, 230, 255, 0.3)",hover:"#404040",active:"#525252",disabled:"#262626"},status:{success:{base:"#00ff00",hover:"#4dff4d",active:"#80ff80",background:"rgba(0, 255, 0, 0.1)",backgroundHover:"rgba(0, 255, 0, 0.15)",border:"#4dff4d",text:"#0a0a0f",textOnBackground:"#4dff4d"},warning:{base:"#ff7d00",hover:"#ffab4d",active:"#ffc880",background:"rgba(255, 125, 0, 0.1)",backgroundHover:"rgba(255, 125, 0, 0.15)",border:"#ffab4d",text:"#0a0a0f",textOnBackground:"#ffab4d"},error:{base:"#f87171",hover:"#fca5a5",active:"#fecaca",background:"rgba(239, 68, 68, 0.1)",backgroundHover:"rgba(239, 68, 68, 0.15)",border:"#fca5a5",text:"#ffffff",textOnBackground:"#fca5a5"},info:{base:"#007dff",hover:"#4dabff",active:"#80c7ff",background:"rgba(0, 125, 255, 0.1)",backgroundHover:"rgba(0, 125, 255, 0.15)",border:"#4dabff",text:"#ffffff",textOnBackground:"#4dabff"}},interactive:{default:"#00e6ff",hover:"#1affff",active:"#4dffff",disabled:"#404040",disabledText:"#525252",focus:"#00e6ff",focusRing:"#1affff"},effects:{glowCyan:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",glowPink:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",glowPurple:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",glowGreen:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)",shadowSm:"0 1px 2px 0 rgba(0, 0, 0, 0.5)",shadowMd:"0 4px 6px -1px rgba(0, 0, 0, 0.5)",shadowLg:"0 10px 15px -3px rgba(0, 0, 0, 0.5)"},gradients:{primary:"linear-gradient(135deg, #00e6ff 0%, #7d00ff 100%)",secondary:"linear-gradient(135deg, #ff00ff 0%, #00e6ff 100%)",accent:"linear-gradient(135deg, #ff7d00 0%, #ff00ff 100%)",background:"linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%)"},primitive:{cyan:{"50":"rgba(0, 230, 255, 0.1)","100":"rgba(0, 230, 255, 0.15)","200":"rgba(0, 230, 255, 0.2)","300":"#4dffff","400":"#1affff","500":"#00e6ff","600":"#00b8cc","700":"#008a99","800":"#005c66","900":"#003d44"},purple:{"50":"rgba(125, 0, 255, 0.1)","100":"rgba(125, 0, 255, 0.15)","200":"rgba(125, 0, 255, 0.2)","300":"#ab4dff","400":"#941aff","500":"#7d00ff","600":"#6400cc","700":"#4b0099","800":"#320066","900":"#190033"},pink:{"50":"rgba(255, 0, 255, 0.1)","100":"rgba(255, 0, 255, 0.15)","200":"rgba(255, 0, 255, 0.2)","300":"#ff4dff","400":"#ff1aff","500":"#ff00ff","600":"#cc00cc","700":"#990099","800":"#660066","900":"#330033"},blue:{"50":"rgba(0, 125, 255, 0.1)","100":"rgba(0, 125, 255, 0.15)","200":"rgba(0, 125, 255, 0.2)","300":"#80c7ff","400":"#4dabff","500":"#007dff","600":"#0064cc","700":"#004b99","800":"#003266","900":"#001933"},green:{"50":"rgba(0, 255, 0, 0.1)","100":"rgba(0, 255, 0, 0.15)","200":"rgba(0, 255, 0, 0.2)","300":"#80ff80","400":"#4dff4d","500":"#00ff00","600":"#00cc00","700":"#009900","800":"#006600","900":"#003300"},orange:{"50":"rgba(255, 125, 0, 0.1)","100":"rgba(255, 125, 0, 0.15)","200":"rgba(255, 125, 0, 0.2)","300":"#ffc880","400":"#ffab4d","500":"#ff7d00","600":"#cc6400","700":"#994b00","800":"#663200","900":"#331900"},red:{"50":"rgba(239, 68, 68, 0.1)","100":"rgba(239, 68, 68, 0.15)","200":"rgba(239, 68, 68, 0.2)","300":"#fecaca","400":"#fca5a5","500":"#f87171","600":"#c55a5a","700":"#924343","800":"#5f2c2c","900":"#2c1515"},amber:{"50":"rgba(255, 125, 0, 0.1)","100":"rgba(255, 125, 0, 0.15)","200":"rgba(255, 125, 0, 0.2)","300":"#ffc880","400":"#ffab4d","500":"#ff7d00","600":"#cc6400","700":"#994b00","800":"#663200","900":"#331900"},emerald:{"50":"rgba(0, 255, 0, 0.1)","100":"rgba(0, 255, 0, 0.15)","200":"rgba(0, 255, 0, 0.2)","300":"#80ff80","400":"#4dff4d","500":"#00ff00","600":"#00cc00","700":"#009900","800":"#006600","900":"#003300"},neutral:{"50":"#0f0f1a","100":"#171717","200":"#262626","300":"#404040","400":"#525252","500":"#737373","600":"#a3a3a3","700":"#d4d4d4","800":"#e5e5e5","900":"#f5f5f5","950":"#ffffff"}}}};var h={$schema:"https://json.schemastore.org/theme.json",$description:"Typography tokens - Complete typographic scale with semantic hierarchy (H1-H6, subtitles, body, captions)",typography:{fontFamily:{sans:"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",serif:"ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif",mono:"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace",display:"var(--font-orbitron, ui-sans-serif)",body:"var(--font-inter, ui-sans-serif)",code:"var(--font-rajdhani, ui-monospace)"},fontSize:{xs:"0.75rem",sm:"0.875rem",base:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2"},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},headings:{h1:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(2.25rem, 5vw + 1rem, 4.5rem)",fontSizeMobile:"2.25rem",fontSizeTablet:"3rem",fontSizeDesktop:"4.5rem",fontWeight:"900",lineHeight:"1.1",letterSpacing:"-0.02em",marginBottom:"1rem"},h2:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(1.875rem, 4vw + 0.75rem, 3.75rem)",fontSizeMobile:"1.875rem",fontSizeTablet:"2.5rem",fontSizeDesktop:"3.75rem",fontWeight:"800",lineHeight:"1.15",letterSpacing:"-0.015em",marginBottom:"0.875rem"},h3:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(1.5rem, 3vw + 0.5rem, 3rem)",fontSizeMobile:"1.5rem",fontSizeTablet:"2rem",fontSizeDesktop:"3rem",fontWeight:"700",lineHeight:"1.2",letterSpacing:"-0.01em",marginBottom:"0.75rem"},h4:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.25rem, 2.5vw + 0.5rem, 2.25rem)",fontSizeMobile:"1.25rem",fontSizeTablet:"1.75rem",fontSizeDesktop:"2.25rem",fontWeight:"700",lineHeight:"1.25",letterSpacing:"0em",marginBottom:"0.625rem"},h5:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.125rem, 2vw + 0.25rem, 1.875rem)",fontSizeMobile:"1.125rem",fontSizeTablet:"1.5rem",fontSizeDesktop:"1.875rem",fontWeight:"600",lineHeight:"1.3",letterSpacing:"0em",marginBottom:"0.5rem"},h6:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1rem, 1.5vw + 0.25rem, 1.5rem)",fontSizeMobile:"1rem",fontSizeTablet:"1.25rem",fontSizeDesktop:"1.5rem",fontWeight:"600",lineHeight:"1.35",letterSpacing:"0.01em",marginBottom:"0.5rem"}},subtitle:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.25rem, 2vw + 0.5rem, 2rem)",fontSizeMobile:"1.25rem",fontSizeTablet:"1.5rem",fontSizeDesktop:"2rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.5rem"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem)",fontSizeMobile:"1.125rem",fontSizeTablet:"1.25rem",fontSizeDesktop:"1.5rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.5rem"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.375rem"}},body:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1.125rem",fontWeight:"400",lineHeight:"1.625",letterSpacing:"0em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"}},caption:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.4",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.75rem",fontWeight:"400",lineHeight:"1.4",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.625rem",fontWeight:"400",lineHeight:"1.3",letterSpacing:"0.02em"}},button:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1.125rem",fontWeight:"600",lineHeight:"1.5",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"600",lineHeight:"1.5",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"}},label:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.75rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.625rem",fontWeight:"600",lineHeight:"1.3",letterSpacing:"0.02em"}},code:{inline:{fontFamily:"var(--font-code, ui-monospace)",fontSize:"0.875em",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"},block:{fontFamily:"var(--font-code, ui-monospace)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.6",letterSpacing:"0em"}}}};var y={$schema:"https://json.schemastore.org/theme.json",$description:"Spacing tokens - Consistent spacing scale based on 8pt grid",spacing:{"0":"0px",px:"1px","0.5":"0.125rem","1":"0.25rem","1.5":"0.375rem","2":"0.5rem","2.5":"0.625rem","3":"0.75rem","3.5":"0.875rem","4":"1rem","5":"1.25rem","6":"1.5rem","7":"1.75rem","8":"2rem","9":"2.25rem","10":"2.5rem","11":"2.75rem","12":"3rem","14":"3.5rem","16":"4rem","20":"5rem","24":"6rem","28":"7rem","32":"8rem","36":"9rem","40":"10rem","44":"11rem","48":"12rem","52":"13rem","56":"14rem","60":"15rem","64":"16rem","72":"18rem","80":"20rem","96":"24rem"}};var T={$schema:"https://json.schemastore.org/theme.json",$description:"Border radius tokens - Consistent corner rounding",radius:{none:"0px",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"}};var A={$schema:"https://json.schemastore.org/theme.json",$description:"Shadow tokens - Elevation and depth",shadows:{light:{xs:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",sm:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)",base:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",md:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)",lg:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)",xl:"0 25px 50px -12px rgba(0, 0, 0, 0.25)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",inner:"inset 0 2px 4px 0 rgba(0, 0, 0, 0.05)"},dark:{xs:"0 1px 2px 0 rgba(0, 0, 0, 0.5)",sm:"0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 1px 2px -1px rgba(0, 0, 0, 0.5)",base:"0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.5)",md:"0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5)",lg:"0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5)",xl:"0 25px 50px -12px rgba(0, 0, 0, 0.75)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.75)",inner:"inset 0 2px 4px 0 rgba(0, 0, 0, 0.5)",glow:{cyan:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",pink:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",purple:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",green:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)"}}}};var v={animations:{"accordion-down":{name:"accordion-down",duration:"0.2s",timingFunction:"ease-out",keyframes:{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}}},"accordion-up":{name:"accordion-up",duration:"0.2s",timingFunction:"ease-out",keyframes:{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}}},"slide-in":{name:"slide-in",duration:"0.3s",timingFunction:"ease-out",keyframes:{"0%":{transform:"translateY(-10px)",opacity:"0"},"100%":{transform:"translateY(0)",opacity:"1"}}},"fade-in":{name:"fade-in",duration:"0.5s",timingFunction:"ease-in",keyframes:{"0%":{opacity:"0"},"100%":{opacity:"1"}}},glitch:{name:"glitch",duration:"4s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 100%":{transform:"translate(0)"},"10%":{transform:"translate(-2px, 2px)"},"20%":{transform:"translate(2px, -2px)"},"30%, 50%, 70%, 90%":{transform:"translate(0)"}}},"neon-pulse":{name:"neon-pulse",duration:"2s",timingFunction:"ease-in-out",iterationCount:"infinite",direction:"alternate",keyframes:{"0%, 100%":{filter:"brightness(1) saturate(1)"},"50%":{filter:"brightness(1.3) saturate(1.2)"}}},flicker:{name:"flicker",duration:"2s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%":{opacity:"1",filter:"brightness(1.2)"},"20%, 21.999%, 63%, 63.999%, 65%, 69.999%":{opacity:"0.85",filter:"brightness(0.9)"}}},"scan-line":{name:"scan-line",duration:"4s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%":{top:"0"},"100%":{top:"100%"}}},"glitch-after":{name:"glitch-after",duration:"3s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 100%":{opacity:"0"},"5%, 10%":{opacity:"0.8",transform:"translate(-3px, 3px)"},"15%, 95%":{opacity:"0"}}}}};var C={hero:{title:{fontSize:{mobile:"1.5rem",responsive:"4vw",desktop:"3.5rem",clamp:"clamp(1.5rem, 4vw, 3.5rem)"},lineHeight:"1.2",letterSpacing:"-0.02em",wordSpacing:"0.05em",fontWeight:"800",filter:"brightness(1.2) contrast(1.1)",textShadow:{dark:"0 0 40px rgba(34, 211, 238, 1), 0 0 60px rgba(103, 232, 249, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5)",light:"0 0 30px rgba(37, 99, 235, 0.8), 0 0 50px rgba(59, 130, 246, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3)"}},subtitle:{fontSize:{mobile:"0.875rem",responsive:"1.5vw",desktop:"1.25rem",clamp:"clamp(0.875rem, 1.5vw, 1.25rem)"},lineHeight:"1.6",letterSpacing:"0.01em",fontWeight:"400",maxWidth:"56rem",textShadow:{dark:"0 0 20px rgba(52, 211, 153, 0.6)",light:"0 0 20px rgba(16, 185, 129, 0.5)"}},container:{maxWidth:{mobile:"90vw",sm:"48rem",md:"56rem",lg:"64rem"},padding:{top:"clamp(3rem, 10vh, 8rem)",bottom:"clamp(3rem, 10vh, 8rem)",x:{mobile:"1rem",sm:"1.5rem",md:"2rem"}},gap:"clamp(1.5rem, 3vh, 2.5rem)"},effects:{cyberpunk:{glitch:{animation:"glitch 2s infinite",animationDelay:"0s, 0.3s, 0.6s"},neon:{animation:"neon-pulse 1.5s ease-in-out infinite alternate"},flicker:{animation:"flicker 3s linear infinite"}}}}};var k={$schema:"http://json-schema.org/draft-07/schema#",$description:"Tokens para efeitos visuais - filters, blur, glow, backdrop effects",effects:{filter:{brightness:{subtle:"brightness(1.1)",moderate:"brightness(1.2)",intense:"brightness(1.3)",strong:"brightness(1.4)",extreme:"brightness(1.6)"},contrast:{subtle:"contrast(1.05)",moderate:"contrast(1.1)",strong:"contrast(1.2)",intense:"contrast(1.3)"},saturate:{subtle:"saturate(1.1)",moderate:"saturate(1.2)",strong:"saturate(1.3)",intense:"saturate(1.4)"},combined:{"neon-subtle":"brightness(1.2) saturate(1.1)","neon-moderate":"brightness(1.3) saturate(1.2)","neon-intense":"brightness(1.4) saturate(1.3)","neon-extreme":"brightness(1.6) contrast(1.3) saturate(1.4)",glass:"blur(8px) saturate(180%)",frosted:"blur(12px) saturate(150%)"}},blur:{none:"blur(0)",xs:"blur(0.5px)",sm:"blur(2px)",base:"blur(4px)",md:"blur(8px)",lg:"blur(12px)",xl:"blur(16px)","2xl":"blur(24px)","3xl":"blur(40px)"},backdrop:{blur:{none:"backdrop-blur-none",sm:"backdrop-blur-sm",base:"backdrop-blur",md:"backdrop-blur-md",lg:"backdrop-blur-lg",xl:"backdrop-blur-xl","2xl":"backdrop-blur-2xl","3xl":"backdrop-blur-3xl"},saturate:{default:"backdrop-saturate-100",enhanced:"backdrop-saturate-150",strong:"backdrop-saturate-200"}},glow:{star:{small:{radius:"0 0 4px",color:"rgba(255, 255, 255, 0.8)"},medium:{radius:"0 0 8px",color:"rgba(255, 255, 255, 0.8)"},large:{radius:"0 0 12px",color:"rgba(255, 255, 255, 0.8)"}},neon:{cyan:{subtle:"0 0 10px rgba(0, 230, 255, 0.3)",moderate:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",intense:"0 0 30px rgba(0, 230, 255, 0.7), 0 0 60px rgba(0, 230, 255, 0.5)"},purple:{subtle:"0 0 10px rgba(125, 0, 255, 0.3)",moderate:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",intense:"0 0 30px rgba(125, 0, 255, 0.7), 0 0 60px rgba(125, 0, 255, 0.5)"},pink:{subtle:"0 0 10px rgba(255, 0, 255, 0.3)",moderate:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",intense:"0 0 30px rgba(255, 0, 255, 0.7), 0 0 60px rgba(255, 0, 255, 0.5)"},green:{subtle:"0 0 10px rgba(0, 255, 0, 0.3)",moderate:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)",intense:"0 0 30px rgba(0, 255, 0, 0.7), 0 0 60px rgba(0, 255, 0, 0.5)"}}},textShadow:{glow:{"cyan-subtle":"0 0 10px rgba(34, 211, 238, 0.5)","cyan-moderate":"0 0 20px rgba(34, 211, 238, 0.8), 0 0 40px rgba(34, 211, 238, 0.6)","cyan-intense":"0 0 40px rgba(34, 211, 238, 1), 0 0 60px rgba(103, 232, 249, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5)"},depth:{subtle:"0 1px 2px rgba(0, 0, 0, 0.1)",moderate:"0 2px 4px rgba(0, 0, 0, 0.3)",strong:"0 2px 4px rgba(0, 0, 0, 0.5)"}},boxShadow:{cyberpunk:{card:"0 0 20px rgba(34, 211, 238, 0.1)",cardHover:"0 0 30px rgba(34, 211, 238, 0.2)",elevated:"0 25px 50px -12px rgba(0, 0, 0, 0.5)"},glass:{subtle:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",moderate:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)",strong:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)"}}}};var O={$schema:"http://json-schema.org/draft-07/schema#",$description:"Tokens para componente de background celestial - configura\xE7\xF5es de estrelas, nebulosas e efeitos espaciais",celestialBackground:{stars:{default:{count:150,sizes:[1,1.5,2],opacity:[.35,.55,.75],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}},dense:{count:250,sizes:[1,1.5,2,2.5],opacity:[.25,.45,.65,.85],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}},sparse:{count:80,sizes:[1,1.5],opacity:[.45,.65],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}}},nebula:{cyan:{position:{top:"0%",left:"0%"},size:{width:"40%",height:"40%"},gradient:{type:"radial",center:"0% 0%",colorStops:[{color:"cyan.400",alpha:.06,position:"0%"},{color:"cyan.400",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"},purple:{position:{top:"50%",right:"0%"},size:{width:"35%",height:"35%"},gradient:{type:"radial",center:"100% 50%",colorStops:[{color:"purple.400",alpha:.06,position:"0%"},{color:"purple.400",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"},pink:{position:{bottom:"0%",left:"25%"},size:{width:"30%",height:"30%"},gradient:{type:"radial",center:"25% 100%",colorStops:[{color:"pink.500",alpha:.06,position:"0%"},{color:"pink.500",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"}},baseGradient:{direction:"to-bottom",from:"black",via:{color:"purple-950",alpha:.35},to:"black"}}};var S={$schema:"https://json.schemastore.org/theme.json",$description:"Motion tokens - Durations, easings, and transitions for animations",motion:{duration:{instant:"0ms",fast:"100ms",normal:"200ms",slow:"300ms",slower:"500ms",slowest:"800ms"},easing:{linear:"linear",easeIn:"cubic-bezier(0.4, 0, 1, 1)",easeOut:"cubic-bezier(0, 0, 0.2, 1)",easeInOut:"cubic-bezier(0.4, 0, 0.2, 1)",easeInQuad:"cubic-bezier(0.55, 0.085, 0.68, 0.53)",easeOutQuad:"cubic-bezier(0.25, 0.46, 0.45, 0.94)",easeInOutQuad:"cubic-bezier(0.455, 0.03, 0.515, 0.955)",easeInCubic:"cubic-bezier(0.55, 0.055, 0.675, 0.19)",easeOutCubic:"cubic-bezier(0.215, 0.61, 0.355, 1)",easeInOutCubic:"cubic-bezier(0.645, 0.045, 0.355, 1)",spring:"cubic-bezier(0.68, -0.55, 0.265, 1.55)"},delay:{none:"0ms",short:"50ms",medium:"100ms",long:"200ms"}}};var E={$schema:"https://json.schemastore.org/theme.json",$description:"Responsive breakpoints - Mobile-first approach",breakpoints:{xs:"0px",sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px","3xl":"1920px"},container:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px","3xl":"1920px"},mediaQueries:{xs:"@media (min-width: 0px)",sm:"@media (min-width: 640px)",md:"@media (min-width: 768px)",lg:"@media (min-width: 1024px)",xl:"@media (min-width: 1280px)","2xl":"@media (min-width: 1536px)","3xl":"@media (min-width: 1920px)"}};var I={$schema:"https://json.schemastore.org/theme.json",$description:"Z-index scale - Layering system for UI elements",zIndex:{base:0,dropdown:1e3,sticky:1020,fixed:1030,modalBackdrop:1040,modal:1050,popover:1060,tooltip:1070,toast:1080,notification:1090,max:9999},layers:{background:0,base:1,content:10,overlay:100,dropdown:1e3,modal:2e3,tooltip:3e3,notification:4e3}};var f={TO_TOP:"bg-linear-to-t",TO_BOTTOM:"bg-linear-to-b",TO_LEFT:"bg-linear-to-l",TO_RIGHT:"bg-linear-to-r",TO_TL:"bg-linear-to-tl",TO_TR:"bg-linear-to-tr",TO_BL:"bg-linear-to-bl",TO_BR:"bg-linear-to-br"},l={TEXT_PRIMARY:"bg-linear-to-r from-[var(--color-primary-base)] via-[var(--color-secondary-base)] to-[var(--color-accent-base)] bg-clip-text text-transparent",DECORATIVE_PRIMARY:"bg-linear-to-br from-[var(--color-primary-base)] via-[var(--color-secondary-base)] to-[var(--color-accent-base)]",DECORATIVE_CYAN_PURPLE:"bg-linear-to-r from-[var(--color-primary-base)] to-[var(--color-secondary-base)]",DECORATIVE_GREEN_EMERALD:"bg-linear-to-br from-[var(--color-status-success)] to-[var(--color-accent-base)]",BUTTON_CYAN_BLUE:"bg-linear-to-r from-[var(--color-primary-base)] to-[var(--color-primary-hover)]",BUTTON_PURPLE_PINK:"bg-linear-to-r from-[var(--color-secondary-base)] to-[var(--color-accent-base)]"},J={HORIZONTAL_PRIMARY:`${f.TO_RIGHT} ${l.BUTTON_CYAN_BLUE}`,HORIZONTAL_SECONDARY:`${f.TO_RIGHT} ${l.BUTTON_PURPLE_PINK}`,HORIZONTAL_DECORATIVE:`${f.TO_RIGHT} ${l.DECORATIVE_PRIMARY}`,HORIZONTAL_CYAN_PURPLE:`${f.TO_RIGHT} ${l.DECORATIVE_CYAN_PURPLE}`,VERTICAL_PRIMARY:`${f.TO_BOTTOM} ${l.BUTTON_CYAN_BLUE}`,VERTICAL_SECONDARY:`${f.TO_BOTTOM} ${l.BUTTON_PURPLE_PINK}`,VERTICAL_DECORATIVE:`${f.TO_BOTTOM} ${l.DECORATIVE_PRIMARY}`,DIAGONAL_PRIMARY:`${f.TO_BR} ${l.DECORATIVE_PRIMARY}`,DIAGONAL_SECONDARY:`${f.TO_BR} ${l.DECORATIVE_CYAN_PURPLE}`,DIAGONAL_GREEN_EMERALD:`${f.TO_BR} ${l.DECORATIVE_GREEN_EMERALD}`},ee={GRAY_SCALE:`${f.TO_RIGHT} from-[var(--color-text-tertiary)] to-[var(--color-text-secondary)]`,BLUE_SCALE:`${f.TO_RIGHT} from-[var(--color-primary-base)] to-[var(--color-primary-hover)]`,SUCCESS_SCALE:`${f.TO_RIGHT} from-[var(--color-status-success)] to-[var(--color-status-success-hover)]`,TEXT_MUTED:`${f.TO_RIGHT} from-[var(--color-text-tertiary)] to-[var(--color-text-secondary)]`},re={FULL:"bg-[var(--color-background-primary)]",GRADIENT_OVERLAY:"bg-linear-to-br from-[var(--color-primary-base)]/10 via-[var(--color-secondary-base)]/10 to-[var(--color-accent-base)]/10",PREMIUM_DIVIDER_CONTAINER:"bg-linear-to-b from-transparent via-[var(--color-primary-base)]/5 to-transparent",PREMIUM_DIVIDER_LINE:"bg-linear-to-r from-transparent via-[var(--color-primary-base)]/50 to-transparent",SECTION_CYAN:"bg-linear-to-br from-[var(--color-primary-base)]/5 via-[var(--color-primary-base)]/3 to-transparent",SECTION_CYAN_VIA:"bg-linear-to-br from-transparent via-[var(--color-primary-base)]/5 to-transparent",SECTION_PURPLE_VIA:"bg-linear-to-br from-transparent via-[var(--color-secondary-base)]/5 to-transparent",SECTION_PINK_VIA:"bg-linear-to-br from-transparent via-[var(--color-accent-base)]/5 to-transparent"},te={HIDE_ON_MOBILE:"hidden sm:block",HIDE_ON_TABLET:"hidden lg:block",HIDE_ON_DESKTOP:"block lg:hidden",SHOW_ON_MOBILE:"block sm:hidden",SHOW_ON_TABLET:"block lg:hidden",SHOW_ON_DESKTOP:"hidden lg:block",CONTAINER:{DEFAULT:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl",FLUID:"w-full px-4 sm:px-6 lg:px-8",TIGHT:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-4xl",WIDE:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-screen-2xl",PROSE:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-prose"},GRID:{COLS_1_2:"grid grid-cols-1 md:grid-cols-2 gap-4",COLS_1_3:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",COLS_1_4:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4",COLS_2_3:"grid grid-cols-2 lg:grid-cols-3 gap-4",COLS_2_4:"grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"},FLEX:{MOBILE_COLUMN:"flex flex-col sm:flex-row",TABLET_COLUMN:"flex flex-col lg:flex-row",MOBILE_REVERSE:"flex flex-col-reverse sm:flex-row",TABLET_REVERSE:"flex flex-col-reverse lg:flex-row"},TEXT:{MOBILE_CENTER:"text-center sm:text-left",TABLET_CENTER:"text-center lg:text-left",RESPONSIVE_SIZE:"text-sm sm:text-base lg:text-lg",HEADING_SIZE:"text-2xl sm:text-3xl lg:text-4xl xl:text-5xl"},SPACING:{MOBILE_TIGHT:"p-2 sm:p-4 lg:p-6",TABLET_TIGHT:"p-4 lg:p-8",RESPONSIVE_Y:"py-4 sm:py-6 lg:py-8 xl:py-12",RESPONSIVE_X:"px-4 sm:px-6 lg:px-8"}},ae={TRANSITION:{DEFAULT:"transition-all duration-200 ease-in-out",FAST:"transition-all duration-100 ease-out",SLOW:"transition-all duration-300 ease-in-out",COLOR:"transition-colors duration-200 ease-in-out",TRANSFORM:"transition-transform duration-200 ease-in-out",OPACITY:"transition-opacity duration-150 ease-in-out",SHADOW:"transition-shadow duration-200 ease-in-out"},ANIMATE:{FADE_IN:"animate-fadeIn",FADE_OUT:"animate-fadeOut",SLIDE_IN_UP:"animate-slideInUp",SLIDE_IN_DOWN:"animate-slideInDown",SLIDE_IN_LEFT:"animate-slideInLeft",SLIDE_IN_RIGHT:"animate-slideInRight",SCALE_IN:"animate-scaleIn",SCALE_OUT:"animate-scaleOut",ROTATE:"animate-rotate",PULSE:"animate-pulse",BOUNCE:"animate-bounce",SHAKE:"animate-shake",FLASH:"animate-flash"},DURATION:{INSTANT:"duration-0",FAST:"duration-100",NORMAL:"duration-200",SLOW:"duration-300",SLOWER:"duration-500",SLOWEST:"duration-700"},DELAY:{NONE:"delay-0",SHORT:"delay-75",MEDIUM:"delay-150",LONG:"delay-300",LONGER:"delay-500"}},oe={primary:"#0891b2",secondary:"#9333ea",accent:"#db2777",success:"#22c55e",warning:"#f59e0b",error:"#ef4444",info:"#0891b2"},ne=[{href:"/",label:"Home"},{href:"/sobre",label:"Sobre"},{href:"/projetos",label:"Projetos"},{href:"/contato",label:"Contato"}],ie={XS:"shadow-xs",SMALL:"shadow-sm",BASE:"shadow",MEDIUM:"shadow-md",LARGE:"shadow-lg",XL:"shadow-xl","2XL":"shadow-2xl",INNER:"shadow-inner"},se={BASE:"z-0",DROPDOWN:"z-[1000]",STICKY:"z-[1020]",FIXED:"z-[1030]",BACKDROP:"z-[1040]",MODAL:"z-[1050]",POPOVER:"z-[1060]",TOOLTIP:"z-[1070]",TOAST:"z-[1080]",SPOTLIGHT:"z-[1090]",PRIORITY:"z-[1100]",MAX:"z-[2147483647]"};function _(e){let r=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!r)throw new Error(`Invalid hex color: ${e}`);return{r:parseInt(r[1],16),g:parseInt(r[2],16),b:parseInt(r[3],16)}}function R(e,r,a){let[o,t,n]=[e,r,a].map(i=>{let s=i/255;return s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4)});return .2126*o+.7152*t+.0722*n}function g(e,r){let a=_(e),o=_(r),t=R(a.r,a.g,a.b),n=R(o.r,o.g,o.b),i=Math.max(t,n),s=Math.min(t,n);return(i+.05)/(s+.05)}function fe(e,r,a=!1){let o=g(e,r);return a?o>=3:o>=4.5}function ce(e,r,a=!1){let o=g(e,r);return a?o>=4.5:o>=7}function L(e,r){let a=g(e,r),o=a>=4.5,t=a>=3,n=a>=7,i=a>=4.5,s="Fail";return n?s="AAA":i?s="AAA Large":o?s="AA":t&&(s="AA Large"),{contrast:a,meetsAA:o,meetsAALarge:t,meetsAAA:n,meetsAAALarge:i,level:s}}function le(e,r,a={}){let{requireAAA:o=!1,largeText:t=!1}=a,n=L(e,r),i=!1,s="";return o?(i=t?n.meetsAAALarge:n.meetsAAA,s=i?`Contraste v\xE1lido (WCAG AAA${t?" - Texto Grande":""})`:`Contraste insuficiente para WCAG AAA${t?" - Texto Grande":""}. Requerido: ${t?"4.5:1":"7:1"}, atual: ${n.contrast.toFixed(2)}:1`):(i=t?n.meetsAALarge:n.meetsAA,s=i?`Contraste v\xE1lido (WCAG AA${t?" - Texto Grande":""})`:`Contraste insuficiente para WCAG AA${t?" - Texto Grande":""}. Requerido: ${t?"3:1":"4.5:1"}, atual: ${n.contrast.toFixed(2)}:1`),{valid:i,level:n.level,contrast:n.contrast,message:s}}var c={colors:{light:x.colors,dark:u.colors},typography:h.typography,spacing:y.spacing,radius:T.radius,shadows:A.shadows,animations:v.animations,motion:S.motion,breakpoints:E.breakpoints,zIndex:I.zIndex,hero:C.hero,effects:k.effects,components:{celestialBackground:O.celestialBackground}},pe=x.colors,de=u.colors,me=h.typography,ge=y.spacing,be=T.radius,xe=A.shadows,ue=v.animations,he=k.effects,ye={celestialBackground:O.celestialBackground},Te=S.motion,Ae=E.breakpoints,ve=I.zIndex,p=c;var d={colors:c.colors.light,typography:c.typography,spacing:c.spacing,radius:c.radius,shadows:c.shadows.light};var m={colors:c.colors.dark,typography:c.typography,spacing:c.spacing,radius:c.radius,shadows:c.shadows.dark};var ke={light:d,dark:m},N=ke;function Oe(){return d.colors}function Se(){return m.colors}function Ee(){return p.spacing}function Ie(){return p.typography}function _e(){return p.radius}function Re(e="light"){return p.shadows[e]}function Ce(e){return p.spacing[e]}function Le(e){return p.radius[e]}function Ne(e,r,a,o){try{let t=e==="dark"?m.colors:d.colors;if(!t?.primitive)return o;let n=t.primitive[r];if(!n||typeof n!="object")return o;let i=n[a];return typeof i=="string"?i:o}catch{return o}}function w(){return{tokens:p,GRADIENT_DIRECTIONS:{TO_TOP:"bg-gradient-to-t",TO_RIGHT:"bg-gradient-to-r",TO_BOTTOM:"bg-gradient-to-b",TO_LEFT:"bg-gradient-to-l",TO_TOP_RIGHT:"bg-gradient-to-tr",TO_TOP_LEFT:"bg-gradient-to-tl",TO_BOTTOM_RIGHT:"bg-gradient-to-br",TO_BOTTOM_LEFT:"bg-gradient-to-bl"}}}function we(){return w()}var De="./src/css-vars.css";0&&(module.exports={BACKGROUND,COLORS,GRADIENTS,GRADIENT_COLORS,GRADIENT_COMPOSITES,GRADIENT_DIRECTIONS,MOTION,NAVIGATION,RESPONSIVE,SHADOWS,Z_INDEX,animationTokens,breakpointTokens,componentTokens,cssVarsPath,darkTheme,darkThemeColors,effectTokens,getContrast,getContrastInfo,getDarkColors,getLightColors,getLuminance,getRadius,getShadows,getSpacing,getTokenColor,getTypography,hexToRgb,lightTheme,lightThemeColors,loadDesignTokensSafely,meetsWCAGAA,meetsWCAGAAA,motionTokens,radius,radiusTokens,shadowTokens,spacing,spacingTokens,themes,tokens,typographyTokens,useDesignTokens,validateContrast,zIndexTokens});
1
+ "use strict";var b=Object.defineProperty;var H=Object.getOwnPropertyDescriptor;var z=Object.getOwnPropertyNames;var B=Object.prototype.hasOwnProperty;var M=(e,r)=>{for(var a in r)b(e,a,{get:r[a],enumerable:!0})},G=(e,r,a,o)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of z(r))!B.call(e,t)&&t!==a&&b(e,t,{get:()=>r[t],enumerable:!(o=H(r,t))||o.enumerable});return e};var F=e=>G(b({},"__esModule",{value:!0}),e);var Be={};M(Be,{ANIMATION_DELAYS:()=>He,BACKGROUND:()=>te,COLORS:()=>ne,GRADIENTS:()=>l,GRADIENT_COLORS:()=>re,GRADIENT_COMPOSITES:()=>ee,GRADIENT_DIRECTIONS:()=>f,MOTION:()=>oe,NAVIGATION:()=>ie,RESPONSIVE:()=>ae,SHADOWS:()=>se,TRANSITION_DELAYS:()=>D,Z_INDEX:()=>fe,animationTokens:()=>he,breakpointTokens:()=>ve,componentTokens:()=>Te,cssVarsPath:()=>ze,darkTheme:()=>d,darkThemeColors:()=>de,effectTokens:()=>ye,getContrast:()=>g,getContrastInfo:()=>L,getDarkColors:()=>Ee,getLightColors:()=>Oe,getLuminance:()=>R,getRadius:()=>Re,getShadows:()=>Ce,getSpacing:()=>Ie,getTokenColor:()=>we,getTypography:()=>_e,hexToRgb:()=>_,lightTheme:()=>m,lightThemeColors:()=>me,loadDesignTokensSafely:()=>w,meetsWCAGAA:()=>ce,meetsWCAGAAA:()=>le,motionTokens:()=>Ae,radius:()=>Ne,radiusTokens:()=>xe,shadowTokens:()=>ue,spacing:()=>Le,spacingTokens:()=>be,themes:()=>N,tokens:()=>p,typographyTokens:()=>ge,useDesignTokens:()=>De,validateContrast:()=>pe,zIndexTokens:()=>ke});module.exports=F(Be);var x={$schema:"https://json.schemastore.org/theme.json",$description:"Light theme color palette - Modern and professional design with WCAG AA compliance",colors:{primary:{base:"#0891b2",hover:"#0e7490",active:"#155e75",disabled:"#d4d4d4",focus:"#0891b2",background:"#ecfeff",backgroundHover:"#cffafe",backgroundActive:"#a5f3fc",border:"#0891b2",borderHover:"#0e7490",borderFocus:"#06b6d4",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},secondary:{base:"#9333ea",hover:"#7e22ce",active:"#6b21a8",disabled:"#d4d4d4",focus:"#9333ea",background:"#faf5ff",backgroundHover:"#f3e8ff",backgroundActive:"#e9d5ff",border:"#9333ea",borderHover:"#7e22ce",borderFocus:"#a855f7",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},accent:{base:"#db2777",hover:"#be185d",active:"#9f1239",disabled:"#d4d4d4",focus:"#db2777",background:"#fdf2f8",backgroundHover:"#fce7f3",backgroundActive:"#fbcfe8",border:"#db2777",borderHover:"#be185d",borderFocus:"#ec4899",text:"#ffffff",textHover:"#ffffff",textDisabled:"#a3a3a3"},background:{primary:"#ffffff",secondary:"#fafafa",tertiary:"#f5f5f5",inverse:"#0a0a0f",overlay:"rgba(0, 0, 0, 0.5)",muted:"#f9fafb"},surface:{primary:"#ffffff",secondary:"#fafafa",tertiary:"#f5f5f5",elevated:"#ffffff",overlay:"rgba(0, 0, 0, 0.5)",hover:"#f9fafb",active:"#f3f4f6"},text:{primary:"#171717",secondary:"#404040",tertiary:"#737373",inverse:"#ffffff",disabled:"#a3a3a3",link:"#0891b2",linkHover:"#0e7490",linkActive:"#155e75",linkVisited:"#7e22ce",onPrimary:"#ffffff",onSecondary:"#ffffff",onAccent:"#ffffff",onBackground:"#171717",onSurface:"#171717"},border:{primary:"#e5e5e5",secondary:"#d4d4d4",tertiary:"#a3a3a3",focus:"#0891b2",focusRing:"#06b6d4",inverse:"#404040",hover:"#d4d4d4",active:"#a3a3a3",disabled:"#e5e5e5"},status:{success:{base:"#22c55e",hover:"#16a34a",active:"#15803d",background:"#f0fdf4",backgroundHover:"#dcfce7",border:"#86efac",text:"#ffffff",textOnBackground:"#166534"},warning:{base:"#f59e0b",hover:"#d97706",active:"#b45309",background:"#fffbeb",backgroundHover:"#fef3c7",border:"#fcd34d",text:"#ffffff",textOnBackground:"#92400e"},error:{base:"#ef4444",hover:"#dc2626",active:"#b91c1c",background:"#fef2f2",backgroundHover:"#fee2e2",border:"#fca5a5",text:"#ffffff",textOnBackground:"#991b1b"},info:{base:"#3b82f6",hover:"#2563eb",active:"#1d4ed8",background:"#eff6ff",backgroundHover:"#dbeafe",border:"#93c5fd",text:"#ffffff",textOnBackground:"#1e40af"}},interactive:{default:"#0891b2",hover:"#0e7490",active:"#155e75",disabled:"#d4d4d4",disabledText:"#a3a3a3",focus:"#0891b2",focusRing:"#06b6d4"},primitive:{cyan:{"50":"#ecfeff","100":"#cffafe","200":"#a5f3fc","300":"#67e8f9","400":"#22d3ee","500":"#06b6d4","600":"#0891b2","700":"#0e7490","800":"#155e75","900":"#164e63"},purple:{"50":"#faf5ff","100":"#f3e8ff","200":"#e9d5ff","300":"#d8b4fe","400":"#c084fc","500":"#a855f7","600":"#9333ea","700":"#7e22ce","800":"#6b21a8","900":"#581c87"},pink:{"50":"#fdf2f8","100":"#fce7f3","200":"#fbcfe8","300":"#f9a8d4","400":"#f472b6","500":"#ec4899","600":"#db2777","700":"#be185d","800":"#9f1239","900":"#831843"},blue:{"50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a"},green:{"50":"#f0fdf4","100":"#dcfce7","200":"#bbf7d0","300":"#86efac","400":"#4ade80","500":"#22c55e","600":"#16a34a","700":"#15803d","800":"#166534","900":"#14532d"},orange:{"50":"#fff7ed","100":"#ffedd5","200":"#fed7aa","300":"#fdba74","400":"#fb923c","500":"#f97316","600":"#ea580c","700":"#c2410c","800":"#9a3412","900":"#7c2d12"},red:{"50":"#fef2f2","100":"#fee2e2","200":"#fecaca","300":"#fca5a5","400":"#f87171","500":"#ef4444","600":"#dc2626","700":"#b91c1c","800":"#991b1b","900":"#7f1d1d"},amber:{"50":"#fffbeb","100":"#fef3c7","200":"#fde68a","300":"#fcd34d","400":"#fbbf24","500":"#f59e0b","600":"#d97706","700":"#b45309","800":"#92400e","900":"#78350f"},emerald:{"50":"#ecfdf5","100":"#d1fae5","200":"#a7f3d0","300":"#6ee7b7","400":"#34d399","500":"#10b981","600":"#059669","700":"#047857","800":"#065f46","900":"#064e3b"},neutral:{"50":"#fafafa","100":"#f5f5f5","200":"#e5e5e5","300":"#d4d4d4","400":"#a3a3a3","500":"#737373","600":"#525252","700":"#404040","800":"#262626","900":"#171717","950":"#0a0a0f"}},effects:{matrixRain:{base:"#fbbf24"},stars:{base:"#00e6ff"}}}};var u={$schema:"https://json.schemastore.org/theme.json",$description:"Dark theme color palette - Cyberpunk neon style with WCAG AA compliance",colors:{primary:{base:"#00e6ff",hover:"#1affff",active:"#4dffff",disabled:"#404040",focus:"#00e6ff",background:"rgba(0, 230, 255, 0.1)",backgroundHover:"rgba(0, 230, 255, 0.15)",backgroundActive:"rgba(0, 230, 255, 0.2)",border:"#00e6ff",borderHover:"#1affff",borderFocus:"#4dffff",text:"#0a0a0f",textHover:"#0a0a0f",textDisabled:"#525252"},secondary:{base:"#7d00ff",hover:"#941aff",active:"#ab4dff",disabled:"#404040",focus:"#7d00ff",background:"rgba(125, 0, 255, 0.1)",backgroundHover:"rgba(125, 0, 255, 0.15)",backgroundActive:"rgba(125, 0, 255, 0.2)",border:"#7d00ff",borderHover:"#941aff",borderFocus:"#ab4dff",text:"#ffffff",textHover:"#ffffff",textDisabled:"#525252"},accent:{base:"#ff00ff",hover:"#ff1aff",active:"#ff4dff",disabled:"#404040",focus:"#ff00ff",background:"rgba(255, 0, 255, 0.1)",backgroundHover:"rgba(255, 0, 255, 0.15)",backgroundActive:"rgba(255, 0, 255, 0.2)",border:"#ff00ff",borderHover:"#ff1aff",borderFocus:"#ff4dff",text:"#0a0a0f",textHover:"#0a0a0f",textDisabled:"#525252"},background:{primary:"#0a0a0f",secondary:"#0f0f1a",tertiary:"#171717",inverse:"#ffffff",overlay:"rgba(0, 0, 0, 0.8)",muted:"#0f0f1a"},surface:{primary:"#171717",secondary:"#262626",tertiary:"#404040",elevated:"#262626",overlay:"rgba(0, 0, 0, 0.8)",glass:"rgba(15, 15, 26, 0.7)",glassHover:"rgba(15, 15, 26, 0.85)",hover:"#262626",active:"#404040"},text:{primary:"#b3ffff",secondary:"#4dffff",tertiary:"#00e6ff",inverse:"#0a0a0f",disabled:"#525252",link:"#1affff",linkHover:"#4dffff",linkActive:"#80ffff",linkVisited:"#941aff",onPrimary:"#0a0a0f",onSecondary:"#ffffff",onAccent:"#0a0a0f",onBackground:"#b3ffff",onSurface:"#b3ffff",glow:"#00e6ff",neonCyan:"#00e6ff",neonPink:"#ff00ff",neonPurple:"#7d00ff",neonGreen:"#00ff00"},border:{primary:"#262626",secondary:"#404040",tertiary:"#525252",focus:"#00e6ff",focusRing:"#1affff",inverse:"#e5e5e5",neon:"#00e6ff",neonGlow:"rgba(0, 230, 255, 0.3)",hover:"#404040",active:"#525252",disabled:"#262626"},status:{success:{base:"#00ff00",hover:"#4dff4d",active:"#80ff80",background:"rgba(0, 255, 0, 0.1)",backgroundHover:"rgba(0, 255, 0, 0.15)",border:"#4dff4d",text:"#0a0a0f",textOnBackground:"#4dff4d"},warning:{base:"#ff7d00",hover:"#ffab4d",active:"#ffc880",background:"rgba(255, 125, 0, 0.1)",backgroundHover:"rgba(255, 125, 0, 0.15)",border:"#ffab4d",text:"#0a0a0f",textOnBackground:"#ffab4d"},error:{base:"#f87171",hover:"#fca5a5",active:"#fecaca",background:"rgba(239, 68, 68, 0.1)",backgroundHover:"rgba(239, 68, 68, 0.15)",border:"#fca5a5",text:"#ffffff",textOnBackground:"#fca5a5"},info:{base:"#007dff",hover:"#4dabff",active:"#80c7ff",background:"rgba(0, 125, 255, 0.1)",backgroundHover:"rgba(0, 125, 255, 0.15)",border:"#4dabff",text:"#ffffff",textOnBackground:"#4dabff"}},interactive:{default:"#00e6ff",hover:"#1affff",active:"#4dffff",disabled:"#404040",disabledText:"#525252",focus:"#00e6ff",focusRing:"#1affff"},effects:{glowCyan:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",glowPink:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",glowPurple:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",glowGreen:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)",shadowSm:"0 1px 2px 0 rgba(0, 0, 0, 0.5)",shadowMd:"0 4px 6px -1px rgba(0, 0, 0, 0.5)",shadowLg:"0 10px 15px -3px rgba(0, 0, 0, 0.5)"},gradients:{primary:"linear-gradient(135deg, #00e6ff 0%, #7d00ff 100%)",secondary:"linear-gradient(135deg, #ff00ff 0%, #00e6ff 100%)",accent:"linear-gradient(135deg, #ff7d00 0%, #ff00ff 100%)",background:"linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%)"},primitive:{cyan:{"50":"rgba(0, 230, 255, 0.1)","100":"rgba(0, 230, 255, 0.15)","200":"rgba(0, 230, 255, 0.2)","300":"#4dffff","400":"#1affff","500":"#00e6ff","600":"#00b8cc","700":"#008a99","800":"#005c66","900":"#003d44"},purple:{"50":"rgba(125, 0, 255, 0.1)","100":"rgba(125, 0, 255, 0.15)","200":"rgba(125, 0, 255, 0.2)","300":"#ab4dff","400":"#941aff","500":"#7d00ff","600":"#6400cc","700":"#4b0099","800":"#320066","900":"#190033"},pink:{"50":"rgba(255, 0, 255, 0.1)","100":"rgba(255, 0, 255, 0.15)","200":"rgba(255, 0, 255, 0.2)","300":"#ff4dff","400":"#ff1aff","500":"#ff00ff","600":"#cc00cc","700":"#990099","800":"#660066","900":"#330033"},blue:{"50":"rgba(0, 125, 255, 0.1)","100":"rgba(0, 125, 255, 0.15)","200":"rgba(0, 125, 255, 0.2)","300":"#80c7ff","400":"#4dabff","500":"#007dff","600":"#0064cc","700":"#004b99","800":"#003266","900":"#001933"},green:{"50":"rgba(0, 255, 0, 0.1)","100":"rgba(0, 255, 0, 0.15)","200":"rgba(0, 255, 0, 0.2)","300":"#80ff80","400":"#4dff4d","500":"#00ff00","600":"#00cc00","700":"#009900","800":"#006600","900":"#003300"},orange:{"50":"rgba(255, 125, 0, 0.1)","100":"rgba(255, 125, 0, 0.15)","200":"rgba(255, 125, 0, 0.2)","300":"#ffc880","400":"#ffab4d","500":"#ff7d00","600":"#cc6400","700":"#994b00","800":"#663200","900":"#331900"},red:{"50":"rgba(239, 68, 68, 0.1)","100":"rgba(239, 68, 68, 0.15)","200":"rgba(239, 68, 68, 0.2)","300":"#fecaca","400":"#fca5a5","500":"#f87171","600":"#c55a5a","700":"#924343","800":"#5f2c2c","900":"#2c1515"},amber:{"50":"rgba(255, 125, 0, 0.1)","100":"rgba(255, 125, 0, 0.15)","200":"rgba(255, 125, 0, 0.2)","300":"#ffc880","400":"#ffab4d","500":"#ff7d00","600":"#cc6400","700":"#994b00","800":"#663200","900":"#331900"},emerald:{"50":"rgba(0, 255, 0, 0.1)","100":"rgba(0, 255, 0, 0.15)","200":"rgba(0, 255, 0, 0.2)","300":"#80ff80","400":"#4dff4d","500":"#00ff00","600":"#00cc00","700":"#009900","800":"#006600","900":"#003300"},neutral:{"50":"#0f0f1a","100":"#171717","200":"#262626","300":"#404040","400":"#525252","500":"#737373","600":"#a3a3a3","700":"#d4d4d4","800":"#e5e5e5","900":"#f5f5f5","950":"#ffffff"}}}};var h={$schema:"https://json.schemastore.org/theme.json",$description:"Typography tokens - Complete typographic scale with semantic hierarchy (H1-H6, subtitles, body, captions)",typography:{fontFamily:{sans:"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",serif:"ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif",mono:"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace",display:"var(--font-orbitron, ui-sans-serif)",body:"var(--font-inter, ui-sans-serif)",code:"var(--font-rajdhani, ui-monospace)"},fontSize:{xs:"0.75rem",sm:"0.875rem",base:"1rem",lg:"1.125rem",xl:"1.25rem","2xl":"1.5rem","3xl":"1.875rem","4xl":"2.25rem","5xl":"3rem","6xl":"3.75rem","7xl":"4.5rem","8xl":"6rem","9xl":"8rem"},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2"},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},headings:{h1:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(2.25rem, 5vw + 1rem, 4.5rem)",fontSizeMobile:"2.25rem",fontSizeTablet:"3rem",fontSizeDesktop:"4.5rem",fontWeight:"900",lineHeight:"1.1",letterSpacing:"-0.02em",marginBottom:"1rem"},h2:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(1.875rem, 4vw + 0.75rem, 3.75rem)",fontSizeMobile:"1.875rem",fontSizeTablet:"2.5rem",fontSizeDesktop:"3.75rem",fontWeight:"800",lineHeight:"1.15",letterSpacing:"-0.015em",marginBottom:"0.875rem"},h3:{fontFamily:"var(--font-display, ui-sans-serif)",fontSize:"clamp(1.5rem, 3vw + 0.5rem, 3rem)",fontSizeMobile:"1.5rem",fontSizeTablet:"2rem",fontSizeDesktop:"3rem",fontWeight:"700",lineHeight:"1.2",letterSpacing:"-0.01em",marginBottom:"0.75rem"},h4:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.25rem, 2.5vw + 0.5rem, 2.25rem)",fontSizeMobile:"1.25rem",fontSizeTablet:"1.75rem",fontSizeDesktop:"2.25rem",fontWeight:"700",lineHeight:"1.25",letterSpacing:"0em",marginBottom:"0.625rem"},h5:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.125rem, 2vw + 0.25rem, 1.875rem)",fontSizeMobile:"1.125rem",fontSizeTablet:"1.5rem",fontSizeDesktop:"1.875rem",fontWeight:"600",lineHeight:"1.3",letterSpacing:"0em",marginBottom:"0.5rem"},h6:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1rem, 1.5vw + 0.25rem, 1.5rem)",fontSizeMobile:"1rem",fontSizeTablet:"1.25rem",fontSizeDesktop:"1.5rem",fontWeight:"600",lineHeight:"1.35",letterSpacing:"0.01em",marginBottom:"0.5rem"}},subtitle:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.25rem, 2vw + 0.5rem, 2rem)",fontSizeMobile:"1.25rem",fontSizeTablet:"1.5rem",fontSizeDesktop:"2rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.5rem"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"clamp(1.125rem, 1.5vw + 0.25rem, 1.5rem)",fontSizeMobile:"1.125rem",fontSizeTablet:"1.25rem",fontSizeDesktop:"1.5rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.5rem"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"500",lineHeight:"1.4",letterSpacing:"0em",marginBottom:"0.375rem"}},body:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1.125rem",fontWeight:"400",lineHeight:"1.625",letterSpacing:"0em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"}},caption:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.4",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.75rem",fontWeight:"400",lineHeight:"1.4",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.625rem",fontWeight:"400",lineHeight:"1.3",letterSpacing:"0.02em"}},button:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1.125rem",fontWeight:"600",lineHeight:"1.5",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"1rem",fontWeight:"600",lineHeight:"1.5",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"}},label:{large:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.875rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"},medium:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.75rem",fontWeight:"600",lineHeight:"1.4",letterSpacing:"0.01em"},small:{fontFamily:"var(--font-body, ui-sans-serif)",fontSize:"0.625rem",fontWeight:"600",lineHeight:"1.3",letterSpacing:"0.02em"}},code:{inline:{fontFamily:"var(--font-code, ui-monospace)",fontSize:"0.875em",fontWeight:"400",lineHeight:"1.5",letterSpacing:"0em"},block:{fontFamily:"var(--font-code, ui-monospace)",fontSize:"0.875rem",fontWeight:"400",lineHeight:"1.6",letterSpacing:"0em"}}}};var y={$schema:"https://json.schemastore.org/theme.json",$description:"Spacing tokens - Consistent spacing scale based on 8pt grid",spacing:{"0":"0px",px:"1px","0.5":"0.125rem","1":"0.25rem","1.5":"0.375rem","2":"0.5rem","2.5":"0.625rem","3":"0.75rem","3.5":"0.875rem","4":"1rem","5":"1.25rem","6":"1.5rem","7":"1.75rem","8":"2rem","9":"2.25rem","10":"2.5rem","11":"2.75rem","12":"3rem","14":"3.5rem","16":"4rem","20":"5rem","24":"6rem","28":"7rem","32":"8rem","36":"9rem","40":"10rem","44":"11rem","48":"12rem","52":"13rem","56":"14rem","60":"15rem","64":"16rem","72":"18rem","80":"20rem","96":"24rem"}};var T={$schema:"https://json.schemastore.org/theme.json",$description:"Border radius tokens - Consistent corner rounding",radius:{none:"0px",sm:"0.125rem",base:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"}};var A={$schema:"https://json.schemastore.org/theme.json",$description:"Shadow tokens - Elevation and depth",shadows:{light:{xs:"0 1px 2px 0 rgba(0, 0, 0, 0.05)",sm:"0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)",base:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",md:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)",lg:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)",xl:"0 25px 50px -12px rgba(0, 0, 0, 0.25)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.25)",inner:"inset 0 2px 4px 0 rgba(0, 0, 0, 0.05)"},dark:{xs:"0 1px 2px 0 rgba(0, 0, 0, 0.5)",sm:"0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 1px 2px -1px rgba(0, 0, 0, 0.5)",base:"0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.5)",md:"0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5)",lg:"0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5)",xl:"0 25px 50px -12px rgba(0, 0, 0, 0.75)","2xl":"0 25px 50px -12px rgba(0, 0, 0, 0.75)",inner:"inset 0 2px 4px 0 rgba(0, 0, 0, 0.5)",glow:{cyan:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",pink:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",purple:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",green:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)"}}}};var v={animations:{"accordion-down":{name:"accordion-down",duration:"0.2s",timingFunction:"ease-out",keyframes:{from:{height:"0"},to:{height:"var(--radix-accordion-content-height)"}}},"accordion-up":{name:"accordion-up",duration:"0.2s",timingFunction:"ease-out",keyframes:{from:{height:"var(--radix-accordion-content-height)"},to:{height:"0"}}},"slide-in":{name:"slide-in",duration:"0.3s",timingFunction:"ease-out",keyframes:{"0%":{transform:"translateY(-10px)",opacity:"0"},"100%":{transform:"translateY(0)",opacity:"1"}}},"fade-in":{name:"fade-in",duration:"0.5s",timingFunction:"ease-in",keyframes:{"0%":{opacity:"0"},"100%":{opacity:"1"}}},glitch:{name:"glitch",duration:"4s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 100%":{transform:"translate(0)"},"10%":{transform:"translate(-2px, 2px)"},"20%":{transform:"translate(2px, -2px)"},"30%, 50%, 70%, 90%":{transform:"translate(0)"}}},"neon-pulse":{name:"neon-pulse",duration:"2s",timingFunction:"ease-in-out",iterationCount:"infinite",direction:"alternate",keyframes:{"0%, 100%":{filter:"brightness(1) saturate(1)"},"50%":{filter:"brightness(1.3) saturate(1.2)"}}},flicker:{name:"flicker",duration:"2s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%":{opacity:"1",filter:"brightness(1.2)"},"20%, 21.999%, 63%, 63.999%, 65%, 69.999%":{opacity:"0.85",filter:"brightness(0.9)"}}},"scan-line":{name:"scan-line",duration:"4s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%":{top:"0"},"100%":{top:"100%"}}},"glitch-after":{name:"glitch-after",duration:"3s",timingFunction:"linear",iterationCount:"infinite",keyframes:{"0%, 100%":{opacity:"0"},"5%, 10%":{opacity:"0.8",transform:"translate(-3px, 3px)"},"15%, 95%":{opacity:"0"}}}}};var C={hero:{title:{fontSize:{mobile:"1.5rem",responsive:"4vw",desktop:"3.5rem",clamp:"clamp(1.5rem, 4vw, 3.5rem)"},lineHeight:"1.2",letterSpacing:"-0.02em",wordSpacing:"0.05em",fontWeight:"800",filter:"brightness(1.2) contrast(1.1)",textShadow:{dark:"0 0 40px rgba(34, 211, 238, 1), 0 0 60px rgba(103, 232, 249, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5)",light:"0 0 30px rgba(37, 99, 235, 0.8), 0 0 50px rgba(59, 130, 246, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3)"}},subtitle:{fontSize:{mobile:"0.875rem",responsive:"1.5vw",desktop:"1.25rem",clamp:"clamp(0.875rem, 1.5vw, 1.25rem)"},lineHeight:"1.6",letterSpacing:"0.01em",fontWeight:"400",maxWidth:"56rem",textShadow:{dark:"0 0 20px rgba(52, 211, 153, 0.6)",light:"0 0 20px rgba(16, 185, 129, 0.5)"}},container:{maxWidth:{mobile:"90vw",sm:"48rem",md:"56rem",lg:"64rem"},padding:{top:"clamp(3rem, 10vh, 8rem)",bottom:"clamp(3rem, 10vh, 8rem)",x:{mobile:"1rem",sm:"1.5rem",md:"2rem"}},gap:"clamp(1.5rem, 3vh, 2.5rem)"},effects:{cyberpunk:{glitch:{animation:"glitch 2s infinite",animationDelay:"0s, 0.3s, 0.6s"},neon:{animation:"neon-pulse 1.5s ease-in-out infinite alternate"},flicker:{animation:"flicker 3s linear infinite"}}}}};var k={$schema:"http://json-schema.org/draft-07/schema#",$description:"Tokens para efeitos visuais - filters, blur, glow, backdrop effects",effects:{filter:{brightness:{subtle:"brightness(1.1)",moderate:"brightness(1.2)",intense:"brightness(1.3)",strong:"brightness(1.4)",extreme:"brightness(1.6)"},contrast:{subtle:"contrast(1.05)",moderate:"contrast(1.1)",strong:"contrast(1.2)",intense:"contrast(1.3)"},saturate:{subtle:"saturate(1.1)",moderate:"saturate(1.2)",strong:"saturate(1.3)",intense:"saturate(1.4)"},combined:{"neon-subtle":"brightness(1.2) saturate(1.1)","neon-moderate":"brightness(1.3) saturate(1.2)","neon-intense":"brightness(1.4) saturate(1.3)","neon-extreme":"brightness(1.6) contrast(1.3) saturate(1.4)",glass:"blur(8px) saturate(180%)",frosted:"blur(12px) saturate(150%)"}},blur:{none:"blur(0)",xs:"blur(0.5px)",sm:"blur(2px)",base:"blur(4px)",md:"blur(8px)",lg:"blur(12px)",xl:"blur(16px)","2xl":"blur(24px)","3xl":"blur(40px)"},backdrop:{blur:{none:"backdrop-blur-none",sm:"backdrop-blur-sm",base:"backdrop-blur",md:"backdrop-blur-md",lg:"backdrop-blur-lg",xl:"backdrop-blur-xl","2xl":"backdrop-blur-2xl","3xl":"backdrop-blur-3xl"},saturate:{default:"backdrop-saturate-100",enhanced:"backdrop-saturate-150",strong:"backdrop-saturate-200"}},glow:{star:{small:{radius:"0 0 4px",color:"rgba(255, 255, 255, 0.8)"},medium:{radius:"0 0 8px",color:"rgba(255, 255, 255, 0.8)"},large:{radius:"0 0 12px",color:"rgba(255, 255, 255, 0.8)"}},neon:{cyan:{subtle:"0 0 10px rgba(0, 230, 255, 0.3)",moderate:"0 0 20px rgba(0, 230, 255, 0.5), 0 0 40px rgba(0, 230, 255, 0.3)",intense:"0 0 30px rgba(0, 230, 255, 0.7), 0 0 60px rgba(0, 230, 255, 0.5)"},purple:{subtle:"0 0 10px rgba(125, 0, 255, 0.3)",moderate:"0 0 20px rgba(125, 0, 255, 0.5), 0 0 40px rgba(125, 0, 255, 0.3)",intense:"0 0 30px rgba(125, 0, 255, 0.7), 0 0 60px rgba(125, 0, 255, 0.5)"},pink:{subtle:"0 0 10px rgba(255, 0, 255, 0.3)",moderate:"0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3)",intense:"0 0 30px rgba(255, 0, 255, 0.7), 0 0 60px rgba(255, 0, 255, 0.5)"},green:{subtle:"0 0 10px rgba(0, 255, 0, 0.3)",moderate:"0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3)",intense:"0 0 30px rgba(0, 255, 0, 0.7), 0 0 60px rgba(0, 255, 0, 0.5)"}}},textShadow:{glow:{"cyan-subtle":"0 0 10px rgba(34, 211, 238, 0.5)","cyan-moderate":"0 0 20px rgba(34, 211, 238, 0.8), 0 0 40px rgba(34, 211, 238, 0.6)","cyan-intense":"0 0 40px rgba(34, 211, 238, 1), 0 0 60px rgba(103, 232, 249, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5)"},depth:{subtle:"0 1px 2px rgba(0, 0, 0, 0.1)",moderate:"0 2px 4px rgba(0, 0, 0, 0.3)",strong:"0 2px 4px rgba(0, 0, 0, 0.5)"}},boxShadow:{cyberpunk:{card:"0 0 20px rgba(34, 211, 238, 0.1)",cardHover:"0 0 30px rgba(34, 211, 238, 0.2)",elevated:"0 25px 50px -12px rgba(0, 0, 0, 0.5)"},glass:{subtle:"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)",moderate:"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1)",strong:"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)"}}}};var S={$schema:"http://json-schema.org/draft-07/schema#",$description:"Tokens para componente de background celestial - configura\xE7\xF5es de estrelas, nebulosas e efeitos espaciais",celestialBackground:{stars:{default:{count:150,sizes:[1,1.5,2],opacity:[.35,.55,.75],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}},dense:{count:250,sizes:[1,1.5,2,2.5],opacity:[.25,.45,.65,.85],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}},sparse:{count:80,sizes:[1,1.5],opacity:[.45,.65],glow:{color:"rgba(255, 255, 255, 0.8)",radius:2}}},nebula:{cyan:{position:{top:"0%",left:"0%"},size:{width:"40%",height:"40%"},gradient:{type:"radial",center:"0% 0%",colorStops:[{color:"cyan.400",alpha:.06,position:"0%"},{color:"cyan.400",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"},purple:{position:{top:"50%",right:"0%"},size:{width:"35%",height:"35%"},gradient:{type:"radial",center:"100% 50%",colorStops:[{color:"purple.400",alpha:.06,position:"0%"},{color:"purple.400",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"},pink:{position:{bottom:"0%",left:"25%"},size:{width:"30%",height:"30%"},gradient:{type:"radial",center:"25% 100%",colorStops:[{color:"pink.500",alpha:.06,position:"0%"},{color:"pink.500",alpha:.04,position:"30%"},{color:"transparent",alpha:0,position:"70%"}]},blur:"3xl"}},baseGradient:{direction:"to-bottom",from:"black",via:{color:"purple-950",alpha:.35},to:"black"}}};var O={$schema:"https://json.schemastore.org/theme.json",$description:"Motion tokens - Durations, easings, and transitions for animations",motion:{duration:{instant:"0ms",fast:"100ms",normal:"200ms",slow:"300ms",slower:"500ms",slowest:"800ms"},easing:{linear:"linear",easeIn:"cubic-bezier(0.4, 0, 1, 1)",easeOut:"cubic-bezier(0, 0, 0.2, 1)",easeInOut:"cubic-bezier(0.4, 0, 0.2, 1)",easeInQuad:"cubic-bezier(0.55, 0.085, 0.68, 0.53)",easeOutQuad:"cubic-bezier(0.25, 0.46, 0.45, 0.94)",easeInOutQuad:"cubic-bezier(0.455, 0.03, 0.515, 0.955)",easeInCubic:"cubic-bezier(0.55, 0.055, 0.675, 0.19)",easeOutCubic:"cubic-bezier(0.215, 0.61, 0.355, 1)",easeInOutCubic:"cubic-bezier(0.645, 0.045, 0.355, 1)",spring:"cubic-bezier(0.68, -0.55, 0.265, 1.55)"},delay:{none:"0ms",short:"50ms",medium:"100ms",long:"200ms"}}};var E={$schema:"https://json.schemastore.org/theme.json",$description:"Responsive breakpoints - Mobile-first approach",breakpoints:{xs:"0px",sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px","3xl":"1920px"},container:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px","3xl":"1920px"},mediaQueries:{xs:"@media (min-width: 0px)",sm:"@media (min-width: 640px)",md:"@media (min-width: 768px)",lg:"@media (min-width: 1024px)",xl:"@media (min-width: 1280px)","2xl":"@media (min-width: 1536px)","3xl":"@media (min-width: 1920px)"}};var I={$schema:"https://json.schemastore.org/theme.json",$description:"Z-index scale - Layering system for UI elements",zIndex:{base:0,dropdown:1e3,sticky:1020,fixed:1030,modalBackdrop:1040,modal:1050,popover:1060,tooltip:1070,toast:1080,notification:1090,max:9999},layers:{background:0,base:1,content:10,overlay:100,dropdown:1e3,modal:2e3,tooltip:3e3,notification:4e3}};var f={TO_TOP:"bg-linear-to-t",TO_BOTTOM:"bg-linear-to-b",TO_LEFT:"bg-linear-to-l",TO_RIGHT:"bg-linear-to-r",TO_TL:"bg-linear-to-tl",TO_TR:"bg-linear-to-tr",TO_BL:"bg-linear-to-bl",TO_BR:"bg-linear-to-br"},l={TEXT_PRIMARY:"bg-linear-to-r from-[var(--color-primary-base)] via-[var(--color-secondary-base)] to-[var(--color-accent-base)] bg-clip-text text-transparent",DECORATIVE_PRIMARY:"bg-linear-to-br from-[var(--color-primary-base)] via-[var(--color-secondary-base)] to-[var(--color-accent-base)]",DECORATIVE_CYAN_PURPLE:"bg-linear-to-r from-[var(--color-primary-base)] to-[var(--color-secondary-base)]",DECORATIVE_GREEN_EMERALD:"bg-linear-to-br from-[var(--color-status-success)] to-[var(--color-accent-base)]",BUTTON_CYAN_BLUE:"bg-linear-to-r from-[var(--color-primary-base)] to-[var(--color-primary-hover)]",BUTTON_PURPLE_PINK:"bg-linear-to-r from-[var(--color-secondary-base)] to-[var(--color-accent-base)]"},ee={HORIZONTAL_PRIMARY:`${f.TO_RIGHT} ${l.BUTTON_CYAN_BLUE}`,HORIZONTAL_SECONDARY:`${f.TO_RIGHT} ${l.BUTTON_PURPLE_PINK}`,HORIZONTAL_DECORATIVE:`${f.TO_RIGHT} ${l.DECORATIVE_PRIMARY}`,HORIZONTAL_CYAN_PURPLE:`${f.TO_RIGHT} ${l.DECORATIVE_CYAN_PURPLE}`,VERTICAL_PRIMARY:`${f.TO_BOTTOM} ${l.BUTTON_CYAN_BLUE}`,VERTICAL_SECONDARY:`${f.TO_BOTTOM} ${l.BUTTON_PURPLE_PINK}`,VERTICAL_DECORATIVE:`${f.TO_BOTTOM} ${l.DECORATIVE_PRIMARY}`,DIAGONAL_PRIMARY:`${f.TO_BR} ${l.DECORATIVE_PRIMARY}`,DIAGONAL_SECONDARY:`${f.TO_BR} ${l.DECORATIVE_CYAN_PURPLE}`,DIAGONAL_GREEN_EMERALD:`${f.TO_BR} ${l.DECORATIVE_GREEN_EMERALD}`},re={GRAY_SCALE:`${f.TO_RIGHT} from-[var(--color-text-tertiary)] to-[var(--color-text-secondary)]`,BLUE_SCALE:`${f.TO_RIGHT} from-[var(--color-primary-base)] to-[var(--color-primary-hover)]`,SUCCESS_SCALE:`${f.TO_RIGHT} from-[var(--color-status-success)] to-[var(--color-status-success-hover)]`,TEXT_MUTED:`${f.TO_RIGHT} from-[var(--color-text-tertiary)] to-[var(--color-text-secondary)]`},te={FULL:"bg-[var(--color-background-primary)]",GRADIENT_OVERLAY:"bg-linear-to-br from-[var(--color-primary-base)]/10 via-[var(--color-secondary-base)]/10 to-[var(--color-accent-base)]/10",PREMIUM_DIVIDER_CONTAINER:"bg-linear-to-b from-transparent via-[var(--color-primary-base)]/5 to-transparent",PREMIUM_DIVIDER_LINE:"bg-linear-to-r from-transparent via-[var(--color-primary-base)]/50 to-transparent",SECTION_CYAN:"bg-linear-to-br from-[var(--color-primary-base)]/5 via-[var(--color-primary-base)]/3 to-transparent",SECTION_CYAN_VIA:"bg-linear-to-br from-transparent via-[var(--color-primary-base)]/5 to-transparent",SECTION_PURPLE_VIA:"bg-linear-to-br from-transparent via-[var(--color-secondary-base)]/5 to-transparent",SECTION_PINK_VIA:"bg-linear-to-br from-transparent via-[var(--color-accent-base)]/5 to-transparent"},ae={HIDE_ON_MOBILE:"hidden sm:block",HIDE_ON_TABLET:"hidden lg:block",HIDE_ON_DESKTOP:"block lg:hidden",SHOW_ON_MOBILE:"block sm:hidden",SHOW_ON_TABLET:"block lg:hidden",SHOW_ON_DESKTOP:"hidden lg:block",CONTAINER:{DEFAULT:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl",FLUID:"w-full px-4 sm:px-6 lg:px-8",TIGHT:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-4xl",WIDE:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-screen-2xl",PROSE:"w-full mx-auto px-4 sm:px-6 lg:px-8 max-w-prose"},GRID:{COLS_1_2:"grid grid-cols-1 md:grid-cols-2 gap-4",COLS_1_3:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4",COLS_1_4:"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4",COLS_2_3:"grid grid-cols-2 lg:grid-cols-3 gap-4",COLS_2_4:"grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4"},FLEX:{MOBILE_COLUMN:"flex flex-col sm:flex-row",TABLET_COLUMN:"flex flex-col lg:flex-row",MOBILE_REVERSE:"flex flex-col-reverse sm:flex-row",TABLET_REVERSE:"flex flex-col-reverse lg:flex-row"},TEXT:{MOBILE_CENTER:"text-center sm:text-left",TABLET_CENTER:"text-center lg:text-left",RESPONSIVE_SIZE:"text-sm sm:text-base lg:text-lg",HEADING_SIZE:"text-2xl sm:text-3xl lg:text-4xl xl:text-5xl"},SPACING:{MOBILE_TIGHT:"p-2 sm:p-4 lg:p-6",TABLET_TIGHT:"p-4 lg:p-8",RESPONSIVE_Y:"py-4 sm:py-6 lg:py-8 xl:py-12",RESPONSIVE_X:"px-4 sm:px-6 lg:px-8"}},oe={TRANSITION:{DEFAULT:"transition-all duration-200 ease-in-out",FAST:"transition-all duration-100 ease-out",SLOW:"transition-all duration-300 ease-in-out",COLOR:"transition-colors duration-200 ease-in-out",TRANSFORM:"transition-transform duration-200 ease-in-out",OPACITY:"transition-opacity duration-150 ease-in-out",SHADOW:"transition-shadow duration-200 ease-in-out"},ANIMATE:{FADE_IN:"animate-fadeIn",FADE_OUT:"animate-fadeOut",SLIDE_IN_UP:"animate-slideInUp",SLIDE_IN_DOWN:"animate-slideInDown",SLIDE_IN_LEFT:"animate-slideInLeft",SLIDE_IN_RIGHT:"animate-slideInRight",SCALE_IN:"animate-scaleIn",SCALE_OUT:"animate-scaleOut",ROTATE:"animate-rotate",PULSE:"animate-pulse",BOUNCE:"animate-bounce",SHAKE:"animate-shake",FLASH:"animate-flash"},DURATION:{INSTANT:"duration-0",FAST:"duration-100",NORMAL:"duration-200",SLOW:"duration-300",SLOWER:"duration-500",SLOWEST:"duration-700"},DELAY:{NONE:"delay-0",SHORT:"delay-75",MEDIUM:"delay-150",LONG:"delay-300",LONGER:"delay-500"}},ne={primary:"#0891b2",secondary:"#9333ea",accent:"#db2777",success:"#22c55e",warning:"#f59e0b",error:"#ef4444",info:"#0891b2"},ie=[{href:"/",label:"Home"},{href:"/sobre",label:"Sobre"},{href:"/projetos",label:"Projetos"},{href:"/contato",label:"Contato"}],se={XS:"shadow-xs",SMALL:"shadow-sm",BASE:"shadow",MEDIUM:"shadow-md",LARGE:"shadow-lg",XL:"shadow-xl","2XL":"shadow-2xl",INNER:"shadow-inner"},fe={BASE:"z-0",DROPDOWN:"z-[1000]",STICKY:"z-[1020]",FIXED:"z-[1030]",BACKDROP:"z-[1040]",MODAL:"z-[1050]",POPOVER:"z-[1060]",TOOLTIP:"z-[1070]",TOAST:"z-[1080]",SPOTLIGHT:"z-[1090]",PRIORITY:"z-[1100]",MAX:"z-[2147483647]"};function _(e){let r=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);if(!r)throw new Error(`Invalid hex color: ${e}`);return{r:parseInt(r[1],16),g:parseInt(r[2],16),b:parseInt(r[3],16)}}function R(e,r,a){let[o,t,n]=[e,r,a].map(i=>{let s=i/255;return s<=.03928?s/12.92:Math.pow((s+.055)/1.055,2.4)});return .2126*o+.7152*t+.0722*n}function g(e,r){let a=_(e),o=_(r),t=R(a.r,a.g,a.b),n=R(o.r,o.g,o.b),i=Math.max(t,n),s=Math.min(t,n);return(i+.05)/(s+.05)}function ce(e,r,a=!1){let o=g(e,r);return a?o>=3:o>=4.5}function le(e,r,a=!1){let o=g(e,r);return a?o>=4.5:o>=7}function L(e,r){let a=g(e,r),o=a>=4.5,t=a>=3,n=a>=7,i=a>=4.5,s="Fail";return n?s="AAA":i?s="AAA Large":o?s="AA":t&&(s="AA Large"),{contrast:a,meetsAA:o,meetsAALarge:t,meetsAAA:n,meetsAAALarge:i,level:s}}function pe(e,r,a={}){let{requireAAA:o=!1,largeText:t=!1}=a,n=L(e,r),i=!1,s="";return o?(i=t?n.meetsAAALarge:n.meetsAAA,s=i?`Contraste v\xE1lido (WCAG AAA${t?" - Texto Grande":""})`:`Contraste insuficiente para WCAG AAA${t?" - Texto Grande":""}. Requerido: ${t?"4.5:1":"7:1"}, atual: ${n.contrast.toFixed(2)}:1`):(i=t?n.meetsAALarge:n.meetsAA,s=i?`Contraste v\xE1lido (WCAG AA${t?" - Texto Grande":""})`:`Contraste insuficiente para WCAG AA${t?" - Texto Grande":""}. Requerido: ${t?"3:1":"4.5:1"}, atual: ${n.contrast.toFixed(2)}:1`),{valid:i,level:n.level,contrast:n.contrast,message:s}}var c={colors:{light:x.colors,dark:u.colors},typography:h.typography,spacing:y.spacing,radius:T.radius,shadows:A.shadows,animations:v.animations,motion:O.motion,breakpoints:E.breakpoints,zIndex:I.zIndex,hero:C.hero,effects:k.effects,components:{celestialBackground:S.celestialBackground}},me=x.colors,de=u.colors,ge=h.typography,be=y.spacing,xe=T.radius,ue=A.shadows,he=v.animations,ye=k.effects,Te={celestialBackground:S.celestialBackground},Ae=O.motion,ve=E.breakpoints,ke=I.zIndex,p=c;var m={colors:c.colors.light,typography:c.typography,spacing:c.spacing,radius:c.radius,shadows:c.shadows.light};var d={colors:c.colors.dark,typography:c.typography,spacing:c.spacing,radius:c.radius,shadows:c.shadows.dark};var Se={light:m,dark:d},N=Se;function Oe(){return m.colors}function Ee(){return d.colors}function Ie(){return p.spacing}function _e(){return p.typography}function Re(){return p.radius}function Ce(e="light"){return p.shadows[e]}function Le(e){return p.spacing[e]}function Ne(e){return p.radius[e]}function we(e,r,a,o){try{let t=e==="dark"?d.colors:m.colors;if(!t?.primitive)return o;let n=t.primitive[r];if(!n||typeof n!="object")return o;let i=n[a];return typeof i=="string"?i:o}catch{return o}}function w(){return{tokens:p,GRADIENT_DIRECTIONS:{TO_TOP:"bg-gradient-to-t",TO_RIGHT:"bg-gradient-to-r",TO_BOTTOM:"bg-gradient-to-b",TO_LEFT:"bg-gradient-to-l",TO_TOP_RIGHT:"bg-gradient-to-tr",TO_TOP_LEFT:"bg-gradient-to-tl",TO_BOTTOM_RIGHT:"bg-gradient-to-br",TO_BOTTOM_LEFT:"bg-gradient-to-bl"}}}function De(){return w()}var D={particle1:"1s",particle2:"2s",particle3:"3s",short:"1.5s",medium:"2.5s",long:"4s"},He=D;var ze="./src/css-vars.css";0&&(module.exports={ANIMATION_DELAYS,BACKGROUND,COLORS,GRADIENTS,GRADIENT_COLORS,GRADIENT_COMPOSITES,GRADIENT_DIRECTIONS,MOTION,NAVIGATION,RESPONSIVE,SHADOWS,TRANSITION_DELAYS,Z_INDEX,animationTokens,breakpointTokens,componentTokens,cssVarsPath,darkTheme,darkThemeColors,effectTokens,getContrast,getContrastInfo,getDarkColors,getLightColors,getLuminance,getRadius,getShadows,getSpacing,getTokenColor,getTypography,hexToRgb,lightTheme,lightThemeColors,loadDesignTokensSafely,meetsWCAGAA,meetsWCAGAAA,motionTokens,radius,radiusTokens,shadowTokens,spacing,spacingTokens,themes,tokens,typographyTokens,useDesignTokens,validateContrast,zIndexTokens});
2
2
  /**
3
3
  * @fileoverview Ponto de entrada dos tokens de design
4
4
  *