{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/iOP87dOkTfno1BQuZemj/ZYmji5oehrL3cz24uu3S/zMpsiMOLk.js", "ssg:https://framerusercontent.com/modules/Hsu9nY0ZgJUlUOLm8f9Y/9luPjlc5hsgzLr4vsRjn/GPcPf2lnm.js", "ssg:https://framerusercontent.com/modules/OS76QU9jzq7rwD9sUOg8/LSA7dsxEbdwpgBXlmQto/XKEdg5dAv.js", "ssg:https://framerusercontent.com/modules/27ErUsA625eyXthVV6WO/k02JvycQNLWY3jjSKf3p/Ce14FS2fb.js", "ssg:https://framerusercontent.com/modules/4UeS5dWNQ1LnHRFcx1RZ/NxSj2xxS0mSOclVAm04f/IDr2kZX1u.js", "ssg:https://framerusercontent.com/modules/0BC0OvFytJ5ias3zRyd1/R70jV38JkRqnMSV8wke1/M1Hapk7e_.js", "ssg:https://framerusercontent.com/modules/gd7WbOt92tdDCSPSfHoA/WiNiUgpGaMNGGY46FCeP/PaW4UaEoF.js", "ssg:https://framerusercontent.com/modules/vEYPPrKzvFZhViGvW0kM/pyAtGctLNv7DcbxEySf9/s5zj9RUrP.js", "ssg:https://framerusercontent.com/modules/D3iEsiVWgjWKIvoLTUW3/Aiq7q2xSYHgI2sQi2Brt/tRNHH3o6k.js", "ssg:https://framerusercontent.com/modules/H8ZM6IjlmwZ6PjecxyvZ/XXtuV575dFICJKwjvQ4W/UAPf0Lqt6.js", "ssg:https://framerusercontent.com/modules/7duaZskvfBGkWtECP8v0/aIYFqE6FnmOqxADVf0sD/WYOc6Oxk_.js", "ssg:https://framerusercontent.com/modules/ryz3DR2SXeoJKLqZ4giF/s620xrwwyZUP1gwohZaO/kqcMs5kHN.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-PGMAr .framer-styles-preset-57rakp:not(.rich-text-wrapper), .framer-PGMAr .framer-styles-preset-57rakp.rich-text-wrapper a { --framer-link-current-text-color: #111; --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-color: #000000; --framer-link-text-decoration: none; }\"];export const className=\"framer-PGMAr\";\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 (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-regular\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CC6FT7O535LIU5P34T6V2W7R57LGKSDT/KUZZS4REMM64PV6S4GGM77HZQUVJPYU2/3ZPIFBJ6EZFOZSYT4ISIO7DHQQODA5IR.woff2\",weight:\"400\"}]}];export const css=['.framer-Nn7q4 .framer-styles-preset-8rlpv3:not(.rich-text-wrapper), .framer-Nn7q4 .framer-styles-preset-8rlpv3.rich-text-wrapper h1 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-Nn7q4\";\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\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto-regular\",\"GF;Roboto-700\",\"GF;Roboto-700italic\",\"GF;Roboto-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiAr0klQnx24.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiAr0klQnx24.woff2\",weight:\"400\"}]}];export const css=['.framer-0xFch .framer-styles-preset-5qteok:not(.rich-text-wrapper), .framer-0xFch .framer-styles-preset-5qteok.rich-text-wrapper h1 { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, #ff5500); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-0xFch\";\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\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Hsu9nY0ZgJUlUOLm8f9Y/9luPjlc5hsgzLr4vsRjn/GPcPf2lnm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/OS76QU9jzq7rwD9sUOg8/LSA7dsxEbdwpgBXlmQto/XKEdg5dAv.js\";const enabledGestures={OBcFr7MU_:{hover:true}};const serializationHash=\"framer-kEJcK\";const variantClassNames={OBcFr7MU_:\"framer-v-nci48p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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,title,width,...props})=>{return{...props,oN7JVSmMg:title??props.oN7JVSmMg??\"ENTRAR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,oN7JVSmMg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"OBcFr7MU_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"trackplusgps.com\",motionChild:true,nodeId:\"OBcFr7MU_\",openInNewTab:true,scopeId:\"Ce14FS2fb\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-nci48p\",className,classNames)} framer-87ox1g`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"OBcFr7MU_\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"OBcFr7MU_-hover\":{backgroundColor:\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\"}},...addPropertyOverrides({\"OBcFr7MU_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-5qteok\",\"data-styles-preset\":\"XKEdg5dAv\",children:\"Entrar\"})}),className:\"framer-2av5wc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xgsZ66HCG\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:oN7JVSmMg,transformTemplate:transformTemplate1,variants:{\"OBcFr7MU_-hover\":{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"OBcFr7MU_-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-8rlpv3\",\"data-styles-preset\":\"GPcPf2lnm\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Entrar\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kEJcK.framer-87ox1g, .framer-kEJcK .framer-87ox1g { display: block; }\",\".framer-kEJcK.framer-nci48p { cursor: pointer; height: 25px; overflow: visible; position: relative; text-decoration: none; width: 70px; }\",\".framer-kEJcK .framer-2av5wc { -webkit-user-select: none; flex: none; height: auto; left: 50%; position: absolute; top: 52%; user-select: none; white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-kEJcK[data-border=\"true\"]::after, .framer-kEJcK [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 25\n * @framerIntrinsicWidth 70\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IyAPK_LYc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"oN7JVSmMg\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCe14FS2fb=withCSS(Component,css,\"framer-kEJcK\");export default FramerCe14FS2fb;FramerCe14FS2fb.displayName=\"Bt-Entrar Copy\";FramerCe14FS2fb.defaultProps={height:25,width:70};addPropertyControls(FramerCe14FS2fb,{oN7JVSmMg:{defaultValue:\"ENTRAR\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerCe14FS2fb,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCe14FS2fb\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"25\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"oN7JVSmMg\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"70\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IyAPK_LYc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={FzqGzQaSe:{hover:true},vNds7VaRM:{hover:true}};const cycleOrder=[\"vNds7VaRM\",\"FzqGzQaSe\"];const serializationHash=\"framer-X1rP2\";const variantClassNames={FzqGzQaSe:\"framer-v-1ou98q9\",vNds7VaRM:\"framer-v-1wyvq01\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"vNds7VaRM\",\"Variant 2\":\"FzqGzQaSe\"};const getProps=({height,id,title,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vNds7VaRM\",xQwVWT1gC:title??props.xQwVWT1gC??\"LOJA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,xQwVWT1gC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vNds7VaRM\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapui1xqo=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"vNds7VaRM\");});const onTapwgk67k=activeVariantCallback(async(...args)=>{setVariant(\"FzqGzQaSe\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://trackplus.com.br/loja\",motionChild:true,nodeId:\"vNds7VaRM\",openInNewTab:false,scopeId:\"IDr2kZX1u\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1wyvq01\",className,classNames)} framer-tw3e18`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vNds7VaRM\",onTap:onTapui1xqo,ref:refBinding,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},...addPropertyOverrides({\"FzqGzQaSe-hover\":{\"data-framer-name\":undefined},\"vNds7VaRM-hover\":{\"data-framer-name\":undefined},FzqGzQaSe:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"Loja\"})}),className:\"framer-kapubb\",\"data-highlight\":true,fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"B9SSq9nzn\",onTap:onTapwgk67k,style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},text:xQwVWT1gC,variants:{\"FzqGzQaSe-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},\"vNds7VaRM-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 85, 0)\"},FzqGzQaSe:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"FzqGzQaSe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"Loja\"})})},\"vNds7VaRM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 85, 0))\"},children:\"Loja\"})})},FzqGzQaSe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"Loja\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X1rP2.framer-tw3e18, .framer-X1rP2 .framer-tw3e18 { display: block; }\",\".framer-X1rP2.framer-1wyvq01 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-X1rP2 .framer-kapubb { -webkit-user-select: none; cursor: pointer; flex: none; height: 19px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X1rP2.framer-1wyvq01 { gap: 0px; } .framer-X1rP2.framer-1wyvq01 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-X1rP2.framer-1wyvq01 > :first-child { margin-left: 0px; } .framer-X1rP2.framer-1wyvq01 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 43\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FzqGzQaSe\":{\"layout\":[\"auto\",\"auto\"]},\"wArLiOEi1\":{\"layout\":[\"auto\",\"auto\"]},\"ZfX2kbm1E\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xQwVWT1gC\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIDr2kZX1u=withCSS(Component,css,\"framer-X1rP2\");export default FramerIDr2kZX1u;FramerIDr2kZX1u.displayName=\"Bt-LOJA\";FramerIDr2kZX1u.defaultProps={height:19,width:43};addPropertyControls(FramerIDr2kZX1u,{variant:{options:[\"vNds7VaRM\",\"FzqGzQaSe\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xQwVWT1gC:{defaultValue:\"LOJA\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerIDr2kZX1u,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIDr2kZX1u\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"43\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FzqGzQaSe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wArLiOEi1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZfX2kbm1E\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"19\",\"framerVariables\":\"{\\\"xQwVWT1gC\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IDr2kZX1u.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Pu4JtsXfK:{hover:true},qlcFwb0Ig:{hover:true}};const cycleOrder=[\"qlcFwb0Ig\",\"Pu4JtsXfK\",\"MtJ989GSb\"];const serializationHash=\"framer-xe4NI\";const variantClassNames={MtJ989GSb:\"framer-v-1ph7wdr\",Pu4JtsXfK:\"framer-v-h4o9tb\",qlcFwb0Ig:\"framer-v-vkiecc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"qlcFwb0Ig\",\"Variant 2\":\"Pu4JtsXfK\",\"Variant 3\":\"MtJ989GSb\"};const getProps=({click,height,id,title,width,...props})=>{return{...props,pH2vTRAaX:title??props.pH2vTRAaX??\"PLANOS\",Pj5g76ivw:click??props.Pj5g76ivw,variant:humanReadableVariantMap[props.variant]??props.variant??\"qlcFwb0Ig\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,pH2vTRAaX,Pj5g76ivw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qlcFwb0Ig\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1avs4ui=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Pj5g76ivw){const res=await Pj5g76ivw(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IsgYZyFxv\"},motionChild:true,nodeId:\"qlcFwb0Ig\",openInNewTab:false,scopeId:\"M1Hapk7e_\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-vkiecc\",className,classNames)} framer-1ipru5e`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qlcFwb0Ig\",onTap:onTap1avs4ui,ref:refBinding,style:{...style},...addPropertyOverrides({\"Pu4JtsXfK-hover\":{\"data-framer-name\":undefined},\"qlcFwb0Ig-hover\":{\"data-framer-name\":undefined},MtJ989GSb:{\"data-framer-name\":\"Variant 3\"},Pu4JtsXfK:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"Planos\"})}),className:\"framer-16twz6t\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"sDtA4fFV6\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},text:pH2vTRAaX,variants:{\"Pu4JtsXfK-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},\"qlcFwb0Ig-hover\":{\"--extracted-r6o4lv\":\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\"},MtJ989GSb:{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},Pu4JtsXfK:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"Pu4JtsXfK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"Planos\"})})},\"qlcFwb0Ig-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0)))\"},children:\"Planos\"})})},MtJ989GSb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"Planos\"})})},Pu4JtsXfK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"Planos\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xe4NI.framer-1ipru5e, .framer-xe4NI .framer-1ipru5e { display: block; }\",\".framer-xe4NI.framer-vkiecc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-xe4NI .framer-16twz6t { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xe4NI.framer-vkiecc { gap: 0px; } .framer-xe4NI.framer-vkiecc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xe4NI.framer-vkiecc > :first-child { margin-left: 0px; } .framer-xe4NI.framer-vkiecc > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 69\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Pu4JtsXfK\":{\"layout\":[\"auto\",\"auto\"]},\"MtJ989GSb\":{\"layout\":[\"auto\",\"auto\"]},\"I46blhDLe\":{\"layout\":[\"auto\",\"auto\"]},\"jUYO00lbM\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pH2vTRAaX\":\"title\",\"Pj5g76ivw\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM1Hapk7e_=withCSS(Component,css,\"framer-xe4NI\");export default FramerM1Hapk7e_;FramerM1Hapk7e_.displayName=\"Bt-PLANOS\";FramerM1Hapk7e_.defaultProps={height:20,width:69};addPropertyControls(FramerM1Hapk7e_,{variant:{options:[\"qlcFwb0Ig\",\"Pu4JtsXfK\",\"MtJ989GSb\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},pH2vTRAaX:{defaultValue:\"PLANOS\",displayTextArea:false,title:\"Title\",type:ControlType.String},Pj5g76ivw:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerM1Hapk7e_,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM1Hapk7e_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"pH2vTRAaX\\\":\\\"title\\\",\\\"Pj5g76ivw\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"69\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Pu4JtsXfK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MtJ989GSb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"I46blhDLe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jUYO00lbM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"20\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M1Hapk7e_.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={bCnF1fC2c:{hover:true},ICARDixiW:{hover:true}};const cycleOrder=[\"bCnF1fC2c\",\"ICARDixiW\",\"rVYLTi94P\"];const serializationHash=\"framer-lcAF2\";const variantClassNames={bCnF1fC2c:\"framer-v-bsupfa\",ICARDixiW:\"framer-v-4dy9sa\",rVYLTi94P:\"framer-v-1jiuk25\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"bCnF1fC2c\",\"Variant 2\":\"ICARDixiW\",\"Variant 3\":\"rVYLTi94P\"};const getProps=({height,id,title,width,...props})=>{return{...props,aX1EwDlw8:title??props.aX1EwDlw8??\"PLATAFORMA\",variant:humanReadableVariantMap[props.variant]??props.variant??\"bCnF1fC2c\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,aX1EwDlw8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bCnF1fC2c\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uTwXHTky7\"},motionChild:true,nodeId:\"bCnF1fC2c\",openInNewTab:false,scopeId:\"PaW4UaEoF\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-bsupfa\",className,classNames)} framer-htwyhf`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bCnF1fC2c\",ref:refBinding,style:{...style},...addPropertyOverrides({\"bCnF1fC2c-hover\":{\"data-framer-name\":undefined},\"ICARDixiW-hover\":{\"data-framer-name\":undefined},ICARDixiW:{\"data-framer-name\":\"Variant 2\"},rVYLTi94P:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"PLATAFORMA\"})}),className:\"framer-8fmd0k\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"iUCMZGHyI\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},text:aX1EwDlw8,variants:{\"bCnF1fC2c-hover\":{\"--extracted-r6o4lv\":\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\"},\"ICARDixiW-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},ICARDixiW:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"},rVYLTi94P:{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"bCnF1fC2c-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0)))\"},children:\"PLATAFORMA\"})})},\"ICARDixiW-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"PLATAFORMA\"})})},ICARDixiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"PLATAFORMA\"})})},rVYLTi94P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"PLATAFORMA\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lcAF2.framer-htwyhf, .framer-lcAF2 .framer-htwyhf { display: block; }\",\".framer-lcAF2.framer-bsupfa { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-lcAF2 .framer-8fmd0k { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lcAF2.framer-bsupfa { gap: 0px; } .framer-lcAF2.framer-bsupfa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lcAF2.framer-bsupfa > :first-child { margin-left: 0px; } .framer-lcAF2.framer-bsupfa > :last-child { margin-right: 0px; } }\",\".framer-lcAF2.framer-v-1jiuk25.framer-bsupfa { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ICARDixiW\":{\"layout\":[\"auto\",\"fixed\"]},\"rVYLTi94P\":{\"layout\":[\"auto\",\"fixed\"]},\"dPLffY8aF\":{\"layout\":[\"auto\",\"fixed\"]},\"VbcPUdkTE\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"aX1EwDlw8\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPaW4UaEoF=withCSS(Component,css,\"framer-lcAF2\");export default FramerPaW4UaEoF;FramerPaW4UaEoF.displayName=\"Bt-Plataforma Copy\";FramerPaW4UaEoF.defaultProps={height:20,width:115};addPropertyControls(FramerPaW4UaEoF,{variant:{options:[\"bCnF1fC2c\",\"ICARDixiW\",\"rVYLTi94P\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},aX1EwDlw8:{defaultValue:\"PLATAFORMA\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerPaW4UaEoF,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPaW4UaEoF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ICARDixiW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"rVYLTi94P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dPLffY8aF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VbcPUdkTE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"115\",\"framerVariables\":\"{\\\"aX1EwDlw8\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PaW4UaEoF.map", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={XZz5xYhuN:{hover:true},zAQAptIk7:{hover:true}};const cycleOrder=[\"zAQAptIk7\",\"XZz5xYhuN\"];const serializationHash=\"framer-mGwpc\";const variantClassNames={XZz5xYhuN:\"framer-v-eiqi22\",zAQAptIk7:\"framer-v-hi43m6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"zAQAptIk7\",\"Variant 2\":\"XZz5xYhuN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zAQAptIk7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zAQAptIk7\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.asaas.com/segunda-via\",motionChild:true,nodeId:\"zAQAptIk7\",openInNewTab:true,scopeId:\"s5zj9RUrP\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-hi43m6\",className,classNames)} framer-gxylqy`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zAQAptIk7\",ref:refBinding,style:{...style},...addPropertyOverrides({\"XZz5xYhuN-hover\":{\"data-framer-name\":undefined},\"zAQAptIk7-hover\":{\"data-framer-name\":undefined},XZz5xYhuN:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"2\\xb0 Via\"})}),className:\"framer-1s9tipc\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"m77Uvx1DX\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"XZz5xYhuN-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},\"zAQAptIk7-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},XZz5xYhuN:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"XZz5xYhuN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"2\\xb0 Via\"})})},\"zAQAptIk7-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"2\\xb0 Via\"})})},XZz5xYhuN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"2\\xb0 Via\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mGwpc.framer-gxylqy, .framer-mGwpc .framer-gxylqy { display: block; }\",\".framer-mGwpc.framer-hi43m6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mGwpc .framer-1s9tipc { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mGwpc.framer-hi43m6 { gap: 0px; } .framer-mGwpc.framer-hi43m6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mGwpc.framer-hi43m6 > :first-child { margin-left: 0px; } .framer-mGwpc.framer-hi43m6 > :last-child { margin-right: 0px; } }\",\".framer-mGwpc.framer-v-eiqi22 .framer-1s9tipc { height: 18px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 47\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"XZz5xYhuN\":{\"layout\":[\"auto\",\"fixed\"]},\"fA3eYTMLi\":{\"layout\":[\"auto\",\"fixed\"]},\"uLDBPoZmz\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers5zj9RUrP=withCSS(Component,css,\"framer-mGwpc\");export default Framers5zj9RUrP;Framers5zj9RUrP.displayName=\"Bt-2Via\";Framers5zj9RUrP.defaultProps={height:24,width:47};addPropertyControls(Framers5zj9RUrP,{variant:{options:[\"zAQAptIk7\",\"XZz5xYhuN\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framers5zj9RUrP,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers5zj9RUrP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XZz5xYhuN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fA3eYTMLi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"uLDBPoZmz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"47\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s5zj9RUrP.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={FgO65avzm:{hover:true},OeYn7Bjuq:{hover:true}};const cycleOrder=[\"FgO65avzm\",\"OeYn7Bjuq\",\"lXCTFOAyP\"];const serializationHash=\"framer-rBQW1\";const variantClassNames={FgO65avzm:\"framer-v-8z8hhb\",lXCTFOAyP:\"framer-v-1c756j2\",OeYn7Bjuq:\"framer-v-yuc524\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"FgO65avzm\",\"Variant 2\":\"OeYn7Bjuq\",\"Variant 3\":\"lXCTFOAyP\"};const getProps=({height,id,title,width,...props})=>{return{...props,kCZjA7nAe:title??props.kCZjA7nAe??\"BLOG\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FgO65avzm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,kCZjA7nAe,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FgO65avzm\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eJndvehBP\"},motionChild:true,nodeId:\"FgO65avzm\",openInNewTab:false,scopeId:\"tRNHH3o6k\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-8z8hhb\",className,classNames)} framer-12oc6yb`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FgO65avzm\",ref:refBinding,style:{...style},...addPropertyOverrides({\"FgO65avzm-hover\":{\"data-framer-name\":undefined},\"OeYn7Bjuq-hover\":{\"data-framer-name\":undefined},lXCTFOAyP:{\"data-framer-name\":\"Variant 3\"},OeYn7Bjuq:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"BLOG\"})}),className:\"framer-t6tlcx\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"EAGXKLaY8\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},text:kCZjA7nAe,variants:{\"FgO65avzm-hover\":{\"--extracted-r6o4lv\":\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\"},\"OeYn7Bjuq-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},lXCTFOAyP:{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},OeYn7Bjuq:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"FgO65avzm-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0)))\"},children:\"BLOG\"})})},\"OeYn7Bjuq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"BLOG\"})})},lXCTFOAyP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"BLOG\"})})},OeYn7Bjuq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"BLOG\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rBQW1.framer-12oc6yb, .framer-rBQW1 .framer-12oc6yb { display: block; }\",\".framer-rBQW1.framer-8z8hhb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rBQW1 .framer-t6tlcx { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rBQW1.framer-8z8hhb { gap: 0px; } .framer-rBQW1.framer-8z8hhb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rBQW1.framer-8z8hhb > :first-child { margin-left: 0px; } .framer-rBQW1.framer-8z8hhb > :last-child { margin-right: 0px; } }\",\".framer-rBQW1.framer-v-1c756j2.framer-8z8hhb { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 45\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"OeYn7Bjuq\":{\"layout\":[\"auto\",\"fixed\"]},\"lXCTFOAyP\":{\"layout\":[\"auto\",\"fixed\"]},\"BdQ_lKuRk\":{\"layout\":[\"auto\",\"fixed\"]},\"Hsk45RWoA\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"kCZjA7nAe\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertRNHH3o6k=withCSS(Component,css,\"framer-rBQW1\");export default FramertRNHH3o6k;FramertRNHH3o6k.displayName=\"Bt-Blog Copy\";FramertRNHH3o6k.defaultProps={height:20,width:45};addPropertyControls(FramertRNHH3o6k,{variant:{options:[\"FgO65avzm\",\"OeYn7Bjuq\",\"lXCTFOAyP\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},kCZjA7nAe:{defaultValue:\"BLOG\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramertRNHH3o6k,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertRNHH3o6k\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"kCZjA7nAe\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"45\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OeYn7Bjuq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lXCTFOAyP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BdQ_lKuRk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Hsk45RWoA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tRNHH3o6k.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={KnbqDyhNJ:{hover:true},WXyGgKoVR:{hover:true}};const cycleOrder=[\"KnbqDyhNJ\",\"WXyGgKoVR\",\"tXO5IDrzA\"];const serializationHash=\"framer-NheJt\";const variantClassNames={KnbqDyhNJ:\"framer-v-tjy218\",tXO5IDrzA:\"framer-v-1xvv2b\",WXyGgKoVR:\"framer-v-1p5cieo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"KnbqDyhNJ\",\"Variant 2\":\"WXyGgKoVR\",\"Variant 3\":\"tXO5IDrzA\"};const getProps=({height,id,title,width,...props})=>{return{...props,v9TsGY_N1:title??props.v9TsGY_N1??\"Sobre\",variant:humanReadableVariantMap[props.variant]??props.variant??\"KnbqDyhNJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,v9TsGY_N1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KnbqDyhNJ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q_mHnxJUq\"},motionChild:true,nodeId:\"KnbqDyhNJ\",openInNewTab:false,scopeId:\"UAPf0Lqt6\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-tjy218\",className,classNames)} framer-m3szso`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KnbqDyhNJ\",ref:refBinding,style:{...style},...addPropertyOverrides({\"KnbqDyhNJ-hover\":{\"data-framer-name\":undefined},\"WXyGgKoVR-hover\":{\"data-framer-name\":undefined},tXO5IDrzA:{\"data-framer-name\":\"Variant 3\"},WXyGgKoVR:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"Sobre\"})}),className:\"framer-1lxe3tl\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"oJobdhoGz\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},text:v9TsGY_N1,variants:{\"KnbqDyhNJ-hover\":{\"--extracted-r6o4lv\":\"var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0))\"},\"WXyGgKoVR-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},tXO5IDrzA:{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},WXyGgKoVR:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"KnbqDyhNJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-220124da-4aaf-443a-8015-5ce62ed0aef3, rgb(255, 85, 0)))\"},children:\"Sobre\"})})},\"WXyGgKoVR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"Sobre\"})})},tXO5IDrzA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"Sobre\"})})},WXyGgKoVR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"Sobre\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NheJt.framer-m3szso, .framer-NheJt .framer-m3szso { display: block; }\",\".framer-NheJt.framer-tjy218 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-NheJt .framer-1lxe3tl { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NheJt.framer-tjy218 { gap: 0px; } .framer-NheJt.framer-tjy218 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NheJt.framer-tjy218 > :first-child { margin-left: 0px; } .framer-NheJt.framer-tjy218 > :last-child { margin-right: 0px; } }\",\".framer-NheJt.framer-v-1xvv2b.framer-tjy218 { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 47\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"WXyGgKoVR\":{\"layout\":[\"auto\",\"fixed\"]},\"tXO5IDrzA\":{\"layout\":[\"auto\",\"fixed\"]},\"wmxCIXk8O\":{\"layout\":[\"auto\",\"fixed\"]},\"ws_6Zb5dF\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"v9TsGY_N1\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUAPf0Lqt6=withCSS(Component,css,\"framer-NheJt\");export default FramerUAPf0Lqt6;FramerUAPf0Lqt6.displayName=\"Bt-Suporte Copy\";FramerUAPf0Lqt6.defaultProps={height:18,width:47};addPropertyControls(FramerUAPf0Lqt6,{variant:{options:[\"KnbqDyhNJ\",\"WXyGgKoVR\",\"tXO5IDrzA\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},v9TsGY_N1:{defaultValue:\"Sobre\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerUAPf0Lqt6,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUAPf0Lqt6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WXyGgKoVR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tXO5IDrzA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wmxCIXk8O\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ws_6Zb5dF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"47\",\"framerIntrinsicHeight\":\"18\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"v9TsGY_N1\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UAPf0Lqt6.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={bfKiKhauH:{hover:true},gse22fwB7:{hover:true}};const cycleOrder=[\"bfKiKhauH\",\"gse22fwB7\"];const serializationHash=\"framer-eOubs\";const variantClassNames={bfKiKhauH:\"framer-v-gbe5cf\",gse22fwB7:\"framer-v-1xpb7dh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Variant 1\":\"bfKiKhauH\",\"Variant 2\":\"gse22fwB7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bfKiKhauH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bfKiKhauH\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EmAZJElvv\"},motionChild:true,nodeId:\"bfKiKhauH\",openInNewTab:true,scopeId:\"WYOc6Oxk_\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-gbe5cf\",className,classNames)} framer-1vg1rd`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bfKiKhauH\",ref:refBinding,style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},...addPropertyOverrides({\"bfKiKhauH-hover\":{\"data-framer-name\":undefined},\"gse22fwB7-hover\":{\"data-framer-name\":undefined},gse22fwB7:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51)))\"},children:\"TP7\"})}),className:\"framer-113idgy\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"hgah59bm9\",style:{\"--extracted-r6o4lv\":\"var(--token-64469b93-1d31-4949-83f5-5e2036e19d58, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"bfKiKhauH-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},\"gse22fwB7-hover\":{\"--extracted-r6o4lv\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},gse22fwB7:{\"--extracted-r6o4lv\":\"var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"bfKiKhauH-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"TP7\"})})},\"gse22fwB7-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0)))\"},children:\"TP7\"})})},gse22fwB7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-79382452-57f7-4934-a941-376323fd3a89, rgb(255, 255, 255)))\"},children:\"TP7\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eOubs.framer-1vg1rd, .framer-eOubs .framer-1vg1rd { display: block; }\",\".framer-eOubs.framer-gbe5cf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-eOubs .framer-113idgy { -webkit-user-select: none; flex: none; height: 19px; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eOubs.framer-gbe5cf { gap: 0px; } .framer-eOubs.framer-gbe5cf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eOubs.framer-gbe5cf > :first-child { margin-left: 0px; } .framer-eOubs.framer-gbe5cf > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gse22fwB7\":{\"layout\":[\"auto\",\"auto\"]},\"fjqVQuEuh\":{\"layout\":[\"auto\",\"auto\"]},\"EylggFBAl\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWYOc6Oxk_=withCSS(Component,css,\"framer-eOubs\");export default FramerWYOc6Oxk_;FramerWYOc6Oxk_.displayName=\"Bt-TP7\";FramerWYOc6Oxk_.defaultProps={height:19,width:32};addPropertyControls(FramerWYOc6Oxk_,{variant:{options:[\"bfKiKhauH\",\"gse22fwB7\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWYOc6Oxk_,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWYOc6Oxk_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gse22fwB7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fjqVQuEuh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EylggFBAl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"19\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"32\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WYOc6Oxk_.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iOP87dOkTfno1BQuZemj/ZYmji5oehrL3cz24uu3S/zMpsiMOLk.js\";import BtEntrarCopy from\"https://framerusercontent.com/modules/27ErUsA625eyXthVV6WO/k02JvycQNLWY3jjSKf3p/Ce14FS2fb.js\";import BtLOJA from\"https://framerusercontent.com/modules/4UeS5dWNQ1LnHRFcx1RZ/NxSj2xxS0mSOclVAm04f/IDr2kZX1u.js\";import BtPLANOS from\"https://framerusercontent.com/modules/0BC0OvFytJ5ias3zRyd1/R70jV38JkRqnMSV8wke1/M1Hapk7e_.js\";import BtPlataformaCopy from\"https://framerusercontent.com/modules/gd7WbOt92tdDCSPSfHoA/WiNiUgpGaMNGGY46FCeP/PaW4UaEoF.js\";import Bt2Via from\"https://framerusercontent.com/modules/vEYPPrKzvFZhViGvW0kM/pyAtGctLNv7DcbxEySf9/s5zj9RUrP.js\";import BtBlogCopy from\"https://framerusercontent.com/modules/D3iEsiVWgjWKIvoLTUW3/Aiq7q2xSYHgI2sQi2Brt/tRNHH3o6k.js\";import BtSuporteCopy from\"https://framerusercontent.com/modules/H8ZM6IjlmwZ6PjecxyvZ/XXtuV575dFICJKwjvQ4W/UAPf0Lqt6.js\";import BtTP7 from\"https://framerusercontent.com/modules/7duaZskvfBGkWtECP8v0/aIYFqE6FnmOqxADVf0sD/WYOc6Oxk_.js\";const BtTP7Fonts=getFonts(BtTP7);const BtLOJAFonts=getFonts(BtLOJA);const BtPLANOSFonts=getFonts(BtPLANOS);const BtBlogCopyFonts=getFonts(BtBlogCopy);const BtPlataformaCopyFonts=getFonts(BtPlataformaCopy);const BtSuporteCopyFonts=getFonts(BtSuporteCopy);const Bt2ViaFonts=getFonts(Bt2Via);const BtEntrarCopyFonts=getFonts(BtEntrarCopy);const FormSparkFonts=getFonts(FormSpark);const MotionDivWithFX=withFX(motion.div);const BtLOJAControls=getPropertyControls(BtLOJA);const cycleOrder=[\"URxSnrC6f\",\"SDLim351J\",\"IkScMllYF\",\"guMKYXqf0\",\"ZjpG46KMS\",\"tyD8rs0El\",\"Iuy52E2qy\",\"nLXl6YOSq\",\"jRtvfnxW7\",\"AaSe1LjOJ\",\"XrNe9tOFt\",\"OXI6IkIV5\",\"AMyQmfoB2\",\"Il_YgJvD2\",\"xm1mZdSce\",\"DZxYM9Qr2\",\"tH2QWR9Xh\",\"QhP5u28L8\",\"mmB9FGD5g\",\"WEYkyvPDw\",\"JrnYvGK_e\",\"zmBLr_nia\",\"pc7J9leh3\",\"L1VLZo9f6\",\"iJP1vnryc\",\"G5QhNQOAM\",\"MGdeWGRI6\",\"YX1efW_dX\"];const serializationHash=\"framer-uDImd\";const variantClassNames={AaSe1LjOJ:\"framer-v-1assr2u\",AMyQmfoB2:\"framer-v-184nmoi\",DZxYM9Qr2:\"framer-v-1mv9liy\",G5QhNQOAM:\"framer-v-1dhqzfd\",guMKYXqf0:\"framer-v-1gfw0i3\",iJP1vnryc:\"framer-v-q92cmd\",IkScMllYF:\"framer-v-qux3hk\",Il_YgJvD2:\"framer-v-r7rop7\",Iuy52E2qy:\"framer-v-1n5uybu\",JrnYvGK_e:\"framer-v-sourvq\",jRtvfnxW7:\"framer-v-15y0fsf\",L1VLZo9f6:\"framer-v-1p4hk7p\",MGdeWGRI6:\"framer-v-15y337\",mmB9FGD5g:\"framer-v-fl90sv\",nLXl6YOSq:\"framer-v-kuu2lo\",OXI6IkIV5:\"framer-v-q3g0vd\",pc7J9leh3:\"framer-v-6m2tos\",QhP5u28L8:\"framer-v-6dzbky\",SDLim351J:\"framer-v-13u754\",tH2QWR9Xh:\"framer-v-18o3v5f\",tyD8rs0El:\"framer-v-11rdvl4\",URxSnrC6f:\"framer-v-1o1tkq\",WEYkyvPDw:\"framer-v-12ua5ae\",xm1mZdSce:\"framer-v-py4eu7\",XrNe9tOFt:\"framer-v-wbtvs6\",YX1efW_dX:\"framer-v-aqb6ek\",ZjpG46KMS:\"framer-v-5q9odd\",zmBLr_nia:\"framer-v-1qyoh8x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={\"Variant 1\":\"vNds7VaRM\",\"Variant 2\":\"FzqGzQaSe\"};const humanReadableVariantMap={\"Desktop escuro\":\"mmB9FGD5g\",\"loja desk\":\"iJP1vnryc\",\"loja phone open\":\"YX1efW_dX\",\"loja phone\":\"MGdeWGRI6\",\"loja tablet\":\"G5QhNQOAM\",\"Phone Blog\":\"AaSe1LjOJ\",\"Phone escuro\":\"tH2QWR9Xh\",\"Phone Open Blog\":\"XrNe9tOFt\",\"phone open escuro\":\"QhP5u28L8\",\"Phone Open Planos\":\"jRtvfnxW7\",\"Phone Open Plataforma\":\"AMyQmfoB2\",\"Phone Open Sobre\":\"xm1mZdSce\",\"Phone Open\":\"IkScMllYF\",\"Phone Planos\":\"nLXl6YOSq\",\"Phone Plataforma\":\"OXI6IkIV5\",\"Phone Sobre\":\"Il_YgJvD2\",\"Tablet blog\":\"zmBLr_nia\",\"Tablet escuro\":\"WEYkyvPDw\",\"Tablet planos\":\"L1VLZo9f6\",\"Tablet plataforma\":\"JrnYvGK_e\",\"Tablet sobre\":\"pc7J9leh3\",\"Top-blog\":\"ZjpG46KMS\",\"Top-planos\":\"Iuy52E2qy\",\"Top-plataforma\":\"guMKYXqf0\",\"Top-sobre\":\"tyD8rs0El\",Desktop:\"URxSnrC6f\",Phone:\"SDLim351J\",tablet:\"DZxYM9Qr2\"};const getProps=({height,id,variant1,width,...props})=>{return{...props,lv3Nf4Jog:humanReadableEnumMap[variant1]??variant1??props.lv3Nf4Jog??\"vNds7VaRM\",variant:humanReadableVariantMap[props.variant]??props.variant??\"URxSnrC6f\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,lv3Nf4Jog,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"URxSnrC6f\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4zbyd6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});});const onTap3t1pz5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"G5QhNQOAM\");});const onTap80hjdw=activeVariantCallback(async(...args)=>{setVariant(\"YX1efW_dX\");});const onTap10igu7a=activeVariantCallback(async(...args)=>{setVariant(\"IkScMllYF\");});const onTapm1z2bl=activeVariantCallback(async(...args)=>{setVariant(\"SDLim351J\");});const onTapgk9ato=activeVariantCallback(async(...args)=>{setVariant(\"jRtvfnxW7\");});const onTappnem6u=activeVariantCallback(async(...args)=>{setVariant(\"XrNe9tOFt\");});const onTap1fxmgcj=activeVariantCallback(async(...args)=>{setVariant(\"AMyQmfoB2\");});const onTapma9xrq=activeVariantCallback(async(...args)=>{setVariant(\"xm1mZdSce\");});const onTapvquxk9=activeVariantCallback(async(...args)=>{setVariant(\"QhP5u28L8\");});const onTapimuzcj=activeVariantCallback(async(...args)=>{setVariant(\"tH2QWR9Xh\");});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"SDLim351J\",\"IkScMllYF\",\"nLXl6YOSq\",\"jRtvfnxW7\",\"AaSe1LjOJ\",\"XrNe9tOFt\",\"OXI6IkIV5\",\"AMyQmfoB2\",\"Il_YgJvD2\",\"xm1mZdSce\",\"tH2QWR9Xh\",\"QhP5u28L8\",\"MGdeWGRI6\",\"YX1efW_dX\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"IkScMllYF\",\"jRtvfnxW7\",\"XrNe9tOFt\",\"AMyQmfoB2\",\"xm1mZdSce\",\"QhP5u28L8\",\"YX1efW_dX\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"nLXl6YOSq\",\"AaSe1LjOJ\",\"OXI6IkIV5\",\"Il_YgJvD2\",\"MGdeWGRI6\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"SDLim351J\",\"nLXl6YOSq\",\"AaSe1LjOJ\",\"OXI6IkIV5\",\"Il_YgJvD2\",\"tH2QWR9Xh\",\"MGdeWGRI6\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"DZxYM9Qr2\",\"WEYkyvPDw\",\"JrnYvGK_e\",\"zmBLr_nia\",\"pc7J9leh3\",\"L1VLZo9f6\",\"G5QhNQOAM\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed5=()=>{if([\"IkScMllYF\",\"jRtvfnxW7\",\"XrNe9tOFt\",\"AMyQmfoB2\",\"xm1mZdSce\",\"QhP5u28L8\",\"YX1efW_dX\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({AMyQmfoB2:{value:transition2},IkScMllYF:{value:transition2},jRtvfnxW7:{value:transition2},QhP5u28L8:{value:transition2},xm1mZdSce:{value:transition2},XrNe9tOFt:{value:transition2},YX1efW_dX:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1o1tkq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"URxSnrC6f\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,...style},variants:{AaSe1LjOJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},AMyQmfoB2:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},DZxYM9Qr2:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},G5QhNQOAM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},guMKYXqf0:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},iJP1vnryc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},IkScMllYF:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},Il_YgJvD2:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},Iuy52E2qy:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},JrnYvGK_e:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},jRtvfnxW7:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},L1VLZo9f6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},MGdeWGRI6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},mmB9FGD5g:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-46a14a92-bb52-4b07-bc26-b32dcfbe513d, rgb(37, 37, 37))\",borderBottomLeftRadius:0,borderBottomRightRadius:0},nLXl6YOSq:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},OXI6IkIV5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},pc7J9leh3:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},QhP5u28L8:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-46a14a92-bb52-4b07-bc26-b32dcfbe513d, rgb(37, 37, 37))\",borderBottomLeftRadius:20,borderBottomRightRadius:20},tH2QWR9Xh:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-46a14a92-bb52-4b07-bc26-b32dcfbe513d, rgb(37, 37, 37))\",borderBottomLeftRadius:0,borderBottomRightRadius:0},tyD8rs0El:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},WEYkyvPDw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-46a14a92-bb52-4b07-bc26-b32dcfbe513d, rgb(37, 37, 37))\",borderBottomLeftRadius:0,borderBottomRightRadius:0},xm1mZdSce:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},XrNe9tOFt:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},YX1efW_dX:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:20,borderBottomRightRadius:20},ZjpG46KMS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0},zmBLr_nia:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0}},...addPropertyOverrides({AaSe1LjOJ:{\"data-framer-name\":\"Phone Blog\"},AMyQmfoB2:{\"data-border\":true,\"data-framer-name\":\"Phone Open Plataforma\"},DZxYM9Qr2:{\"data-framer-name\":\"tablet\"},G5QhNQOAM:{\"data-framer-name\":\"loja tablet\",\"data-highlight\":true,onTap:onTap3t1pz5},guMKYXqf0:{\"data-framer-name\":\"Top-plataforma\"},iJP1vnryc:{\"data-framer-name\":\"loja desk\"},IkScMllYF:{\"data-border\":true,\"data-framer-name\":\"Phone Open\"},Il_YgJvD2:{\"data-framer-name\":\"Phone Sobre\"},Iuy52E2qy:{\"data-framer-name\":\"Top-planos\"},JrnYvGK_e:{\"data-framer-name\":\"Tablet plataforma\"},jRtvfnxW7:{\"data-border\":true,\"data-framer-name\":\"Phone Open Planos\"},L1VLZo9f6:{\"data-framer-name\":\"Tablet planos\",\"data-highlight\":true,onTap:onTap4zbyd6},MGdeWGRI6:{\"data-framer-name\":\"loja phone\"},mmB9FGD5g:{\"data-framer-name\":\"Desktop escuro\"},nLXl6YOSq:{\"data-framer-name\":\"Phone Planos\"},OXI6IkIV5:{\"data-framer-name\":\"Phone Plataforma\"},pc7J9leh3:{\"data-framer-name\":\"Tablet sobre\"},QhP5u28L8:{\"data-border\":true,\"data-framer-name\":\"phone open escuro\"},SDLim351J:{\"data-framer-name\":\"Phone\"},tH2QWR9Xh:{\"data-framer-name\":\"Phone escuro\"},tyD8rs0El:{\"data-framer-name\":\"Top-sobre\"},WEYkyvPDw:{\"data-framer-name\":\"Tablet escuro\"},xm1mZdSce:{\"data-border\":true,\"data-framer-name\":\"Phone Open Sobre\"},XrNe9tOFt:{\"data-border\":true,\"data-framer-name\":\"Phone Open Blog\"},YX1efW_dX:{\"data-border\":true,\"data-framer-name\":\"loja phone open\"},ZjpG46KMS:{\"data-framer-name\":\"Top-blog\"},zmBLr_nia:{\"data-framer-name\":\"Tablet blog\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fama9m\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wvO60Jn7u\",...addPropertyOverrides({MGdeWGRI6:{\"data-highlight\":true,onTap:onTap80hjdw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w3izhj\",layoutDependency:layoutDependency,layoutId:\"WFJLheB28\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"nTIVTiU5T\",openInNewTab:false,scopeId:\"kqcMs5kHN\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-52)/2)+0+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"},className:\"framer-10hzzh5 framer-1xrwvc5\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"nTIVTiU5T\",whileTap:animation,...addPropertyOverrides({AaSe1LjOJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},AMyQmfoB2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},IkScMllYF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},Il_YgJvD2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},jRtvfnxW7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},MGdeWGRI6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},nLXl6YOSq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},OXI6IkIV5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},QhP5u28L8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},SDLim351J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},tH2QWR9Xh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},xm1mZdSce:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},XrNe9tOFt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}},YX1efW_dX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+0+0)+6+0),pixelHeight:2025,pixelWidth:1620,sizes:\"52px\",src:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png\",srcSet:\"https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CdMHB7lPdCGTctNaQOPGKtBojXo.png 1620w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 85, 0) 0%, rgba(255, 133, 71, 0.99) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"vMN5rqrD1\",openInNewTab:false,scopeId:\"kqcMs5kHN\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-57rakp\",\"data-styles-preset\":\"zMpsiMOLk\",children:[\"TRACK\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\"PLUS\"})]})})})})}),className:\"framer-fs3axf\",fonts:[\"FS;Montserrat-bold\",\"FS;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"vMN5rqrD1\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xh03h7\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"cmy2TrRqV\",...addPropertyOverrides({AaSe1LjOJ:{\"data-highlight\":true,onTap:onTappnem6u},AMyQmfoB2:{\"data-highlight\":true,onTap:onTapm1z2bl},IkScMllYF:{\"data-highlight\":true,onTap:onTapm1z2bl},Il_YgJvD2:{\"data-highlight\":true,onTap:onTapma9xrq},jRtvfnxW7:{\"data-highlight\":true,onTap:onTapm1z2bl},MGdeWGRI6:{\"data-highlight\":true,onTap:onTap80hjdw},nLXl6YOSq:{\"data-highlight\":true,onTap:onTapgk9ato},OXI6IkIV5:{\"data-highlight\":true,onTap:onTap1fxmgcj},QhP5u28L8:{\"data-highlight\":true,onTap:onTapimuzcj},SDLim351J:{\"data-highlight\":true,onTap:onTap10igu7a},tH2QWR9Xh:{\"data-highlight\":true,onTap:onTapvquxk9},xm1mZdSce:{\"data-highlight\":true,onTap:onTapm1z2bl},XrNe9tOFt:{\"data-highlight\":true,onTap:onTapm1z2bl},YX1efW_dX:{\"data-highlight\":true,onTap:onTapm1z2bl}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t5sveg\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"Vt8T2ywAB\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{AaSe1LjOJ:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},AMyQmfoB2:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},IkScMllYF:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},Il_YgJvD2:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},jRtvfnxW7:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},MGdeWGRI6:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},nLXl6YOSq:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},OXI6IkIV5:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},QhP5u28L8:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},SDLim351J:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},tH2QWR9Xh:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},xm1mZdSce:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},XrNe9tOFt:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45},YX1efW_dX:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gom3v1\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"WnAkVVkIV\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{AaSe1LjOJ:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},AMyQmfoB2:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},IkScMllYF:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},Il_YgJvD2:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},jRtvfnxW7:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},MGdeWGRI6:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},nLXl6YOSq:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},OXI6IkIV5:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},QhP5u28L8:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},SDLim351J:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\"},tH2QWR9Xh:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:0},xm1mZdSce:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},XrNe9tOFt:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45},YX1efW_dX:{backgroundColor:\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",rotate:45}}})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"PZCmTG05q\",openInNewTab:false,scopeId:\"kqcMs5kHN\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620},className:\"framer-1iiwhki framer-1xrwvc5\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"PZCmTG05q\",style:{rotate:0},variants:{QhP5u28L8:{rotate:0},xm1mZdSce:{rotate:-1},YX1efW_dX:{rotate:0}},whileTap:animation})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2025,intrinsicWidth:1620},className:\"framer-1lp8qlt\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Zo3pvYDqR\",whileTap:animation})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12dbbq3\",layoutDependency:layoutDependency,layoutId:\"QjWyxieSc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c6jaeh\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"xZZxI6dN_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+2.5,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z3yslk-container\",layoutDependency:layoutDependency,layoutId:\"a_UMdnFp4-container\",nodeId:\"a_UMdnFp4\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtTP7,{height:\"100%\",id:\"a_UMdnFp4\",layoutId:\"a_UMdnFp4\",variant:\"bfKiKhauH\",width:\"100%\",...addPropertyOverrides({mmB9FGD5g:{variant:\"gse22fwB7\"},QhP5u28L8:{variant:\"gse22fwB7\"},WEYkyvPDw:{variant:\"gse22fwB7\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+2.5,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kp6vkr-container\",\"data-framer-name\":\"BT-loja\",layoutDependency:layoutDependency,layoutId:\"R08Dtanlf-container\",name:\"BT-loja\",nodeId:\"R08Dtanlf\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtLOJA,{height:\"100%\",id:\"R08Dtanlf\",layoutId:\"R08Dtanlf\",name:\"BT-loja\",variant:\"vNds7VaRM\",width:\"100%\",xQwVWT1gC:\"Loja\",...addPropertyOverrides({mmB9FGD5g:{variant:\"FzqGzQaSe\"},QhP5u28L8:{variant:\"FzqGzQaSe\"},WEYkyvPDw:{variant:\"FzqGzQaSe\"},YX1efW_dX:{variant:lv3Nf4Jog}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+2,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19zf076-container\",\"data-framer-name\":\"Bt-planos\",layoutDependency:layoutDependency,layoutId:\"YAGjZTc36-container\",name:\"Bt-planos\",nodeId:\"YAGjZTc36\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtPLANOS,{height:\"100%\",id:\"YAGjZTc36\",layoutId:\"YAGjZTc36\",name:\"Bt-planos\",pH2vTRAaX:\"Planos\",variant:\"qlcFwb0Ig\",width:\"100%\",...addPropertyOverrides({Iuy52E2qy:{variant:\"MtJ989GSb\"},L1VLZo9f6:{variant:\"MtJ989GSb\"},mmB9FGD5g:{variant:\"Pu4JtsXfK\"},QhP5u28L8:{variant:\"Pu4JtsXfK\"},WEYkyvPDw:{variant:\"Pu4JtsXfK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+2,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+133}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q9zhwj-container\",layoutDependency:layoutDependency,layoutId:\"HBqGbw194-container\",nodeId:\"HBqGbw194\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtBlogCopy,{height:\"100%\",id:\"HBqGbw194\",kCZjA7nAe:\"Blog\",layoutId:\"HBqGbw194\",variant:\"FgO65avzm\",width:\"100%\",...addPropertyOverrides({mmB9FGD5g:{variant:\"OeYn7Bjuq\"},QhP5u28L8:{variant:\"OeYn7Bjuq\"},WEYkyvPDw:{variant:\"OeYn7Bjuq\"},XrNe9tOFt:{variant:\"lXCTFOAyP\"},ZjpG46KMS:{variant:\"lXCTFOAyP\"},zmBLr_nia:{variant:\"lXCTFOAyP\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+2,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1brefd7-container\",layoutDependency:layoutDependency,layoutId:\"DOqTDuWJL-container\",nodeId:\"DOqTDuWJL\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtPlataformaCopy,{aX1EwDlw8:\"Plataforma\",height:\"100%\",id:\"DOqTDuWJL\",layoutId:\"DOqTDuWJL\",variant:\"bCnF1fC2c\",width:\"100%\",...addPropertyOverrides({AMyQmfoB2:{variant:\"rVYLTi94P\"},guMKYXqf0:{variant:\"rVYLTi94P\"},JrnYvGK_e:{variant:\"rVYLTi94P\"},mmB9FGD5g:{variant:\"ICARDixiW\"},QhP5u28L8:{variant:\"ICARDixiW\"},WEYkyvPDw:{variant:\"ICARDixiW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+3,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+223}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2rzyi0-container\",layoutDependency:layoutDependency,layoutId:\"UTD9U6Ak8-container\",nodeId:\"UTD9U6Ak8\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(BtSuporteCopy,{height:\"100%\",id:\"UTD9U6Ak8\",layoutId:\"UTD9U6Ak8\",v9TsGY_N1:\"Sobre\",variant:\"KnbqDyhNJ\",width:\"100%\",...addPropertyOverrides({mmB9FGD5g:{variant:\"WXyGgKoVR\"},pc7J9leh3:{variant:\"tXO5IDrzA\"},QhP5u28L8:{variant:\"WXyGgKoVR\"},tyD8rs0El:{variant:\"tXO5IDrzA\"},WEYkyvPDw:{variant:\"WXyGgKoVR\"},xm1mZdSce:{variant:\"tXO5IDrzA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-24)/2)+0+0,...addPropertyOverrides({AMyQmfoB2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},IkScMllYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},jRtvfnxW7:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},QhP5u28L8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},xm1mZdSce:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},XrNe9tOFt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266},YX1efW_dX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+0+0+266}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ds22cw-container\",layoutDependency:layoutDependency,layoutId:\"wZxcQ9yX2-container\",nodeId:\"wZxcQ9yX2\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation1,children:/*#__PURE__*/_jsx(Bt2Via,{height:\"100%\",id:\"wZxcQ9yX2\",layoutId:\"wZxcQ9yX2\",variant:\"zAQAptIk7\",width:\"100%\",...addPropertyOverrides({mmB9FGD5g:{variant:\"XZz5xYhuN\"},QhP5u28L8:{variant:\"XZz5xYhuN\"},WEYkyvPDw:{variant:\"XZz5xYhuN\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Yi33ug3Kj\"},motionChild:true,nodeId:\"JjznOdEa3\",openInNewTab:true,scopeId:\"kqcMs5kHN\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n8iuvn framer-1xrwvc5\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"JjznOdEa3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,width:\"90px\",...addPropertyOverrides({AMyQmfoB2:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},IkScMllYF:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},jRtvfnxW7:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},QhP5u28L8:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},xm1mZdSce:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},XrNe9tOFt:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0},YX1efW_dX:{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||421)-0-421)/2+64+0)+20+242+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qanvua-container\",layoutDependency:layoutDependency,layoutId:\"aSsh33HLo-container\",nodeId:\"aSsh33HLo\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileTap:animation,children:/*#__PURE__*/_jsx(BtEntrarCopy,{height:\"100%\",id:\"aSsh33HLo\",layoutId:\"aSsh33HLo\",oN7JVSmMg:\"Entrar\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tf8i3a\",layoutDependency:layoutDependency,layoutId:\"sSDIN7UlA\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bfh87q\",\"data-highlight\":true,id:`${layoutId}-bfh87q`,layoutDependency:layoutDependency,layoutId:\"Rty1P18yr\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-bfh87q`,offsetX:-324.49997019860893,offsetY:135.9999895915389,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1oslpkc\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"U8RkevB2a\",ref:ref2,role:\"dialog\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-29d14bd6-b468-4eed-b01c-0ac5f01375c5, rgb(255, 85, 0))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xig9f3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E07eNphd4-container\",nodeId:\"E07eNphd4\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"\",gap:15,height:\"100%\",id:\"E07eNphd4\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"E07eNphd4\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})})})})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"90px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-38)/2)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19gu4l-container\",layoutDependency:layoutDependency,layoutId:\"qt1FCN6tS-container\",nodeId:\"qt1FCN6tS\",rendersWithMotion:true,scopeId:\"kqcMs5kHN\",whileHover:animation,children:/*#__PURE__*/_jsx(BtEntrarCopy,{height:\"100%\",id:\"qt1FCN6tS\",layoutId:\"qt1FCN6tS\",oN7JVSmMg:\"Entrar\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uDImd.framer-1xrwvc5, .framer-uDImd .framer-1xrwvc5 { display: block; }\",\".framer-uDImd.framer-1o1tkq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 75px; justify-content: space-evenly; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-uDImd .framer-1fama9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 230px; }\",\".framer-uDImd .framer-w3izhj { flex: none; height: 52px; overflow: visible; position: relative; width: 203px; }\",\".framer-uDImd .framer-10hzzh5 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 0px; width: var(--framer-aspect-ratio-supported, 52px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uDImd .framer-fs3axf { flex: none; height: auto; position: absolute; right: 0px; top: 48%; white-space: pre; width: auto; }\",\".framer-uDImd .framer-xh03h7 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-uDImd .framer-t5sveg { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uDImd .framer-gom3v1 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uDImd .framer-1iiwhki { flex: none; height: 10px; overflow: hidden; position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uDImd .framer-1lp8qlt { flex: none; height: 10px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uDImd .framer-12dbbq3 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uDImd .framer-c6jaeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 430px; }\",\".framer-uDImd .framer-z3yslk-container, .framer-uDImd .framer-1kp6vkr-container, .framer-uDImd .framer-19zf076-container, .framer-uDImd .framer-1q9zhwj-container, .framer-uDImd .framer-1brefd7-container, .framer-uDImd .framer-2rzyi0-container, .framer-uDImd .framer-ds22cw-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uDImd .framer-1n8iuvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-uDImd .framer-1qanvua-container { flex: none; height: 35px; position: relative; width: 90px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-uDImd .framer-tf8i3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uDImd .framer-bfh87q { flex: none; height: 27px; overflow: visible; position: relative; width: 117px; }\",\".framer-uDImd .framer-1oslpkc { height: 573px; overflow: hidden; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uDImd .framer-xig9f3-container { flex: none; height: 290px; left: calc(50.00000000000002% - 550px / 2); position: absolute; top: calc(50.087260034904034% - 290px / 2); width: 550px; }\",\".framer-uDImd .framer-19gu4l-container { flex: none; height: 38px; position: relative; width: 90px; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd .framer-1fama9m, .framer-uDImd .framer-12dbbq3, .framer-uDImd .framer-1n8iuvn, .framer-uDImd .framer-tf8i3a { gap: 0px; } .framer-uDImd .framer-1fama9m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd .framer-1fama9m > :first-child, .framer-uDImd .framer-12dbbq3 > :first-child, .framer-uDImd .framer-1n8iuvn > :first-child, .framer-uDImd .framer-tf8i3a > :first-child { margin-left: 0px; } .framer-uDImd .framer-1fama9m > :last-child, .framer-uDImd .framer-12dbbq3 > :last-child, .framer-uDImd .framer-1n8iuvn > :last-child, .framer-uDImd .framer-tf8i3a > :last-child { margin-right: 0px; } .framer-uDImd .framer-12dbbq3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uDImd .framer-1n8iuvn > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-uDImd .framer-tf8i3a > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } }\",\".framer-uDImd.framer-v-13u754.framer-1o1tkq, .framer-uDImd.framer-v-kuu2lo.framer-1o1tkq, .framer-uDImd.framer-v-1assr2u.framer-1o1tkq, .framer-uDImd.framer-v-q3g0vd.framer-1o1tkq, .framer-uDImd.framer-v-r7rop7.framer-1o1tkq, .framer-uDImd.framer-v-15y337.framer-1o1tkq { align-content: flex-start; align-items: flex-start; gap: 0px; height: min-content; justify-content: center; width: min-content; }\",\".framer-uDImd.framer-v-13u754 .framer-1fama9m, .framer-uDImd.framer-v-18o3v5f .framer-1fama9m { gap: unset; height: 64px; justify-content: space-between; width: 390px; }\",\".framer-uDImd.framer-v-13u754 .framer-w3izhj, .framer-uDImd.framer-v-qux3hk .framer-w3izhj, .framer-uDImd.framer-v-kuu2lo .framer-w3izhj, .framer-uDImd.framer-v-15y0fsf .framer-w3izhj, .framer-uDImd.framer-v-1assr2u .framer-w3izhj, .framer-uDImd.framer-v-wbtvs6 .framer-w3izhj, .framer-uDImd.framer-v-q3g0vd .framer-w3izhj, .framer-uDImd.framer-v-184nmoi .framer-w3izhj, .framer-uDImd.framer-v-r7rop7 .framer-w3izhj, .framer-uDImd.framer-v-py4eu7 .framer-w3izhj, .framer-uDImd.framer-v-18o3v5f .framer-w3izhj, .framer-uDImd.framer-v-6dzbky .framer-w3izhj, .framer-uDImd.framer-v-15y337 .framer-w3izhj, .framer-uDImd.framer-v-aqb6ek .framer-w3izhj { order: 0; }\",\".framer-uDImd.framer-v-13u754 .framer-xh03h7, .framer-uDImd.framer-v-qux3hk .framer-xh03h7, .framer-uDImd.framer-v-kuu2lo .framer-xh03h7, .framer-uDImd.framer-v-15y0fsf .framer-xh03h7, .framer-uDImd.framer-v-1assr2u .framer-xh03h7, .framer-uDImd.framer-v-wbtvs6 .framer-xh03h7, .framer-uDImd.framer-v-q3g0vd .framer-xh03h7, .framer-uDImd.framer-v-184nmoi .framer-xh03h7, .framer-uDImd.framer-v-r7rop7 .framer-xh03h7, .framer-uDImd.framer-v-py4eu7 .framer-xh03h7, .framer-uDImd.framer-v-18o3v5f .framer-xh03h7, .framer-uDImd.framer-v-6dzbky .framer-xh03h7, .framer-uDImd.framer-v-15y337 .framer-xh03h7, .framer-uDImd.framer-v-aqb6ek .framer-xh03h7 { cursor: pointer; height: 44px; order: 2; width: 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-13u754.framer-1o1tkq, .framer-uDImd.framer-v-13u754 .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-13u754.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-13u754.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-13u754.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-13u754 .framer-1fama9m > *, .framer-uDImd.framer-v-13u754 .framer-1fama9m > :first-child, .framer-uDImd.framer-v-13u754 .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-qux3hk.framer-1o1tkq, .framer-uDImd.framer-v-15y0fsf.framer-1o1tkq, .framer-uDImd.framer-v-wbtvs6.framer-1o1tkq, .framer-uDImd.framer-v-184nmoi.framer-1o1tkq, .framer-uDImd.framer-v-py4eu7.framer-1o1tkq, .framer-uDImd.framer-v-6dzbky.framer-1o1tkq, .framer-uDImd.framer-v-aqb6ek.framer-1o1tkq { flex-direction: column; gap: 0px; height: min-content; justify-content: center; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-uDImd.framer-v-qux3hk .framer-1fama9m, .framer-uDImd.framer-v-kuu2lo .framer-1fama9m, .framer-uDImd.framer-v-15y0fsf .framer-1fama9m, .framer-uDImd.framer-v-1assr2u .framer-1fama9m, .framer-uDImd.framer-v-wbtvs6 .framer-1fama9m, .framer-uDImd.framer-v-q3g0vd .framer-1fama9m, .framer-uDImd.framer-v-184nmoi .framer-1fama9m, .framer-uDImd.framer-v-r7rop7 .framer-1fama9m, .framer-uDImd.framer-v-py4eu7 .framer-1fama9m, .framer-uDImd.framer-v-6dzbky .framer-1fama9m, .framer-uDImd.framer-v-aqb6ek .framer-1fama9m { gap: unset; height: 64px; justify-content: space-around; width: 390px; }\",\".framer-uDImd.framer-v-qux3hk .framer-t5sveg, .framer-uDImd.framer-v-qux3hk .framer-gom3v1, .framer-uDImd.framer-v-15y0fsf .framer-t5sveg, .framer-uDImd.framer-v-15y0fsf .framer-gom3v1, .framer-uDImd.framer-v-wbtvs6 .framer-t5sveg, .framer-uDImd.framer-v-wbtvs6 .framer-gom3v1, .framer-uDImd.framer-v-184nmoi .framer-t5sveg, .framer-uDImd.framer-v-184nmoi .framer-gom3v1, .framer-uDImd.framer-v-py4eu7 .framer-t5sveg, .framer-uDImd.framer-v-py4eu7 .framer-gom3v1, .framer-uDImd.framer-v-6dzbky .framer-t5sveg, .framer-uDImd.framer-v-6dzbky .framer-gom3v1, .framer-uDImd.framer-v-aqb6ek .framer-t5sveg, .framer-uDImd.framer-v-aqb6ek .framer-gom3v1 { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-uDImd.framer-v-qux3hk .framer-1iiwhki { height: 6px; order: 1; width: 142px; }\",\".framer-uDImd.framer-v-qux3hk .framer-12dbbq3, .framer-uDImd.framer-v-15y0fsf .framer-12dbbq3, .framer-uDImd.framer-v-wbtvs6 .framer-12dbbq3, .framer-uDImd.framer-v-184nmoi .framer-12dbbq3, .framer-uDImd.framer-v-py4eu7 .framer-12dbbq3, .framer-uDImd.framer-v-6dzbky .framer-12dbbq3, .framer-uDImd.framer-v-aqb6ek .framer-12dbbq3 { align-content: flex-end; align-items: flex-end; padding: 20px; }\",\".framer-uDImd.framer-v-qux3hk .framer-c6jaeh, .framer-uDImd.framer-v-15y0fsf .framer-c6jaeh, .framer-uDImd.framer-v-wbtvs6 .framer-c6jaeh, .framer-uDImd.framer-v-184nmoi .framer-c6jaeh, .framer-uDImd.framer-v-py4eu7 .framer-c6jaeh, .framer-uDImd.framer-v-6dzbky .framer-c6jaeh, .framer-uDImd.framer-v-aqb6ek .framer-c6jaeh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 25px; justify-content: flex-start; order: 0; width: 233px; }\",\".framer-uDImd.framer-v-qux3hk .framer-1n8iuvn, .framer-uDImd.framer-v-15y0fsf .framer-1n8iuvn, .framer-uDImd.framer-v-wbtvs6 .framer-1n8iuvn, .framer-uDImd.framer-v-184nmoi .framer-1n8iuvn, .framer-uDImd.framer-v-py4eu7 .framer-1n8iuvn, .framer-uDImd.framer-v-6dzbky .framer-1n8iuvn, .framer-uDImd.framer-v-aqb6ek .framer-1n8iuvn { order: 1; }\",\".framer-uDImd.framer-v-qux3hk .framer-1qanvua-container, .framer-uDImd.framer-v-15y0fsf .framer-1qanvua-container, .framer-uDImd.framer-v-wbtvs6 .framer-1qanvua-container, .framer-uDImd.framer-v-184nmoi .framer-1qanvua-container, .framer-uDImd.framer-v-py4eu7 .framer-1qanvua-container, .framer-uDImd.framer-v-6dzbky .framer-1qanvua-container, .framer-uDImd.framer-v-aqb6ek .framer-1qanvua-container { height: 48px; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-qux3hk.framer-1o1tkq, .framer-uDImd.framer-v-qux3hk .framer-1fama9m, .framer-uDImd.framer-v-qux3hk .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-qux3hk.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-qux3hk.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-qux3hk .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-qux3hk.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-qux3hk .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-qux3hk .framer-1fama9m > *, .framer-uDImd.framer-v-qux3hk .framer-1fama9m > :first-child, .framer-uDImd.framer-v-qux3hk .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-qux3hk .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-kuu2lo .framer-1lp8qlt { height: 1px; order: 1; width: 139px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-kuu2lo.framer-1o1tkq, .framer-uDImd.framer-v-kuu2lo .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-kuu2lo.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-kuu2lo.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-kuu2lo.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-kuu2lo .framer-1fama9m > *, .framer-uDImd.framer-v-kuu2lo .framer-1fama9m > :first-child, .framer-uDImd.framer-v-kuu2lo .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-15y0fsf .framer-1iiwhki { height: 7px; order: 1; width: 138px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-15y0fsf.framer-1o1tkq, .framer-uDImd.framer-v-15y0fsf .framer-1fama9m, .framer-uDImd.framer-v-15y0fsf .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-15y0fsf.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-15y0fsf.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-15y0fsf .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-15y0fsf.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-15y0fsf .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-15y0fsf .framer-1fama9m > *, .framer-uDImd.framer-v-15y0fsf .framer-1fama9m > :first-child, .framer-uDImd.framer-v-15y0fsf .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-15y0fsf .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-1assr2u .framer-1lp8qlt, .framer-uDImd.framer-v-15y337 .framer-1lp8qlt { height: 13px; order: 1; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-1assr2u.framer-1o1tkq, .framer-uDImd.framer-v-1assr2u .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-1assr2u.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-1assr2u.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-1assr2u.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-1assr2u .framer-1fama9m > *, .framer-uDImd.framer-v-1assr2u .framer-1fama9m > :first-child, .framer-uDImd.framer-v-1assr2u .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-wbtvs6 .framer-1iiwhki, .framer-uDImd.framer-v-aqb6ek .framer-1iiwhki { height: 3px; order: 1; width: 139px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-wbtvs6.framer-1o1tkq, .framer-uDImd.framer-v-wbtvs6 .framer-1fama9m, .framer-uDImd.framer-v-wbtvs6 .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-wbtvs6.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-wbtvs6.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-wbtvs6 .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-wbtvs6.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-wbtvs6 .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-wbtvs6 .framer-1fama9m > *, .framer-uDImd.framer-v-wbtvs6 .framer-1fama9m > :first-child, .framer-uDImd.framer-v-wbtvs6 .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-wbtvs6 .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-q3g0vd .framer-1lp8qlt { height: 5px; order: 1; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-q3g0vd.framer-1o1tkq, .framer-uDImd.framer-v-q3g0vd .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-q3g0vd.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-q3g0vd.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-q3g0vd.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-q3g0vd .framer-1fama9m > *, .framer-uDImd.framer-v-q3g0vd .framer-1fama9m > :first-child, .framer-uDImd.framer-v-q3g0vd .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-184nmoi .framer-1iiwhki { height: 3px; order: 1; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-184nmoi.framer-1o1tkq, .framer-uDImd.framer-v-184nmoi .framer-1fama9m, .framer-uDImd.framer-v-184nmoi .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-184nmoi.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-184nmoi.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-184nmoi .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-184nmoi.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-184nmoi .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-184nmoi .framer-1fama9m > *, .framer-uDImd.framer-v-184nmoi .framer-1fama9m > :first-child, .framer-uDImd.framer-v-184nmoi .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-184nmoi .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-r7rop7 .framer-1lp8qlt { height: 11px; order: 1; width: 135px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-r7rop7.framer-1o1tkq, .framer-uDImd.framer-v-r7rop7 .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-r7rop7.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-r7rop7.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-r7rop7.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-r7rop7 .framer-1fama9m > *, .framer-uDImd.framer-v-r7rop7 .framer-1fama9m > :first-child, .framer-uDImd.framer-v-r7rop7 .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-py4eu7 .framer-1iiwhki { height: 12px; order: 1; width: 139px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-py4eu7.framer-1o1tkq, .framer-uDImd.framer-v-py4eu7 .framer-1fama9m, .framer-uDImd.framer-v-py4eu7 .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-py4eu7.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-py4eu7.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-py4eu7 .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-py4eu7.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-py4eu7 .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-py4eu7 .framer-1fama9m > *, .framer-uDImd.framer-v-py4eu7 .framer-1fama9m > :first-child, .framer-uDImd.framer-v-py4eu7 .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-py4eu7 .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-1mv9liy.framer-1o1tkq, .framer-uDImd.framer-v-12ua5ae.framer-1o1tkq, .framer-uDImd.framer-v-sourvq.framer-1o1tkq, .framer-uDImd.framer-v-1qyoh8x.framer-1o1tkq, .framer-uDImd.framer-v-6m2tos.framer-1o1tkq { width: 810px; }\",\".framer-uDImd.framer-v-1mv9liy .framer-1fama9m, .framer-uDImd.framer-v-12ua5ae .framer-1fama9m, .framer-uDImd.framer-v-sourvq .framer-1fama9m, .framer-uDImd.framer-v-1qyoh8x .framer-1fama9m, .framer-uDImd.framer-v-6m2tos .framer-1fama9m, .framer-uDImd.framer-v-1p4hk7p .framer-1fama9m, .framer-uDImd.framer-v-1dhqzfd .framer-1fama9m { width: min-content; }\",\".framer-uDImd.framer-v-1mv9liy .framer-19gu4l-container, .framer-uDImd.framer-v-12ua5ae .framer-19gu4l-container, .framer-uDImd.framer-v-sourvq .framer-19gu4l-container, .framer-uDImd.framer-v-1qyoh8x .framer-19gu4l-container, .framer-uDImd.framer-v-6m2tos .framer-19gu4l-container, .framer-uDImd.framer-v-1p4hk7p .framer-19gu4l-container, .framer-uDImd.framer-v-1dhqzfd .framer-19gu4l-container { order: 2; }\",\".framer-uDImd.framer-v-18o3v5f.framer-1o1tkq { align-content: flex-start; align-items: flex-start; gap: 0px; height: min-content; justify-content: center; padding: 0px 25px 0px 25px; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-18o3v5f.framer-1o1tkq, .framer-uDImd.framer-v-18o3v5f .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-18o3v5f.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-18o3v5f.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-18o3v5f.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-18o3v5f .framer-1fama9m > *, .framer-uDImd.framer-v-18o3v5f .framer-1fama9m > :first-child, .framer-uDImd.framer-v-18o3v5f .framer-1fama9m > :last-child { margin: 0px; } }\",\".framer-uDImd.framer-v-6dzbky .framer-1iiwhki { height: 11px; order: 1; width: 140px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-6dzbky.framer-1o1tkq, .framer-uDImd.framer-v-6dzbky .framer-1fama9m, .framer-uDImd.framer-v-6dzbky .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-6dzbky.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-6dzbky.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-6dzbky .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-6dzbky.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-6dzbky .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-6dzbky .framer-1fama9m > *, .framer-uDImd.framer-v-6dzbky .framer-1fama9m > :first-child, .framer-uDImd.framer-v-6dzbky .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-6dzbky .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-uDImd.framer-v-1p4hk7p.framer-1o1tkq, .framer-uDImd.framer-v-1dhqzfd.framer-1o1tkq { cursor: pointer; width: 810px; }\",\".framer-uDImd.framer-v-15y337 .framer-1fama9m { cursor: pointer; gap: unset; height: 64px; justify-content: space-around; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-15y337.framer-1o1tkq, .framer-uDImd.framer-v-15y337 .framer-1fama9m { gap: 0px; } .framer-uDImd.framer-v-15y337.framer-1o1tkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uDImd.framer-v-15y337.framer-1o1tkq > :first-child { margin-left: 0px; } .framer-uDImd.framer-v-15y337.framer-1o1tkq > :last-child { margin-right: 0px; } .framer-uDImd.framer-v-15y337 .framer-1fama9m > *, .framer-uDImd.framer-v-15y337 .framer-1fama9m > :first-child, .framer-uDImd.framer-v-15y337 .framer-1fama9m > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uDImd.framer-v-aqb6ek.framer-1o1tkq, .framer-uDImd.framer-v-aqb6ek .framer-1fama9m, .framer-uDImd.framer-v-aqb6ek .framer-c6jaeh { gap: 0px; } .framer-uDImd.framer-v-aqb6ek.framer-1o1tkq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uDImd.framer-v-aqb6ek.framer-1o1tkq > :first-child, .framer-uDImd.framer-v-aqb6ek .framer-c6jaeh > :first-child { margin-top: 0px; } .framer-uDImd.framer-v-aqb6ek.framer-1o1tkq > :last-child, .framer-uDImd.framer-v-aqb6ek .framer-c6jaeh > :last-child { margin-bottom: 0px; } .framer-uDImd.framer-v-aqb6ek .framer-1fama9m > *, .framer-uDImd.framer-v-aqb6ek .framer-1fama9m > :first-child, .framer-uDImd.framer-v-aqb6ek .framer-1fama9m > :last-child { margin: 0px; } .framer-uDImd.framer-v-aqb6ek .framer-c6jaeh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",...sharedStyle.css,'.framer-uDImd[data-border=\"true\"]::after, .framer-uDImd [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 75\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SDLim351J\":{\"layout\":[\"auto\",\"auto\"]},\"IkScMllYF\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"guMKYXqf0\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZjpG46KMS\":{\"layout\":[\"fixed\",\"fixed\"]},\"tyD8rs0El\":{\"layout\":[\"fixed\",\"fixed\"]},\"Iuy52E2qy\":{\"layout\":[\"fixed\",\"fixed\"]},\"nLXl6YOSq\":{\"layout\":[\"auto\",\"auto\"]},\"jRtvfnxW7\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"AaSe1LjOJ\":{\"layout\":[\"auto\",\"auto\"]},\"XrNe9tOFt\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"OXI6IkIV5\":{\"layout\":[\"auto\",\"auto\"]},\"AMyQmfoB2\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"Il_YgJvD2\":{\"layout\":[\"auto\",\"auto\"]},\"xm1mZdSce\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"DZxYM9Qr2\":{\"layout\":[\"fixed\",\"fixed\"]},\"tH2QWR9Xh\":{\"layout\":[\"auto\",\"auto\"]},\"QhP5u28L8\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"mmB9FGD5g\":{\"layout\":[\"fixed\",\"fixed\"]},\"WEYkyvPDw\":{\"layout\":[\"fixed\",\"fixed\"]},\"JrnYvGK_e\":{\"layout\":[\"fixed\",\"fixed\"]},\"zmBLr_nia\":{\"layout\":[\"fixed\",\"fixed\"]},\"pc7J9leh3\":{\"layout\":[\"fixed\",\"fixed\"]},\"L1VLZo9f6\":{\"layout\":[\"fixed\",\"fixed\"]},\"iJP1vnryc\":{\"layout\":[\"fixed\",\"fixed\"]},\"G5QhNQOAM\":{\"layout\":[\"fixed\",\"fixed\"]},\"MGdeWGRI6\":{\"layout\":[\"auto\",\"auto\"]},\"YX1efW_dX\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerVariables {\"lv3Nf4Jog\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkqcMs5kHN=withCSS(Component,css,\"framer-uDImd\");export default FramerkqcMs5kHN;FramerkqcMs5kHN.displayName=\"Navigation\";FramerkqcMs5kHN.defaultProps={height:75,width:1200};addPropertyControls(FramerkqcMs5kHN,{variant:{options:[\"URxSnrC6f\",\"SDLim351J\",\"IkScMllYF\",\"guMKYXqf0\",\"ZjpG46KMS\",\"tyD8rs0El\",\"Iuy52E2qy\",\"nLXl6YOSq\",\"jRtvfnxW7\",\"AaSe1LjOJ\",\"XrNe9tOFt\",\"OXI6IkIV5\",\"AMyQmfoB2\",\"Il_YgJvD2\",\"xm1mZdSce\",\"DZxYM9Qr2\",\"tH2QWR9Xh\",\"QhP5u28L8\",\"mmB9FGD5g\",\"WEYkyvPDw\",\"JrnYvGK_e\",\"zmBLr_nia\",\"pc7J9leh3\",\"L1VLZo9f6\",\"iJP1vnryc\",\"G5QhNQOAM\",\"MGdeWGRI6\",\"YX1efW_dX\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Top-plataforma\",\"Top-blog\",\"Top-sobre\",\"Top-planos\",\"Phone Planos\",\"Phone Open Planos\",\"Phone Blog\",\"Phone Open Blog\",\"Phone Plataforma\",\"Phone Open Plataforma\",\"Phone Sobre\",\"Phone Open Sobre\",\"tablet\",\"Phone escuro\",\"phone open escuro\",\"Desktop escuro\",\"Tablet escuro\",\"Tablet plataforma\",\"Tablet blog\",\"Tablet sobre\",\"Tablet planos\",\"loja desk\",\"loja tablet\",\"loja phone\",\"loja phone open\"],title:\"Variant\",type:ControlType.Enum},lv3Nf4Jog:BtLOJAControls?.[\"variant\"]&&{...BtLOJAControls[\"variant\"],defaultValue:\"vNds7VaRM\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FramerkqcMs5kHN,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"}]},...BtTP7Fonts,...BtLOJAFonts,...BtPLANOSFonts,...BtBlogCopyFonts,...BtPlataformaCopyFonts,...BtSuporteCopyFonts,...Bt2ViaFonts,...BtEntrarCopyFonts,...FormSparkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkqcMs5kHN\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"75\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SDLim351J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IkScMllYF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"guMKYXqf0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZjpG46KMS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tyD8rs0El\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Iuy52E2qy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nLXl6YOSq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jRtvfnxW7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"AaSe1LjOJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XrNe9tOFt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"OXI6IkIV5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AMyQmfoB2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"Il_YgJvD2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xm1mZdSce\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"DZxYM9Qr2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tH2QWR9Xh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QhP5u28L8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"mmB9FGD5g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WEYkyvPDw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JrnYvGK_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zmBLr_nia\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pc7J9leh3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"L1VLZo9f6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iJP1vnryc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G5QhNQOAM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MGdeWGRI6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YX1efW_dX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"lv3Nf4Jog\\\":\\\"variant1\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "oN7JVSmMg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerCe14FS2fb", "withCSS", "Ce14FS2fb_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xQwVWT1gC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapui1xqo", "args", "onTapwgk67k", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerIDr2kZX1u", "withCSS", "IDr2kZX1u_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pH2vTRAaX", "Pj5g76ivw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1avs4ui", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerM1Hapk7e_", "withCSS", "M1Hapk7e_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aX1EwDlw8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerPaW4UaEoF", "withCSS", "PaW4UaEoF_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "Framers5zj9RUrP", "withCSS", "s5zj9RUrP_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "kCZjA7nAe", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramertRNHH3o6k", "withCSS", "tRNHH3o6k_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "v9TsGY_N1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerUAPf0Lqt6", "withCSS", "UAPf0Lqt6_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerWYOc6Oxk_", "withCSS", "WYOc6Oxk_default", "addPropertyControls", "ControlType", "addFonts", "BtTP7Fonts", "getFonts", "WYOc6Oxk_default", "BtLOJAFonts", "IDr2kZX1u_default", "BtPLANOSFonts", "M1Hapk7e_default", "BtBlogCopyFonts", "tRNHH3o6k_default", "BtPlataformaCopyFonts", "PaW4UaEoF_default", "BtSuporteCopyFonts", "UAPf0Lqt6_default", "Bt2ViaFonts", "s5zj9RUrP_default", "BtEntrarCopyFonts", "Ce14FS2fb_default", "FormSparkFonts", "FormSpark_default", "MotionDivWithFX", "withFX", "motion", "BtLOJAControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "animation3", "animation4", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "variant1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lv3Nf4Jog", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4zbyd6", "args", "onTap3t1pz5", "onTap80hjdw", "onTap10igu7a", "onTapm1z2bl", "onTapgk9ato", "onTappnem6u", "onTap1fxmgcj", "onTapma9xrq", "onTapvquxk9", "onTapimuzcj", "onMouseEntertxyyif", "overlay", "loadMore", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "ref1", "ref2", "isDisplayed5", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "AnimatePresence", "Floating", "css", "FramerkqcMs5kHN", "withCSS", "kqcMs5kHN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
