{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/nPIGGRaSRtniJBpL5Nyr/nTm3JZ0skMe28EstnV5b/ARJ7HGFsY.js", "ssg:https://framerusercontent.com/modules/iFV2Kx4nxIFDAXvwzJ48/YqwjfvQpp172oPtweLMw/G0PlpSVBB.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/D49BzuxPaWVFwRZg12HW/BmFmEAy3sh1VCsHI7Nnn/Examples.js", "ssg:https://framerusercontent.com/modules/0f3RwuWh4IvOAIrkHwqq/xyPI4KgEEi4uS12i0L9P/XcpyxNAX0.js", "ssg:https://framerusercontent.com/modules/LJpGb3H0RTptE259cKJH/Bmji3hXkNKeeZGMiB8VR/eR9bqtdkZ.js", "ssg:https://framerusercontent.com/modules/29y9AT1BmGW9sqcJ9F4c/AvnZwCdp02dv7RW1S5qt/OBk5x6G6P.js"],
  "sourcesContent": ["// Generated by Framer (0b8b5e5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-aD3Mo .framer-styles-preset-94alq:not(.rich-text-wrapper), .framer-aD3Mo .framer-styles-preset-94alq.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #000000; --framer-link-hover-text-decoration: none; --framer-link-text-color: #000000; --framer-link-text-decoration: none; }\"];export const className=\"framer-aD3Mo\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-uUgkS .framer-styles-preset-1vn6on6:not(.rich-text-wrapper), .framer-uUgkS .framer-styles-preset-1vn6on6.rich-text-wrapper a { --framer-link-current-text-color: #fafdfe; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-9721d154-d350-4319-b350-f3c39b146d4b, #ff9800) /* {\"name\":\"principal\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: #fafdfe; --framer-link-text-decoration: none; }'];export const className=\"framer-uUgkS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHover}from\"https://framerusercontent.com/modules/D49BzuxPaWVFwRZg12HW/BmFmEAy3sh1VCsHI7Nnn/Examples.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nPIGGRaSRtniJBpL5Nyr/nTm3JZ0skMe28EstnV5b/ARJ7HGFsY.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iFV2Kx4nxIFDAXvwzJ48/YqwjfvQpp172oPtweLMw/G0PlpSVBB.js\";const MotionDivWithHover=withHover(motion.div);const cycleOrder=[\"iWJWx3g4r\",\"pMQz87syL\",\"WctxzmdzK\"];const serializationHash=\"framer-CBqz4\";const variantClassNames={iWJWx3g4r:\"framer-v-30o873\",pMQz87syL:\"framer-v-cpcxtk\",WctxzmdzK:\"framer-v-1606n63\"};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={bounce:.2,delay:0,duration:4.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"WctxzmdzK\",MenuMobile:\"iWJWx3g4r\",menuMobileOpen:\"pMQz87syL\"};const getProps=({cursor,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,FRCYHwBDU:cursor!==null&&cursor!==void 0?cursor:props.FRCYHwBDU,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iWJWx3g4r\"};};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,FRCYHwBDU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iWJWx3g4r\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapii80w5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"pMQz87syL\");});const onTap1ohq1zm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pMQz87syL\"),200);});const onTapf4sj2l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WctxzmdzK\"),200);});const onMouseEnter1ohq1zm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pMQz87syL\"),200);});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"pMQz87syL\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"pMQz87syL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-30o873\",className,classNames),\"data-framer-name\":\"MenuMobile\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iWJWx3g4r\",onTap:onTapii80w5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({pMQz87syL:{\"data-framer-name\":\"menuMobileOpen\",\"data-highlight\":undefined,onTap:undefined},WctxzmdzK:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ao6tg\",\"data-border\":true,\"data-framer-name\":\"Frame 39\",layoutDependency:layoutDependency,layoutId:\"KXq2tQ4KA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(51, 51, 51)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(12, 11, 13)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-189kd4t\",\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"Lzi0i61Y5\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l8M7axXPS\"},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ieyoff framer-ym18ps\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"hHkM1QJfR\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yskv5s\",\"data-framer-name\":\"Group 16\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"F_zIvRxui\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 36C27.9411 36 36 27.9411 36 18C36 16.1255 35.7135 14.3179 35.1818 12.6187H13.5238C13.2298 12.6379 12.8977 12.7457 12.6529 12.8681C12.3577 13.0157 12.1078 13.2403 11.9299 13.5183C11.7519 13.7963 11.6524 14.1172 11.642 14.4471C11.6315 14.777 11.7104 15.1036 11.8704 15.3923C12.0304 15.681 12.2655 15.9211 12.5507 16.0871C12.7598 16.2088 12.9902 16.2873 13.2283 16.3192H24.2539C24.2672 16.3192 24.2806 16.3192 24.294 16.3192C24.3156 16.3193 24.3371 16.3194 24.3586 16.3198C24.9411 16.3281 25.5209 16.4201 26.0799 16.5942C26.9116 16.8533 27.678 17.2881 28.327 17.8691C28.9761 18.4502 29.4927 19.164 29.8419 19.9621C30.191 20.7603 30.3645 21.6241 30.3507 22.4952C30.3369 23.3662 30.136 24.2241 29.7617 25.0108C29.3874 25.7974 28.8484 26.4944 28.1812 27.0546C27.5141 27.6148 26.7343 28.025 25.8947 28.2576C25.0552 28.4901 24.1755 28.5395 23.3151 28.4023L23.3182 28.3829C23.0294 28.4453 22.7295 28.4781 22.4219 28.4781H3.36242C6.62855 33.0327 11.9678 36 18 36ZM24.6961 24.2489H1.11429C0.393659 22.3023 0 20.1971 0 18C0 8.05887 8.05887 0 18 0C24.4073 0 30.0327 3.34774 33.2224 8.38947H15.8138C15.4766 8.38947 15.1485 8.42895 14.8341 8.50354L14.4922 8.38946C14.4028 8.38946 14.3016 8.38778 14.1905 8.38593C13.3167 8.37142 11.8321 8.34675 10.6595 9.05027C9.68085 9.53952 8.95148 10.3122 8.36151 11.2337C7.77154 12.1552 7.44174 13.2191 7.40703 14.3127C7.37232 15.4063 7.63399 16.489 8.16433 17.446C8.69467 18.403 9.47395 19.1989 10.4196 19.7492C11.3653 20.2995 12.4422 20.5839 13.5363 20.5721C13.6952 20.5704 13.8537 20.5625 14.0112 20.5484H24.6961C24.7433 20.5592 24.7901 20.5719 24.8365 20.5863C25.0962 20.6672 25.3355 20.8029 25.5381 20.9844C25.7408 21.1658 25.9021 21.3887 26.0111 21.6379C26.1201 21.8871 26.1743 22.1568 26.17 22.4288C26.1657 22.7008 26.103 22.9686 25.9861 23.2143C25.8692 23.4599 25.7009 23.6775 25.4926 23.8524C25.2843 24.0273 25.0408 24.1554 24.7787 24.228C24.7513 24.2356 24.7237 24.2426 24.6961 24.2489Z\" fill=\"url(#paint0_linear_1901_14581)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1901_14581\" x1=\"18\" y1=\"0\" x2=\"18\" y2=\"36\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF910F\"/>\\n<stop offset=\"0.515485\" stop-color=\"#FE731D\"/>\\n<stop offset=\"1\" stop-color=\"#FE572A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 152, 0) 0%, rgb(255, 87, 34) 100%)\"},children:\"Satsails\"})})}),className:\"framer-15mv1t6\",\"data-framer-name\":\"Satsails\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"NJ6FWvLf9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2dfqmz\",\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"giyLhY6jR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qoqjys\",\"data-framer-name\":\"Frame 24\",layoutDependency:layoutDependency,layoutId:\"gwsirpJLH\",style:{backgroundColor:\"rgb(255, 152, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sh87lp\",\"data-framer-name\":\"Group 19\",layoutDependency:layoutDependency,layoutId:\"FtkcpcGaW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eS72TXyh7\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-94alq\",\"data-styles-preset\":\"ARJ7HGFsY\",children:\"Download\"})})})}),className:\"framer-1bxwrk0\",\"data-framer-name\":\"Download\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"QELZSUfuB\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xd2ldf\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"c_sDjFI7C\",onTap:onTap1ohq1zm,...addPropertyOverrides({pMQz87syL:{onMouseEnter:onMouseEnter1ohq1zm,onTap:onTapf4sj2l}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-eph3aw\",layoutDependency:layoutDependency,layoutId:\"AVQwTJGWr\",...addPropertyOverrides({WctxzmdzK:{\"data-highlight\":true,onTap:onTap1ohq1zm}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-44kjgf\",\"data-framer-name\":\"Frame 25\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zbTLjPtq2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 32\"><path d=\"M 11 22 L 11 20 L 29 20 L 29 22 Z M 11 17 L 11 15 L 29 15 L 29 17 Z M 11 12 L 11 10 L 29 10 L 29 12 Z\" fill=\"rgb(232,234,237)\"></path></svg>',svgContentId:11551900246,withExternalLayout:true})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithHover,{className:\"framer-1th2rrd\",\"data-border\":true,\"data-framer-name\":\"Menu Dark\",layoutDependency:layoutDependency,layoutId:\"lhyxEGBKy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l8M7axXPS\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vn6on6\",\"data-styles-preset\":\"G0PlpSVBB\",children:\"Home\"})})})}),className:\"framer-174wr2d\",\"data-framer-cursor\":FRCYHwBDU,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Wp9_Rk0pH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Cxfn4B3jp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vn6on6\",\"data-styles-preset\":\"G0PlpSVBB\",children:\"Sobre\"})})})}),className:\"framer-13yx2zf\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VD2fIUEPI\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"c4bzoUJtX\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vn6on6\",\"data-styles-preset\":\"G0PlpSVBB\",children:\"Suporte\"})})})}),className:\"framer-se6roi\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oHM52KCgs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eS72TXyh7\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1vn6on6\",\"data-styles-preset\":\"G0PlpSVBB\",children:\"Download\"})})})}),className:\"framer-1g0sedj\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"m3MheXN8p\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u7l9ew\",layoutDependency:layoutDependency,layoutId:\"Dvpn2FMjN\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ibhddf\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"AMkvXIrwU\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#e8eaed\"><path d=\"m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z\"/></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CBqz4.framer-ym18ps, .framer-CBqz4 .framer-ym18ps { display: block; }\",\".framer-CBqz4.framer-30o873 { cursor: pointer; height: 62px; position: relative; width: 389px; }\",\".framer-CBqz4 .framer-8ao6tg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 62px; justify-content: flex-start; left: 0px; min-width: 389px; overflow: visible; padding: 12px 18px 12px 18px; position: absolute; top: 0px; width: min-content; }\",\".framer-CBqz4 .framer-189kd4t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 20px; overflow: visible; padding: 0px; position: absolute; right: 20px; top: 48%; z-index: 1; }\",\".framer-CBqz4 .framer-ieyoff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CBqz4 .framer-1yskv5s { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-CBqz4 .framer-15mv1t6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CBqz4 .framer-2dfqmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CBqz4 .framer-1qoqjys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 98px; }\",\".framer-CBqz4 .framer-sh87lp { flex: none; height: 32px; overflow: visible; position: relative; width: 98px; }\",\".framer-CBqz4 .framer-1bxwrk0 { flex: none; height: 32px; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 98px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBqz4 .framer-xd2ldf { cursor: pointer; flex: none; height: 32px; overflow: visible; position: relative; width: 40px; }\",\".framer-CBqz4 .framer-eph3aw { flex: none; height: 32px; left: calc(50.00000000000002% - 40px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 40px; }\",\".framer-CBqz4 .framer-44kjgf { flex: none; height: 32px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 40px; }\",\".framer-CBqz4 .framer-1th2rrd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; padding: 15px; position: absolute; right: 0px; top: 62px; width: 144px; }\",\".framer-CBqz4 .framer-174wr2d { --framer-custom-cursors: pointer; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBqz4 .framer-13yx2zf, .framer-CBqz4 .framer-se6roi, .framer-CBqz4 .framer-1g0sedj { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBqz4 .framer-1u7l9ew { flex: none; height: 24px; overflow: visible; position: absolute; right: 26px; top: 17px; width: 24px; }\",\".framer-CBqz4 .framer-ibhddf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CBqz4 .framer-8ao6tg, .framer-CBqz4 .framer-ieyoff, .framer-CBqz4 .framer-2dfqmz, .framer-CBqz4 .framer-1qoqjys, .framer-CBqz4 .framer-1th2rrd { gap: 0px; } .framer-CBqz4 .framer-8ao6tg > *, .framer-CBqz4 .framer-1qoqjys > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CBqz4 .framer-8ao6tg > :first-child, .framer-CBqz4 .framer-1qoqjys > :first-child, .framer-CBqz4 .framer-1th2rrd > :first-child { margin-top: 0px; } .framer-CBqz4 .framer-8ao6tg > :last-child, .framer-CBqz4 .framer-1qoqjys > :last-child, .framer-CBqz4 .framer-1th2rrd > :last-child { margin-bottom: 0px; } .framer-CBqz4 .framer-ieyoff > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-CBqz4 .framer-ieyoff > :first-child, .framer-CBqz4 .framer-2dfqmz > :first-child { margin-left: 0px; } .framer-CBqz4 .framer-ieyoff > :last-child, .framer-CBqz4 .framer-2dfqmz > :last-child { margin-right: 0px; } .framer-CBqz4 .framer-2dfqmz > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-CBqz4 .framer-1th2rrd > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\".framer-CBqz4.framer-v-cpcxtk.framer-30o873 { cursor: unset; height: 351px; }\",\".framer-CBqz4.framer-v-cpcxtk .framer-8ao6tg { left: unset; right: -1px; }\",\".framer-CBqz4.framer-v-cpcxtk .framer-ieyoff, .framer-CBqz4.framer-v-cpcxtk .framer-1qoqjys, .framer-CBqz4.framer-v-cpcxtk .framer-174wr2d { order: 0; }\",\".framer-CBqz4.framer-v-cpcxtk .framer-2dfqmz, .framer-CBqz4.framer-v-cpcxtk .framer-xd2ldf, .framer-CBqz4.framer-v-cpcxtk .framer-13yx2zf { order: 1; }\",\".framer-CBqz4.framer-v-cpcxtk .framer-se6roi { order: 2; }\",\".framer-CBqz4.framer-v-cpcxtk .framer-1g0sedj { order: 3; }\",\".framer-CBqz4.framer-v-1606n63 .framer-eph3aw { cursor: pointer; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-CBqz4[data-border=\"true\"]::after, .framer-CBqz4 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 389\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pMQz87syL\":{\"layout\":[\"fixed\",\"fixed\"]},\"WctxzmdzK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"FRCYHwBDU\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXcpyxNAX0=withCSS(Component,css,\"framer-CBqz4\");export default FramerXcpyxNAX0;FramerXcpyxNAX0.displayName=\"menu\";FramerXcpyxNAX0.defaultProps={height:62,width:389};addPropertyControls(FramerXcpyxNAX0,{variant:{options:[\"iWJWx3g4r\",\"pMQz87syL\",\"WctxzmdzK\"],optionTitles:[\"MenuMobile\",\"menuMobileOpen\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},FRCYHwBDU:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerXcpyxNAX0,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXcpyxNAX0\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"62\",\"framerVariables\":\"{\\\"FRCYHwBDU\\\":\\\"cursor\\\"}\",\"framerIntrinsicWidth\":\"389\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pMQz87syL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WctxzmdzK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-REByL .framer-styles-preset-1x2obf6:not(.rich-text-wrapper), .framer-REByL .framer-styles-preset-1x2obf6.rich-text-wrapper a { --framer-link-current-text-color: #6d6d6d; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #6d6d6d; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #6d6d6d; --framer-link-text-decoration: none; }\"];export const className=\"framer-REByL\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-rbJPt .framer-styles-preset-1kjjtkt:not(.rich-text-wrapper), .framer-rbJPt .framer-styles-preset-1kjjtkt.rich-text-wrapper a { --framer-link-current-text-color: #ff9800; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ff9800; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ff9800; --framer-link-text-decoration: none; }\"];export const className=\"framer-rbJPt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withHover", "Component", "props", "p", "MotionDivWithHover", "withHover", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FRCYHwBDU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapii80w5", "args", "onTap1ohq1zm", "onTapf4sj2l", "onMouseEnter1ohq1zm", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Link", "SVG", "RichText2", "css", "FramerXcpyxNAX0", "withCSS", "XcpyxNAX0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
