{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/70QtYtAMjx3Ayqt1L6KT/f4Q832mQeXxAA4eN7jAy/hK25DqMi4.js", "ssg:https://framerusercontent.com/modules/BXd7ug3OK3sAaAYAZO9C/PXJMmkdp65YBZXDM7Pxb/augiA20Il.js", "ssg:https://framerusercontent.com/modules/nJUJHgtoaKG50OVcLd7R/RcWL6H7JDWOF8GGP79e5/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/OZY7342NkEyW9SViBfee/IW3zmKWnIgEkXZm0NQbS/N7oQpXLp2.js\";import ButtonCopy from\"https://framerusercontent.com/modules/jYIYOmOw0DC5re6whiMe/IPvH9G3dFkmTNiKjPl1u/wsv8EIMBq.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const ButtonCopyFonts=getFonts(ButtonCopy);const enabledGestures={yfNiJ8SEa:{hover:true}};const serializationHash=\"framer-HVviN\";const variantClassNames={yfNiJ8SEa:\"framer-v-1hybk7g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,AIQ2qI_FQ:(_ref=title!==null&&title!==void 0?title:props.AIQ2qI_FQ)!==null&&_ref!==void 0?_ref:\"UEEK SQUADS\",Sv8kgEw_0:link!==null&&link!==void 0?link:props.Sv8kgEw_0};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AIQ2qI_FQ,Sv8kgEw_0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yfNiJ8SEa\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Sv8kgEw_0,nodeId:\"yfNiJ8SEa\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1hybk7g\",className,classNames)} framer-1yvowm4`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yfNiJ8SEa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"yfNiJ8SEa-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8oyhx\",\"data-styles-preset\":\"N7oQpXLp2\",children:\"UEEK SQUADS\"})}),className:\"framer-3cqg9j\",\"data-framer-appear-id\":\"3cqg9j\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"kt19cr9iZ\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:AIQ2qI_FQ,variants:{\"yfNiJ8SEa-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"yfNiJ8SEa-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8oyhx\",\"data-styles-preset\":\"N7oQpXLp2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"UEEK SQUADS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QLdADAiin\"},implicitPathVariables:undefined},{href:{webPageId:\"QLdADAiin\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)-0-48)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0jq6n-container\",layoutDependency:layoutDependency,layoutId:\"UU0OXDcBK-container\",style:{opacity:.5},variants:{\"yfNiJ8SEa-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(ButtonCopy,{height:\"100%\",id:\"UU0OXDcBK\",layoutId:\"UU0OXDcBK\",odrPlOAei:\"Book Consultation\",Sk3pAInqS:resolvedLinks[0],variant:\"p6_1ofe9W\",width:\"100%\",...addPropertyOverrides({\"yfNiJ8SEa-hover\":{Sk3pAInqS:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HVviN.framer-1yvowm4, .framer-HVviN .framer-1yvowm4 { display: block; }\",\".framer-HVviN.framer-1hybk7g { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-HVviN .framer-3cqg9j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HVviN .framer-1a0jq6n-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HVviN.framer-1hybk7g { gap: 0px; } .framer-HVviN.framer-1hybk7g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HVviN.framer-1hybk7g > :first-child { margin-left: 0px; } .framer-HVviN.framer-1hybk7g > :last-child { margin-right: 0px; } }\",\".framer-HVviN.framer-v-1hybk7g.hover.framer-1hybk7g { gap: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HVviN.framer-v-1hybk7g.hover.framer-1hybk7g { gap: 0px; } .framer-HVviN.framer-v-1hybk7g.hover.framer-1hybk7g > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-HVviN.framer-v-1hybk7g.hover.framer-1hybk7g > :first-child { margin-left: 0px; } .framer-HVviN.framer-v-1hybk7g.hover.framer-1hybk7g > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 156\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"LjorMfxd0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"AIQ2qI_FQ\":\"title\",\"Sv8kgEw_0\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhK25DqMi4=withCSS(Component,css,\"framer-HVviN\");export default FramerhK25DqMi4;FramerhK25DqMi4.displayName=\"link\";FramerhK25DqMi4.defaultProps={height:48,width:156};addPropertyControls(FramerhK25DqMi4,{AIQ2qI_FQ:{defaultValue:\"UEEK SQUADS\",displayTextArea:false,title:\"Title\",type:ControlType.String},Sv8kgEw_0:{title:\"Link\",type:ControlType.Link}});addFonts(FramerhK25DqMi4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhK25DqMi4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LjorMfxd0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"156\",\"framerVariables\":\"{\\\"AIQ2qI_FQ\\\":\\\"title\\\",\\\"Sv8kgEw_0\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e942a9a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={clVo9FyGm:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e942a9a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Cursor from\"#framer/local/canvasComponent/dgOn7twC8/dgOn7twC8.js\";import ButtonCopy2 from\"#framer/local/canvasComponent/H1zvm4j7z/H1zvm4j7z.js\";import Link1 from\"#framer/local/canvasComponent/hK25DqMi4/hK25DqMi4.js\";import CasesImg from\"#framer/local/canvasComponent/yoGOpvDQ8/yoGOpvDQ8.js\";import PlusAndClose from\"#framer/local/canvasComponent/ytPSxAJ1F/ytPSxAJ1F.js\";import Footer from\"#framer/local/canvasComponent/zfDrZLwjb/zfDrZLwjb.js\";import HeaderMenu from\"#framer/local/canvasComponent/ZNZ74iQOW/ZNZ74iQOW.js\";import Jobs from\"#framer/local/collection/Gk_rXsiQS/Gk_rXsiQS.js\";import Blog from\"#framer/local/collection/OIkj1Q9hU/OIkj1Q9hU.js\";import*as sharedStyle4 from\"#framer/local/css/hOtPewnJJ/hOtPewnJJ.js\";import*as sharedStyle2 from\"#framer/local/css/I5s_zS82w/I5s_zS82w.js\";import*as sharedStyle5 from\"#framer/local/css/MJHpvdyGk/MJHpvdyGk.js\";import*as sharedStyle from\"#framer/local/css/O7mLXxe_X/O7mLXxe_X.js\";import*as sharedStyle3 from\"#framer/local/css/RlVdbeJFZ/RlVdbeJFZ.js\";import*as sharedStyle1 from\"#framer/local/css/TelkP3PEH/TelkP3PEH.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderMenuFonts=getFonts(HeaderMenu);const PlusAndCloseFonts=getFonts(PlusAndClose);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithFX=withFX(motion.div);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const Link1Fonts=getFonts(Link1);const CasesImgFonts=getFonts(CasesImg);const TickerFonts=getFonts(Ticker);const ButtonCopy2Fonts=getFonts(ButtonCopy2);const Ticker1Fonts=getFonts(Ticker1);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={cJ4PZdfSF:\"(min-width: 810px) and (max-width: 1279px)\",CuTxoGRVr:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1280px) and (max-width: 2723px)\",ylwRFcgcq:\"(min-width: 2724px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-upNua\";const variantClassNames={cJ4PZdfSF:\"framer-v-1ue7oab\",CuTxoGRVr:\"framer-v-g0tm72\",WQLkyLRf1:\"framer-v-72rtr7\",ylwRFcgcq:\"framer-v-1iauezo\"};const transition1={damping:30,delay:0,mass:1,stiffness:160,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={damping:30,delay:0,mass:1,stiffness:220,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:716};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:716};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:150};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={damping:30,delay:0,mass:1,stiffness:120,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition5={delay:0,duration:12,ease:[0,0,1,1],type:\"tween\"};const animation9={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition6={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition7={damping:70,delay:.9,mass:1,stiffness:400,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"short\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Breakpoint:\"ylwRFcgcq\",Desktop:\"WQLkyLRf1\",Phone:\"CuTxoGRVr\",Tablet:\"cJ4PZdfSF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"aVBKAzqFM\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,q6wyKlkO2Qzs1r3lgm,HB77IOfF5Qzs1r3lgm,MUgju5YguQzs1r3lgm,Wg17JzGycQzs1r3lgm,idQzs1r3lgm,jz0woQRTCTegB7U4kL,NOvHkdvOmTegB7U4kL,C0licTbNmTegB7U4kL,dQKnH4CXgTegB7U4kL,i3LHxedeETegB7U4kL,idTegB7U4kL,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const kO3dkXtbL3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const k3C6KlFnd1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CuTxoGRVr\")return false;return true;};const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({\"1scj6e5\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(28, 28, 28); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1scj6e5\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i0bdlk-container\",id:\"i0bdlk\",layoutScroll:true,nodeId:\"kSsfP68vx\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{variant:\"P3k0gg_jY\"}},children:/*#__PURE__*/_jsx(HeaderMenu,{G7WQbmVw7:\"WHATSAPP \u2014 UEEK\",height:\"100%\",id:\"kSsfP68vx\",kO3dkXtbL:kO3dkXtbL3bnx0g({overlay}),layoutId:\"kSsfP68vx\",PxfNKjx67:true,Qu9JHaJN1:\"VEM CONVERSAR\",style:{width:\"100%\"},variant:\"MA9RZ7Ac6\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xgcsl7\"),\"data-framer-portal-id\":\"i0bdlk\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"a9TmuoTRq\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation2,className:cx(scopingClassNames,\"framer-18ce6xq\"),\"data-framer-name\":\"Menu\",\"data-framer-portal-id\":\"i0bdlk\",exit:animation1,initial:animation3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tge5li-container\",inComponentSlot:true,nodeId:\"HUgo24tyQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PlusAndClose,{height:\"100%\",id:\"HUgo24tyQ\",k3C6KlFnd:k3C6KlFnd1wnntms({overlay}),layoutId:\"HUgo24tyQ\",style:{height:\"100%\",width:\"100%\"},variant:\"FOWetTljD\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q0i978\",\"data-framer-name\":\"links\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zuSWDVuBG\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"HOME\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zuSWDVuBG\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"HOME\"})})})}),className:\"framer-1qknsgv\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YEbz8f3mX\"},motionChild:true,nodeId:\"VHX2nNSLf\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"SQUADS\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YEbz8f3mX\"},motionChild:true,nodeId:\"VHX2nNSLf\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"SQUADS\"})})})}),className:\"framer-11vo8vf\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tuDVZHBMl\"},motionChild:true,nodeId:\"Dyy9YrEYF\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"LAB\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tuDVZHBMl\"},motionChild:true,nodeId:\"Dyy9YrEYF\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"LAB\"})})})}),className:\"framer-15biiy3\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YzKHhGXbt\"},motionChild:true,nodeId:\"W6Y8hgkZZ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CONNECT\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YzKHhGXbt\"},motionChild:true,nodeId:\"W6Y8hgkZZ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CONNECT\"})})})}),className:\"framer-111i7bt\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b0RKxOOD4\"},motionChild:true,nodeId:\"tPLEVYZpR\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"SOBRE N\\xd3S\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b0RKxOOD4\"},motionChild:true,nodeId:\"tPLEVYZpR\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"SOBRE N\\xd3S\"})})})}),className:\"framer-c3rpfz\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gb2QfOsHR\"},motionChild:true,nodeId:\"gNRz20Xkc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CASES\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gb2QfOsHR\"},motionChild:true,nodeId:\"gNRz20Xkc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CASES\"})})})}),className:\"framer-16obihu\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lejnn5jnT\"},motionChild:true,nodeId:\"bWJgiAh4E\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"BLOG\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lejnn5jnT\"},motionChild:true,nodeId:\"bWJgiAh4E\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"BLOG\"})})})}),className:\"framer-1pe6npu\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eUSmkxNOS\"},motionChild:true,nodeId:\"CyUu_StDN\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CARREIRAS\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eUSmkxNOS\"},motionChild:true,nodeId:\"CyUu_StDN\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CARREIRAS\"})})})}),className:\"framer-1s9zasg\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zb7QJzOLX\"},motionChild:true,nodeId:\"WujTflVpt\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CONTATO\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zb7QJzOLX\"},motionChild:true,nodeId:\"WujTflVpt\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jp6ptz\",\"data-styles-preset\":\"O7mLXxe_X\",children:\"CONTATO\"})})})}),className:\"framer-t4t7th\",exit:animation4,fonts:[\"GF;Montserrat-700\"],initial:animation6,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16p92o6\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwwgk1\",\"data-framer-name\":\"TXT\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:70,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-wc9fos\",\"data-framer-name\":\"Line #1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u2014 FULL SQUAD \"})})},ylwRFcgcq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u2014 FULL SQUAD \"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u2014 FULL SQUAD \"})}),className:\"framer-jsdoxr\",\"data-framer-appear-id\":\"jsdoxr\",fonts:[\"GF;Montserrat-900\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ersowo\",\"data-border\":true,\"data-framer-name\":\"BADGE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cydooh\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:119,intrinsicWidth:119,svg:'<svg width=\"119\" height=\"119\" viewBox=\"0 0 119 119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M57.5077 2.59054C57.7222 0.158136 61.2777 0.158134 61.4922 2.59054L64.9434 41.7242C65.0855 43.3349 66.9809 44.12 68.2202 43.0815L98.3323 17.8502C100.204 16.2819 102.718 18.796 101.15 20.6677L75.9185 50.7798C74.88 52.0191 75.6651 53.9145 77.2757 54.0566L116.409 57.5078C118.842 57.7223 118.842 61.2778 116.409 61.4923L77.2757 64.9435C75.6651 65.0856 74.88 66.981 75.9185 68.2203L101.15 98.3324C102.718 100.204 100.204 102.718 98.3323 101.15L68.2202 75.9186C66.9809 74.8801 65.0855 75.6652 64.9434 77.2759L61.4922 116.41C61.2777 118.842 57.7222 118.842 57.5077 116.41L54.0564 77.2759C53.9144 75.6652 52.019 74.8801 50.7797 75.9186L20.6676 101.15C18.7959 102.718 16.2818 100.204 17.8501 98.3324L43.0814 68.2203C44.1199 66.981 43.3348 65.0856 41.7241 64.9435L2.59042 61.4923C0.158014 61.2778 0.158012 57.7223 2.59041 57.5078L41.7241 54.0566C43.3348 53.9145 44.1199 52.0191 43.0814 50.7798L17.8501 20.6677C16.2818 18.796 18.7959 16.2819 20.6676 17.8502L50.7797 43.0815C52.019 44.12 53.9144 43.3349 54.0564 41.7242L57.5077 2.59054Z\" fill=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PARA BIG TECHS\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PARA BIG TECHS\"})}),className:\"framer-qcpc1y\",\"data-framer-appear-id\":\"qcpc1y\",fonts:[\"GF;Syne-700\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-191qk49\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:119,intrinsicWidth:119,svg:'<svg width=\"119\" height=\"119\" viewBox=\"0 0 119 119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M57.5077 2.59054C57.7222 0.158136 61.2777 0.158134 61.4922 2.59054L64.9434 41.7242C65.0855 43.3349 66.9809 44.12 68.2202 43.0815L98.3323 17.8502C100.204 16.2819 102.718 18.796 101.15 20.6677L75.9185 50.7798C74.88 52.0191 75.6651 53.9145 77.2757 54.0566L116.409 57.5078C118.842 57.7223 118.842 61.2778 116.409 61.4923L77.2757 64.9435C75.6651 65.0856 74.88 66.981 75.9185 68.2203L101.15 98.3324C102.718 100.204 100.204 102.718 98.3323 101.15L68.2202 75.9186C66.9809 74.8801 65.0855 75.6652 64.9434 77.2759L61.4922 116.41C61.2777 118.842 57.7222 118.842 57.5077 116.41L54.0564 77.2759C53.9144 75.6652 52.019 74.8801 50.7797 75.9186L20.6676 101.15C18.7959 102.718 16.2818 100.204 17.8501 98.3324L43.0814 68.2203C44.1199 66.981 43.3348 65.0856 41.7241 64.9435L2.59042 61.4923C0.158014 61.2778 0.158012 57.7223 2.59041 57.5078L41.7241 54.0566C43.3348 53.9145 44.1199 52.0191 43.0814 50.7798L17.8501 20.6677C16.2818 18.796 18.7959 16.2819 20.6676 17.8502L50.7797 43.0815C52.019 44.12 53.9144 43.3349 54.0564 41.7242L57.5077 2.59054Z\" fill=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:70,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1350,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-ow05rq\",\"data-framer-name\":\"Line #2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:359,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h53vcy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h6nb6u\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:119,intrinsicWidth:119,svg:'<svg width=\"119\" height=\"119\" viewBox=\"0 0 119 119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M57.5077 2.59054C57.7222 0.158136 61.2777 0.158134 61.4922 2.59054L64.9434 41.7242C65.0855 43.3349 66.9809 44.12 68.2202 43.0815L98.3323 17.8502C100.204 16.2819 102.718 18.796 101.15 20.6677L75.9185 50.7798C74.88 52.0191 75.6651 53.9145 77.2757 54.0566L116.409 57.5078C118.842 57.7223 118.842 61.2778 116.409 61.4923L77.2757 64.9435C75.6651 65.0856 74.88 66.981 75.9185 68.2203L101.15 98.3324C102.718 100.204 100.204 102.718 98.3323 101.15L68.2202 75.9186C66.9809 74.8801 65.0855 75.6652 64.9434 77.2759L61.4922 116.41C61.2777 118.842 57.7222 118.842 57.5077 116.41L54.0564 77.2759C53.9144 75.6652 52.019 74.8801 50.7797 75.9186L20.6676 101.15C18.7959 102.718 16.2818 100.204 17.8501 98.3324L43.0814 68.2203C44.1199 66.981 43.3348 65.0856 41.7241 64.9435L2.59042 61.4923C0.158014 61.2778 0.158012 57.7223 2.59041 57.5078L41.7241 54.0566C43.3348 53.9145 44.1199 52.0191 43.0814 50.7798L17.8501 20.6677C16.2818 18.796 18.7959 16.2819 20.6676 17.8502L50.7797 43.0815C52.019 44.12 53.9144 43.3349 54.0564 41.7242L57.5077 2.59054Z\" fill=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PRODUTOS DIGITAIS\"})})},ylwRFcgcq:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PRODUTOS DIGITAIS\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC05MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PRODUTOS DIGITAIS\"})}),className:\"framer-1wkp958\",\"data-framer-appear-id\":\"1wkp958\",fonts:[\"GF;Montserrat-900\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o1ulpy\",\"data-framer-name\":\"Line #3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0xMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130.1%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UI/UX \u2014 DEV \u2014 QA \u2014\\xa0AI\"})})},CuTxoGRVr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0xMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UI/UX - DEV - QA -\\xa0AI\"})})},ylwRFcgcq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0xMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130.1%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UI/UX \u2014 DEV \u2014 QA \u2014\\xa0AI\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:70,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1400,y:0}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0xMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"100\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130.1%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UI/UX \u2014 DEV \u2014 QA \u2014\\xa0AI\"})}),className:\"framer-t51vrb\",\"data-framer-appear-id\":\"t51vrb\",fonts:[\"GF;Montserrat-100\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9j5vee\",\"data-framer-name\":\"Line #4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\\xf3s gerimos times & talentos apaixonados por produtos digitais\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"N\\xf3s gerimos times & talentos apaixonados por produtos digitais\"})}),className:\"framer-iw8hzq\",\"data-framer-appear-id\":\"iw8hzq\",fonts:[\"GF;Montserrat-regular\"],initial:animation12,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-dglscv\",\"data-framer-name\":\"Portifa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-107k4bd\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lep2dh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{animate:animation7,initial:animation10}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"UEEK XP 25\"})}),className:\"framer-pxudvf\",\"data-framer-appear-id\":\"pxudvf\",fonts:[\"Inter\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcg2y0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1na2rn8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a5gymn\",\"data-styles-preset\":\"I5s_zS82w\",children:\"Voc\\xea viu?\"})}),className:\"framer-o8n4un\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aconteceu em maio o UEEK EXPERIENCE 25. Dois dias de imers\\xe3o para falarmos sobre branding e constru\\xe7\\xe3o de marcas fortes, tend\\xeancias em gest\\xe3o de produtos, estrat\\xe9gias de vendas remotas, inova\\xe7\\xe3o em experi\\xeancia do cliente e os bastidores da criatividade em ambientes de alta press\\xe3o.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Confere um pouco do que foi o UKXP25:\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Aconteceu em maio o UEEK EXPERIENCE 25, um evento pensado para conectar a nossa regi\\xe3o \\xe0s experi\\xeancias e viv\\xeancias dos grandes polos de inova\\xe7\\xe3o do mercado global.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Em dois dias de imers\\xe3o exploramos temas que impactam diretamente o futuro das empresas e carreiras: branding e constru\\xe7\\xe3o de marcas fortes, tend\\xeancias em gest\\xe3o de produtos, estrat\\xe9gias de vendas remotas, inova\\xe7\\xe3o em experi\\xeancia do cliente e os bastidores da criatividade em ambientes de alta press\\xe3o.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Confere um pouco do que foi o UKXP25:\"})]}),className:\"framer-1jwzj2d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ikgjel-container\",isModuleExternal:true,nodeId:\"fu6f_n6Qm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"fu6f_n6Qm\",isMixedBorderRadius:false,isRed:false,layoutId:\"fu6f_n6Qm\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://youtu.be/DNZxfNqDICc\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-w4bxtf\",\"data-framer-name\":\"Portifa\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezjads hidden-g0tm72\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i6j8rr\",\"data-framer-name\":\"line #1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192os2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.17em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 115, 115)\",\"--framer-text-transform\":\"uppercase\"},children:\"PRODUTOS DIGITAIS DESDE 2012\"})}),className:\"framer-1dd6jda\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.17em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 115, 115)\",\"--framer-text-transform\":\"uppercase\"},children:\"2025\"})}),className:\"framer-7v9e92\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.17em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(115, 115, 115)\",\"--framer-text-transform\":\"uppercase\"},children:\"UEEK DIGITAL \u2022 2025\"})}),className:\"framer-1ev7pm7\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gawq7t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xpe1hb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{animate:animation7,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"Produtos digitais desde 2012\"})}),initial:animation10}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"N\\xf3s somos a UEEK\"})}),className:\"framer-1em1c6l\",\"data-framer-appear-id\":\"1em1c6l\",fonts:[\"Inter\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6zv0m5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqmlfm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a5gymn\",\"data-styles-preset\":\"I5s_zS82w\",children:\"Software house\"})}),className:\"framer-1v9y150\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Criamos e desenvolvemos sites, sistemas personalizados e aplicativos sob medida com design de alto n\\xedvel. De MVPs a produtos completos - prontos para escalar - com c\\xf3digo limpo e foco na experi\\xeancia de usu\\xe1rio, temos um time que abrange a todas as etapas na cria\\xe7\\xe3o de produtos digitais. Somos o seu parceiro estrat\\xe9gico da idea\\xe7\\xe3o at\\xe9 o lan\\xe7amento.\\xa0\"})}),className:\"framer-1au5atd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jy8etw\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1in96h2\",\"data-framer-name\":\"SQUAD\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mypzn8\",\"data-border\":true,\"data-framer-name\":\"Badge\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SITES RESPONSIVOS\"})}),className:\"framer-tf79rm\",\"data-framer-appear-id\":\"tf79rm\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Sites que refletem a sua identidade visual. Tecnologia, navega\\xe7\\xe3o intuitiva e alto desempenho.\"})}),className:\"framer-1pnubqc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uyy21j\",\"data-framer-name\":\"SQUAD\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10danxa\",\"data-border\":true,\"data-framer-name\":\"Badge\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SISTEMAS WEB\"})}),className:\"framer-bbjy21\",\"data-framer-appear-id\":\"bbjy21\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Sistemas robustos e escal\\xe1veis para otimizar processos, aumentar a efici\\xeancia e facilitar decis\\xf5es.\"})}),className:\"framer-1243dxe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14hn63u\",\"data-framer-name\":\"SQUAD\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1898w\",\"data-border\":true,\"data-framer-name\":\"Badge\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"APLICATIVOS M\\xd3VEIS\"})}),className:\"framer-1koewaj\",\"data-framer-appear-id\":\"1koewaj\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Experi\\xeancias flu\\xeddas conectando servi\\xe7os digitais a usu\\xe1rios. Seguran\\xe7a digital, desempenho e prop\\xf3sito.\"})}),className:\"framer-vvixpf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9evd84 hidden-g0tm72\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wten28\",\"data-framer-name\":\"Video h3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ara6gv-container\",isModuleExternal:true,nodeId:\"vgsdStFAL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vgsdStFAL\",isMixedBorderRadius:false,layoutId:\"vgsdStFAL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/G2DuMb8RRobm9PpmHWbjqLBnDs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/modules/assets/sdw2MiwfX8kE86eVM9cS85drJqo~jByeSC37unBqQHViiwWbauXo7_4XbguqlMgSaBNqdjs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvjhes\",\"data-framer-name\":\"Video h4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rzsnqp-container\",isModuleExternal:true,nodeId:\"SWfsUrnp_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"SWfsUrnp_\",isMixedBorderRadius:false,layoutId:\"SWfsUrnp_\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/C1d4mCIE3hugnbmVrSkxP8MtN8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/modules/assets/sdw2MiwfX8kE86eVM9cS85drJqo~jByeSC37unBqQHViiwWbauXo7_4XbguqlMgSaBNqdjs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lj2sp3\",\"data-framer-name\":\"Video h5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10f0ar8-container\",isModuleExternal:true,nodeId:\"A987yeGQO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"A987yeGQO\",isMixedBorderRadius:false,layoutId:\"A987yeGQO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/gBg6uqwDnZusD7jccag42aCtio.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/modules/assets/sdw2MiwfX8kE86eVM9cS85drJqo~jByeSC37unBqQHViiwWbauXo7_4XbguqlMgSaBNqdjs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1swxq73\",\"data-framer-name\":\"projetos galeria\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyoag0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130.1%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"10+ anos de experi\\xeancia em projetos digitais para o mundo todo. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"\uD83C\uDDE7\uD83C\uDDF7 \uD83C\uDDE8\uD83C\uDDE6 \uD83C\uDDF8\uD83C\uDDE6 \uD83C\uDDF5\uD83C\uDDF9 \uD83C\uDDE9\uD83C\uDDEA \uD83C\uDDFA\uD83C\uDDF8 \uD83C\uDDED\uD83C\uDDF7\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"130.1%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"10+ anos de experi\\xeancia em projetos digitais para o mundo todo. \",/*#__PURE__*/_jsx(\"br\",{}),\"\uD83C\uDDE7\uD83C\uDDF7 \uD83C\uDDE8\uD83C\uDDE6 \uD83C\uDDF8\uD83C\uDDE6 \uD83C\uDDF5\uD83C\uDDF9 \uD83C\uDDE9\uD83C\uDDEA \uD83C\uDDFA\uD83C\uDDF8 \uD83C\uDDED\uD83C\uDDF7\"]})}),className:\"framer-1wt3frc\",\"data-framer-appear-id\":\"1wt3frc\",fonts:[\"GF;Montserrat-500\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qgt4n7\",\"data-framer-name\":\"Cases\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-13tag4p\",\"data-framer-name\":\"Portifa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-184wep5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3yq0m2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ipi4hk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwoua2\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"Projetos Digitais\"})}),className:\"framer-qrneh4\",\"data-framer-appear-id\":\"qrneh4\",fonts:[\"Inter\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gb2QfOsHR\"},implicitPathVariables:undefined},{href:{webPageId:\"gb2QfOsHR\"},implicitPathVariables:undefined},{href:{webPageId:\"gb2QfOsHR\"},implicitPathVariables:undefined},{href:{webPageId:\"gb2QfOsHR\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{y:(componentViewport?.y||0)+0+4904.675+50+0+50+0+0+0+0+0+0+2.02},CuTxoGRVr:{y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+4744.13+50+0+50+0+0+0+0+0+0+2.02}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+4604.08+50+0+50+0+0+0+0+0+0+2.02,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bu3u8n-container\",nodeId:\"U2U8vG9wR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{Sv8kgEw_0:resolvedLinks[1]},CuTxoGRVr:{Sv8kgEw_0:resolvedLinks[2]},ylwRFcgcq:{Sv8kgEw_0:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Link1,{AIQ2qI_FQ:getLocalizedValue(\"v29\",activeLocale)??\"MAIS PROJETOS\",height:\"100%\",id:\"U2U8vG9wR\",layoutId:\"U2U8vG9wR\",Sv8kgEw_0:resolvedLinks[0],width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iuwhvp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{query:{from:{alias:\"Qzs1r3lgm\",data:Jobs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Qzs1r3lgm\",name:\"q6wyKlkO2\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"HB77IOfF5\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"MUgju5Ygu\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"Wg17JzGyc\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Qzs1r3lgm\",data:Jobs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"Qzs1r3lgm\",name:\"q6wyKlkO2\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"HB77IOfF5\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"MUgju5Ygu\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"Wg17JzGyc\",type:\"Identifier\"},{collection:\"Qzs1r3lgm\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HB77IOfF5:HB77IOfF5Qzs1r3lgm,id:idQzs1r3lgm,MUgju5Ygu:MUgju5YguQzs1r3lgm,q6wyKlkO2:q6wyKlkO2Qzs1r3lgm,Wg17JzGyc:Wg17JzGycQzs1r3lgm},index)=>{q6wyKlkO2Qzs1r3lgm??=\"\";MUgju5YguQzs1r3lgm??=\"\";Wg17JzGycQzs1r3lgm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Qzs1r3lgm-${idQzs1r3lgm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{q6wyKlkO2:q6wyKlkO2Qzs1r3lgm},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{q6wyKlkO2:q6wyKlkO2Qzs1r3lgm},webPageId:\"xJNbv0DoP\"},motionChild:true,nodeId:\"CR6Jruegp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-123ap1l framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{height:221,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 50px) / 3, 50px) * 1.0023)`,y:(componentViewport?.y||0)+0+4904.675+50+0+50+0+0+92.04+0+0+0+0},CuTxoGRVr:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1440px), 50px)`,y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+4744.13+50+0+50+0+0+92.04+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 50px) / 3, 50px)`,y:(componentViewport?.y||0)+0+4604.08+50+0+50+0+0+92.04+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h6zuk9-container\",nodeId:\"mtU87bzHq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CasesImg,{height:\"100%\",id:\"mtU87bzHq\",IosDADIBG:toResponsiveImage(HB77IOfF5Qzs1r3lgm),layoutId:\"mtU87bzHq\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ibhqzx\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a5gymn\",\"data-styles-preset\":\"I5s_zS82w\",children:\"Magazord\"})}),className:\"framer-1c62rk8\",\"data-framer-appear-id\":\"1c62rk8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation8,optimized:true,style:{transformPerspective:1200},text:MUgju5YguQzs1r3lgm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dirflb\",\"data-styles-preset\":\"hOtPewnJJ\",children:\"Website Responsivo\"})}),className:\"framer-1dcsy7s\",\"data-framer-name\":\"Tipo de projeto\",fonts:[\"Inter\"],text:Wg17JzGycQzs1r3lgm,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idQzs1r3lgm);})})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mfzwz6\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10wba9e\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9xf0ad-container\",isModuleExternal:true,nodeId:\"U7GkrpV0r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:110,height:\"100%\",hoverFactor:1,id:\"U7GkrpV0r\",layoutId:\"U7GkrpV0r\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:316.5,pixelHeight:202,pixelWidth:633,sizes:\"90.8762px\",src:\"https://framerusercontent.com/images/hXRHHox7Erbyu3M92qEBYYjXsdU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hXRHHox7Erbyu3M92qEBYYjXsdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hXRHHox7Erbyu3M92qEBYYjXsdU.png 633w\"},className:\"framer-1lmf90t\",\"data-framer-name\":\"Group_694\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:117,intrinsicWidth:505.5,pixelHeight:234,pixelWidth:1011,sizes:\"142.5769px\",src:\"https://framerusercontent.com/images/6tNUOLg571KQBJUa3nAXHAid6u8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6tNUOLg571KQBJUa3nAXHAid6u8.png?scale-down-to=512 512w,https://framerusercontent.com/images/6tNUOLg571KQBJUa3nAXHAid6u8.png 1011w\"},className:\"framer-mw5x4i\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:236,pixelHeight:472,pixelWidth:472,src:\"https://framerusercontent.com/images/Mdhb12qHj6AKEodEiaLZ6K9SP9E.png\"},className:\"framer-14bj83o\",\"data-framer-name\":\"new_masters_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.5,intrinsicWidth:298.5,pixelHeight:415,pixelWidth:597,sizes:\"70.4892px\",src:\"https://framerusercontent.com/images/Lr78dfIptmBy9M1K9Un22d0hqJw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Lr78dfIptmBy9M1K9Un22d0hqJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lr78dfIptmBy9M1K9Un22d0hqJw.png 597w\"},className:\"framer-fsmi1z\",\"data-framer-name\":\"KLABIN_BRANCO_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:198,intrinsicWidth:239.5,pixelHeight:396,pixelWidth:479,src:\"https://framerusercontent.com/images/314eA37DUp79UaA3C1eMWFrhKY.png\"},className:\"framer-ri783r\",\"data-framer-name\":\"image_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:184,intrinsicWidth:394,pixelHeight:368,pixelWidth:788,sizes:\"85.6522px\",src:\"https://framerusercontent.com/images/UsRs0iG2HfbLPrI6ZQ9EgbQg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UsRs0iG2HfbLPrI6ZQ9EgbQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsRs0iG2HfbLPrI6ZQ9EgbQg.png 788w\"},className:\"framer-gjwtag\",\"data-framer-name\":\"Frame_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:149,intrinsicWidth:298.5,pixelHeight:298,pixelWidth:597,sizes:\"70.1174px\",src:\"https://framerusercontent.com/images/ofk9pXkpupRAgXH0zPxeYKrvNSI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ofk9pXkpupRAgXH0zPxeYKrvNSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofk9pXkpupRAgXH0zPxeYKrvNSI.png 597w\"},className:\"framer-mv7j7l\",\"data-framer-name\":\"Group_693\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:456.5,pixelHeight:161,pixelWidth:913,sizes:\"102.0745px\",src:\"https://framerusercontent.com/images/Bcwdg4QIaIPoagsykR0pa0c2pHk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Bcwdg4QIaIPoagsykR0pa0c2pHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bcwdg4QIaIPoagsykR0pa0c2pHk.png 913w\"},className:\"framer-1wl5ubj\",\"data-framer-name\":\"Frame\"})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cqp3d1\",\"data-framer-name\":\"Como atuamos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-za1hzv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7knxe\",\"data-framer-name\":\"line #1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqa1lk\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"Como fazemos\"})}),className:\"framer-14hx729\",\"data-framer-appear-id\":\"14hx729\",fonts:[\"Inter\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Experi\\xeancias moldadas \\xe0s suas necessidades reais.\"})}),className:\"framer-aypuip\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dm7eoz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1byjt9e\",\"data-framer-name\":\"SQUAD\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19eqx7w\",\"data-border\":true,\"data-framer-name\":\"Badge\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wedz9k\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 19.245 5.761 L 19.245 1 L 0 1 L 0 20.239 L 4.761 20.239 L 4.761 25 L 24 25 L 24 5.761 Z M 19.245 4.761 C 19.245 12.759 12.765 19.239 4.767 19.239 C 4.761 11.247 11.247 4.761 19.245 4.761 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10948627404,withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UEEK SQUAD\"})}),className:\"framer-ef53i0\",\"data-framer-appear-id\":\"ef53i0\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Gerimos equipes multidisciplinares orientadas a projetos de maior imers\\xe3o. \"})}),className:\"framer-bz0645\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YEbz8f3mX\"},implicitPathVariables:undefined},{href:{webPageId:\"YEbz8f3mX\"},implicitPathVariables:undefined},{href:{webPageId:\"YEbz8f3mX\"},implicitPathVariables:undefined},{href:{webPageId:\"YEbz8f3mX\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`,y:(componentViewport?.y||0)+0+6138.715+0+0+30+427.04+0+0+0+266},CuTxoGRVr:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1440px)`,y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+6216.17+0+0+30+427.04+0+0+266}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 140px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6076.12+0+0+30+427.04+0+0+266,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sg6fk6-container\",nodeId:\"AGZ0zOtmZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{Sv8kgEw_0:resolvedLinks1[1]},CuTxoGRVr:{Sv8kgEw_0:resolvedLinks1[2]},ylwRFcgcq:{Sv8kgEw_0:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Link1,{AIQ2qI_FQ:\"O QUE S\\xc3O SQUADS?\",height:\"100%\",id:\"AGZ0zOtmZ\",layoutId:\"AGZ0zOtmZ\",style:{width:\"100%\"},Sv8kgEw_0:resolvedLinks1[0],width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mlkj0a\",\"data-framer-name\":\"LAB\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p4xwk4\",\"data-border\":true,\"data-framer-name\":\"BADGE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1i1qc0v\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 21.939 11 C 18.484 9.87 15.778 5.538 15.074 0 C 14.572 3.947 13.052 7.281 10.97 9.282 C 8.887 7.281 7.367 3.952 6.865 0 C 6.161 5.538 3.456 9.87 0 11 C 3.456 12.13 6.161 16.462 6.865 22 C 7.367 18.053 8.887 14.719 10.97 12.718 C 13.052 14.719 14.572 18.048 15.074 22 C 15.778 16.462 18.484 12.13 21.939 11 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11905375678,withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UEEK LAB\"})}),className:\"framer-14z4phz\",\"data-framer-appear-id\":\"14z4phz\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Times talentosos prontos para resolver demandas espec\\xedficas de Big Techs e SaaS. \"})}),className:\"framer-re87n2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tuDVZHBMl\"},implicitPathVariables:undefined},{href:{webPageId:\"tuDVZHBMl\"},implicitPathVariables:undefined},{href:{webPageId:\"tuDVZHBMl\"},implicitPathVariables:undefined},{href:{webPageId:\"tuDVZHBMl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`,y:(componentViewport?.y||0)+0+6138.715+0+0+30+427.04+0+364+0+266},CuTxoGRVr:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1440px)`,y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+6216.17+0+0+30+427.04+0+0+266}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 140px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6076.12+0+0+30+427.04+0+0+266,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wm1ydm-container\",nodeId:\"yrwaRhKi8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{Sv8kgEw_0:resolvedLinks2[1]},CuTxoGRVr:{Sv8kgEw_0:resolvedLinks2[2]},ylwRFcgcq:{Sv8kgEw_0:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Link1,{AIQ2qI_FQ:\"COMO O LAB FUNCIONA?\",height:\"100%\",id:\"yrwaRhKi8\",layoutId:\"yrwaRhKi8\",style:{width:\"100%\"},Sv8kgEw_0:resolvedLinks2[0],width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zil7x4\",\"data-framer-name\":\"CONNECT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijbc6j\",\"data-border\":true,\"data-framer-name\":\"BADGE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1krsbx2\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:119,intrinsicWidth:119,svg:'<svg width=\"119\" height=\"119\" viewBox=\"0 0 119 119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M57.5077 2.59054C57.7222 0.158136 61.2777 0.158134 61.4922 2.59054L64.9434 41.7242C65.0855 43.3349 66.9809 44.12 68.2202 43.0815L98.3323 17.8502C100.204 16.2819 102.718 18.796 101.15 20.6677L75.9185 50.7798C74.88 52.0191 75.6651 53.9145 77.2757 54.0566L116.409 57.5078C118.842 57.7223 118.842 61.2778 116.409 61.4923L77.2757 64.9435C75.6651 65.0856 74.88 66.981 75.9185 68.2203L101.15 98.3324C102.718 100.204 100.204 102.718 98.3323 101.15L68.2202 75.9186C66.9809 74.8801 65.0855 75.6652 64.9434 77.2759L61.4922 116.41C61.2777 118.842 57.7222 118.842 57.5077 116.41L54.0564 77.2759C53.9144 75.6652 52.019 74.8801 50.7797 75.9186L20.6676 101.15C18.7959 102.718 16.2818 100.204 17.8501 98.3324L43.0814 68.2203C44.1199 66.981 43.3348 65.0856 41.7241 64.9435L2.59042 61.4923C0.158014 61.2778 0.158012 57.7223 2.59041 57.5078L41.7241 54.0566C43.3348 53.9145 44.1199 52.0191 43.0814 50.7798L17.8501 20.6677C16.2818 18.796 18.7959 16.2819 20.6676 17.8502L50.7797 43.0815C52.019 44.12 53.9144 43.3349 54.0564 41.7242L57.5077 2.59054Z\" fill=\"#D9D9D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UEEK CONNECT\"})}),className:\"framer-ct2u3r\",\"data-framer-appear-id\":\"ct2u3r\",fonts:[\"GF;Montserrat-600\"],initial:animation8,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Consultorias para inova\\xe7\\xe3o em neg\\xf3cios. Forte impulso na digitaliza\\xe7\\xe3o empresarial.\"})}),className:\"framer-dyd8jq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YzKHhGXbt\"},implicitPathVariables:undefined},{href:{webPageId:\"YzKHhGXbt\"},implicitPathVariables:undefined},{href:{webPageId:\"YzKHhGXbt\"},implicitPathVariables:undefined},{href:{webPageId:\"YzKHhGXbt\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1440px)`,y:(componentViewport?.y||0)+0+6138.715+0+0+30+427.04+0+728+0+267},CuTxoGRVr:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1440px)`,y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+6216.17+0+0+30+427.04+0+0+267}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 140px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6076.12+0+0+30+427.04+0+0+267,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16qf84w-container\",nodeId:\"pnr2I1y9Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{Sv8kgEw_0:resolvedLinks3[1]},CuTxoGRVr:{Sv8kgEw_0:resolvedLinks3[2]},ylwRFcgcq:{Sv8kgEw_0:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Link1,{AIQ2qI_FQ:\"CONECTE-SE COM A UEEK\",height:\"100%\",id:\"pnr2I1y9Z\",layoutId:\"pnr2I1y9Z\",style:{width:\"100%\"},Sv8kgEw_0:resolvedLinks3[0],width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a193dn\",\"data-framer-name\":\"Cases\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-xa7jr7\",\"data-framer-name\":\"Portifa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ossxek\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckjymo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e5hh3y\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99dqxi\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"Blog\"})}),className:\"framer-1hwvk43\",\"data-framer-appear-id\":\"1hwvk43\",fonts:[\"Inter\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lejnn5jnT\"},implicitPathVariables:undefined},{href:{webPageId:\"lejnn5jnT\"},implicitPathVariables:undefined},{href:{webPageId:\"lejnn5jnT\"},implicitPathVariables:undefined},{href:{webPageId:\"lejnn5jnT\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{y:(componentViewport?.y||0)+0+7718.755+0+0+50+0+0+0+0+0+0+2.02},CuTxoGRVr:{y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+7068.21+0+0+50+0+0+0+0+0+0+2.02}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6928.16+0+0+50+0+0+0+0+0+0+2.02,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a4vt4-container\",nodeId:\"sRtaoeTYG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{Sv8kgEw_0:resolvedLinks4[1]},CuTxoGRVr:{Sv8kgEw_0:resolvedLinks4[2]},ylwRFcgcq:{Sv8kgEw_0:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(Link1,{AIQ2qI_FQ:getLocalizedValue(\"v35\",activeLocale)??\"MAIS ARTIGOS\",height:\"100%\",id:\"sRtaoeTYG\",layoutId:\"sRtaoeTYG\",Sv8kgEw_0:resolvedLinks4[0],width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1swo070\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{query:{from:{alias:\"TegB7U4kL\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"TegB7U4kL\",name:\"jz0woQRTC\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"NOvHkdvOm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"C0licTbNm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"dQKnH4CXg\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"i3LHxedeE\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"id\",type:\"Identifier\"}]}},CuTxoGRVr:{query:{from:{alias:\"TegB7U4kL\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"TegB7U4kL\",name:\"jz0woQRTC\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"NOvHkdvOm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"C0licTbNm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"dQKnH4CXg\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"i3LHxedeE\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TegB7U4kL\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"TegB7U4kL\",name:\"jz0woQRTC\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"NOvHkdvOm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"C0licTbNm\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"dQKnH4CXg\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"i3LHxedeE\",type:\"Identifier\"},{collection:\"TegB7U4kL\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({C0licTbNm:C0licTbNmTegB7U4kL,dQKnH4CXg:dQKnH4CXgTegB7U4kL,i3LHxedeE:i3LHxedeETegB7U4kL,id:idTegB7U4kL,jz0woQRTC:jz0woQRTCTegB7U4kL,NOvHkdvOm:NOvHkdvOmTegB7U4kL},index1)=>{jz0woQRTCTegB7U4kL??=\"\";C0licTbNmTegB7U4kL??=\"\";i3LHxedeETegB7U4kL??=\"\";const textContent=toDateString(dQKnH4CXgTegB7U4kL,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`TegB7U4kL-${idTegB7U4kL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jz0woQRTC:jz0woQRTCTegB7U4kL},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{jz0woQRTC:jz0woQRTCTegB7U4kL},webPageId:\"MamfoBrQF\"},motionChild:true,nodeId:\"GYJVFkw6h\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1tl5vdu framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 25px) / 2, 1px)`,y:(componentViewport?.y||0)+0+7718.755+0+0+50+0+0+152.04+0+0+0},CuTxoGRVr:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+7068.21+0+0+50+0+0+152.04+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1440px) - 50px) / 3, 1px)`,y:(componentViewport?.y||0)+0+6928.16+0+0+50+0+0+152.04+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tmjilr-container\",nodeId:\"O5K3hhPx7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CasesImg,{height:\"100%\",id:\"O5K3hhPx7\",IosDADIBG:toResponsiveImage(NOvHkdvOmTegB7U4kL),layoutId:\"O5K3hhPx7\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-58v9s\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a5gymn\",\"data-styles-preset\":\"I5s_zS82w\",children:\"Solu\\xe7\\xf5es Interativas: Quando Tecnologia e Pessoas se Conectam\"})}),className:\"framer-tp8bor\",\"data-framer-appear-id\":\"tp8bor\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation8,optimized:true,style:{transformPerspective:1200},text:C0licTbNmTegB7U4kL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6awkn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"2/28/24\"})}),className:\"framer-1ot8a58\",\"data-framer-name\":\"Tipo de projeto\",fonts:[\"GF;Montserrat-regular\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"\u2022\"})}),className:\"framer-5jwjqs\",\"data-framer-name\":\"Tipo de projeto\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"20 min\"})}),className:\"framer-fifpj4\",\"data-framer-name\":\"Tipo de projeto\",fonts:[\"GF;Montserrat-regular\"],text:i3LHxedeETegB7U4kL,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})},idTegB7U4kL);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8up66\",\"data-framer-name\":\"line #1\"})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1rs8zpx\",\"data-framer-name\":\"Forms \u2014 CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok49n0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dtc98p\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17masvj\",\"data-styles-preset\":\"TelkP3PEH\",children:\"Queremos entender a sua demanda digital.\"})}),className:\"framer-3o2q5c\",\"data-framer-appear-id\":\"3o2q5c\",fonts:[\"Inter\"],initial:animation10,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15icgxa\",\"data-styles-preset\":\"RlVdbeJFZ\",children:\"Ajudamos a transformar ideias inovadoras em realidade, corrigimos falhas em processos atrav\\xe9s de solu\\xe7\\xf5es digitais e desenhamos interfaces que encantam e engajam. Tudo desenvolvido em conformidade com a LGPD, para um crescimento de forma sustent\\xe1vel e protegida.\"})}),className:\"framer-1gn0gu7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/98abe46e-81c4-4d31-a848-f6917c38b41c/submit\",className:\"framer-m3kvnw\",nodeId:\"tlSGbLhNB\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-y7rl1w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ywoa6h\",\"data-styles-preset\":\"MJHpvdyGk\",children:\"NOME\"})}),className:\"framer-1lv33wm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1yexh16\",inputName:\"Name\",placeholder:getLocalizedValue(\"v39\",activeLocale)??\"Seu nome\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-ppx0q5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ywoa6h\",\"data-styles-preset\":\"MJHpvdyGk\",children:\"EMAIL\"})}),className:\"framer-ximzyv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-8wqf7w\",inputName:\"Email\",placeholder:getLocalizedValue(\"v40\",activeLocale)??\"ola@email.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-avadap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ywoa6h\",\"data-styles-preset\":\"MJHpvdyGk\",children:\"MENSAGEM\"})}),className:\"framer-1bysonj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CuTxoGRVr:{type:\"textarea\"}},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1dboi17\",inputName:\"Message\",placeholder:getLocalizedValue(\"v42\",activeLocale)??\"Digite sua mensagem\",required:true,type:\"text\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{y:(componentViewport?.y||0)+0+8490.995+0+0+60+224+0+32.4},CuTxoGRVr:{y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+7840.45+0+0+60+224+0+32.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+7700.4+0+0+60+224+0+32.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18vli5k-container\",nodeId:\"E1oQHACNi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonCopy2,{height:\"100%\",id:\"E1oQHACNi\",layoutId:\"E1oQHACNi\",QnEzSrP1N:getLocalizedValue(\"v43\",activeLocale)??\"Enviar\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"RA0MwxDQX\",success:\"sc28bIOuj\"},\"xKeyGwc_W\"),width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l6ssz9\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xyxt0g-container\",isModuleExternal:true,nodeId:\"VX0UEaHhL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:4,height:\"100%\",hoverFactor:1,id:\"VX0UEaHhL\",layoutId:\"VX0UEaHhL\",padding:10,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x5f0q8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"220px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-8px\",\"--framer-text-color\":\"rgb(48, 46, 48)\"},children:\"vamos conversar\"})}),className:\"framer-8iiyc1\",\"data-framer-name\":\"Title\",fonts:[\"GF;Space Grotesk-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{y:(componentViewport?.y||0)+0+9080.395},CuTxoGRVr:{y:undefined},ylwRFcgcq:{y:(componentViewport?.y||0)+0+8429.85}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:683,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8289.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwlwjo-container\",nodeId:\"qd31ZwQy_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cJ4PZdfSF:{variant:\"RH0pMULzv\"},CuTxoGRVr:{variant:\"ysuUVrVJz\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qd31ZwQy_\",layoutId:\"qd31ZwQy_\",style:{width:\"100%\"},variant:\"lvm0HN2Wz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-upNua.framer-lux5qc, .framer-upNua .framer-lux5qc { display: block; }\",\".framer-upNua.framer-72rtr7 { align-content: center; align-items: center; background-color: #1c1c1c; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-upNua .framer-i0bdlk-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-upNua.framer-1xgcsl7 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-upNua.framer-18ce6xq { align-content: center; align-items: center; background-color: #141414; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-upNua .framer-tge5li-container { flex: none; height: 50px; left: calc(50.00000000000002% - 50px / 2); position: absolute; top: 40px; width: 50px; z-index: 1; }\",\".framer-upNua .framer-1q0i978 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1qknsgv, .framer-upNua .framer-11vo8vf, .framer-upNua .framer-15biiy3, .framer-upNua .framer-111i7bt, .framer-upNua .framer-c3rpfz, .framer-upNua .framer-16obihu, .framer-upNua .framer-1pe6npu, .framer-upNua .framer-1s9zasg, .framer-upNua .framer-t4t7th { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-16p92o6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: center; overflow: hidden; padding: 240px 50px 190px 50px; position: relative; width: 100%; }\",\".framer-upNua .framer-vwwgk1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; max-width: 1090px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-wc9fos { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-jsdoxr, .framer-upNua .framer-1wkp958, .framer-upNua .framer-pxudvf, .framer-upNua .framer-1em1c6l, .framer-upNua .framer-qrneh4, .framer-upNua .framer-1hwvk43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-ersowo, .framer-upNua .framer-ijbc6j { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-upNua .framer-1cydooh, .framer-upNua .framer-191qk49 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-upNua .framer-qcpc1y, .framer-upNua .framer-tf79rm, .framer-upNua .framer-bbjy21, .framer-upNua .framer-1koewaj, .framer-upNua .framer-ef53i0, .framer-upNua .framer-14z4phz, .framer-upNua .framer-ct2u3r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-upNua .framer-ow05rq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1h53vcy { flex: none; height: 72px; overflow: hidden; position: relative; width: 72px; }\",\".framer-upNua .framer-1h6nb6u { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-upNua .framer-1o1ulpy { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-t51vrb, .framer-upNua .framer-1c62rk8, .framer-upNua .framer-14hx729, .framer-upNua .framer-tp8bor { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-9j5vee { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-iw8hzq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 0.2 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-dglscv { align-content: center; align-items: center; background-color: #171717; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 48px 20px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-107k4bd { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-lep2dh, .framer-upNua .framer-xpe1hb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 417px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-qcg2y0, .framer-upNua .framer-6zv0m5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1na2rn8, .framer-upNua .framer-cqmlfm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-o8n4un, .framer-upNua .framer-1v9y150 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 0.3 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-1jwzj2d, .framer-upNua .framer-1ev7pm7, .framer-upNua .framer-1au5atd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 0.6 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-ikgjel-container { aspect-ratio: 1.783132530120482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 664px); max-width: 1440px; position: relative; width: 100%; }\",\".framer-upNua .framer-w4bxtf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 48px 20px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-1ezjads { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1i6j8rr { align-content: center; align-items: center; background-color: #737373; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-192os2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1dd6jda, .framer-upNua .framer-1gn0gu7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-7v9e92 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 0.9 0 0px; height: auto; opacity: 0; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-1gawq7t { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-1jy8etw, .framer-upNua .framer-dm7eoz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-upNua .framer-1in96h2, .framer-upNua .framer-uyy21j, .framer-upNua .framer-14hn63u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-mypzn8, .framer-upNua .framer-10danxa, .framer-upNua .framer-x1898w { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 20px 25px 20px 20px; position: relative; width: min-content; }\",\".framer-upNua .framer-1pnubqc, .framer-upNua .framer-1243dxe, .framer-upNua .framer-vvixpf, .framer-upNua .framer-aypuip, .framer-upNua .framer-bz0645, .framer-upNua .framer-re87n2, .framer-upNua .framer-dyd8jq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-9evd84 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1wten28, .framer-upNua .framer-1qvjhes, .framer-upNua .framer-1lj2sp3 { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-upNua .framer-1ara6gv-container, .framer-upNua .framer-1rzsnqp-container, .framer-upNua .framer-10f0ar8-container { aspect-ratio: 1.488833746898263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); position: relative; width: 100%; }\",\".framer-upNua .framer-1swxq73 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 607px; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-uyoag0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 2; }\",\".framer-upNua .framer-1wt3frc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 734px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-1qgt4n7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-13tag4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 50px 48px 50px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-184wep5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-3yq0m2, .framer-upNua .framer-1ckjymo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-ipi4hk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-mwoua2, .framer-upNua .framer-99dqxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-bu3u8n-container, .framer-upNua .framer-9a4vt4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-upNua .framer-1iuwhvp { display: grid; flex: none; gap: 25px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-123ap1l { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 28px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-upNua .framer-1h6zuk9-container, .framer-upNua .framer-sg6fk6-container, .framer-upNua .framer-1wm1ydm-container, .framer-upNua .framer-16qf84w-container, .framer-upNua .framer-tmjilr-container, .framer-upNua .framer-1nwlwjo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-upNua .framer-1ibhqzx, .framer-upNua .framer-58v9s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1dcsy7s { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-1mfzwz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 40px 48px 40px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-10wba9e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-9xf0ad-container { flex: 1 0 0px; height: 145px; max-width: 1440px; position: relative; width: 1px; }\",\".framer-upNua .framer-1lmf90t { aspect-ratio: 3.133663366336634 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 90px; }\",\".framer-upNua .framer-mw5x4i { aspect-ratio: 4.32051282051282 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 141px; }\",\".framer-upNua .framer-14bj83o { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 60px; }\",\".framer-upNua .framer-fsmi1z { aspect-ratio: 1.4385542168674699 / 1; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 70px; }\",\".framer-upNua .framer-ri783r { aspect-ratio: 1.2095959595959596 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 68px; }\",\".framer-upNua .framer-gjwtag { aspect-ratio: 2.141304347826087 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 86px; }\",\".framer-upNua .framer-mv7j7l { aspect-ratio: 2.0033557046979866 / 1; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 70px; }\",\".framer-upNua .framer-1wl5ubj { aspect-ratio: 5.670807453416149 / 1; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 102px; }\",\".framer-upNua .framer-1cqp3d1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 80px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-za1hzv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-i7knxe, .framer-upNua .framer-j8up66 { align-content: center; align-items: center; background-color: #616161; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-1qqa1lk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1byjt9e, .framer-upNua .framer-mlkj0a, .framer-upNua .framer-zil7x4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-19eqx7w, .framer-upNua .framer-p4xwk4 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 300px; overflow: visible; padding: 20px 25px 20px 20px; position: relative; width: min-content; }\",\".framer-upNua .framer-1wedz9k { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-upNua .framer-1i1qc0v { background-color: rgba(255, 255, 255, 0); flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-upNua .framer-1krsbx2 { flex: none; height: 23px; position: relative; width: 23px; }\",\".framer-upNua .framer-1a193dn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-xa7jr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 50px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-ossxek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1e5hh3y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-1swo070 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1tl5vdu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-upNua .framer-1f6awkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1ot8a58, .framer-upNua .framer-5jwjqs, .framer-upNua .framer-fifpj4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-upNua .framer-1rs8zpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 48px 80px 48px; position: relative; width: 100%; }\",\".framer-upNua .framer-ok49n0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 60px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-upNua .framer-dtc98p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 400px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-3o2q5c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 0.8 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-upNua .framer-m3kvnw { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-y7rl1w, .framer-upNua .framer-ppx0q5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.55 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-1lv33wm, .framer-upNua .framer-ximzyv, .framer-upNua .framer-1bysonj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-upNua .framer-1yexh16, .framer-upNua .framer-8wqf7w, .framer-upNua .framer-1dboi17 { --framer-input-border-bottom-width: 1px; --framer-input-border-color: #666666; --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #ffffff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #6b6b6b; flex: none; height: 50px; position: relative; width: 100%; }',\".framer-upNua .framer-avadap { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-upNua .framer-18vli5k-container { flex: none; height: 50px; position: relative; width: auto; }\",\".framer-upNua .framer-l6ssz9 { --border-bottom-width: 0px; --border-color: #3d3d3d; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #1c1c1c; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-upNua .framer-1xyxt0g-container { flex: none; height: 123px; position: relative; width: 100%; }\",\".framer-upNua .framer-x5f0q8 { height: 264px; overflow: hidden; position: relative; width: 1671px; }\",\".framer-upNua .framer-8iiyc1 { flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-upNua[data-border=\"true\"]::after, .framer-upNua [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-upNua.framer-72rtr7 { width: 810px; } .framer-upNua .framer-16p92o6 { padding: 180px 50px 190px 50px; } .framer-upNua .framer-vwwgk1 { max-width: 700px; } .framer-upNua .framer-wc9fos { align-content: flex-end; align-items: flex-end; } .framer-upNua .framer-iw8hzq { flex: 0.5 0 0px; } .framer-upNua .framer-ikgjel-container { height: var(--framer-aspect-ratio-supported, 400px); } .framer-upNua .framer-1jy8etw, .framer-upNua .framer-dm7eoz { flex-direction: column; gap: 50px; } .framer-upNua .framer-1in96h2, .framer-upNua .framer-uyy21j, .framer-upNua .framer-14hn63u, .framer-upNua .framer-1byjt9e, .framer-upNua .framer-mlkj0a, .framer-upNua .framer-zil7x4 { flex: none; width: 100%; } .framer-upNua .framer-1wten28, .framer-upNua .framer-1qvjhes, .framer-upNua .framer-1lj2sp3 { height: min-content; } .framer-upNua .framer-1ara6gv-container, .framer-upNua .framer-1rzsnqp-container, .framer-upNua .framer-10f0ar8-container { height: var(--framer-aspect-ratio-supported, 145px); } .framer-upNua .framer-1wt3frc { width: 436px; } .framer-upNua .framer-1h6zuk9-container { height: 221px; width: 100%; } .framer-upNua .framer-dtc98p { gap: 80px; } .framer-upNua .framer-y7rl1w, .framer-upNua .framer-ppx0q5 { flex: 0.6 0 0px; }}\",\"@media (max-width: 809px) { .framer-upNua.framer-72rtr7 { width: 390px; } .framer-upNua .framer-i0bdlk-container, .framer-upNua .framer-1xyxt0g-container { order: 0; } .framer-upNua .framer-1q0i978 { gap: 16px; } .framer-upNua .framer-16p92o6 { gap: 0px; order: 1; padding: 180px 30px 60px 30px; } .framer-upNua .framer-vwwgk1 { gap: 24px; max-width: 700px; } .framer-upNua .framer-wc9fos { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 20px; } .framer-upNua .framer-jsdoxr, .framer-upNua .framer-o8n4un, .framer-upNua .framer-1jwzj2d, .framer-upNua .framer-1v9y150, .framer-upNua .framer-1au5atd, .framer-upNua .framer-qrneh4, .framer-upNua .framer-10wba9e, .framer-upNua .framer-1tl5vdu, .framer-upNua .framer-3o2q5c, .framer-upNua .framer-1gn0gu7, .framer-upNua .framer-y7rl1w, .framer-upNua .framer-ppx0q5, .framer-upNua .framer-avadap { flex: none; width: 100%; } .framer-upNua .framer-ersowo { padding: 15px; } .framer-upNua .framer-ow05rq { align-content: flex-end; align-items: flex-end; flex-direction: column; } .framer-upNua .framer-1h53vcy { order: 1; } .framer-upNua .framer-1wkp958 { flex: none; order: 0; width: 100%; } .framer-upNua .framer-iw8hzq { flex: 1 0 0px; } .framer-upNua .framer-dglscv { order: 2; padding: 40px 30px 20px 30px; } .framer-upNua .framer-107k4bd, .framer-upNua .framer-qcg2y0, .framer-upNua .framer-1gawq7t, .framer-upNua .framer-6zv0m5, .framer-upNua .framer-ossxek { gap: 40px; } .framer-upNua .framer-1na2rn8, .framer-upNua .framer-cqmlfm { flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-upNua .framer-ikgjel-container { height: var(--framer-aspect-ratio-supported, 185px); } .framer-upNua .framer-w4bxtf { order: 4; padding: 40px 30px 20px 30px; } .framer-upNua .framer-1jy8etw, .framer-upNua .framer-dm7eoz { flex-direction: column; gap: 48px; } .framer-upNua .framer-1in96h2, .framer-upNua .framer-uyy21j, .framer-upNua .framer-14hn63u, .framer-upNua .framer-1byjt9e, .framer-upNua .framer-mlkj0a, .framer-upNua .framer-zil7x4 { flex: none; gap: 20px; width: 100%; } .framer-upNua .framer-1swxq73 { order: 5; padding: 0px; } .framer-upNua .framer-uyoag0 { width: 70%; } .framer-upNua .framer-1wt3frc { width: 100%; } .framer-upNua .framer-1qgt4n7 { order: 6; padding: 10px 0px 0px 0px; } .framer-upNua .framer-13tag4p { gap: 60px; padding: 30px 20px 50px 20px; } .framer-upNua .framer-3yq0m2, .framer-upNua .framer-1ckjymo { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-upNua .framer-ipi4hk, .framer-upNua .framer-1e5hh3y { flex: none; gap: 15px; width: 100%; } .framer-upNua .framer-mwoua2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; } .framer-upNua .framer-1iuwhvp { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-upNua .framer-1mfzwz6 { flex-direction: column; order: 7; padding: 70px 0px 40px 0px; } .framer-upNua .framer-1cqp3d1 { order: 8; padding: 20px 30px 60px 30px; } .framer-upNua .framer-za1hzv { gap: 50px; } .framer-upNua .framer-1a193dn { order: 9; padding: 10px 0px 30px 0px; } .framer-upNua .framer-xa7jr7 { gap: 60px; padding: 30px 20px 0px 20px; } .framer-upNua .framer-1swo070 { flex-direction: column; } .framer-upNua .framer-1rs8zpx { order: 12; padding: 0px 20px 50px 20px; } .framer-upNua .framer-ok49n0 { gap: 60px; padding: 30px 0px 20px 0px; } .framer-upNua .framer-dtc98p { flex-direction: column; gap: 20px; } .framer-upNua .framer-m3kvnw { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 23px; } .framer-upNua .framer-1dboi17 { --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; height: auto; min-height: 100px; } .framer-upNua .framer-l6ssz9 { order: 13; } .framer-upNua .framer-1nwlwjo-container { order: 14; }}\",\"@media (min-width: 2724px) { .framer-upNua.framer-72rtr7 { width: 2724px; } .framer-upNua .framer-vwwgk1 { gap: 23px; } .framer-upNua .framer-ikgjel-container { height: var(--framer-aspect-ratio-supported, 112px); } .framer-upNua .framer-1ara6gv-container, .framer-upNua .framer-1rzsnqp-container, .framer-upNua .framer-10f0ar8-container { height: var(--framer-aspect-ratio-supported, 134px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7799\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cJ4PZdfSF\":{\"layout\":[\"fixed\",\"auto\"]},\"CuTxoGRVr\":{\"layout\":[\"fixed\",\"auto\"]},\"ylwRFcgcq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-upNua\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7799,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w7Y3tcoqK5.woff2\",weight:\"900\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6hR47NCV5Z.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw7Y3tcoqK5.woff2\",weight:\"100\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksmNsFjTDJK.woff2\",weight:\"600\"}]},...HeaderMenuFonts,...PlusAndCloseFonts,...YouTubeFonts,...VideoFonts,...Link1Fonts,...CasesImgFonts,...TickerFonts,...ButtonCopy2Fonts,...Ticker1Fonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7799\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cJ4PZdfSF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CuTxoGRVr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ylwRFcgcq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "ButtonCopyFonts", "getFonts", "wsv8EIMBq_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AIQ2qI_FQ", "Sv8kgEw_0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerhK25DqMi4", "withCSS", "hK25DqMi4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderMenuFonts", "getFonts", "ZNZ74iQOW_default", "PlusAndCloseFonts", "ytPSxAJ1F_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "YouTubeFonts", "Youtube", "VideoFonts", "Video", "Link1Fonts", "hK25DqMi4_default", "CasesImgFonts", "yoGOpvDQ8_default", "TickerFonts", "Ticker", "ButtonCopy2Fonts", "H1zvm4j7z_default", "Ticker1Fonts", "FooterFonts", "zfDrZLwjb_default", "CursorFonts", "dgOn7twC8_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation7", "animation8", "transition5", "animation9", "animation10", "transition6", "animation11", "animation12", "animation13", "transition7", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "formVariants", "form", "variants", "currentVariant", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "q6wyKlkO2Qzs1r3lgm", "HB77IOfF5Qzs1r3lgm", "MUgju5YguQzs1r3lgm", "Wg17JzGycQzs1r3lgm", "idQzs1r3lgm", "jz0woQRTCTegB7U4kL", "NOvHkdvOmTegB7U4kL", "C0licTbNmTegB7U4kL", "dQKnH4CXgTegB7U4kL", "i3LHxedeETegB7U4kL", "idTegB7U4kL", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "kO3dkXtbL3bnx0g", "overlay", "loadMore", "args", "k3C6KlFnd1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "isDisplayed", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "getLocalizedValue", "SVG", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "Gk_rXsiQS_default", "collection", "paginationInfo", "index", "PathVariablesContext", "Image2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "OIkj1Q9hU_default", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent", "FormContainer", "formState", "FormPlainTextInput2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
