{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js", "ssg:https://framerusercontent.com/modules/jn6TEpt8WjkvX4LNRUN6/IYBHxTyl4fw2XP7mdqjP/nNlMVo66D.js", "ssg:https://framerusercontent.com/modules/mgG58jbp8CEckh1x0I8g/QPnqbFdiEHFTRG0EnQh1/AzTnowcho.js", "ssg:https://framerusercontent.com/modules/sorQ8sMndkWTKhZPp2Sc/OAn6uXHrGHPObrpd52hg/MT4WFwG04.js", "ssg:https://framerusercontent.com/modules/TRbHoewTUMN4o6S9JSlu/dgtgPxhLOK9mT3saPpev/E9TLOow3n.js", "ssg:https://framerusercontent.com/modules/hZHFCq0dqv00PmYZBBDS/b7gE8w5c3sg07swEdOne/FsT_hJ3CP.js", "ssg:https://framerusercontent.com/modules/MQnqTytjbAd3ktmjdL59/fh9UzAKeyd8BJcI8PNyh/G8vgCyTlX.js", "ssg:https://framerusercontent.com/modules/bTe4ANLDsoOjiXc9Pvfa/1PU1nlqcuIqtSx7cSTO1/lcnogRWEO.js", "ssg:https://framerusercontent.com/modules/9H4DZgkGdjDP36cPbBkT/PTD4cMi2Pw7tfzgGmOab/soTRgg_ue.js", "ssg:https://framerusercontent.com/modules/SPGYclFbFZtzQL7mqd0l/GfuHkZMhaaFlXcru276q/vlBjMG0_q.js", "ssg:https://framerusercontent.com/modules/sXDAyGzauoor1hZJgrXh/SCbpKhyGLgVKBqcg66YO/DKEYf50Uw.js", "ssg:https://framerusercontent.com/modules/iTMLmReEf3sN8yv8TnSv/6Wuh0FnZ24usRrMLVN4Y/r3T3EQ6vH.js", "ssg:https://framerusercontent.com/modules/JOCdS68nKrOcQWvyIOWB/rTlCcB26nN7zknW9TimH/Xz0nT8A15.js", "ssg:https://framerusercontent.com/modules/rMJVv0FbUTJchvKN67N7/RSYEm4HI6egeS988qf5s/Vw8xu4fHQ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;const calculateTimeLeft=(difference,digitCount)=>{if(difference>0){return{days:minTwoDigits(Math.floor(difference/(1e3*60*60*24)),digitCount),hours:minTwoDigits(Math.floor(difference/(1e3*60*60)%24),digitCount),minutes:minTwoDigits(Math.floor(difference/1e3/60%60),digitCount),seconds:minTwoDigits(Math.floor(difference/1e3%60),digitCount)};}return{days:0,hours:0,minutes:0,seconds:0};};function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function minTwoDigits(number,digitCount){if(digitCount)return number;else return(number<10?\"0\":\"\")+number;}function wrapInSpan(colorValue,string){return /*#__PURE__*/_jsx(\"span\",{style:{color:colorValue},children:string});}function createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor){// Dots as default labels\nlet days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,space,showHours?wrapInSpan(labelColor,`:`):``]});let hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,space,showMinutes?wrapInSpan(labelColor,`:`):``]}):``;let minutes=showHours&&showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,space,showSeconds?wrapInSpan(labelColor,`:`):``]}):``;let seconds=showHours&&showMinutes&&showSeconds?timeLeft.seconds:``;// Custom labels have different logic\n// Dots you want to hide depending on the next item, but labels you do not\n// For example, 20D 4H is a common notation, but you do not want 20:4:, you want 20:4\nif(!labelType){days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,spaceForLabel,wrapInSpan(labelColor,dayLabel)]});hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,spaceForLabel,wrapInSpan(labelColor,hourLabel)]}):``;minutes=showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,spaceForLabel,wrapInSpan(labelColor,minuteLabel)]}):``;seconds=showSeconds?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.seconds,spaceForLabel,wrapInSpan(labelColor,secondLabel)]}):``;}return /*#__PURE__*/_jsxs(_Fragment,{children:[days,space,hours,space,minutes,space,seconds]});}/**\n * COUNTDOWN\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function CountdownTimer(props){const{date,pickTime,font,color,labelColor,displayProps,onComplete}=props;const{digitCount,labelType,numberSpace,labelSpace,dayLabel,hourLabel,minuteLabel,secondLabel,showHours,showMinutes,showSeconds,tabularFont}=displayProps;const{fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,lineHeight}=font;const[visible,setIsVisible]=useState(false);const difference=+new Date(date).setUTCHours(pickTime)-+new Date;if(difference<=0){onComplete===null||onComplete===void 0?void 0:onComplete();}const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);const timeLeft=calculateTimeLeft(difference,digitCount);const space=numberSpace?\"\":\" \";const spaceForLabel=labelSpace?\"\":\" \";const emptyString=`00:00:00:00`;const timeString=createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,...font,margin:0,padding:0,visibility:visible?\"visible\":\"hidden\",fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:difference>0?timeString:emptyString});}CountdownTimer.displayName=\"Countdown\";const defaultDate=new Date;defaultDate.setDate(defaultDate.getDate()+2);/* Property Controls */addPropertyControls(CountdownTimer,{date:{type:ControlType.Date,title:\"Date\",defaultValue:defaultDate.toISOString()},pickTime:{type:ControlType.Number,min:0,max:24,defaultValue:0,step:1,displayStepper:true,title:\"UTC\",unit:\":00\"},displayProps:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Dots, Labels\",icon:\"boolean\",controls:{digitCount:{title:\"Digits\",type:ControlType.Boolean,enabledTitle:\"One\",disabledTitle:\"Two\",defaultValue:false},labelType:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Dots\",disabledTitle:\"Custom\",defaultValue:true},numberSpace:{type:ControlType.Boolean,title:\"Number\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:false},labelSpace:{type:ControlType.Boolean,title:\"Label\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:true,hidden:props=>props.labelType},dayLabel:{type:ControlType.String,title:\"Days\",defaultValue:\"D\",placeholder:\"D\",hidden:props=>props.labelType},showHours:{title:\"Hours\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},hourLabel:{type:ControlType.String,title:\" \",defaultValue:\"H\",placeholder:\"H\",hidden:props=>props.labelType||!props.showHours},showMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours},minuteLabel:{type:ControlType.String,title:\" \",defaultValue:\"M\",placeholder:\"M\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours||!props.showMinutes},secondLabel:{type:ControlType.String,title:\" \",defaultValue:\"S\",placeholder:\"S\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes||!props.showSeconds},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true}}},font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#999\"},labelColor:{title:\"Label\",type:ControlType.Color,defaultValue:\"rgba(153,153,153,0.5)\"},onComplete:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,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={EQSioA9rV:{hover:true}};const cycleOrder=[\"EQSioA9rV\",\"zre2FObt4\",\"rRTC8zZeI\"];const serializationHash=\"framer-Ue2dy\";const variantClassNames={EQSioA9rV:\"framer-v-1lbqr74\",rRTC8zZeI:\"framer-v-6be5yu\",zre2FObt4:\"framer-v-1gayadt\"};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={\" botao manual desk\":\"rRTC8zZeI\",\"bot\\xe3o mobile\":\"zre2FObt4\",Primary:\"EQSioA9rV\"};const getProps=({click,height,id,link,link2,newTab,title,width,...props})=>{return{...props,i59023Feg:link??props.i59023Feg,knY8XGEm6:click??props.knY8XGEm6,QavlQk3eO:newTab??props.QavlQk3eO??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"EQSioA9rV\",x8t_BUxeG:link2??props.x8t_BUxeG,zHELoIiJS:title??props.zHELoIiJS??\"GET STARTED\"};};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,zHELoIiJS,i59023Feg,QavlQk3eO,knY8XGEm6,x8t_BUxeG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EQSioA9rV\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTape9deoi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(knY8XGEm6){const res=await knY8XGEm6(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"rRTC8zZeI\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"rRTC8zZeI\")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,children:/*#__PURE__*/_jsx(Link,{href:i59023Feg,motionChild:true,nodeId:\"EQSioA9rV\",openInNewTab:QavlQk3eO,scopeId:\"nNlMVo66D\",smoothScroll:true,...addPropertyOverrides({rRTC8zZeI:{href:x8t_BUxeG,openInNewTab:false,smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1lbqr74\",className,classNames)} framer-16usc2n`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EQSioA9rV\",onTap:onTape9deoi,ref:refBinding,style:{backgroundColor:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"none\",...style},variants:{\"EQSioA9rV-hover\":{backgroundColor:\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\",boxShadow:\"none\"},rRTC8zZeI:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.12), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.16), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.33)\"}},...addPropertyOverrides({\"EQSioA9rV-hover\":{\"data-framer-name\":undefined},rRTC8zZeI:{\"data-framer-name\":\" botao manual desk\",\"data-highlight\":undefined,onTap:undefined},zre2FObt4:{\"data-framer-name\":\"bot\\xe3o mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBSZWd1bGFy\",\"--framer-font-family\":'\"Franie Regular\", \"Franie Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)))\"},children:\"GET STARTED\"})}),className:\"framer-1k229q0\",fonts:[\"CUSTOM;Franie Regular\"],layoutDependency:layoutDependency,layoutId:\"yda6bNLih\",style:{\"--extracted-r6o4lv\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zHELoIiJS,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rRTC8zZeI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBCb2xk\",\"--framer-font-family\":'\"Franie Bold\", \"Franie Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)))\"},children:\"GET STARTED\"})}),fonts:[\"CUSTOM;Franie Bold\"]},zre2FObt4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFNlbWlCb2xk\",\"--framer-font-family\":'\"New Science SemiBold\", \"New Science SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)))\"},children:\"GET STARTED\"})}),fonts:[\"CUSTOM;New Science SemiBold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z4ga7k\",\"data-framer-name\":\"Arrow Icon\",layoutDependency:layoutDependency,layoutId:\"jFZTr6oU7\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-no9ea6\",\"data-framer-name\":\"FiArrowDownCircle\",fill:'var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"KE03fGnMu\",style:{rotate:0},svg:'<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m8 12 4 4 4-4m-4-4v8\"/></svg>',variants:{rRTC8zZeI:{rotate:-90}},withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-60ywut\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"L4W8HYkxL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 9 16.714 L 16.2 9 L 9 1.286 M 1.8 9 L 16.2 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11296077198,withExternalLayout:true,...addPropertyOverrides({zre2FObt4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 11.143 L 10.8 6 L 6 0.857 M 1.2 6 L 10.8 6\" fill=\"transparent\" stroke-width=\"0.99\" stroke=\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10109227745}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ue2dy.framer-16usc2n, .framer-Ue2dy .framer-16usc2n { display: block; }\",\".framer-Ue2dy.framer-1lbqr74 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 15px 44px 15px 44px; position: relative; text-decoration: none; width: 168px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ue2dy .framer-1k229q0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Ue2dy .framer-z4ga7k { 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-Ue2dy .framer-no9ea6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-Ue2dy .framer-60ywut { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-Ue2dy.framer-v-1gayadt.framer-1lbqr74 { height: 40px; width: 162px; }\",\".framer-Ue2dy.framer-v-1gayadt .framer-60ywut { height: 12px; width: 12px; }\",\".framer-Ue2dy.framer-v-6be5yu.framer-1lbqr74 { cursor: unset; gap: 21px; padding: 15px 44px 15px 74px; width: 232px; }\",\".framer-Ue2dy.framer-v-1lbqr74.hover.framer-1lbqr74 { gap: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zre2FObt4\":{\"layout\":[\"fixed\",\"fixed\"]},\"rRTC8zZeI\":{\"layout\":[\"fixed\",\"fixed\"]},\"w_txIBysK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zHELoIiJS\":\"title\",\"i59023Feg\":\"link\",\"QavlQk3eO\":\"newTab\",\"knY8XGEm6\":\"click\",\"x8t_BUxeG\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernNlMVo66D=withCSS(Component,css,\"framer-Ue2dy\");export default FramernNlMVo66D;FramernNlMVo66D.displayName=\"Button 2\";FramernNlMVo66D.defaultProps={height:44,width:168};addPropertyControls(FramernNlMVo66D,{variant:{options:[\"EQSioA9rV\",\"zre2FObt4\",\"rRTC8zZeI\"],optionTitles:[\"Primary\",\"bot\\xe3o mobile\",\" botao manual desk\"],title:\"Variant\",type:ControlType.Enum},zHELoIiJS:{defaultValue:\"GET STARTED\",displayTextArea:false,title:\"Title\",type:ControlType.String},i59023Feg:{title:\"Link\",type:ControlType.Link},QavlQk3eO:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},knY8XGEm6:{title:\"Click\",type:ControlType.EventHandler},x8t_BUxeG:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramernNlMVo66D,[{explicitInter:true,fonts:[{family:\"New Science SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/vNrqH00yYkKO8JJkm1CZpvNSKdw.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernNlMVo66D\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"zHELoIiJS\\\":\\\"title\\\",\\\"i59023Feg\\\":\\\"link\\\",\\\"QavlQk3eO\\\":\\\"newTab\\\",\\\"knY8XGEm6\\\":\\\"click\\\",\\\"x8t_BUxeG\\\":\\\"link2\\\"}\",\"framerIntrinsicWidth\":\"168\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zre2FObt4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rRTC8zZeI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w_txIBysK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nNlMVo66D.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button2 from\"https://framerusercontent.com/modules/jn6TEpt8WjkvX4LNRUN6/IYBHxTyl4fw2XP7mdqjP/nNlMVo66D.js\";const Button2Fonts=getFonts(Button2);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-LaB4z\";const variantClassNames={CyxZulQAS:\"framer-v-1hxu3go\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};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,width,...props})=>{return{...props};};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({defaultVariant:\"CyxZulQAS\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hxu3go\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CyxZulQAS\",ref:refBinding,style:{backgroundColor:\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1iojwh5\",\"data-framer-name\":\"Icon\",fill:'var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16)) /* {\"name\":\"Vermelho\"} */',intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"ibd5igriz\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-person-check\"><path d=\"M12.5 16a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7m1.679-4.493-1.335 2.226a.75.75 0 0 1-1.174.144l-.774-.773a.5.5 0 0 1 .708-.708l.547.548 1.17-1.951a.5.5 0 1 1 .858.514M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0M8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4\"/><path d=\"M8.256 14a4.5 4.5 0 0 1-.229-1.004H3c.001-.246.154-.986.832-1.664C4.484 10.68 5.711 10 8 10q.39 0 .74.025c.226-.341.496-.65.804-.918Q8.844 9.002 8 9c-5 0-6 3-6 4s1 1 1 1z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18hzt3a\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cK1eje3GM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oxb9ax\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"eitZLdo3f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26)))\"},children:\"Retirada por terceiros\"})}),className:\"framer-1imyol7\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"PzMrXg5Aw\",style:{\"--extracted-a0htzi\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Permite que outra pessoa retire seu kit da Maratona caso voc\\xea n\\xe3o possa faz\\xea-lo pessoalmente. Deve ser preenchido e assinado pelo participante inscrito, junto com a c\\xf3pia dos documentos solicitados.\"})}),className:\"framer-eucbi9\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"ICt4qJpNw\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+15+(((componentViewport?.height||621)-55-411.8)/2+52+60)+0+255.8,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-148n2vs-container\",layoutDependency:layoutDependency,layoutId:\"W0XA5kx0k-container\",nodeId:\"W0XA5kx0k\",rendersWithMotion:true,scopeId:\"AzTnowcho\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://cdn.ticketsports.com.br/ticketagora/arquivos/evento/72188/cec38bbb64b74cff95f04a1d5bd9d63a638847339118600885.pdf?_gl=1*1httt97*_gcl_au*MTY2OTcwNDM2My4xNzQ4NTYwODEwLjE5NjAyMjc3NzIuMTc0OTE3MjkzMC4xNzQ5MTcyOTMw*_ga*MjAxNjUxNjExMy4xNzQwNjA5MzA3*_ga_SLL66C2YZ7*czE3NDkxNzI5MjUkbzYyJGcxJHQxNzQ5MTc0MzE1JGo2MCRsMCRoMA..\",id:\"W0XA5kx0k\",layoutId:\"W0XA5kx0k\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"BAIXE AQUI\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LaB4z.framer-9q3nje, .framer-LaB4z .framer-9q3nje { display: block; }\",\".framer-LaB4z.framer-1hxu3go { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 621px; justify-content: center; overflow: hidden; padding: 15px 30px 40px 30px; position: relative; width: 374px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LaB4z .framer-1iojwh5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-LaB4z .framer-18hzt3a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 446px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LaB4z .framer-oxb9ax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LaB4z .framer-1imyol7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LaB4z .framer-eucbi9 { flex: none; height: 155px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LaB4z .framer-148n2vs-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 621\n * @framerIntrinsicWidth 374\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAzTnowcho=withCSS(Component,css,\"framer-LaB4z\");export default FramerAzTnowcho;FramerAzTnowcho.displayName=\"terceiros\";FramerAzTnowcho.defaultProps={height:621,width:374};addFonts(FramerAzTnowcho,[{explicitInter:true,fonts:[{family:\"New Science Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7cVA9dquALRrVQ946C8D5q3vi9o.woff2\"}]},...Button2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAzTnowcho\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"374\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"621\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AzTnowcho.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,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 cycleOrder=[\"uCbY_lVHN\",\"kDIbn3NmG\",\"NG77AqLNb\",\"ooFO4kUPE\"];const serializationHash=\"framer-jA7A5\";const variantClassNames={kDIbn3NmG:\"framer-v-oiwy0k\",NG77AqLNb:\"framer-v-1shteje\",ooFO4kUPE:\"framer-v-lz349n\",uCbY_lVHN:\"framer-v-nwptdd\"};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 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={\"Close mobile\":\"NG77AqLNb\",\"Open Mobile\":\"ooFO4kUPE\",Closed:\"uCbY_lVHN\",Open:\"kDIbn3NmG\"};const getProps=({answer,height,id,question,width,...props})=>{return{...props,T8rQFvSBR:answer??props.T8rQFvSBR??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"uCbY_lVHN\",W88zB8mIG:question??props.W88zB8mIG??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};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,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uCbY_lVHN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4r5p22=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ooFO4kUPE\");});const onTap41seku=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"NG77AqLNb\");});const onTap1iawarm=activeVariantCallback(async(...args)=>{setVariant(\"kDIbn3NmG\");});const onTapsal5dq=activeVariantCallback(async(...args)=>{setVariant(\"uCbY_lVHN\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"kDIbn3NmG\",\"ooFO4kUPE\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-nwptdd\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"uCbY_lVHN\",ref:refBinding,style:{...style},...addPropertyOverrides({kDIbn3NmG:{\"data-framer-name\":\"Open\"},NG77AqLNb:{\"data-framer-name\":\"Close mobile\",\"data-highlight\":true,onTap:onTap4r5p22},ooFO4kUPE:{\"data-framer-name\":\"Open Mobile\",\"data-highlight\":true,onTap:onTap41seku}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ecddi0\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CtMt2aNQQ\",onTap:onTap1iawarm,...addPropertyOverrides({kDIbn3NmG:{onTap:onTapsal5dq},ooFO4kUPE:{onTap:onTapsal5dq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5un0s9\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"wtL9rcH5p\",style:{opacity:.3,rotate:0},variants:{kDIbn3NmG:{rotate:45},NG77AqLNb:{rotate:0},ooFO4kUPE:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1z9he\",layoutDependency:layoutDependency,layoutId:\"XhJp3rBhs\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7b96h\",layoutDependency:layoutDependency,layoutId:\"QmnADLRep\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-12yzxdz\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"h4l9oi4sB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,variants:{kDIbn3NmG:{\"--extracted-r6o4lv\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},ooFO4kUPE:{\"--extracted-r6o4lv\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kDIbn3NmG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),fonts:[\"CUSTOM;New Science Medium\"]},NG77AqLNb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})},ooFO4kUPE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1d08i\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"ulRLLGWOB\",style:{opacity:0},variants:{kDIbn3NmG:{opacity:1},ooFO4kUPE:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBSZWd1bGFy\",\"--framer-font-family\":'\"Franie Regular\", \"Franie Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1hw8zvh\",fonts:[\"CUSTOM;Franie Regular\"],layoutDependency:layoutDependency,layoutId:\"QXdD2pbnG\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{kDIbn3NmG:{opacity:1},ooFO4kUPE:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kDIbn3NmG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),fonts:[\"CUSTOM;New Science Light\"]},ooFO4kUPE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBSZWd1bGFy\",\"--framer-font-family\":'\"Franie Regular\", \"Franie Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jA7A5.framer-1nzpca9, .framer-jA7A5 .framer-1nzpca9 { display: block; }\",\".framer-jA7A5.framer-nwptdd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-jA7A5 .framer-1ecddi0 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-jA7A5 .framer-5un0s9 { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-jA7A5 .framer-z1z9he { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-jA7A5 .framer-7b96h { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-jA7A5 .framer-12yzxdz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jA7A5 .framer-v1d08i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-jA7A5 .framer-1hw8zvh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jA7A5.framer-v-1shteje.framer-nwptdd, .framer-jA7A5.framer-v-lz349n.framer-nwptdd { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kDIbn3NmG\":{\"layout\":[\"fixed\",\"auto\"]},\"NG77AqLNb\":{\"layout\":[\"fixed\",\"auto\"]},\"ooFO4kUPE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMT4WFwG04=withCSS(Component,css,\"framer-jA7A5\");export default FramerMT4WFwG04;FramerMT4WFwG04.displayName=\"Row\";FramerMT4WFwG04.defaultProps={height:88,width:400};addPropertyControls(FramerMT4WFwG04,{variant:{options:[\"uCbY_lVHN\",\"kDIbn3NmG\",\"NG77AqLNb\",\"ooFO4kUPE\"],optionTitles:[\"Closed\",\"Open\",\"Close mobile\",\"Open Mobile\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerMT4WFwG04,[{explicitInter:true,fonts:[{family:\"New Science Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/laClTnAQikF01HWDG1ME2TVy1PU.woff2\"},{family:\"New Science Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/BNrXUySDh1TwQkJnEmvPYfNXBjc.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMT4WFwG04\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"88\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kDIbn3NmG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NG77AqLNb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ooFO4kUPE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MT4WFwG04.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Row from\"https://framerusercontent.com/modules/sorQ8sMndkWTKhZPp2Sc/OAn6uXHrGHPObrpd52hg/MT4WFwG04.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"qMv6P9Sn5\",\"I4nqxcwmK\"];const serializationHash=\"framer-74W5v\";const variantClassNames={I4nqxcwmK:\"framer-v-1a5tec8\",qMv6P9Sn5:\"framer-v-1yl1upu\"};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 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\":\"qMv6P9Sn5\",Mobile:\"I4nqxcwmK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qMv6P9Sn5\"};};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:\"qMv6P9Sn5\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yl1upu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qMv6P9Sn5\",ref:refBinding,style:{backgroundColor:\"var(--token-1600748c-fbb9-4380-8d30-2636c0599394, rgb(245, 245, 245))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06)\",...style},...addPropertyOverrides({I4nqxcwmK:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l0aqkm-container\",layoutDependency:layoutDependency,layoutId:\"yFg_lm3qi-container\",nodeId:\"yFg_lm3qi\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"yFg_lm3qi\",layoutId:\"yFg_lm3qi\",style:{width:\"100%\"},T8rQFvSBR:\"A inscri\\xe7\\xe3o s\\xf3 pode ser feita pelo site oficial: https://www.ticketsports.com.br/e/maratonadecuritibasantander2025. N\\xe3o compre em outros sites, pois a organiza\\xe7\\xe3o s\\xf3 reconhece inscri\\xe7\\xf5es feitas diretamente por l\\xe1. \\xc9 importante realizar a inscri\\xe7\\xe3o com anteced\\xeancia para garantir sua vaga e escolher o kit desejado. No momento da inscri\\xe7\\xe3o, voc\\xea preenche seus dados pessoais, escolhe a dist\\xe2ncia, o tipo de kit e agenda o hor\\xe1rio de retirada do kit. Lembre-se: inscri\\xe7\\xf5es feitas fora do site oficial n\\xe3o s\\xe3o v\\xe1lidas e n\\xe3o d\\xe3o direito a participa\\xe7\\xe3o ou reembolso.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Qual \\xe9 o link oficial para fazer minha inscri\\xe7\\xe3o na Maratona de Curitiba?\",width:\"100%\",...addPropertyOverrides({I4nqxcwmK:{variant:\"NG77AqLNb\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rexnsr\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ZeUZalaw1\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+89,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+89+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7iwae9-container\",layoutDependency:layoutDependency,layoutId:\"z0_cGfcFm-container\",nodeId:\"z0_cGfcFm\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"z0_cGfcFm\",layoutId:\"z0_cGfcFm\",style:{width:\"100%\"},T8rQFvSBR:\"A Maratona de Curitiba oferece quatro dist\\xe2ncias: 5 km, 10 km, meia maratona (21,097 km) e maratona completa (42,195 km). Cada dist\\xe2ncia tem categorias por idade e sexo, separadas em faixas et\\xe1rias espec\\xedficas para homens e mulheres. Para a maratona, o m\\xednimo \\xe9 20 anos; meia maratona e 10 km, 18 anos; e 5 km, 14 anos (idade at\\xe9 31/12/2025). Para atletas com defici\\xeancia (ACD), h\\xe1 categorias pr\\xf3prias: cadeirantes, deficientes visuais e demais ACDs, cada uma com regras pr\\xf3prias de participa\\xe7\\xe3o e premia\\xe7\\xe3o\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quais s\\xe3o as dist\\xe2ncias dispon\\xedveis para participar na Maratona de Curitiba?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yfwr2j\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"X_OQ3E2dp\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+178,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+178+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mxm003-container\",layoutDependency:layoutDependency,layoutId:\"o4usjOPiG-container\",nodeId:\"o4usjOPiG\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"o4usjOPiG\",layoutId:\"o4usjOPiG\",style:{width:\"100%\"},T8rQFvSBR:\"Clientes Santander t\\xeam acesso exclusivo \\xe0 pr\\xe9-venda de 06/06 a 15/06, com pagamento apenas em cart\\xe3o de cr\\xe9dito Santander. Ap\\xf3s esse per\\xedodo, continuam com 10% de desconto at\\xe9 o fim das inscri\\xe7\\xf5es. O benef\\xedcio \\xe9 v\\xe1lido apenas para compras com cart\\xe3o de cr\\xe9dito Santander e n\\xe3o para outros m\\xe9todos de pagamento. O desconto n\\xe3o se aplica a inscri\\xe7\\xf5es feitas por terceiros ou em outros sites\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como funciona a inscri\\xe7\\xe3o para clientes Santander?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zwpd1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"NDq8WeLDI\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+267,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+267+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xsnveh-container\",layoutDependency:layoutDependency,layoutId:\"w1mTaD5FZ-container\",nodeId:\"w1mTaD5FZ\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"w1mTaD5FZ\",layoutId:\"w1mTaD5FZ\",style:{width:\"100%\"},T8rQFvSBR:\"A partir de 16/06, as inscri\\xe7\\xf5es est\\xe3o abertas para todos. O limite \\xe9 at\\xe9 03/11 ou at\\xe9 esgotar as vagas. Qualquer pessoa pode se inscrever, independentemente de ser cliente Santander, mas os descontos exclusivos para clientes Santander permanecem durante todo o per\\xedodo\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como funciona a inscri\\xe7\\xe3o para o p\\xfablico geral?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1589qyk\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"QpiUjcnSx\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+356,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+356+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-naidvs-container\",layoutDependency:layoutDependency,layoutId:\"Ui94D2XtE-container\",nodeId:\"Ui94D2XtE\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Ui94D2XtE\",layoutId:\"Ui94D2XtE\",style:{width:\"100%\"},T8rQFvSBR:\"A inscri\\xe7\\xe3o pode ser feita at\\xe9 03/11/2025 \\xe0s 23h59, ou at\\xe9 o limite de vagas ser preenchido. Recomenda-se inscrever-se o quanto antes para garantir a vaga e evitar transtornos de \\xfaltima hora\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Qual \\xe9 a data limite para realizar a inscri\\xe7\\xe3o?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y47um9\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"p7uOVzv7P\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+445,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+445+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l1id0j-container\",layoutDependency:layoutDependency,layoutId:\"diLbX7g2Q-container\",nodeId:\"diLbX7g2Q\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"diLbX7g2Q\",layoutId:\"diLbX7g2Q\",style:{width:\"100%\"},T8rQFvSBR:\"A inscri\\xe7\\xe3o inclui kit escolhido pelo atleta, acesso \\xe0 Expo Maratona, uso da arena do evento, apoio m\\xe9dico, hidrata\\xe7\\xe3o, brindes de patrocinadores, guarda-volumes e seguro contra acidentes pessoais no dia da prova. O kit varia conforme a op\\xe7\\xe3o escolhida (VIP, Premium, Standard ou SMART), mas todos incluem n\\xfamero de peito e acesso \\xe0 Expo\",variant:\"uCbY_lVHN\",W88zB8mIG:\"O que est\\xe1 inclu\\xeddo na inscri\\xe7\\xe3o da Maratona de Curitiba?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o3xvc7\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"kvJFunGIY\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+534,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+534+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-84j3qf-container\",layoutDependency:layoutDependency,layoutId:\"dGzWGtHPC-container\",nodeId:\"dGzWGtHPC\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"dGzWGtHPC\",layoutId:\"dGzWGtHPC\",style:{width:\"100%\"},T8rQFvSBR:\"Atletas com 60 anos ou mais t\\xeam 50% de desconto no kit SMART (desconto proporcional nos outros kits). Atletas ACD devem enviar laudo m\\xe9dico (CID), documento com foto e solicitar c\\xf3digo de acesso especial pelo e-mail contato@globalvita.com.br ou WhatsApp (41) 99989-0082. O desconto para estudante n\\xe3o se aplica, pois a lei de meia-entrada n\\xe3o cobre eventos esportivos participativos\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Tem desconto para atletas com mais de 60 anos ou para atletas com defici\\xeancia (ACD)?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16t847a\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"dBh9HnogX\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+623,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+623+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12qaf0s-container\",layoutDependency:layoutDependency,layoutId:\"an3IoENWG-container\",nodeId:\"an3IoENWG\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"an3IoENWG\",layoutId:\"an3IoENWG\",style:{width:\"100%\"},T8rQFvSBR:\"Os kits dispon\\xedveis s\\xe3o: VIP (camiseta da dist\\xe2ncia, regata, viseira, meia, gymsack, grava\\xe7\\xe3o de medalha, recovery, \\xe1rea VIP, banheiro exclusivo, guarda-volumes exclusivo, retirada de kits exclusiva, pelot\\xe3o exclusivo), Premium (camiseta, viseira, meia, n\\xfamero de peito), Standard (camiseta, n\\xfamero de peito) e SMART (n\\xfamero de peito). As camisetas s\\xe3o Baby Look (P, M, G) e Unissex (P, M, G, GG, XGG). Troca de tamanho s\\xf3 at\\xe9 03/10, diretamente na plataforma de inscri\\xe7\\xf5es\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quais s\\xe3o as op\\xe7\\xf5es de kits do atleta e como funciona a escolha de tamanho de camiseta?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxzsdg\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"skPFbXLmP\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+712,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+712+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qphky2-container\",layoutDependency:layoutDependency,layoutId:\"rxoZk5C_J-container\",nodeId:\"rxoZk5C_J\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"rxoZk5C_J\",layoutId:\"rxoZk5C_J\",style:{width:\"100%\"},T8rQFvSBR:\"At\\xe9 03/10, \\xe9 poss\\xedvel trocar dist\\xe2ncia, kit ou titularidade gratuitamente, mediante disponibilidade. Ap\\xf3s essa data, trocas s\\xf3 na entrega de kit (20, 21 e 22/11), com taxa de R$40 e disponibilidade. N\\xe3o \\xe9 poss\\xedvel trocar tamanho de camiseta ap\\xf3s 03/10. Cancelamento e reembolso s\\xe3o permitidos em at\\xe9 7 dias corridos ap\\xf3s a compra. Ap\\xf3s esse prazo, s\\xf3 \\xe9 poss\\xedvel transferir a inscri\\xe7\\xe3o ou retirar o kit. N\\xe3o h\\xe1 reembolso por problemas de sa\\xfade ap\\xf3s os 7 dias.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como fa\\xe7o para trocar a dist\\xe2ncia, o kit ou a titularidade da minha inscri\\xe7\\xe3o?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mvle1m\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"YdN13_rM4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+801,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+801+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z0x148-container\",layoutDependency:layoutDependency,layoutId:\"AAnQTHzWb-container\",nodeId:\"AAnQTHzWb\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"AAnQTHzWb\",layoutId:\"AAnQTHzWb\",style:{width:\"100%\"},T8rQFvSBR:\"A retirada do kit ser\\xe1 no Museu Oscar Niemeyer (MON) nos dias 20, 21 e 22/11/2025, em hor\\xe1rio agendado. \\xc9 preciso apresentar documento com foto, termo de responsabilidade impresso e assinado, e comprovante de inscri\\xe7\\xe3o. Atletas 60+ devem retirar pessoalmente. Retirada por terceiros s\\xf3 com autoriza\\xe7\\xe3o e documento do respons\\xe1vel. N\\xe3o ser\\xe3o entregues kits fora do hor\\xe1rio estipulado ou no dia do evento. Caso n\\xe3o retire, \\xe9 poss\\xedvel solicitar o kit em at\\xe9 7 dias ap\\xf3s a prova, pagando taxa de R$50 e agendando previamente.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quando e onde posso retirar o meu kit da Maratona de Curitiba?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-308t1r\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"y80EgkIYg\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+890,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+890+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pdjl19-container\",layoutDependency:layoutDependency,layoutId:\"QfhyfjuhK-container\",nodeId:\"QfhyfjuhK\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"QfhyfjuhK\",layoutId:\"QfhyfjuhK\",style:{width:\"100%\"},T8rQFvSBR:\"Cada dist\\xe2ncia exige idade m\\xednima: 5 km (14 anos), 10 km (16 anos), meia maratona (18 anos), maratona (20 anos), completados at\\xe9 31/12/2025. \\xc9 obrigat\\xf3rio apresentar documento com foto para retirada do kit e participa\\xe7\\xe3o na prova. Atletas 60+ devem apresentar identidade para comprovar idade. Atletas ACD precisam apresentar laudo m\\xe9dico e documento com foto para inscri\\xe7\\xe3o e retirada do kit.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quais s\\xe3o os requisitos de idade e documenta\\xe7\\xe3o para participar?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-161vc25\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"pOsnwrJaU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+979,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+979+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17sc3dd-container\",layoutDependency:layoutDependency,layoutId:\"MQ6SXKWKu-container\",nodeId:\"MQ6SXKWKu\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"MQ6SXKWKu\",layoutId:\"MQ6SXKWKu\",style:{width:\"100%\"},T8rQFvSBR:\"Vagas limitadas para atletas com tempos oficiais excelentes (Maratona: homens at\\xe9 2h19, mulheres at\\xe9 2h50; Meia Maratona: homens at\\xe9 1h06, mulheres at\\xe9 1h21). Documenta\\xe7\\xe3o exigida: dist\\xe2ncia pretendida, nome completo, CPF/passaporte, data de nascimento, equipe/patrocinador, registro CBAt/Federa\\xe7\\xe3o, telefone, contato de emerg\\xeancia, tamanho da camiseta, comprova\\xe7\\xe3o de resultados. Atletas estrangeiros precisam de autoriza\\xe7\\xe3o da CBAt e h\\xe1 limite de vagas por pa\\xeds. Lista de aprovados divulgada at\\xe9 23/09. Cal\\xe7ados devem seguir normas da World Athletics, sob pena de desclassifica\\xe7\\xe3o.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como fa\\xe7o para participar do pelot\\xe3o de elite?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1fzty\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"isIXffViT\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1068,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1068+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3xl0hq-container\",layoutDependency:layoutDependency,layoutId:\"nsd3cDDv6-container\",nodeId:\"nsd3cDDv6\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"nsd3cDDv6\",layoutId:\"nsd3cDDv6\",style:{width:\"100%\"},T8rQFvSBR:\"ACDs dividem-se em cadeirantes, deficientes visuais e demais ACDs. Cadeirantes s\\xf3 podem usar cadeira de rodas esportiva (3 rodas), com capacete obrigat\\xf3rio. Deficientes visuais devem ser acompanhados por guia identificado durante toda a prova. Demais ACDs concorrem em categoria \\xfanica. S\\xf3 concorrem a premia\\xe7\\xe3o em dinheiro atletas inscritos no CPB. Cadeirantes e deficientes visuais t\\xeam categorias exclusivas. O guia deve permanecer com o atleta, caso contr\\xe1rio ambos s\\xe3o desclassificados\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quais s\\xe3o as regras para atletas com defici\\xeancia (ACD)?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jp0rkb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"EQPDT7MPS\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1157,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1157+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ac7yea-container\",layoutDependency:layoutDependency,layoutId:\"thh9sMIfI-container\",nodeId:\"thh9sMIfI\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"thh9sMIfI\",layoutId:\"thh9sMIfI\",style:{width:\"100%\"},T8rQFvSBR:\"A prova ser\\xe1 no dia 23/11/2025, largada na Pra\\xe7a Nossa Senhora de Salete, \\xe0s 5h30. Largadas por ondas: 1\\xaa ACD (42k e 21k), 2\\xaa Elite e p\\xfablico geral (42k e 21k), 3\\xaa 10k e 5k. Recomenda-se chegar com pelo menos 40 minutos de anteced\\xeancia ao hor\\xe1rio de largada. O funil de largada ser\\xe1 organizado por pace (ritmo por km) escolhido na inscri\\xe7\\xe3o.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quando e onde ser\\xe1 a prova da Maratona de Curitiba?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lpw2zx\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"EX0OR5Zpu\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1246,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1246+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ti0wrl-container\",layoutDependency:layoutDependency,layoutId:\"jm9YQ6kIP-container\",nodeId:\"jm9YQ6kIP\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"jm9YQ6kIP\",layoutId:\"jm9YQ6kIP\",style:{width:\"100%\"},T8rQFvSBR:\"\\xc1gua a cada 3km em todas as dist\\xe2ncias. Isot\\xf4nico e frutas dispon\\xedveis para 21km e 42km (42k: 3 pontos de isot\\xf4nico e 2 de fruta; 21k: 1 ponto de cada). Elite tem pontos de hidrata\\xe7\\xe3o especial. Na chegada, todos recebem kit lanche e hidrata\\xe7\\xe3o. Banheiros est\\xe3o dispon\\xedveis ao longo do percurso.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como funcionam os pontos de hidrata\\xe7\\xe3o, alimenta\\xe7\\xe3o e banheiros durante a prova?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17tc7ga\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Lhy6zr_Ly\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1335,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1335+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lqp3o3-container\",layoutDependency:layoutDependency,layoutId:\"r4YXONz_D-container\",nodeId:\"r4YXONz_D\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"r4YXONz_D\",layoutId:\"r4YXONz_D\",style:{width:\"100%\"},T8rQFvSBR:\"Todos que terminarem dentro do tempo recebem medalha. Trof\\xe9us s\\xe3o entregues no p\\xf3dio, no dia do evento, para os primeiros colocados em cada categoria. Premia\\xe7\\xe3o em dinheiro para elite e ACDs cadastrados no CPB. Premia\\xe7\\xe3o geral (tempo bruto) e por categoria (tempo l\\xedquido para maratona, bruto para outras dist\\xe2ncias). N\\xe3o h\\xe1 premia\\xe7\\xe3o em dinheiro para faixas et\\xe1rias. Trof\\xe9us n\\xe3o s\\xe3o entregues ap\\xf3s o evento.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como funciona a premia\\xe7\\xe3o e entrega de trof\\xe9us?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nsw9gv\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"QM85EuZQF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1424,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1424+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o14iay-container\",layoutDependency:layoutDependency,layoutId:\"JuJTmC1w8-container\",nodeId:\"JuJTmC1w8\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"JuJTmC1w8\",layoutId:\"JuJTmC1w8\",style:{width:\"100%\"},T8rQFvSBR:\"Guarda-volumes dispon\\xedvel na largada e chegada. O atleta deve identificar seu volume com etiqueta fornecida. N\\xe3o h\\xe1 reembolso por objetos perdidos. Apoio m\\xe9dico em toda a prova, com seguro contra acidentes pessoais v\\xe1lido no dia da prova. O seguro n\\xe3o cobre doen\\xe7as pr\\xe9-existentes. Em caso de hospitaliza\\xe7\\xe3o, as despesas s\\xe3o do atleta.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Tem guarda-volumes, apoio m\\xe9dico e seguro para os atletas?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p48qyv\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"OXR06_i6d\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1513,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1513+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15hcluo-container\",layoutDependency:layoutDependency,layoutId:\"bYQPHdsPJ-container\",nodeId:\"bYQPHdsPJ\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"bYQPHdsPJ\",layoutId:\"bYQPHdsPJ\",style:{width:\"100%\"},T8rQFvSBR:\"N\\xfamero de peito \\xe9 obrigat\\xf3rio e deve estar vis\\xedvel. Chip de cronometragem deve ser usado corretamente. N\\xe3o \\xe9 permitido acompanhamento de bicicletas. N\\xe3o \\xe9 recomendado usar fone de ouvido. N\\xe3o \\xe9 recomendado levar animais, mas se levar, \\xe9 obrigat\\xf3rio focinheira. Utilizar inscri\\xe7\\xe3o de terceiros \\xe9 proibido e pode resultar em suspens\\xe3o e processo judicial\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Quais s\\xe3o as regras gerais e proibi\\xe7\\xf5es durante a prova?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jcow4r\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"GqaC0y4yi\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1602,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1602+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kzocdq-container\",layoutDependency:layoutDependency,layoutId:\"aPcexPMGg-container\",nodeId:\"aPcexPMGg\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"aPcexPMGg\",layoutId:\"aPcexPMGg\",style:{width:\"100%\"},T8rQFvSBR:\"Resultados dispon\\xedveis em at\\xe9 48h no site www.chiptiming.com.br. Fotos oficiais no site da Foco Radical. Cronometragem \\xe9 feita por chip e o sistema \\xe9 encerrado 6 horas ap\\xf3s a largada. Atletas que terminarem ap\\xf3s esse per\\xedodo n\\xe3o ter\\xe3o tempo computado.\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Onde posso consultar meus resultados e fotos ap\\xf3s a prova?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ibdei\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eHlwuHaR7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+1691,...addPropertyOverrides({I4nqxcwmK:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1912)-0-1780)/2+1691+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jhn3ml-container\",layoutDependency:layoutDependency,layoutId:\"PE0iIOH2d-container\",nodeId:\"PE0iIOH2d\",rendersWithMotion:true,scopeId:\"E9TLOow3n\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"PE0iIOH2d\",layoutId:\"PE0iIOH2d\",style:{width:\"100%\"},T8rQFvSBR:\"N\\xe3o haver\\xe1 corrida kids. A prova ocorre em qualquer condi\\xe7\\xe3o clim\\xe1tica. Para grupos ou assessorias (m\\xednimo 10 atletas), contato via WhatsApp (41) 99989-0073. Congresso t\\xe9cnico ser\\xe1 realizado na Expo do evento, em data e hor\\xe1rio a serem definidos. Para d\\xfavidas, contato@globalvita.com.br ou WhatsApp (41) 99989-0082. O MON conta com estacionamento pago para retirada de kits. Planeje sua chegada com anteced\\xeancia para evitar atrasos\",variant:\"uCbY_lVHN\",W88zB8mIG:\"Como posso tirar outras d\\xfavidas ou entrar em contato com a organiza\\xe7\\xe3o?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yy4zjb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eqc2jGWyC\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-74W5v.framer-jbwof7, .framer-74W5v .framer-jbwof7 { display: block; }\",\".framer-74W5v.framer-1yl1upu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-74W5v .framer-l0aqkm-container, .framer-74W5v .framer-7iwae9-container, .framer-74W5v .framer-mxm003-container, .framer-74W5v .framer-xsnveh-container, .framer-74W5v .framer-naidvs-container, .framer-74W5v .framer-1l1id0j-container, .framer-74W5v .framer-84j3qf-container, .framer-74W5v .framer-12qaf0s-container, .framer-74W5v .framer-qphky2-container, .framer-74W5v .framer-z0x148-container, .framer-74W5v .framer-pdjl19-container, .framer-74W5v .framer-17sc3dd-container, .framer-74W5v .framer-3xl0hq-container, .framer-74W5v .framer-1ac7yea-container, .framer-74W5v .framer-1ti0wrl-container, .framer-74W5v .framer-1lqp3o3-container, .framer-74W5v .framer-o14iay-container, .framer-74W5v .framer-15hcluo-container, .framer-74W5v .framer-kzocdq-container, .framer-74W5v .framer-jhn3ml-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-74W5v .framer-rexnsr, .framer-74W5v .framer-1yfwr2j, .framer-74W5v .framer-13zwpd1, .framer-74W5v .framer-1589qyk, .framer-74W5v .framer-1y47um9, .framer-74W5v .framer-1o3xvc7, .framer-74W5v .framer-16t847a, .framer-74W5v .framer-dxzsdg, .framer-74W5v .framer-mvle1m, .framer-74W5v .framer-308t1r, .framer-74W5v .framer-161vc25, .framer-74W5v .framer-1s1fzty, .framer-74W5v .framer-jp0rkb, .framer-74W5v .framer-1lpw2zx, .framer-74W5v .framer-17tc7ga, .framer-74W5v .framer-nsw9gv, .framer-74W5v .framer-1p48qyv, .framer-74W5v .framer-1jcow4r, .framer-74W5v .framer-3ibdei, .framer-74W5v .framer-yy4zjb { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-74W5v.framer-v-1a5tec8.framer-1yl1upu { align-content: center; align-items: center; justify-content: center; width: 350px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1300\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"I4nqxcwmK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerE9TLOow3n=withCSS(Component,css,\"framer-74W5v\");export default FramerE9TLOow3n;FramerE9TLOow3n.displayName=\"Accordion 2\";FramerE9TLOow3n.defaultProps={height:1300,width:1e3};addPropertyControls(FramerE9TLOow3n,{variant:{options:[\"qMv6P9Sn5\",\"I4nqxcwmK\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerE9TLOow3n,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerE9TLOow3n\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"1300\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I4nqxcwmK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./E9TLOow3n.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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 sharedStyle from\"https://framerusercontent.com/modules/u9nn3nlNgyHAXnXd8sZ7/UV46hVS0KofynbMRE3qf/OwIVOP7c_.js\";const cycleOrder=[\"ZXTTBsEGL\",\"PEaJkFK75\",\"UcqP8x40b\"];const serializationHash=\"framer-b4IQ1\";const variantClassNames={PEaJkFK75:\"framer-v-1ok8cvd\",UcqP8x40b:\"framer-v-18i1cj0\",ZXTTBsEGL:\"framer-v-3ce1gw\"};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={Desktop:\"ZXTTBsEGL\",Phone:\"UcqP8x40b\",Tablet:\"PEaJkFK75\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZXTTBsEGL\"};};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:\"ZXTTBsEGL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3ce1gw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZXTTBsEGL\",ref:refBinding,style:{...style},...addPropertyOverrides({PEaJkFK75:{\"data-framer-name\":\"Tablet\"},UcqP8x40b:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ylhzxn\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"WzX14dL5Y\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(224, 224, 224)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y205y4\",\"data-framer-name\":\"Community\",layoutDependency:layoutDependency,layoutId:\"kAwsxYsis\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||252)-70-182)/2)+80+0+0),pixelHeight:501,pixelWidth:1931,sizes:\"439px\",src:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png\",srcSet:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=512 512w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png 1931w\"},className:\"framer-vaadx5\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"p6JAEbzag\",...addPropertyOverrides({PEaJkFK75:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||252)-70-182)/2)+80+0+0),pixelHeight:501,pixelWidth:1931,sizes:\"322px\",src:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png\",srcSet:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=512 512w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png 1931w\"}},UcqP8x40b:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||493)-70-423)/2)+80+0+0+0),pixelHeight:501,pixelWidth:1931,sizes:\"335px\",src:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png\",srcSet:\"https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=512 512w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/beMzx6qmZQ7XgHlHofHoQNXNVlY.png 1931w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bue2ew\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"w0pcTBD4t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13cxlew\",\"data-framer-name\":\"Links Wrapper\",layoutDependency:layoutDependency,layoutId:\"WIHs57iYR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Sobre\"})}),className:\"framer-ftihh7\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"dEfO2B0RX\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UcqP8x40b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Sobre\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g32zyf\",layoutDependency:layoutDependency,layoutId:\"fFB4T2uAL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"yB6byl5F2\",openInNewTab:false,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Home\"})})})}),className:\"framer-78lyqv\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"yB6byl5F2\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UcqP8x40b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"yB6byl5F2\",openInNewTab:false,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Home\"})})})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ysqv4q\",\"data-framer-name\":\"Links Wrapper\",layoutDependency:layoutDependency,layoutId:\"UV9Tl_Zyp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Suporte\"})}),className:\"framer-7sdkzc\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"kRzYHe0Zn\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UcqP8x40b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Suporte\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jj9fnp\",layoutDependency:layoutDependency,layoutId:\"bJztdf7ny\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=554199890082&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"bHE1tBpfa\",openInNewTab:true,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"WhatsApp\"})})})}),className:\"framer-12ter1f\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"bHE1tBpfa\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UcqP8x40b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=554199890082&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"bHE1tBpfa\",openInNewTab:true,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"WhatsApp\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:Contato@globalvita.com.br\",motionChild:true,nodeId:\"KrUJdw02D\",openInNewTab:true,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Email\"})})})}),className:\"framer-us7w36\",fonts:[\"CUSTOM;New Science Light\"],layoutDependency:layoutDependency,layoutId:\"KrUJdw02D\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UcqP8x40b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:Contato@globalvita.com.br\",motionChild:true,nodeId:\"KrUJdw02D\",openInNewTab:true,preserveParams:false,scopeId:\"FsT_hJ3CP\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Email\"})})})})}},baseVariant,gestureVariant)})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b4IQ1.framer-4d3g44, .framer-b4IQ1 .framer-4d3g44 { display: block; }\",\".framer-b4IQ1.framer-3ce1gw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 70px 0px; position: relative; width: 1280px; }\",\".framer-b4IQ1 .framer-ylhzxn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1080px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-b4IQ1 .framer-1y205y4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 437px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b4IQ1 .framer-vaadx5 { flex: none; height: 75px; overflow: visible; position: relative; width: 439px; }\",\".framer-b4IQ1 .framer-bue2ew { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-b4IQ1 .framer-13cxlew, .framer-b4IQ1 .framer-1ysqv4q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-b4IQ1 .framer-ftihh7, .framer-b4IQ1 .framer-78lyqv, .framer-b4IQ1 .framer-7sdkzc, .framer-b4IQ1 .framer-12ter1f, .framer-b4IQ1 .framer-us7w36 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-b4IQ1 .framer-1g32zyf, .framer-b4IQ1 .framer-jj9fnp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-b4IQ1.framer-v-1ok8cvd.framer-3ce1gw { width: 810px; }\",\".framer-b4IQ1.framer-v-1ok8cvd .framer-ylhzxn { padding: 80px 30px 0px 30px; }\",\".framer-b4IQ1.framer-v-1ok8cvd .framer-vaadx5 { height: 55px; width: 322px; }\",\".framer-b4IQ1.framer-v-1ok8cvd .framer-bue2ew { gap: 70px; }\",\".framer-b4IQ1.framer-v-18i1cj0.framer-3ce1gw { width: 390px; }\",\".framer-b4IQ1.framer-v-18i1cj0 .framer-ylhzxn { flex-direction: column; padding: 80px 20px 0px 20px; }\",\".framer-b4IQ1.framer-v-18i1cj0 .framer-1y205y4 { align-content: center; align-items: center; flex: none; justify-content: center; max-width: unset; width: 100%; }\",\".framer-b4IQ1.framer-v-18i1cj0 .framer-vaadx5 { height: 57px; width: 335px; }\",\".framer-b4IQ1.framer-v-18i1cj0 .framer-bue2ew { flex-direction: column; gap: 60px; justify-content: center; padding: 60px 0px 0px 0px; width: 100%; }\",...sharedStyle.css,'.framer-b4IQ1[data-border=\"true\"]::after, .framer-b4IQ1 [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 252\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PEaJkFK75\":{\"layout\":[\"fixed\",\"auto\"]},\"UcqP8x40b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFsT_hJ3CP=withCSS(Component,css,\"framer-b4IQ1\");export default FramerFsT_hJ3CP;FramerFsT_hJ3CP.displayName=\"Footer 2\";FramerFsT_hJ3CP.defaultProps={height:252,width:1280};addPropertyControls(FramerFsT_hJ3CP,{variant:{options:[\"ZXTTBsEGL\",\"PEaJkFK75\",\"UcqP8x40b\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFsT_hJ3CP,[{explicitInter:true,fonts:[{family:\"New Science Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/laClTnAQikF01HWDG1ME2TVy1PU.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFsT_hJ3CP\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"252\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PEaJkFK75\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UcqP8x40b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FsT_hJ3CP.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button2 from\"https://framerusercontent.com/modules/jn6TEpt8WjkvX4LNRUN6/IYBHxTyl4fw2XP7mdqjP/nNlMVo66D.js\";const Button2Fonts=getFonts(Button2);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-RfQFd\";const variantClassNames={EQ8pi4B2u:\"framer-v-1i55h9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};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,width,...props})=>{return{...props};};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({defaultVariant:\"EQ8pi4B2u\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1i55h9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EQ8pi4B2u\",ref:refBinding,style:{backgroundColor:\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w97oo4\",\"data-framer-name\":\"HeartPulse\",fill:'var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16)) /* {\"name\":\"Vermelho\"} */',intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"grDVSCxBM\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-heart-pulse\"><path d=\"m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053.918 3.995.78 5.323 1.508 7H.43c-2.128-5.697 4.165-8.83 7.394-5.857q.09.083.176.171a3 3 0 0 1 .176-.17c3.23-2.974 9.522.159 7.394 5.856h-1.078c.728-1.677.59-3.005.108-3.947C13.486.878 10.4.28 8.717 2.01zM2.212 10h1.315C4.593 11.183 6.05 12.458 8 13.795c1.949-1.337 3.407-2.612 4.473-3.795h1.315c-1.265 1.566-3.14 3.25-5.788 5-2.648-1.75-4.523-3.434-5.788-5\"/><path d=\"M10.464 3.314a.5.5 0 0 0-.945.049L7.921 8.956 6.464 5.314a.5.5 0 0 0-.88-.091L3.732 8H.5a.5.5 0 0 0 0 1H4a.5.5 0 0 0 .416-.223l1.473-2.209 1.647 4.118a.5.5 0 0 0 .945-.049l1.598-5.593 1.457 3.642A.5.5 0 0 0 12 9h3.5a.5.5 0 0 0 0-1h-3.162z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1r3x1mx\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kxHYGQfUi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pusuyd\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"aWY0PlLpa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26)))\"},children:\"Termo de responsabilidade\"})}),className:\"framer-w6xwe2\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"ruhBwFk1Z\",style:{\"--extracted-a0htzi\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Declara estar em boas condi\\xe7\\xf5es de sa\\xfade e apto para participar da corrida, assumindo os riscos envolvidos na atividade f\\xedsica.\"})}),className:\"framer-qct2t2\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"dQGQDx28r\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+15+(((componentViewport?.height||621)-55-411.8)/2+52+60)+0+255.8,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s5fbcl-container\",layoutDependency:layoutDependency,layoutId:\"Wtw5w35Xb-container\",nodeId:\"Wtw5w35Xb\",rendersWithMotion:true,scopeId:\"G8vgCyTlX\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://cdn.ticketsports.com.br/ticketagora/arquivos/evento/72188/55112996baa74a2ea039c80bea65b0bd638847339020758200.pdf?_gl=1*ytkocp*_gcl_au*MTY2OTcwNDM2My4xNzQ4NTYwODEwLjE5NjAyMjc3NzIuMTc0OTE3MjkzMC4xNzQ5MTcyOTMw*_ga*MjAxNjUxNjExMy4xNzQwNjA5MzA3*_ga_SLL66C2YZ7*czE3NDkxNzI5MjUkbzYyJGcxJHQxNzQ5MTcyOTMwJGo1NSRsMCRoMA..\",id:\"Wtw5w35Xb\",layoutId:\"Wtw5w35Xb\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"BAIXE AQUI\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RfQFd.framer-1wxyr62, .framer-RfQFd .framer-1wxyr62 { display: block; }\",\".framer-RfQFd.framer-1i55h9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 621px; justify-content: center; overflow: hidden; padding: 15px 30px 40px 30px; position: relative; width: 393px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RfQFd .framer-w97oo4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-RfQFd .framer-1r3x1mx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 446px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RfQFd .framer-1pusuyd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RfQFd .framer-w6xwe2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RfQFd .framer-qct2t2 { flex: none; height: 155px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RfQFd .framer-1s5fbcl-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 621\n * @framerIntrinsicWidth 393\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerG8vgCyTlX=withCSS(Component,css,\"framer-RfQFd\");export default FramerG8vgCyTlX;FramerG8vgCyTlX.displayName=\"termo responsaibilidade\";FramerG8vgCyTlX.defaultProps={height:621,width:393};addFonts(FramerG8vgCyTlX,[{explicitInter:true,fonts:[{family:\"New Science Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7cVA9dquALRrVQ946C8D5q3vi9o.woff2\"}]},...Button2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG8vgCyTlX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"393\",\"framerIntrinsicHeight\":\"621\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G8vgCyTlX.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={miIKKkump:{hover:true}};const cycleOrder=[\"miIKKkump\",\"IRG0lyNpy\",\"pblJE8IwB\"];const serializationHash=\"framer-gcHs6\";const variantClassNames={IRG0lyNpy:\"framer-v-183zr0w\",miIKKkump:\"framer-v-17tpew1\",pblJE8IwB:\"framer-v-x6wezb\"};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={\"Small Desktop\":\"IRG0lyNpy\",Desktop:\"miIKKkump\",Tablet:\"pblJE8IwB\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,DCFL02jIh:title??props.DCFL02jIh??\"INSCREVA-SE\",DXIBIgV0J:link??props.DXIBIgV0J,variant:humanReadableVariantMap[props.variant]??props.variant??\"miIKKkump\"};};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,DXIBIgV0J,DCFL02jIh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"miIKKkump\",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:DXIBIgV0J,motionChild:true,nodeId:\"miIKKkump\",openInNewTab:true,scopeId:\"lcnogRWEO\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-17tpew1\",className,classNames)} framer-mozlsv`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"miIKKkump\",ref:refBinding,style:{backgroundColor:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(111, 122, 75))\",borderBottomLeftRadius:38,borderBottomRightRadius:38,borderTopLeftRadius:38,borderTopRightRadius:38,boxShadow:\"0px 0.636953px 1.14652px -1.125px rgba(0, 0, 0, 0.26), 0px 1.9316px 3.47689px -2.25px rgba(0, 0, 0, 0.24), 0px 5.10612px 9.19102px -3.375px rgba(0, 0, 0, 0.19), 0px 16px 28.8px -4.5px rgba(0, 0, 0, 0.03)\",...style},variants:{\"miIKKkump-hover\":{backgroundColor:\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"}},...addPropertyOverrides({\"miIKKkump-hover\":{\"data-framer-name\":undefined},IRG0lyNpy:{\"data-framer-name\":\"Small Desktop\"},pblJE8IwB:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)))\"},children:\"INSCREVA-SE\"})}),className:\"framer-lc5q86\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"lhO337Km6\",style:{\"--extracted-r6o4lv\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DCFL02jIh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dbz9s2\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PUk3RTVJD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 9 16.714 L 16.2 9 L 9 1.286 M 1.8 9 L 16.2 9\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11296077198,withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gcHs6.framer-mozlsv, .framer-gcHs6 .framer-mozlsv { display: block; }\",\".framer-gcHs6.framer-17tpew1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gcHs6 .framer-lc5q86 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gcHs6 .framer-dbz9s2 { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-gcHs6.framer-v-183zr0w.framer-17tpew1, .framer-gcHs6.framer-v-x6wezb.framer-17tpew1 { cursor: unset; }\",\".framer-gcHs6.framer-v-17tpew1.hover.framer-17tpew1 { gap: 18px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IRG0lyNpy\":{\"layout\":[\"fixed\",\"fixed\"]},\"pblJE8IwB\":{\"layout\":[\"fixed\",\"fixed\"]},\"o832RNhb2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"DXIBIgV0J\":\"link\",\"DCFL02jIh\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlcnogRWEO=withCSS(Component,css,\"framer-gcHs6\");export default FramerlcnogRWEO;FramerlcnogRWEO.displayName=\"More Templates\";FramerlcnogRWEO.defaultProps={height:40,width:160};addPropertyControls(FramerlcnogRWEO,{variant:{options:[\"miIKKkump\",\"IRG0lyNpy\",\"pblJE8IwB\"],optionTitles:[\"Desktop\",\"Small Desktop\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},DXIBIgV0J:{title:\"Link\",type:ControlType.Link},DCFL02jIh:{defaultValue:\"INSCREVA-SE\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerlcnogRWEO,[{explicitInter:true,fonts:[{family:\"New Science Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7cVA9dquALRrVQ946C8D5q3vi9o.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlcnogRWEO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IRG0lyNpy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pblJE8IwB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o832RNhb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"160\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"DXIBIgV0J\\\":\\\"link\\\",\\\"DCFL02jIh\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lcnogRWEO.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button2 from\"https://framerusercontent.com/modules/jn6TEpt8WjkvX4LNRUN6/IYBHxTyl4fw2XP7mdqjP/nNlMVo66D.js\";const Button2Fonts=getFonts(Button2);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-k9OUm\";const variantClassNames={bQjStkmY0:\"framer-v-6o1kdf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};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,width,...props})=>{return{...props};};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({defaultVariant:\"bQjStkmY0\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6o1kdf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bQjStkmY0\",ref:refBinding,style:{backgroundColor:\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-156nm18\",\"data-framer-name\":\"FilePdf\",fill:'var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16)) /* {\"name\":\"Vermelho\"} */',intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"EgwPpshmp\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-file-pdf\"><path d=\"M4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 1h8a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1\"/><path d=\"M4.603 12.087a.8.8 0 0 1-.438-.42c-.195-.388-.13-.776.08-1.102.198-.307.526-.568.897-.787a7.7 7.7 0 0 1 1.482-.645 20 20 0 0 0 1.062-2.227 7.3 7.3 0 0 1-.43-1.295c-.086-.4-.119-.796-.046-1.136.075-.354.274-.672.65-.823.192-.077.4-.12.602-.077a.7.7 0 0 1 .477.365c.088.164.12.356.127.538.007.187-.012.395-.047.614-.084.51-.27 1.134-.52 1.794a11 11 0 0 0 .98 1.686 5.8 5.8 0 0 1 1.334.05c.364.065.734.195.96.465.12.144.193.32.2.518.007.192-.047.382-.138.563a1.04 1.04 0 0 1-.354.416.86.86 0 0 1-.51.138c-.331-.014-.654-.196-.933-.417a5.7 5.7 0 0 1-.911-.95 11.6 11.6 0 0 0-1.997.406 11.3 11.3 0 0 1-1.021 1.51c-.29.35-.608.655-.926.787a.8.8 0 0 1-.58.029m1.379-1.901q-.25.115-.459.238c-.328.194-.541.383-.647.547-.094.145-.096.25-.04.361q.016.032.026.044l.035-.012c.137-.056.355-.235.635-.572a8 8 0 0 0 .45-.606m1.64-1.33a13 13 0 0 1 1.01-.193 12 12 0 0 1-.51-.858 21 21 0 0 1-.5 1.05zm2.446.45q.226.244.435.41c.24.19.407.253.498.256a.1.1 0 0 0 .07-.015.3.3 0 0 0 .094-.125.44.44 0 0 0 .059-.2.1.1 0 0 0-.026-.063c-.052-.062-.2-.152-.518-.209a4 4 0 0 0-.612-.053zM8.078 5.8a7 7 0 0 0 .2-.828q.046-.282.038-.465a.6.6 0 0 0-.032-.198.5.5 0 0 0-.145.04c-.087.035-.158.106-.196.283-.04.192-.03.469.046.822q.036.167.09.346z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1r7t41q\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Vucgqs8Ya\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oa4mg0\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"w9IVq7q01\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26)))\"},children:\"Regulamento da prova\"})}),className:\"framer-xl27y1\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"rI5G5MRRr\",style:{\"--extracted-a0htzi\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Todas as regras e condi\\xe7\\xf5es para participar da Maratona de Curitiba, incluindo datas, categorias, premia\\xe7\\xf5es e orienta\\xe7\\xf5es gerais. \\xc9 fundamental sua leitura para garantir uma participa\\xe7\\xe3o adequada no evento.\"})}),className:\"framer-rufqag\",fonts:[\"CUSTOM;New Science Regular\"],layoutDependency:layoutDependency,layoutId:\"zDvBxfMQz\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+15+(((componentViewport?.height||621)-55-411.8)/2+52+60)+0+255.8,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uhoj37-container\",layoutDependency:layoutDependency,layoutId:\"DNjgPo37i-container\",nodeId:\"DNjgPo37i\",rendersWithMotion:true,scopeId:\"soTRgg_ue\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://cdn.ticketsports.com.br/ticketagora/arquivos/evento/72188/62a896014337485bbbb8261ee249de2a638848111150808434.pdf?_gl=1*1ibel0g*_gcl_au*MTY2OTcwNDM2My4xNzQ4NTYwODEwLjEwNzY2MjY1MTMuMTc0OTQyNzc1MC4xNzQ5NDI3NzQ5*_ga*MjAxNjUxNjExMy4xNzQwNjA5MzA3*_ga_SLL66C2YZ7*czE3NDk0Mjc3NDQkbzY0JGcxJHQxNzQ5NDI3NzQ5JGo1NSRsMCRoMA..\",id:\"DNjgPo37i\",layoutId:\"DNjgPo37i\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"BAIXE AQUI\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k9OUm.framer-18r9yyl, .framer-k9OUm .framer-18r9yyl { display: block; }\",\".framer-k9OUm.framer-6o1kdf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 621px; justify-content: center; overflow: hidden; padding: 15px 30px 40px 30px; position: relative; width: 353px; will-change: var(--framer-will-change-override, transform); }\",\".framer-k9OUm .framer-156nm18 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-k9OUm .framer-1r7t41q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 446px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k9OUm .framer-1oa4mg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-k9OUm .framer-xl27y1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k9OUm .framer-rufqag { flex: none; height: 155px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-k9OUm .framer-1uhoj37-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 621\n * @framerIntrinsicWidth 353\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersoTRgg_ue=withCSS(Component,css,\"framer-k9OUm\");export default FramersoTRgg_ue;FramersoTRgg_ue.displayName=\"regulamento\";FramersoTRgg_ue.defaultProps={height:621,width:353};addFonts(FramersoTRgg_ue,[{explicitInter:true,fonts:[{family:\"New Science Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7cVA9dquALRrVQ946C8D5q3vi9o.woff2\"}]},...Button2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersoTRgg_ue\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"621\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"353\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./soTRgg_ue.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,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 cycleOrder=[\"xRAKkUsRq\",\"MRTTkn0y0\"];const serializationHash=\"framer-Wl3to\";const variantClassNames={MRTTkn0y0:\"framer-v-17eqbls\",xRAKkUsRq:\"framer-v-us6yi9\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Mobile:\"MRTTkn0y0\",Primary:\"xRAKkUsRq\"};const getProps=({bot_oKit,height,id,kitFoto,linkKit,titleTop,width,...props})=>{return{...props,I7NR52Wf4:kitFoto??props.I7NR52Wf4,Jy8Qd4CJy:linkKit??props.Jy8Qd4CJy,Ke3nraMz1:titleTop??props.Ke3nraMz1??\"Basic Tasks\",o8OPy2pZX:bot_oKit??props.o8OPy2pZX??\"text\",variant:humanReadableVariantMap[props.variant]??props.variant??\"xRAKkUsRq\"};};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,Ke3nraMz1,Jy8Qd4CJy,o8OPy2pZX,I7NR52Wf4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xRAKkUsRq\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-us6yi9\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"xRAKkUsRq\",ref:refBinding,style:{backgroundColor:\"rgb(33, 33, 33)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({MRTTkn0y0:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4k6v0\",layoutDependency:layoutDependency,layoutId:\"wWNr_KTzW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fddd6m\",\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"prES47Mj1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iezxt9\",layoutDependency:layoutDependency,layoutId:\"jfmAVjP5o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x2ww34\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"KOPzKLpd8\",style:{backgroundColor:\"var(--token-1600748c-fbb9-4380-8d30-2636c0599394, rgb(245, 245, 245))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBSZWd1bGFy\",\"--framer-font-family\":'\"Franie Regular\", \"Franie Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37)))\"},children:\"Basic Tasks\"})}),className:\"framer-28w58h\",fonts:[\"CUSTOM;Franie Regular\"],layoutDependency:layoutDependency,layoutId:\"gHQcTE0qs\",style:{\"--extracted-r6o4lv\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Ke3nraMz1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:Jy8Qd4CJy,motionChild:true,nodeId:\"hagigYEHi\",openInNewTab:true,scopeId:\"vlBjMG0_q\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1baj5qo framer-h2nubq\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"hagigYEHi\",style:{backgroundColor:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZyYW5pZSBSZWd1bGFy\",\"--framer-font-family\":'\"Franie Regular\", \"Franie Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255)))\"},children:\"text\"})}),className:\"framer-1c99hdg\",fonts:[\"CUSTOM;Franie Regular\"],layoutDependency:layoutDependency,layoutId:\"uERqaCI9Y\",style:{\"--extracted-r6o4lv\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:o8OPy2pZX,verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||635)-0-Math.max(0,((componentViewport?.height||635)-0-0)/1)*1)/1*0)+0+((Math.max(0,((componentViewport?.height||635)-0-0)/1)*1-0-632.6)/2+51.6+27)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(I7NR52Wf4)},className:\"framer-1pzi17g\",layoutDependency:layoutDependency,layoutId:\"t7fY3gzNA\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({MRTTkn0y0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||439)-0-(Math.max(0,((componentViewport?.height||439)-0-0)/1)*1+0))/2+0+0)+0+((Math.max(0,((componentViewport?.height||439)-0-0)/1)*1-0-450.6)/2+51.6+27)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(I7NR52Wf4)}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Wl3to.framer-h2nubq, .framer-Wl3to .framer-h2nubq { display: block; }\",\".framer-Wl3to.framer-us6yi9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 635px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 417px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Wl3to .framer-1f4k6v0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wl3to .framer-fddd6m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-Wl3to .framer-1iezxt9 { 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: 100%; }\",\".framer-Wl3to .framer-1x2ww34 { 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: 8px 24px 8px 24px; position: relative; width: min-content; }\",\".framer-Wl3to .framer-28w58h, .framer-Wl3to .framer-1c99hdg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Wl3to .framer-1baj5qo { 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: 8px 24px 8px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Wl3to .framer-1pzi17g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 554px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Wl3to.framer-v-17eqbls.framer-us6yi9 { align-content: center; align-items: center; gap: 17px; height: 439px; justify-content: center; width: min-content; }\",\".framer-Wl3to.framer-v-17eqbls .framer-1f4k6v0 { align-self: stretch; order: 0; width: auto; }\",\".framer-Wl3to.framer-v-17eqbls .framer-fddd6m { width: 278px; }\",\".framer-Wl3to.framer-v-17eqbls .framer-1pzi17g { height: 372px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 635\n * @framerIntrinsicWidth 417\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MRTTkn0y0\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Ke3nraMz1\":\"titleTop\",\"Jy8Qd4CJy\":\"linkKit\",\"o8OPy2pZX\":\"bot_oKit\",\"I7NR52Wf4\":\"kitFoto\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervlBjMG0_q=withCSS(Component,css,\"framer-Wl3to\");export default FramervlBjMG0_q;FramervlBjMG0_q.displayName=\"Service Card\";FramervlBjMG0_q.defaultProps={height:635,width:417};addPropertyControls(FramervlBjMG0_q,{variant:{options:[\"xRAKkUsRq\",\"MRTTkn0y0\"],optionTitles:[\"Primary\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},Ke3nraMz1:{defaultValue:\"Basic Tasks\",displayTextArea:false,title:\"Title top\",type:ControlType.String},Jy8Qd4CJy:{title:\"Link kit\",type:ControlType.Link},o8OPy2pZX:{defaultValue:\"text\",displayTextArea:false,title:\"bot\\xe3o kit\",type:ControlType.String},I7NR52Wf4:{title:\"kit foto\",type:ControlType.ResponsiveImage}});addFonts(FramervlBjMG0_q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervlBjMG0_q\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"417\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"Ke3nraMz1\\\":\\\"titleTop\\\",\\\"Jy8Qd4CJy\\\":\\\"linkKit\\\",\\\"o8OPy2pZX\\\":\\\"bot_oKit\\\",\\\"I7NR52Wf4\\\":\\\"kitFoto\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"635\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MRTTkn0y0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vlBjMG0_q.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const LogoFonts=getFonts(Logo);const enabledGestures={C3hRJlleN:{hover:true},cMEbXmTMB:{hover:true},LQE52jjq2:{hover:true},ORzCSmwcN:{hover:true},VgTn4fBXv:{hover:true},ZEppZsYRd:{hover:true}};const cycleOrder=[\"C3hRJlleN\",\"cMEbXmTMB\",\"VgTn4fBXv\",\"ORzCSmwcN\",\"ZEppZsYRd\",\"YTZW1Fjfv\",\"N8vNUT6ak\",\"LQE52jjq2\",\"Bia1Yt9_o\",\"eYKJCQrnE\",\"XDOwjIaa6\",\"cthKHSowA\",\"wOmDAKGzO\"];const serializationHash=\"framer-rPYWi\";const variantClassNames={Bia1Yt9_o:\"framer-v-13qy1qb\",C3hRJlleN:\"framer-v-armry5\",cMEbXmTMB:\"framer-v-fp3v2p\",cthKHSowA:\"framer-v-s77qqc\",eYKJCQrnE:\"framer-v-yx9x53\",LQE52jjq2:\"framer-v-19u5d8h\",N8vNUT6ak:\"framer-v-ch41b9\",ORzCSmwcN:\"framer-v-1avov1s\",VgTn4fBXv:\"framer-v-1y457t0\",wOmDAKGzO:\"framer-v-1gxchm1\",XDOwjIaa6:\"framer-v-14pt3v3\",YTZW1Fjfv:\"framer-v-198w2l5\",ZEppZsYRd:\"framer-v-8nyo2o\"};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={\"Dark button\":\"cMEbXmTMB\",\"Inscreva-se 2025\":\"cthKHSowA\",\"Inscreva-se kits\":\"LQE52jjq2\",\"LOJA 2\":\"wOmDAKGzO\",\"Main color\":\"C3hRJlleN\",\"Text button\":\"ORzCSmwcN\",\"Variant 10\":\"eYKJCQrnE\",\"Variant 11\":\"XDOwjIaa6\",\"Variant 5\":\"ZEppZsYRd\",\"Variant 6\":\"YTZW1Fjfv\",\"Variant 7\":\"N8vNUT6ak\",\"Variant 9\":\"Bia1Yt9_o\",Outline:\"VgTn4fBXv\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,PI9Hk9WtQ:title??props.PI9Hk9WtQ??\"Discover More\",TRYqz29GT:link??props.TRYqz29GT,variant:humanReadableVariantMap[props.variant]??props.variant??\"C3hRJlleN\"};};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,TRYqz29GT,PI9Hk9WtQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C3hRJlleN\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"LQE52jjq2-hover\")return true;if(baseVariant===\"LQE52jjq2\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"ZEppZsYRd-hover\")return true;if([\"ZEppZsYRd\",\"YTZW1Fjfv\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"ORzCSmwcN-hover\")return true;if(baseVariant===\"ORzCSmwcN\")return true;return false;};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:TRYqz29GT,motionChild:true,nodeId:\"C3hRJlleN\",scopeId:\"DKEYf50Uw\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-armry5\",className,classNames)} framer-1lyr3e9`,\"data-framer-name\":\"Main color\",layoutDependency:layoutDependency,layoutId:\"C3hRJlleN\",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:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(87, 255, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"C3hRJlleN-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(0, 0, 0)\"},\"cMEbXmTMB-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},\"LQE52jjq2-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"VgTn4fBXv-hover\":{backgroundColor:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},\"ZEppZsYRd-hover\":{backgroundColor:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 129, 188))\"},Bia1Yt9_o:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 0, 0)\"},cMEbXmTMB:{backgroundColor:\"rgb(255, 0, 0)\"},cthKHSowA:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},eYKJCQrnE:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 0, 0)\"},LQE52jjq2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 0, 0)\"},N8vNUT6ak:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(66, 66, 66)\"},ORzCSmwcN:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},VgTn4fBXv:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},wOmDAKGzO:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 129, 188))\"},XDOwjIaa6:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(0, 129, 188))\"},YTZW1Fjfv:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},ZEppZsYRd:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"C3hRJlleN-hover\":{\"data-framer-name\":undefined},\"cMEbXmTMB-hover\":{\"data-framer-name\":undefined},\"LQE52jjq2-hover\":{\"data-framer-name\":undefined},\"ORzCSmwcN-hover\":{\"data-framer-name\":undefined},\"VgTn4fBXv-hover\":{\"data-framer-name\":undefined},\"ZEppZsYRd-hover\":{\"data-framer-name\":undefined},Bia1Yt9_o:{\"data-framer-name\":\"Variant 9\"},cMEbXmTMB:{\"data-framer-name\":\"Dark button\"},cthKHSowA:{\"data-framer-name\":\"Inscreva-se 2025\"},eYKJCQrnE:{\"data-framer-name\":\"Variant 10\"},LQE52jjq2:{\"data-border\":true,\"data-framer-name\":\"Inscreva-se kits\"},N8vNUT6ak:{\"data-framer-name\":\"Variant 7\"},ORzCSmwcN:{\"data-framer-name\":\"Text button\"},VgTn4fBXv:{\"data-border\":true,\"data-framer-name\":\"Outline\"},wOmDAKGzO:{\"data-framer-name\":\"LOJA 2\"},XDOwjIaa6:{\"data-framer-name\":\"Variant 11\"},YTZW1Fjfv:{\"data-border\":true,\"data-framer-name\":\"Variant 6\"},ZEppZsYRd:{\"data-border\":true,\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-185vqrd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BPbzX3lbD-container\",nodeId:\"BPbzX3lbD\",rendersWithMotion:true,scopeId:\"DKEYf50Uw\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"BPbzX3lbD\",layoutId:\"BPbzX3lbD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-163f84y-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ouyBJBfLy-container\",nodeId:\"ouyBJBfLy\",rendersWithMotion:true,scopeId:\"DKEYf50Uw\",children:/*#__PURE__*/_jsx(Logo,{company:\"Framer\",height:\"100%\",id:\"ouyBJBfLy\",isSearch:false,layoutId:\"ouyBJBfLy\",radius:0,srcFile:\"https://framerusercontent.com/assets/XQJlbfCOdGLsWxsO8yPn0IFpzM.png\",srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discover More\"})}),className:\"framer-wndf8l\",\"data-framer-name\":\"Get Started\",fonts:[\"CUSTOM;Gemsbuck 01 Black\"],layoutDependency:layoutDependency,layoutId:\"FrhKMbAbI\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:PI9Hk9WtQ,variants:{\"cMEbXmTMB-hover\":{\"--extracted-r6o4lv\":\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255))\"},\"ORzCSmwcN-hover\":{\"--extracted-r6o4lv\":\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(87, 255, 0))\"},\"VgTn4fBXv-hover\":{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},Bia1Yt9_o:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},cMEbXmTMB:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},cthKHSowA:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},eYKJCQrnE:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},LQE52jjq2:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},N8vNUT6ak:{\"--extracted-r6o4lv\":\"rgb(117, 117, 117)\"},ORzCSmwcN:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},VgTn4fBXv:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},wOmDAKGzO:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},XDOwjIaa6:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},YTZW1Fjfv:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"},ZEppZsYRd:{\"--extracted-r6o4lv\":\"var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"cMEbXmTMB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},\"ORzCSmwcN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(87, 255, 0)))\"},children:\"Discover More\"})})},\"VgTn4fBXv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:\"Discover More\"})})},Bia1Yt9_o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},cMEbXmTMB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},cthKHSowA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})}),fonts:[\"CUSTOM;New Science Medium\"]},eYKJCQrnE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},LQE52jjq2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},N8vNUT6ak:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(117, 117, 117))\"},children:\"Discover More\"})})},ORzCSmwcN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},VgTn4fBXv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},wOmDAKGzO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},XDOwjIaa6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJvbGQ=\",\"--framer-font-family\":'\"Gemsbuck 01 Bold\", \"Gemsbuck 01 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})}),fonts:[\"CUSTOM;Gemsbuck 01 Bold\"]},YTZW1Fjfv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})},ZEppZsYRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dlbXNidWNrIDAxIEJsYWNr\",\"--framer-font-family\":'\"Gemsbuck 01 Black\", \"Gemsbuck 01 Black Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-313b3a28-620e-4e42-818e-25bc43cf8d0e, rgb(255, 255, 255)))\"},children:\"Discover More\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-tbhiyx\",\"data-framer-name\":\"Icon / Chevron Right\",layoutDependency:layoutDependency,layoutId:\"tAx4fBSmq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-254gpp\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HPpqbcXuH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 13\"><path d=\"M 6.96 6.142 C 7.18 6.362 7.18 6.718 6.96 6.938 L 1.225 12.673 C 1.006 12.892 0.65 12.892 0.43 12.673 L 0.165 12.408 C -0.055 12.188 -0.055 11.832 0.165 11.612 L 5.237 6.54 L 0.165 1.468 C -0.055 1.248 -0.055 0.892 0.165 0.673 L 0.43 0.407 C 0.65 0.188 1.006 0.188 1.225 0.407 Z\" fill=\"var(--token-6ba06e6b-fdc9-4ffb-9d96-dab5421e4e3b, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;white&quot;} */\"></path></svg>',svgContentId:10669209411,withExternalLayout:true,...addPropertyOverrides({\"ORzCSmwcN-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 13\"><path d=\"M 6.96 6.142 C 7.18 6.362 7.18 6.718 6.96 6.938 L 1.225 12.673 C 1.006 12.892 0.65 12.892 0.43 12.673 L 0.165 12.408 C -0.055 12.188 -0.055 11.832 0.165 11.612 L 5.237 6.54 L 0.165 1.468 C -0.055 1.248 -0.055 0.892 0.165 0.673 L 0.43 0.407 C 0.65 0.188 1.006 0.188 1.225 0.407 Z\" fill=\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13)) /* {&quot;name&quot;:&quot;Main color&quot;} */\"></path></svg>',svgContentId:9908131547}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rPYWi.framer-1lyr3e9, .framer-rPYWi .framer-1lyr3e9 { display: block; }\",\".framer-rPYWi.framer-armry5 { 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: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rPYWi .framer-185vqrd-container { flex: none; height: 27px; position: relative; width: 25px; }\",\".framer-rPYWi .framer-163f84y-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 15px; }\",\".framer-rPYWi .framer-wndf8l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rPYWi .framer-tbhiyx { flex: none; gap: 0px; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-rPYWi .framer-254gpp { flex: none; height: 13px; left: 8px; position: absolute; top: 5px; width: 8px; }\",\".framer-rPYWi.framer-v-1avov1s.framer-armry5 { gap: 8px; padding: 0px; }\",\".framer-rPYWi.framer-v-198w2l5.framer-armry5 { cursor: unset; gap: 8px; padding: 10px 20px 12px 20px; }\",\".framer-rPYWi.framer-v-ch41b9.framer-armry5, .framer-rPYWi.framer-v-13qy1qb.framer-armry5, .framer-rPYWi.framer-v-14pt3v3.framer-armry5, .framer-rPYWi.framer-v-s77qqc.framer-armry5, .framer-rPYWi.framer-v-1gxchm1.framer-armry5 { cursor: unset; }\",\".framer-rPYWi.framer-v-19u5d8h.framer-armry5 { padding: 3px 24px 3px 24px; width: 173px; }\",\".framer-rPYWi.framer-v-19u5d8h .framer-185vqrd-container { order: 2; }\",\".framer-rPYWi.framer-v-19u5d8h .framer-wndf8l { order: 1; }\",\".framer-rPYWi.framer-v-yx9x53.framer-armry5 { cursor: unset; width: 279px; }\",\".framer-rPYWi.framer-v-1avov1s.hover.framer-armry5 { gap: 16px; }\",'.framer-rPYWi[data-border=\"true\"]::after, .framer-rPYWi [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 46.5\n * @framerIntrinsicWidth 144.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cMEbXmTMB\":{\"layout\":[\"auto\",\"auto\"]},\"VgTn4fBXv\":{\"layout\":[\"auto\",\"auto\"]},\"ORzCSmwcN\":{\"layout\":[\"auto\",\"auto\"]},\"ZEppZsYRd\":{\"layout\":[\"auto\",\"auto\"]},\"YTZW1Fjfv\":{\"layout\":[\"auto\",\"auto\"]},\"N8vNUT6ak\":{\"layout\":[\"auto\",\"auto\"]},\"LQE52jjq2\":{\"layout\":[\"fixed\",\"auto\"]},\"Bia1Yt9_o\":{\"layout\":[\"auto\",\"auto\"]},\"eYKJCQrnE\":{\"layout\":[\"fixed\",\"auto\"]},\"XDOwjIaa6\":{\"layout\":[\"auto\",\"auto\"]},\"cthKHSowA\":{\"layout\":[\"auto\",\"auto\"]},\"wOmDAKGzO\":{\"layout\":[\"auto\",\"auto\"]},\"Ur_npkJZh\":{\"layout\":[\"auto\",\"auto\"]},\"j6SxWYFRt\":{\"layout\":[\"auto\",\"auto\"]},\"zQLmov7Z4\":{\"layout\":[\"auto\",\"auto\"]},\"sHK8TeZ67\":{\"layout\":[\"auto\",\"auto\"]},\"qV7cpvQE4\":{\"layout\":[\"auto\",\"auto\"]},\"g5yfNAZYL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TRYqz29GT\":\"link\",\"PI9Hk9WtQ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDKEYf50Uw=withCSS(Component,css,\"framer-rPYWi\");export default FramerDKEYf50Uw;FramerDKEYf50Uw.displayName=\"Button 1\";FramerDKEYf50Uw.defaultProps={height:46.5,width:144.5};addPropertyControls(FramerDKEYf50Uw,{variant:{options:[\"C3hRJlleN\",\"cMEbXmTMB\",\"VgTn4fBXv\",\"ORzCSmwcN\",\"ZEppZsYRd\",\"YTZW1Fjfv\",\"N8vNUT6ak\",\"LQE52jjq2\",\"Bia1Yt9_o\",\"eYKJCQrnE\",\"XDOwjIaa6\",\"cthKHSowA\",\"wOmDAKGzO\"],optionTitles:[\"Main color\",\"Dark button\",\"Outline\",\"Text button\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Inscreva-se kits\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Inscreva-se 2025\",\"LOJA 2\"],title:\"Variant\",type:ControlType.Enum},TRYqz29GT:{title:\"Link\",type:ControlType.Link},PI9Hk9WtQ:{defaultValue:\"Discover More\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerDKEYf50Uw,[{explicitInter:true,fonts:[{family:\"New Science Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/BNrXUySDh1TwQkJnEmvPYfNXBjc.woff2\"}]},...IconoirFonts,...LogoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDKEYf50Uw\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"TRYqz29GT\\\":\\\"link\\\",\\\"PI9Hk9WtQ\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"46.5\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cMEbXmTMB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VgTn4fBXv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ORzCSmwcN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZEppZsYRd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YTZW1Fjfv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N8vNUT6ak\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LQE52jjq2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bia1Yt9_o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eYKJCQrnE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XDOwjIaa6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cthKHSowA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wOmDAKGzO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ur_npkJZh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j6SxWYFRt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zQLmov7Z4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sHK8TeZ67\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qV7cpvQE4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g5yfNAZYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"144.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DKEYf50Uw.map", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button1 from\"https://framerusercontent.com/modules/sXDAyGzauoor1hZJgrXh/SCbpKhyGLgVKBqcg66YO/DKEYf50Uw.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/u9nn3nlNgyHAXnXd8sZ7/UV46hVS0KofynbMRE3qf/OwIVOP7c_.js\";import MenuIcon from\"https://framerusercontent.com/modules/g2NAAqfx41VXxuBLis34/H42IL51vXCQb4jfcV2CS/O_2XZOHKT.js\";const MenuIconFonts=getFonts(MenuIcon);const Button1Fonts=getFonts(Button1);const cycleOrder=[\"OkVyO3arO\",\"eLTTcf1cB\",\"HqVNmCK0b\",\"Y7ORzicfl\",\"BDjDzDisw\"];const serializationHash=\"framer-xWE6b\";const variantClassNames={BDjDzDisw:\"framer-v-1mk5w4o\",eLTTcf1cB:\"framer-v-faivcu\",HqVNmCK0b:\"framer-v-njen1y\",OkVyO3arO:\"framer-v-1h6hsxk\",Y7ORzicfl:\"framer-v-1xm4sz1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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={\"Phone Open\":\"BDjDzDisw\",\"Tablet Open\":\"HqVNmCK0b\",Desktop:\"OkVyO3arO\",Phone:\"Y7ORzicfl\",Tablet:\"eLTTcf1cB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OkVyO3arO\"};};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:\"OkVyO3arO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const TBgHLr7MWbuqbc5=activeVariantCallback(async(...args)=>{setVariant(\"HqVNmCK0b\");});const TBgHLr7MW1m8xols=activeVariantCallback(async(...args)=>{setVariant(\"eLTTcf1cB\");});const TBgHLr7MWu99ure=activeVariantCallback(async(...args)=>{setVariant(\"BDjDzDisw\");});const TBgHLr7MW1tx84qm=activeVariantCallback(async(...args)=>{setVariant(\"Y7ORzicfl\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"eLTTcf1cB\",\"HqVNmCK0b\",\"Y7ORzicfl\",\"BDjDzDisw\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Y7ORzicfl\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"BDjDzDisw\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"eLTTcf1cB\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"HqVNmCK0b\")return true;return false;};const router=useRouter();const isDisplayed5=()=>{if([\"eLTTcf1cB\",\"Y7ORzicfl\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"eLTTcf1cB\",\"Y7ORzicfl\",\"BDjDzDisw\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"HqVNmCK0b\")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,children:/*#__PURE__*/_jsx(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1h6hsxk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"OkVyO3arO\",ref:refBinding,style:{backdropFilter:\"blur(10px)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"blur(10px)\",...style},variants:{BDjDzDisw:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},HqVNmCK0b:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({BDjDzDisw:{\"data-framer-name\":\"Phone Open\"},eLTTcf1cB:{\"data-framer-name\":\"Tablet\"},HqVNmCK0b:{\"data-framer-name\":\"Tablet Open\"},Y7ORzicfl:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-maussc\",\"data-framer-name\":\"L Container\",layoutDependency:layoutDependency,layoutId:\"kBKR1kqis\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l0q92f\",\"data-framer-name\":\"Logo & Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"BuCi8kGdI\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.ticketsports.com.br/e/maratona-de-curitiba-santander-2025-72188\",motionChild:true,nodeId:\"uF7q4mI5m\",openInNewTab:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||93)-32-61)/2)+0+0),pixelHeight:1081,pixelWidth:1081,sizes:\"192px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"},className:\"framer-1qoastj framer-d4o3vd\",\"data-framer-name\":\"Logo Wrapper\",layoutDependency:layoutDependency,layoutId:\"uF7q4mI5m\",...addPropertyOverrides({BDjDzDisw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||327)-56-274.8)/2)+0+0+5.5),pixelHeight:1081,pixelWidth:1081,sizes:\"98px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}},eLTTcf1cB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||93)-32-61)/2)+0+0+0),pixelHeight:1081,pixelWidth:1081,sizes:\"192px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}},HqVNmCK0b:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||200)-88-425.8)/2)+0+0+0),pixelHeight:1081,pixelWidth:1081,sizes:\"192px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}},Y7ORzicfl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||74)-32-46)/2)+0+0+2),pixelHeight:1081,pixelWidth:1081,sizes:\"104px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BDjDzDisw:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||327)-56-274.8)/2)+0+0+7},eLTTcf1cB:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||93)-32-61)/2)+0+0+14.5},HqVNmCK0b:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-88-425.8)/2)+0+0+14.5},Y7ORzicfl:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||74)-32-46)/2)+0+0+7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ow760s-container\",layoutDependency:layoutDependency,layoutId:\"zfjhJLw0D-container\",nodeId:\"zfjhJLw0D\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(MenuIcon,{height:\"100%\",id:\"zfjhJLw0D\",layoutId:\"zfjhJLw0D\",mP9Tz30oK:\"var(--token-e0ce79e8-f023-49ad-9edf-bfcca13d71cf, rgb(7, 15, 75))\",style:{height:\"100%\",width:\"100%\"},variant:\"msub8F1U8\",width:\"100%\",...addPropertyOverrides({BDjDzDisw:{mP9Tz30oK:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\",TBgHLr7MW:TBgHLr7MW1tx84qm,variant:\"Rremtetrw\"},eLTTcf1cB:{mP9Tz30oK:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\",TBgHLr7MW:TBgHLr7MWbuqbc5},HqVNmCK0b:{mP9Tz30oK:\"var(--token-c5f1da1f-e558-4012-bcfa-0c426f51b0a3, rgb(160, 224, 13))\",TBgHLr7MW:TBgHLr7MW1m8xols,variant:\"Rremtetrw\"},Y7ORzicfl:{mP9Tz30oK:\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\",TBgHLr7MW:TBgHLr7MWu99ure}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Y7ORzicfl:{height:46,y:(componentViewport?.y||0)+(16+((componentViewport?.height||74)-32-46)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xjxmky-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YL8ynkT8_-container\",nodeId:\"YL8ynkT8_\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"YL8ynkT8_\",layoutId:\"YL8ynkT8_\",PI9Hk9WtQ:\"INSCREVA-SE\",TRYqz29GT:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",variant:\"cthKHSowA\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({BDjDzDisw:{height:46,y:(componentViewport?.y||0)+(16+((componentViewport?.height||327)-56-274.8)/2)+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5qurx1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O1TmwvVYM-container\",nodeId:\"O1TmwvVYM\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"O1TmwvVYM\",layoutId:\"O1TmwvVYM\",PI9Hk9WtQ:\"INSCREVA-SE\",TRYqz29GT:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",variant:\"cthKHSowA\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({eLTTcf1cB:{height:46,y:(componentViewport?.y||0)+(16+((componentViewport?.height||93)-32-61)/2)+0+0+7.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-whbas4-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"I51lSF5C0-container\",nodeId:\"I51lSF5C0\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"I51lSF5C0\",layoutId:\"I51lSF5C0\",PI9Hk9WtQ:\"INSCREVA-SE\",TRYqz29GT:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",variant:\"cthKHSowA\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IMfGTkEQd\"},implicitPathVariables:undefined},{href:{webPageId:\"IMfGTkEQd\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({HqVNmCK0b:{height:46,y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-88-425.8)/2)+0+0+7.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x9nsvh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kwTEy0yB7-container\",nodeId:\"kwTEy0yB7\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"kwTEy0yB7\",layoutId:\"kwTEy0yB7\",PI9Hk9WtQ:\"MANUAL DO ATLETA\",TRYqz29GT:resolvedLinks[0],variant:\"C3hRJlleN\",width:\"100%\",...addPropertyOverrides({HqVNmCK0b:{TRYqz29GT:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y4eqj3\",\"data-framer-name\":\"Nav Links Wrapper\",layoutDependency:layoutDependency,layoutId:\"t7YrlJKS2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ijxl0\",\"data-framer-name\":\"Nav Link\",layoutDependency:layoutDependency,layoutId:\"u0PiCntpQ\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":JupEZOS8G\",webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"WQ4hhjtp9\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"r3T3EQ6vH\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Kits\"})})})}),className:\"framer-18lkzcx\",fonts:[\"CUSTOM;New Science Medium\"],layoutDependency:layoutDependency,layoutId:\"WQ4hhjtp9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6cq7m\",\"data-framer-name\":\"Nav Link\",layoutDependency:layoutDependency,layoutId:\"uvFFQMoEk\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":RijmLO8Ez\",webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"z8O8vrx68\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"r3T3EQ6vH\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Percursos\"})})})}),className:\"framer-1pu3mos\",fonts:[\"CUSTOM;New Science Medium\"],layoutDependency:layoutDependency,layoutId:\"z8O8vrx68\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qthhs7\",\"data-framer-name\":\"Nav Link\",layoutDependency:layoutDependency,layoutId:\"Z72Q5kVzw\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":wqI4ZHlUI\",webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"clcRnibW3\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"r3T3EQ6vH\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Documentos\"})})})}),className:\"framer-16eiwfq\",fonts:[\"CUSTOM;New Science Medium\"],layoutDependency:layoutDependency,layoutId:\"clcRnibW3\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-px083l\",\"data-framer-name\":\"Nav Link\",layoutDependency:layoutDependency,layoutId:\"J_1c53aFI\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":HLkkC7FNU\",webPageId:\"Vw8xu4fHQ\"},motionChild:true,nodeId:\"My1RopBBM\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"r3T3EQ6vH\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ji0msi\",\"data-styles-preset\":\"OwIVOP7c_\",children:\"Faq\"})})})}),className:\"framer-ng23rd\",fonts:[\"CUSTOM;New Science Medium\"],layoutDependency:layoutDependency,layoutId:\"My1RopBBM\",style:{\"--extracted-r6o4lv\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8w2d29\",\"data-framer-name\":\"Button Row\",layoutDependency:layoutDependency,layoutId:\"iRLAYGIRI\",children:isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+(16+((componentViewport?.height||93)-32-61)/2)+7.5+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-75yyfn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oYlF5IdpP-container\",nodeId:\"oYlF5IdpP\",rendersWithMotion:true,scopeId:\"r3T3EQ6vH\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"oYlF5IdpP\",layoutId:\"oYlF5IdpP\",PI9Hk9WtQ:\"INSCREVA-SE\",TRYqz29GT:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",variant:\"cthKHSowA\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xWE6b.framer-d4o3vd, .framer-xWE6b .framer-d4o3vd { display: block; }\",\".framer-xWE6b.framer-1h6hsxk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px 80px 16px 80px; position: relative; width: 1002px; }\",\".framer-xWE6b .framer-maussc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; padding: 0px; position: relative; width: 1px; }\",\".framer-xWE6b .framer-1l0q92f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-xWE6b .framer-1qoastj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 61px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 192px; }\",\".framer-xWE6b .framer-1ow760s-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-xWE6b .framer-1xjxmky-container, .framer-xWE6b .framer-5qurx1-container, .framer-xWE6b .framer-whbas4-container, .framer-xWE6b .framer-1x9nsvh-container, .framer-xWE6b .framer-75yyfn-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xWE6b .framer-1y4eqj3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xWE6b .framer-3ijxl0, .framer-xWE6b .framer-p6cq7m, .framer-xWE6b .framer-qthhs7, .framer-xWE6b .framer-px083l { 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: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-xWE6b .framer-18lkzcx, .framer-xWE6b .framer-1pu3mos, .framer-xWE6b .framer-16eiwfq, .framer-xWE6b .framer-ng23rd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xWE6b .framer-8w2d29 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xWE6b.framer-v-faivcu.framer-1h6hsxk { overflow: hidden; padding: 16px 40px 16px 40px; width: 810px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xWE6b.framer-v-faivcu .framer-maussc, .framer-xWE6b.framer-v-njen1y .framer-maussc, .framer-xWE6b.framer-v-1xm4sz1 .framer-maussc, .framer-xWE6b.framer-v-1mk5w4o .framer-maussc { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-xWE6b.framer-v-faivcu .framer-1l0q92f, .framer-xWE6b.framer-v-njen1y .framer-1l0q92f, .framer-xWE6b.framer-v-1xm4sz1 .framer-1l0q92f, .framer-xWE6b.framer-v-1mk5w4o .framer-1l0q92f { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-xWE6b.framer-v-faivcu .framer-1qoastj, .framer-xWE6b.framer-v-njen1y .framer-1qoastj { order: 0; }\",\".framer-xWE6b.framer-v-faivcu .framer-1ow760s-container, .framer-xWE6b.framer-v-1mk5w4o .framer-5qurx1-container { order: 3; }\",\".framer-xWE6b.framer-v-faivcu .framer-whbas4-container, .framer-xWE6b.framer-v-njen1y .framer-1ow760s-container { order: 4; }\",\".framer-xWE6b.framer-v-njen1y.framer-1h6hsxk { overflow: hidden; padding: 16px 32px 72px 32px; width: 810px; }\",\".framer-xWE6b.framer-v-njen1y .framer-1x9nsvh-container { order: 5; }\",\".framer-xWE6b.framer-v-njen1y .framer-1y4eqj3 { flex-direction: column; gap: 40px; }\",\".framer-xWE6b.framer-v-njen1y .framer-8w2d29 { gap: 32px; min-height: 51px; min-width: 344px; }\",\".framer-xWE6b.framer-v-1xm4sz1.framer-1h6hsxk { padding: 16px 24px 16px 24px; width: 390px; }\",\".framer-xWE6b.framer-v-1xm4sz1 .framer-1qoastj { height: 42px; order: 0; width: 104px; }\",\".framer-xWE6b.framer-v-1xm4sz1 .framer-1ow760s-container { order: 1; }\",\".framer-xWE6b.framer-v-1xm4sz1 .framer-1xjxmky-container, .framer-xWE6b.framer-v-1mk5w4o .framer-1ow760s-container { order: 2; }\",\".framer-xWE6b.framer-v-1mk5w4o.framer-1h6hsxk { padding: 16px 20px 40px 20px; width: 390px; }\",\".framer-xWE6b.framer-v-1mk5w4o .framer-1qoastj { height: 35px; order: 0; width: 98px; }\",\".framer-xWE6b.framer-v-1mk5w4o .framer-1y4eqj3 { flex-direction: column; justify-content: flex-start; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 93\n * @framerIntrinsicWidth 1002\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eLTTcf1cB\":{\"layout\":[\"fixed\",\"auto\"]},\"HqVNmCK0b\":{\"layout\":[\"fixed\",\"auto\"]},\"Y7ORzicfl\":{\"layout\":[\"fixed\",\"auto\"]},\"BDjDzDisw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerr3T3EQ6vH=withCSS(Component,css,\"framer-xWE6b\");export default Framerr3T3EQ6vH;Framerr3T3EQ6vH.displayName=\"Navegbar 2\";Framerr3T3EQ6vH.defaultProps={height:93,width:1002};addPropertyControls(Framerr3T3EQ6vH,{variant:{options:[\"OkVyO3arO\",\"eLTTcf1cB\",\"HqVNmCK0b\",\"Y7ORzicfl\",\"BDjDzDisw\"],optionTitles:[\"Desktop\",\"Tablet\",\"Tablet Open\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerr3T3EQ6vH,[{explicitInter:true,fonts:[{family:\"New Science Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/BNrXUySDh1TwQkJnEmvPYfNXBjc.woff2\"}]},...MenuIconFonts,...Button1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr3T3EQ6vH\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eLTTcf1cB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HqVNmCK0b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y7ORzicfl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BDjDzDisw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"93\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1002\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r3T3EQ6vH.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navegbar2 from\"https://framerusercontent.com/modules/iTMLmReEf3sN8yv8TnSv/6Wuh0FnZ24usRrMLVN4Y/r3T3EQ6vH.js\";const Navegbar2Fonts=getFonts(Navegbar2);const cycleOrder=[\"faBLtvqje\",\"hGwhJBqWC\",\"ewpWooL5X\",\"amv4Ve7jd\"];const serializationHash=\"framer-DbOlx\";const variantClassNames={amv4Ve7jd:\"framer-v-1rv3wiz\",ewpWooL5X:\"framer-v-131kq1\",faBLtvqje:\"framer-v-297acu\",hGwhJBqWC:\"framer-v-r433m3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={\"Desktop 2\":\"hGwhJBqWC\",Desktop:\"faBLtvqje\",Phone:\"ewpWooL5X\",Tablet:\"amv4Ve7jd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"faBLtvqje\"};};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:\"faBLtvqje\",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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-297acu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"faBLtvqje\",ref:refBinding,style:{...style},...addPropertyOverrides({amv4Ve7jd:{\"data-framer-name\":\"Tablet\"},ewpWooL5X:{\"data-framer-name\":\"Phone\"},hGwhJBqWC:{\"data-framer-name\":\"Desktop 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,y:(componentViewport?.y||0)+0+(((componentViewport?.height||93)-0-93)/2+0+0),...addPropertyOverrides({amv4Ve7jd:{width:\"681px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-93)/2+0+0)},ewpWooL5X:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-93)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hi5osr-container\",layoutDependency:layoutDependency,layoutId:\"Pt8aWSarw-container\",nodeId:\"Pt8aWSarw\",rendersWithMotion:true,scopeId:\"Xz0nT8A15\",children:/*#__PURE__*/_jsx(Navegbar2,{height:\"100%\",id:\"Pt8aWSarw\",layoutId:\"Pt8aWSarw\",variant:\"OkVyO3arO\",width:\"100%\",...addPropertyOverrides({amv4Ve7jd:{style:{width:\"100%\"},variant:\"eLTTcf1cB\"},ewpWooL5X:{style:{width:\"100%\"},variant:\"Y7ORzicfl\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DbOlx.framer-1gylop6, .framer-DbOlx .framer-1gylop6 { display: block; }\",\".framer-DbOlx.framer-297acu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 859px; }\",\".framer-DbOlx .framer-hi5osr-container { flex: none; height: auto; position: relative; width: auto; z-index: 9; }\",\".framer-DbOlx.framer-v-r433m3.framer-297acu { width: 1440px; }\",\".framer-DbOlx.framer-v-131kq1.framer-297acu { width: 413px; }\",\".framer-DbOlx.framer-v-131kq1 .framer-hi5osr-container { width: 100%; }\",\".framer-DbOlx.framer-v-1rv3wiz.framer-297acu { width: 810px; }\",\".framer-DbOlx.framer-v-1rv3wiz .framer-hi5osr-container { width: 681px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 93\n * @framerIntrinsicWidth 859\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hGwhJBqWC\":{\"layout\":[\"fixed\",\"auto\"]},\"ewpWooL5X\":{\"layout\":[\"fixed\",\"auto\"]},\"amv4Ve7jd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXz0nT8A15=withCSS(Component,css,\"framer-DbOlx\");export default FramerXz0nT8A15;FramerXz0nT8A15.displayName=\"navbar 2\";FramerXz0nT8A15.defaultProps={height:93,width:859};addPropertyControls(FramerXz0nT8A15,{variant:{options:[\"faBLtvqje\",\"hGwhJBqWC\",\"ewpWooL5X\",\"amv4Ve7jd\"],optionTitles:[\"Desktop\",\"Desktop 2\",\"Phone\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXz0nT8A15,[{explicitInter:true,fonts:[]},...Navegbar2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXz0nT8A15\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"859\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"93\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hGwhJBqWC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ewpWooL5X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"amv4Ve7jd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Countdown from\"https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js\";import Terceiros from\"#framer/local/canvasComponent/AzTnowcho/AzTnowcho.js\";import Accordion2 from\"#framer/local/canvasComponent/E9TLOow3n/E9TLOow3n.js\";import Footer2 from\"#framer/local/canvasComponent/FsT_hJ3CP/FsT_hJ3CP.js\";import TermoResponsaibilidade from\"#framer/local/canvasComponent/G8vgCyTlX/G8vgCyTlX.js\";import MoreTemplates from\"#framer/local/canvasComponent/lcnogRWEO/lcnogRWEO.js\";import Button2 from\"#framer/local/canvasComponent/nNlMVo66D/nNlMVo66D.js\";import Regulamento from\"#framer/local/canvasComponent/soTRgg_ue/soTRgg_ue.js\";import ServiceCard from\"#framer/local/canvasComponent/vlBjMG0_q/vlBjMG0_q.js\";import Navbar2 from\"#framer/local/canvasComponent/Xz0nT8A15/Xz0nT8A15.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vw8xu4fHQ/Vw8xu4fHQ.js\";const Navbar2Fonts=getFonts(Navbar2);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const EmbedFonts=getFonts(Embed);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const CountdownFonts=getFonts(Countdown);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Button2Fonts=getFonts(Button2);const RichTextWithFX=withFX(RichText);const ServiceCardFonts=getFonts(ServiceCard);const MotionDivWithFX=withFX(motion.div);const RegulamentoFonts=getFonts(Regulamento);const TerceirosFonts=getFonts(Terceiros);const TermoResponsaibilidadeFonts=getFonts(TermoResponsaibilidade);const Accordion2Fonts=getFonts(Accordion2);const Footer2Fonts=getFonts(Footer2);const MoreTemplatesFonts=getFonts(MoreTemplates);const breakpoints={lIGHOFFRd:\"(min-width: 810px) and (max-width: 1279px)\",oyYnQPO3S:\"(max-width: 809px)\",U7q6kv1J3:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xdkjl\";const variantClassNames={lIGHOFFRd:\"framer-v-1snu65i\",oyYnQPO3S:\"framer-v-1ov5bhf\",U7q6kv1J3:\"framer-v-1ux9lqd\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:80,delay:1.2,mass:.5,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={delay:2.2,duration:.5,ease:[.4,0,.2,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"U7q6kv1J3\",Phone:\"oyYnQPO3S\",Tablet:\"lIGHOFFRd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"U7q6kv1J3\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"s5xzGNKgS\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"x49KNLzXd\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oyYnQPO3S\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"lIGHOFFRd\")return false;return true;};const elementId2=useRouteElementId(\"JupEZOS8G\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"oVWFcqfsA\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"QquZeugFT\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"wqI4ZHlUI\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"RijmLO8Ez\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"EzTHiq9Ol\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"HLkkC7FNU\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"GSsce8jWA\");const ref10=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"U7q6kv1J3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, rgb(245, 245, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ux9lqd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-hi0p0s\",\"data-framer-appear-id\":\"hi0p0s\",\"data-framer-name\":\"menu\",initial:animation1,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{width:undefined},oyYnQPO3S:{width:\"387px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"1200px\",y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m9jv6v-container\",nodeId:\"fMUeKDWlh\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{variant:\"amv4Ve7jd\"},oyYnQPO3S:{variant:\"ewpWooL5X\"}},children:/*#__PURE__*/_jsx(Navbar2,{height:\"100%\",id:\"fMUeKDWlh\",layoutId:\"fMUeKDWlh\",style:{width:\"100%\"},variant:\"faBLtvqje\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-y2ah9s\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fqxw1h-container\",\"data-framer-name\":\"Utmfy\",isModuleExternal:true,name:\"Utmfy\",nodeId:\"rN43uOEhV\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script\\n  src=\"https://cdn.utmify.com.br/scripts/utms/latest.js\"\\n  data-utmify-prevent-subids\\n  async\\n  defer\\n></script>',id:\"rN43uOEhV\",layoutId:\"rN43uOEhV\",name:\"Utmfy\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qnlcg3-container\",\"data-framer-name\":\"Hotjar\",isModuleExternal:true,name:\"Hotjar\",nodeId:\"jyTYaYMIi\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<!-- Hotjar Tracking Code for Meia de Curita 2025 -->\\n<script>\\n    (function(h,o,t,j,a,r){\\n        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};\\n        h._hjSettings={hjid:5234890,hjsv:6};\\n        a=o.getElementsByTagName('head')[0];\\n        r=o.createElement('script');r.async=1;\\n        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;\\n        a.appendChild(r);\\n    })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');\\n</script>\",id:\"jyTYaYMIi\",layoutId:\"jyTYaYMIi\",name:\"Hotjar\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q178ig-container\",\"data-framer-name\":\"Navegg\",isModuleExternal:true,name:\"Navegg\",nodeId:\"GACZ7_eGR\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script type=\\\"text/javascript\\\">\\n(function(n,v,g){o='Navegg';if(!n[o]){\\na=v.createElement('script');a.src=g;b=document.getElementsByTagName('script')[0];\\nb.parentNode.insertBefore(a,b);n[o]=n[o]||function(parms){\\nn[o].q=n[o].q||[];n[o].q.push([this, parms])};} })\\n(window, document, 'https://tag.navdmp.com/universal.min.js');\\nwindow.naveggReady = window.naveggReady||[];\\nwindow.nvg92972 = new Navegg({\\nacc: 92972\\n});\\n</script>\",id:\"GACZ7_eGR\",layoutId:\"GACZ7_eGR\",name:\"Navegg\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c4qu5m-container\",\"data-framer-name\":\"Meta\",isModuleExternal:true,name:\"Meta\",nodeId:\"qzVxCFHqC\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<!-- Meta Pixel Code -->\\n<script>\\n!function(f,b,e,v,n,t,s)\\n{if(f.fbq)return;n=f.fbq=function(){n.callMethod?\\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};\\nif(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';\\nn.queue=[];t=b.createElement(e);t.async=!0;\\nt.src=v;s=b.getElementsByTagName(e)[0];\\ns.parentNode.insertBefore(t,s)}(window, document,'script',\\n'https://connect.facebook.net/en_US/fbevents.js');\\nfbq('init', '2137775246521507');\\nfbq('track', 'PageView');\\n</script>\\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none\\\"\\nsrc=\\\"https://www.facebook.com/tr?id=2137775246521507&ev=PageView&noscript=1\\\"\\n/></noscript>\\n<!-- End Meta Pixel Code -->\",id:\"qzVxCFHqC\",layoutId:\"qzVxCFHqC\",name:\"Meta\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12m8a7f-container\",\"data-framer-name\":\"Tag Manager\",isModuleExternal:true,name:\"Tag Manager\",nodeId:\"nCKz39XFX\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<!-- Google Tag Manager -->\\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\\nnew Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\\nj=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\\n'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\\n})(window,document,'script','dataLayer','GTM-NTMX4Z5F');</script>\\n<!-- End Google Tag Manager -->\",id:\"nCKz39XFX\",layoutId:\"nCKz39XFX\",name:\"Tag Manager\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-py8oee\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123a55z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y5p25i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"MARATONA DE CURITIBA 2025\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"MARATONA DE CURITIBA 2025\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"73px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"MARATONA DE CURITIBA 2025\"})}),className:\"framer-pld9vq\",\"data-framer-appear-id\":\"pld9vq\",fonts:[\"CUSTOM;New Science Bold Extended\"],id:elementId1,initial:animation3,optimized:true,ref:ref2,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8ymxio\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})}),className:\"framer-1jzuge1\",\"data-framer-appear-id\":\"1jzuge1\",fonts:[\"CUSTOM;New Science Regular\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cg45jr\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-zl3vx4-container\",\"data-framer-appear-id\":\"zl3vx4\",initial:animation5,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fDHKXlnvP\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{font:{fontFamily:'\"Franie Light\", \"Franie Light Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"}},oyYnQPO3S:{font:{fontFamily:'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',fontSize:\"12px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(Countdown,{color:\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\",date:\"2025-11-23T00:00:00.000Z\",displayProps:{dayLabel:\"Dias\",digitCount:false,hourLabel:\"Horas\",labelSpace:false,labelType:false,minuteLabel:\"Minutos\",numberSpace:false,secondLabel:\"Segundos\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{fontFamily:'\"New Science Regular\", \"New Science Regular Placeholder\", sans-serif',fontSize:\"20px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"fDHKXlnvP\",labelColor:\"rgba(79, 79, 79, 0.5)\",layoutId:\"fDHKXlnvP\",pickTime:3,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26))\"},children:\"INSCRI\\xc7\\xd5ES ABERTAS!!!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(13, 37, 26))\"},children:\"INSCRI\\xc7\\xd5ES ABERTAS!!!\"})}),className:\"framer-ibf98v\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ole61\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+0+120+55+0+0+30+473.5+0},oyYnQPO3S:{width:\"162px\",y:(componentViewport?.y||0)+0+0+137+5+0+0+13+488.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+120+55+0+0+0+568.6+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-tvoupg-container\",\"data-framer-appear-id\":\"tvoupg\",initial:animation5,nodeId:\"zPFMcWjnQ\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"},variant:\"zre2FObt4\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",id:\"zPFMcWjnQ\",layoutId:\"zPFMcWjnQ\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"INSCREVA-SE\"})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1ofdfpk\",\"data-framer-appear-id\":\"1ofdfpk\",\"data-framer-name\":\"Image Wrapper\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+55+0+522+0),pixelHeight:627,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1080px), 1px)`,src:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg\",srcSet:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg 1600w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+137+5+558.4- -22+0),pixelHeight:627,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1080px)`,src:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg\",srcSet:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+55+0+658.6+0),pixelHeight:627,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1080px), 1px)`,src:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg\",srcSet:\"https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iCvh4BC8UlI5GoKjT6LNO8Mdg.jpeg 1600w\"},className:\"framer-qsbvzv\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-y3l2iq\",\"data-framer-appear-id\":\"y3l2iq\",\"data-framer-name\":\"Content\",initial:animation3,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13cs4ml hidden-1ov5bhf\",\"data-framer-name\":\"Corner Mask\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 260 68\"></svg>',svgContentId:11441156762}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xcpqdp\",\"data-framer-name\":\"White BG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 362 68\"></svg>',svgContentId:9115235999,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rq9krv\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Muito al\\xe9m da Chegada\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"Muito al\\xe9m da Chegada\"})}),className:\"framer-1fuz8gh hidden-1snu65i\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540.5,intrinsicWidth:540.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+55+837-35+60+0),pixelHeight:1081,pixelWidth:1081,sizes:\"75px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540.5,intrinsicWidth:540.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+137+5+558.4- -156+16+0+0),pixelHeight:1081,pixelWidth:1081,sizes:\"44px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540.5,intrinsicWidth:540.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+55+1103.6-78+80+26),pixelHeight:1081,pixelWidth:1081,sizes:\"44px\",src:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bk6fnoLXVfBA7OHrGBtRdIQhyGU.png 1081w\"},className:\"framer-15etb6r\",\"data-framer-name\":\"Vertical 3\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x2kyz8\",\"data-framer-name\":\"Numbers Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c9c3ge\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})}),className:\"framer-19tfiyf\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rtca4w\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oxwhoa\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})}),className:\"framer-1h8xb4z\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b1srn6\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkxlk4\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l3f00i\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})}),className:\"framer-vhw72k\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7v40df\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6ljiy\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15bvyuv\",\"data-framer-name\":\"Number & Label\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})}),className:\"framer-1muu1n3\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cr0s8\",\"data-framer-name\":\"Start Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xfdrz2\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 10.5 0 L 12.857 8.019 L 20.487 8.019 L 14.314 12.975 L 16.672 20.994 L 10.5 16.037 L 4.328 20.993 L 6.686 12.974 L 0.514 8.019 L 8.143 8.019 Z\" fill=\"rgb(255,140,5)\"></path></svg>',svgContentId:11468624938,withExternalLayout:true})})]})})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-pxe3ka\",\"data-framer-name\":\"Kits\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p89yjl\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vvunl\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(253, 255, 254)\"},children:\"KITS\"})}),className:\"framer-biqgjx\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1012+100+0+70+0+5),pixelHeight:501,pixelWidth:1931,sizes:`calc((min(${componentViewport?.width||\"100vw\"} * 0.6284, 1080px) - 60px) * 0.5457)`,src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+617+180+0+20+0+5),pixelHeight:501,pixelWidth:1931,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 40px, 1080px) - 40px) * 0.6097)`,src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1478.6+28+0+57+0+4.5),pixelHeight:501,pixelWidth:1931,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1080px) - 120px) * 0.2635)`,src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"},className:\"framer-184jthq\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-po6962\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vj370\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+1012+100+0+70+102+0+0+0+0},oyYnQPO3S:{height:439,width:\"278px\",y:(componentViewport?.y||0)+0+617+180+0+20+87+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:\"417px\",y:(componentViewport?.y||0)+0+1478.6+28+0+57+102+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p7oli3-container\",\"data-framer-name\":\"Standard\",name:\"Standard\",nodeId:\"Jds5NI1V_\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{variant:\"MRTTkn0y0\"}},children:/*#__PURE__*/_jsx(ServiceCard,{height:\"100%\",I7NR52Wf4:addImageAlt({pixelHeight:1350,pixelWidth:1080,src:\"https://framerusercontent.com/images/0PQw2Y3gtKBK3Zwc1xSXMeHThMQ.png\",srcSet:\"https://framerusercontent.com/images/0PQw2Y3gtKBK3Zwc1xSXMeHThMQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/0PQw2Y3gtKBK3Zwc1xSXMeHThMQ.png 1080w\"},\"\"),id:\"Jds5NI1V_\",Jy8Qd4CJy:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",Ke3nraMz1:\"VIP\",layoutId:\"Jds5NI1V_\",name:\"Standard\",o8OPy2pZX:\"Comprar\",style:{height:\"100%\",width:\"100%\"},variant:\"xRAKkUsRq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+1012+100+0+70+102+0+0+0+636},oyYnQPO3S:{height:439,width:\"278px\",y:(componentViewport?.y||0)+0+617+180+0+20+87+0+0+0+462}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:\"417px\",y:(componentViewport?.y||0)+0+1478.6+28+0+57+102+0+0+649,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f6eosq-container\",\"data-framer-name\":\"Standard\",name:\"Standard\",nodeId:\"CTTr1yvFX\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{variant:\"MRTTkn0y0\"}},children:/*#__PURE__*/_jsx(ServiceCard,{height:\"100%\",I7NR52Wf4:addImageAlt({pixelHeight:1350,pixelWidth:1080,src:\"https://framerusercontent.com/images/wFWjjv8c28XVZHj0lY4lrTthY.png\",srcSet:\"https://framerusercontent.com/images/wFWjjv8c28XVZHj0lY4lrTthY.png?scale-down-to=1024 819w,https://framerusercontent.com/images/wFWjjv8c28XVZHj0lY4lrTthY.png 1080w\"},\"\"),id:\"CTTr1yvFX\",Jy8Qd4CJy:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",Ke3nraMz1:\"STANDARD\",layoutId:\"CTTr1yvFX\",name:\"Standard\",o8OPy2pZX:\"Comprar\",style:{height:\"100%\",width:\"100%\"},variant:\"xRAKkUsRq\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-khlycp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+1012+100+0+70+102+0+1293+0+0},oyYnQPO3S:{height:439,width:\"278px\",y:(componentViewport?.y||0)+0+617+180+0+20+87+0+914+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:\"417px\",y:(componentViewport?.y||0)+0+1478.6+28+0+57+102+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vep50x-container\",\"data-framer-name\":\"Standard\",name:\"Standard\",nodeId:\"jKvf614ck\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{variant:\"MRTTkn0y0\"}},children:/*#__PURE__*/_jsx(ServiceCard,{height:\"100%\",I7NR52Wf4:addImageAlt({pixelHeight:1350,pixelWidth:1080,src:\"https://framerusercontent.com/images/s1kYEvGJHCQsVZQG83EUmJkWVc.png\",srcSet:\"https://framerusercontent.com/images/s1kYEvGJHCQsVZQG83EUmJkWVc.png?scale-down-to=1024 819w,https://framerusercontent.com/images/s1kYEvGJHCQsVZQG83EUmJkWVc.png 1080w\"},\"\"),id:\"jKvf614ck\",Jy8Qd4CJy:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",Ke3nraMz1:\"PREMIUM\",layoutId:\"jKvf614ck\",name:\"Standard\",o8OPy2pZX:\"Comprar\",style:{height:\"100%\",width:\"100%\"},variant:\"xRAKkUsRq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+1012+100+0+70+102+0+1293+0+636},oyYnQPO3S:{height:439,width:\"278px\",y:(componentViewport?.y||0)+0+617+180+0+20+87+0+914+0+462}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:626,width:\"417px\",y:(componentViewport?.y||0)+0+1478.6+28+0+57+102+0+0+649,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10i607u-container\",\"data-framer-name\":\"Standard\",name:\"Standard\",nodeId:\"grJ4bhB_Q\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{variant:\"MRTTkn0y0\"}},children:/*#__PURE__*/_jsx(ServiceCard,{height:\"100%\",I7NR52Wf4:addImageAlt({pixelHeight:1350,pixelWidth:1080,src:\"https://framerusercontent.com/images/4lyHMSCZMMYjWH2q1LrZ8wTao.png\",srcSet:\"https://framerusercontent.com/images/4lyHMSCZMMYjWH2q1LrZ8wTao.png?scale-down-to=1024 819w,https://framerusercontent.com/images/4lyHMSCZMMYjWH2q1LrZ8wTao.png 1080w\"},\"\"),id:\"grJ4bhB_Q\",Jy8Qd4CJy:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",Ke3nraMz1:\"SMART\",layoutId:\"grJ4bhB_Q\",name:\"Standard\",o8OPy2pZX:\"Comprar\",style:{height:\"100%\",width:\"100%\"},variant:\"xRAKkUsRq\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m2ujdz\",\"data-framer-name\":\"apresenta\\xe7\\xe3o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Apresenta\\xe7\\xe3o\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Apresenta\\xe7\\xe3o\"})}),className:\"framer-1pc9a5j\",fonts:[\"CUSTOM;New Science Bold\"],id:elementId4,ref:ref5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n6eg11\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xkj47q\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t82ptz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3909+80+122.4+117.5+0+0+0+0),pixelHeight:501,pixelWidth:1931,positionX:\"left\",positionY:\"center\",sizes:\"343px\",src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2798+18+108+60+72.5+0+0+0+0),pixelHeight:501,pixelWidth:1931,positionX:\"left\",positionY:\"center\",sizes:\"282px\",src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3020.6+80+122.4+103.5+0+0+0+0),pixelHeight:501,pixelWidth:1931,positionX:\"left\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png\",srcSet:\"https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=512 512w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VX3Ri4z6aOJxIc0wxFKopHApdU.png 1931w\"},className:\"framer-tgvijb\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:\"Participe da Maratona de Curitiba 2025 e junte-se a milhares de corredores que se recusam a parar diante de um dos percursos mais exigentes do Brasil. Fa\\xe7a parte desse dia de supera\\xe7\\xe3o e celebre com a torcida de uma cidade inteira que se move com voc\\xea. Transforme cada obst\\xe1culo em impulso um impulso para linha de chegada, embora a gente saiba que voc\\xea n\\xe3o tem nenhuma inten\\xe7\\xe3o de parar nela.\"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:[\"Santander Maratona de Curitiba:\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Muito antes da largada, muito al\\xe9m da chegada.\"]})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Participe da Maratona de Curitiba 2025 e junte-se a milhares de corredores que se recusam a parar diante de um dos percursos mais exigentes do Brasil. Fa\\xe7a parte desse dia de supera\\xe7\\xe3o e celebre com a torcida de uma cidade inteira que se move com voc\\xea. Transforme cada obst\\xe1culo em impulso um impulso para linha de chegada, embora a gente saiba que voc\\xea n\\xe3o tem nenhuma inten\\xe7\\xe3o de parar nela.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Santander Maratona de Curitiba:\\x03Muito antes da largada, muito al\\xe9m da chegada.\"]})}),className:\"framer-1h0e8cz\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-luqtv4\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e Organiza\\xe7\\xe3o\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e Organiza\\xe7\\xe3o\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e Organiza\\xe7\\xe3o\"})}),className:\"framer-g5gih0\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbe8eh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3909+80+122.4+117.5+0+204+18+22.75+0),pixelHeight:587,pixelWidth:732,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png\",srcSet:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png 732w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2798+18+108+60+72.5+0+197+19+38.9+0),pixelHeight:587,pixelWidth:732,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png\",srcSet:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png 732w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3020.6+80+122.4+103.5+0+212+18+21.56+0),pixelHeight:587,pixelWidth:732,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png\",srcSet:\"https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TvYz2FxbISeyE6ab2wCSSMG6Mr4.png 732w\"},className:\"framer-391w44\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3909+80+122.4+117.5+0+204+18+22.75+0),pixelHeight:516,pixelWidth:710,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png\",srcSet:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png 710w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2798+18+108+60+72.5+0+197+19+38.9+0),pixelHeight:516,pixelWidth:710,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png\",srcSet:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png 710w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3020.6+80+122.4+103.5+0+212+18+21.56+0),pixelHeight:516,pixelWidth:710,positionX:\"center\",positionY:\"center\",sizes:\"57px\",src:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png\",srcSet:\"https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/5PlgadUtVmcp80BlwFMqy5rCAEI.png 710w\"},className:\"framer-xwnqw7\"})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15jhbf9 hidden-1ov5bhf\",\"data-framer-name\":\"Tickers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l3gkh4\",\"data-framer-name\":\"Realiza\\xe7\\xe3o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3909+80+122.4+40+0+0+96.0031),pixelHeight:977,pixelWidth:1501,positionX:\"center\",positionY:\"center\",sizes:\"336.8853px\",src:\"https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png\",srcSet:\"https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png 1501w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3020.6+80+122.4+20+0+0+-4.4919),pixelHeight:977,pixelWidth:1501,positionX:\"center\",positionY:\"center\",sizes:\"488.7866px\",src:\"https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png\",srcSet:\"https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZckehnbAIHtmGeXLphs0oRExhY.png 1501w\"},className:\"framer-21mvj6\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u07iez\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+3909+80+705.4+0},oyYnQPO3S:{width:\"162px\",y:(componentViewport?.y||0)+0+2798+18+743+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+3020.6+80+705.4+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-189erxb-container\",\"data-framer-appear-id\":\"189erxb\",initial:animation5,nodeId:\"iW1rgpqjW\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"},variant:\"zre2FObt4\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",id:\"iW1rgpqjW\",layoutId:\"iW1rgpqjW\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"INSCREVA-SE\"})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ennpt7\",\"data-framer-name\":\"documentos\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wl9qxa\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:[\"Regulamento \",/*#__PURE__*/_jsx(\"br\",{}),\"e termos\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Regulamento e termos\"})}),className:\"framer-1eljpg\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxjh0r\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 26px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4818.4+0+76.8+0+122.4+0},oyYnQPO3S:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1080px)`,y:(componentViewport?.y||0)+0+3680+38+0+0+102+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:621,width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3897+0+47.8+0+122.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tizh3r-container\",nodeId:\"hqnTlWmPq\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Regulamento,{height:\"100%\",id:\"hqnTlWmPq\",layoutId:\"hqnTlWmPq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 26px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4818.4+0+76.8+0+122.4+0},oyYnQPO3S:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1080px)`,y:(componentViewport?.y||0)+0+3680+38+0+0+102+0+631}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:621,width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3897+0+47.8+0+122.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13wlzeu-container\",nodeId:\"otyiGjDY7\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Terceiros,{height:\"100%\",id:\"otyiGjDY7\",layoutId:\"otyiGjDY7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 26px) / 3, 1px)`,y:(componentViewport?.y||0)+0+4818.4+0+76.8+0+122.4+0},oyYnQPO3S:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1080px)`,y:(componentViewport?.y||0)+0+3680+38+0+0+102+0+1262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:621,width:`max((min(${componentViewport?.width||\"100vw\"}, 1080px) - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3897+0+47.8+0+122.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l30zhm-container\",nodeId:\"QFKMuZ2HB\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(TermoResponsaibilidade,{height:\"100%\",id:\"QFKMuZ2HB\",layoutId:\"QFKMuZ2HB\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lscaj3\",\"data-framer-name\":\"percursos\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18xknwn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Percursos em breve\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Percursos em breve\"})}),className:\"framer-17lorx1\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-18mnjaz\",\"data-framer-appear-id\":\"18mnjaz\",\"data-framer-name\":\"Content\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11fvt88\",\"data-framer-name\":\"Corner Mask\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnlon9\",\"data-framer-name\":\"Numbers Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xu1oy0\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\"},children:\"5KM\"})}),className:\"framer-15n79g1\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kum969\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yj5e7r\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\"},children:\"10KM\"})}),className:\"framer-wicqhq\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tqqec1\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c41fb0\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ysiy6g\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-8d6d3b89-767b-442f-9e58-976a9d3d131f, rgb(7, 8, 6))\"},children:\"21KM\"})}),className:\"framer-lk8i9h\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aidwey\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btxpbm\",\"data-framer-name\":\"Number & Label\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sbqv23\",\"data-framer-name\":\"Number & Label\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIExpZ2h0\",\"--framer-font-family\":'\"New Science Light\", \"New Science Light Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"42KM\"})}),className:\"framer-8llo63\",fonts:[\"CUSTOM;New Science Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3d79e\",\"data-framer-name\":\"Start Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bq4dnl\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 10.5 0 L 12.857 8.019 L 20.487 8.019 L 14.314 12.975 L 16.672 20.994 L 10.5 16.037 L 4.328 20.993 L 6.686 12.974 L 0.514 8.019 L 8.143 8.019 Z\" fill=\"rgb(255,140,5)\"></path></svg>',svgContentId:11468624938,withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g4ubcw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+5715.4+59+0+54+280.4+0},oyYnQPO3S:{width:\"162px\",y:(componentViewport?.y||0)+0+5762+2+0+54+172+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+4736+0+0+54+320.4+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-2drmqg-container\",\"data-framer-appear-id\":\"2drmqg\",initial:animation5,nodeId:\"rTmKSvKV9\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"},variant:\"zre2FObt4\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",id:\"rTmKSvKV9\",layoutId:\"rTmKSvKV9\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"INSCREVA-SE\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyu7hm\",\"data-framer-name\":\"Todos os patrocinadores\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wzr2rt\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ktrwtj\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\"},children:\"Patrocinadores\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\"},children:\"Patrocinadores\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9c18ac48-8db1-4cf9-af39-e60d194135c6, rgb(255, 255, 255))\"},children:\"Patrocinadores\"})}),className:\"framer-1k9vdy1\",fonts:[\"CUSTOM;New Science Bold Extended\"],id:elementId7,ref:ref8,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uc4ik4\",\"data-border\":true,\"data-framer-name\":\"realiza\\xe7\\xe3o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17owrha\",\"data-framer-name\":\"Realiza\\xe7\\xe3o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apresenta\\xe7\\xe3o\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apresenta\\xe7\\xe3o\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apresenta\\xe7\\xe3o\"})}),className:\"framer-hiqebh\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5s9e72\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+62.4+13+0+49.2934+0),pixelHeight:441,pixelWidth:2327,positionX:\"center\",positionY:\"center\",sizes:\"149.9939px\",src:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg\",srcSet:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg 2327w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+48.8+10+0+0+34.09+0),pixelHeight:441,pixelWidth:2327,positionX:\"center\",positionY:\"center\",sizes:\"139.5px\",src:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg\",srcSet:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg 2327w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+92.4+18+0+44.8743+0),pixelHeight:441,pixelWidth:2327,positionX:\"center\",positionY:\"center\",sizes:\"236px\",src:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg\",srcSet:\"https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OqqwCmECBaPlwHDGMk7aJTW7pPk.svg 2327w\"},className:\"framer-vr28oz\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rfpeul\",\"data-framer-name\":\"Realiza\\xe7\\xe3o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marca esportiva oficial\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marca esportiva oficial\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marca esportiva oficial\"})}),className:\"framer-197rwdz\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdbjhp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+62.4+13+0+49.2934+0),pixelHeight:17,pixelWidth:158,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eTfMU2NEcY6e8UlAYclcv8elM.svg\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+48.8+10+103+0+34.09+0),pixelHeight:17,pixelWidth:158,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eTfMU2NEcY6e8UlAYclcv8elM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+92.4+18+0+46.0389+0),pixelHeight:17,pixelWidth:158,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eTfMU2NEcY6e8UlAYclcv8elM.svg\"},className:\"framer-tpvdnm\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nydm1b\",\"data-border\":true,\"data-framer-name\":\"patrocinio\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mukghd\",\"data-framer-name\":\"Patrocinador\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Patroc\\xednio\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Patroc\\xednio\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Patroc\\xednio\"})}),className:\"framer-1e9rqyz\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+199.9+18+0+25),pixelHeight:50,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:\"603px\",src:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg\",srcSet:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg 550w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+262.8+7+0+51.0512),pixelHeight:50,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg\",srcSet:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg 550w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+287.4+18+0+25.0761),pixelHeight:50,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:\"1090px\",src:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg\",srcSet:\"https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rX5ZktV2KtquA4i14yN87VYNDYc.svg 550w\"},className:\"framer-pir22x\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h54xni\",\"data-border\":true,\"data-framer-name\":\"apoio\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bbvb1b\",\"data-framer-name\":\"Patrocinador\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio\"})}),className:\"framer-1hvih8i\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdex1s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+272.9+16+0+37.1058+0+0),pixelHeight:32,pixelWidth:197,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JfOiyIuTuLQiW91Bf32kQdKL05c.svg\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+413.8+14+0+34.09+0+0),pixelHeight:32,pixelWidth:197,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JfOiyIuTuLQiW91Bf32kQdKL05c.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+374.4+18+0+30.9412+0+0),pixelHeight:32,pixelWidth:197,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JfOiyIuTuLQiW91Bf32kQdKL05c.svg\"},className:\"framer-1nxn553\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17apc8l\",\"data-border\":true,\"data-framer-name\":\"Realiza\\xe7\\xe3o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmscqo\",\"data-framer-name\":\"Patrocinador\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e organiza\\xe7\\xe3o\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e organiza\\xe7\\xe3o\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Realiza\\xe7\\xe3o e organiza\\xe7\\xe3o\"})}),className:\"framer-k8kb7j\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18w10m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+414.4+16+0+37.4052+0+0),pixelHeight:34,pixelWidth:122,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BDewKX8aAmKnj7yz24CC6xMXU.svg\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+532.8+19+0+41.11+0+0),pixelHeight:34,pixelWidth:122,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BDewKX8aAmKnj7yz24CC6xMXU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+556.4+25+0+48.7392+0+0),pixelHeight:34,pixelWidth:122,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BDewKX8aAmKnj7yz24CC6xMXU.svg\"},className:\"framer-1yzngq5\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xe5p5c\",\"data-framer-name\":\"Patrocinador\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio institucional\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio institucional\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apoio institucional\"})}),className:\"framer-6oj34m\",fonts:[\"CUSTOM;New Science Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s5zsd4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6265.8+80+0+40+0+414.4+16+0+39.6748+2+0),pixelHeight:41,pixelWidth:136,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XCuO3L8Km0elVI5Gd20hVEvmeo.svg\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6147+0+0+60+0+0+532.8+19+0+35.79+0+0),pixelHeight:41,pixelWidth:136,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XCuO3L8Km0elVI5Gd20hVEvmeo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5208.4+6+0+57+0+556.4+25+0+43.5037+0+0),pixelHeight:41,pixelWidth:136,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XCuO3L8Km0elVI5Gd20hVEvmeo.svg\"},className:\"framer-mf1ydz\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19uqw2e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+6265.8+80+700.9+0},oyYnQPO3S:{width:\"162px\",y:(componentViewport?.y||0)+0+6147+0+827.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+5208.4+6+896.3385+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-17a2el9-container\",\"data-framer-appear-id\":\"17a2el9\",initial:animation5,nodeId:\"BIy09sURK\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{style:{width:\"100%\"},variant:\"zre2FObt4\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",id:\"BIy09sURK\",layoutId:\"BIy09sURK\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"INSCREVA-SE\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1amw20s\",\"data-framer-name\":\"FAQ\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Perguntas Frequentes\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\"Perguntas Frequentes\"})}),className:\"framer-t4fpkn\",fonts:[\"CUSTOM;New Science Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zmimfg\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+7170.7+80+122.4+0},oyYnQPO3S:{y:(componentViewport?.y||0)+0+7077.8+60+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1300,width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`,y:(componentViewport?.y||0)+0+6254.7385+100+122.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15waxed-container\",nodeId:\"nfWxnTc8n\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oyYnQPO3S:{variant:\"I4nqxcwmK\"}},children:/*#__PURE__*/_jsx(Accordion2,{height:\"100%\",id:\"nfWxnTc8n\",layoutId:\"nfWxnTc8n\",style:{width:\"100%\"},variant:\"qMv6P9Sn5\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19sl4wp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8753.1+0+0),pixelHeight:451,pixelWidth:1141,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png\",srcSet:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png 1141w\"}},oyYnQPO3S:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8664.8+0+0),pixelHeight:451,pixelWidth:1141,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1080px) * 0.963)`,src:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png\",srcSet:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png 1141w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:4170,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7877.1385+0+0),pixelHeight:451,pixelWidth:1141,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1080px)`,src:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png\",srcSet:\"https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LbPY2ii4dGwS9vQ6IdfNbOF8.png 1141w\"},className:\"framer-1u8t25d\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8hai\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17job80\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\" MARATONA DE CURITIBA 2025\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\" MARATONA DE CURITIBA 2025\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQgRXh0ZW5kZWQ=\",\"--framer-font-family\":'\"New Science Bold Extended\", \"New Science Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"73px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, rgb(211, 1, 16))\"},children:\" MARATONA DE CURITIBA 2025\"})}),className:\"framer-10cn3od\",\"data-framer-appear-id\":\"10cn3od\",fonts:[\"CUSTOM;New Science Bold Extended\"],id:elementId9,initial:animation3,optimized:true,ref:ref10,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pj4c9s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})})},oyYnQPO3S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIE1lZGl1bQ==\",\"--framer-font-family\":'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"23 DE NOVEMBRO DE 2025\"})}),className:\"framer-depqk9\",\"data-framer-appear-id\":\"depqk9\",fonts:[\"CUSTOM;New Science Medium\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpq6ej\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-ur4qos-container\",\"data-framer-appear-id\":\"ur4qos\",initial:animation5,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EF96w7tor\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{font:{fontFamily:'\"Franie Light\", \"Franie Light Placeholder\", sans-serif',fontSize:\"15px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"}},oyYnQPO3S:{font:{fontFamily:'\"Franie Light\", \"Franie Light Placeholder\", sans-serif',fontSize:\"12px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(Countdown,{color:\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\",date:\"2025-11-23T00:00:00.000Z\",displayProps:{dayLabel:\"Dias\",digitCount:false,hourLabel:\"Horas\",labelSpace:false,labelType:false,minuteLabel:\"Minutos\",numberSpace:false,secondLabel:\"Segundos\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{fontFamily:'\"New Science Medium\", \"New Science Medium Placeholder\", sans-serif',fontSize:\"20px\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"EF96w7tor\",labelColor:\"rgba(79, 79, 79, 0.5)\",layoutId:\"EF96w7tor\",pickTime:3,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldyBTY2llbmNlIEJvbGQ=\",\"--framer-font-family\":'\"New Science Bold\", \"New Science Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d8c6cbe7-9478-4009-a5d7-080202dda632, rgb(78, 0, 37))\"},children:\"INSCRI\\xc7\\xd5ES ABERTAS!!!\"})}),className:\"framer-1idjme5\",\"data-framer-appear-id\":\"1idjme5\",fonts:[\"CUSTOM;New Science Bold\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{height:55,width:\"205px\",y:(componentViewport?.y||0)+0+8753.1+0+328+0+452.6},oyYnQPO3S:{y:(componentViewport?.y||0)+0+8664.8+0+170+0+514.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+7877.1385+0+480+0+470.6,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-vm3v3f-container\",\"data-framer-appear-id\":\"vm3v3f\",initial:animation5,nodeId:\"ywcZYYCM0\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{style:{height:\"100%\",width:\"100%\"},variant:\"zre2FObt4\"},oyYnQPO3S:{variant:\"zre2FObt4\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",i59023Feg:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",id:\"ywcZYYCM0\",layoutId:\"ywcZYYCM0\",QavlQk3eO:true,variant:\"EQSioA9rV\",width:\"100%\",zHELoIiJS:\"INSCREVA-SE\"})})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zv6ods-container hidden-1ov5bhf\",\"data-framer-name\":\"Active Campaign\",isModuleExternal:true,name:\"Active Campaign\",nodeId:\"id6k_Z8hp\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<script>\\n    (function(e,t,o,n,p,r,i){e.visitorGlobalObjectAlias=n;e[e.visitorGlobalObjectAlias]=e[e.visitorGlobalObjectAlias]||function(){(e[e.visitorGlobalObjectAlias].q=e[e.visitorGlobalObjectAlias].q||[]).push(arguments)};e[e.visitorGlobalObjectAlias].l=(new Date).getTime();r=t.createElement(\\\"script\\\");r.src=o;r.async=true;i=t.getElementsByTagName(\\\"script\\\")[0];i.parentNode.insertBefore(r,i)})(window,document,\\\"https://diffuser-cdn.app-us1.com/diffuser/diffuser.js\\\",\\\"vgo\\\");\\n    vgo('setAccount', '1003394858');\\n    vgo('setTrackByDefault', true);\\n\\n    vgo('process');\\n</script>\",id:\"id6k_Z8hp\",layoutId:\"id6k_Z8hp\",name:\"Active Campaign\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{y:(componentViewport?.y||0)+0+9506.1},oyYnQPO3S:{y:(componentViewport?.y||0)+0+9452.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:252,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8762.1385,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c2t70p-container\",nodeId:\"XeXWX3qmR\",scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{variant:\"PEaJkFK75\"},oyYnQPO3S:{variant:\"UcqP8x40b\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"XeXWX3qmR\",layoutId:\"XeXWX3qmR\",style:{width:\"100%\"},variant:\"ZXTTBsEGL\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"142px\",y:948,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-86nlz5-container hidden-1ov5bhf\",\"data-framer-appear-id\":\"86nlz5\",initial:animation5,layoutScroll:true,nodeId:\"gNzFFoV2S\",optimized:true,rendersWithMotion:true,scopeId:\"Vw8xu4fHQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lIGHOFFRd:{variant:\"pblJE8IwB\"}},children:/*#__PURE__*/_jsx(MoreTemplates,{DCFL02jIh:\"INSCREVA-SE\",DXIBIgV0J:\"https://www.ticketsports.com.br/e/MARATONA+DE+CURITIBA+SANTANDER+2025-72188\",height:\"100%\",id:\"gNzFFoV2S\",layoutId:\"gNzFFoV2S\",style:{height:\"100%\",width:\"100%\"},variant:\"miIKKkump\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xdkjl.framer-535xfi, .framer-xdkjl .framer-535xfi { display: block; }\",\".framer-xdkjl.framer-1ux9lqd { align-content: center; align-items: center; background-color: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-xdkjl .framer-hi0p0s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 20px 0px 0px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-xdkjl .framer-1m9jv6v-container { flex: none; height: auto; position: relative; width: 1200px; z-index: 8; }\",\".framer-xdkjl .framer-y2ah9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1fqxw1h-container, .framer-xdkjl .framer-qnlcg3-container, .framer-xdkjl .framer-q178ig-container, .framer-xdkjl .framer-c4qu5m-container, .framer-xdkjl .framer-12m8a7f-container, .framer-xdkjl .framer-zv6ods-container { flex: none; height: 1px; position: relative; width: 600px; }\",\".framer-xdkjl .framer-py8oee { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-123a55z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1y5p25i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-pld9vq, .framer-xdkjl .framer-10cn3od { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-8ymxio, .framer-xdkjl .framer-pj4c9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1jzuge1, .framer-xdkjl .framer-depqk9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 410px; position: relative; white-space: pre-wrap; width: 27%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-cg45jr, .framer-xdkjl .framer-tpq6ej { background-color: #e0e0e0; flex: none; height: 40px; overflow: hidden; position: relative; width: 1px; }\",\".framer-xdkjl .framer-zl3vx4-container, .framer-xdkjl .framer-tvoupg-container, .framer-xdkjl .framer-189erxb-container, .framer-xdkjl .framer-2drmqg-container, .framer-xdkjl .framer-17a2el9-container, .framer-xdkjl .framer-ur4qos-container, .framer-xdkjl .framer-vm3v3f-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xdkjl .framer-ibf98v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 73%; word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-10ole61, .framer-xdkjl .framer-1u07iez, .framer-xdkjl .framer-1g4ubcw, .framer-xdkjl .framer-19uqw2e { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1ofdfpk { align-content: center; align-items: center; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 445px; justify-content: center; overflow: hidden; padding: 0px 0px 18px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xdkjl .framer-qsbvzv { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-xdkjl .framer-y3l2iq { align-content: center; align-items: center; background-color: #fdfffe; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; bottom: -178px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 80px 40px 80px 40px; position: absolute; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-xdkjl .framer-13cs4ml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: -66px; width: min-content; z-index: 1; }\",\".framer-xdkjl .framer-xcpqdp { flex: none; height: 68px; position: relative; width: 362px; }\",\".framer-xdkjl .framer-rq9krv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 27%; }\",\".framer-xdkjl .framer-1fuz8gh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 210px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-15etb6r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 44px; }\",\".framer-xdkjl .framer-x2kyz8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 69%; }\",\".framer-xdkjl .framer-1c9c3ge, .framer-xdkjl .framer-1oxwhoa, .framer-xdkjl .framer-gkxlk4, .framer-xdkjl .framer-h6ljiy, .framer-xdkjl .framer-xu1oy0, .framer-xdkjl .framer-yj5e7r, .framer-xdkjl .framer-c41fb0, .framer-xdkjl .framer-1btxpbm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xdkjl .framer-19tfiyf, .framer-xdkjl .framer-1h8xb4z, .framer-xdkjl .framer-vhw72k, .framer-xdkjl .framer-1muu1n3, .framer-xdkjl .framer-biqgjx, .framer-xdkjl .framer-15n79g1, .framer-xdkjl .framer-wicqhq, .framer-xdkjl .framer-lk8i9h, .framer-xdkjl .framer-8llo63 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xdkjl .framer-rtca4w, .framer-xdkjl .framer-b1srn6, .framer-xdkjl .framer-7v40df, .framer-xdkjl .framer-kum969, .framer-xdkjl .framer-1tqqec1, .framer-xdkjl .framer-1aidwey { background-color: #e0e0e0; flex: none; height: 60px; overflow: hidden; position: relative; width: 1px; }\",\".framer-xdkjl .framer-1l3f00i, .framer-xdkjl .framer-15bvyuv, .framer-xdkjl .framer-1ysiy6g, .framer-xdkjl .framer-sbqv23 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xdkjl .framer-1cr0s8, .framer-xdkjl .framer-1m3d79e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 15px 0px 0px; position: relative; width: min-content; }\",\".framer-xdkjl .framer-xfdrz2, .framer-xdkjl .framer-1bq4dnl { flex: none; height: 21px; position: relative; width: 21px; }\",\".framer-xdkjl .framer-pxe3ka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1p89yjl { align-content: flex-start; align-items: flex-start; background-color: var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, #d30110); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1080px; overflow: hidden; padding: 57px 60px 80px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdkjl .framer-6vvunl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-184jthq { aspect-ratio: 7.672727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 26%; }\",\".framer-xdkjl .framer-po6962 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-18vj370, .framer-xdkjl .framer-khlycp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 414px; }\",\".framer-xdkjl .framer-1p7oli3-container, .framer-xdkjl .framer-1f6eosq-container, .framer-xdkjl .framer-vep50x-container, .framer-xdkjl .framer-10i607u-container { flex: none; height: 626px; position: relative; width: 417px; }\",\".framer-xdkjl .framer-m2ujdz { align-content: center; align-items: center; background-color: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 47px 40px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1pc9a5j, .framer-xdkjl .framer-1h0e8cz, .framer-xdkjl .framer-1eljpg, .framer-xdkjl .framer-17lorx1, .framer-xdkjl .framer-1k9vdy1, .framer-xdkjl .framer-t4fpkn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-1n6eg11 { align-content: center; align-items: center; background-color: var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, #d30110); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 523px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdkjl .framer-xkj47q { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 643px; overflow: hidden; padding: 0px; position: relative; width: 54%; }\",\".framer-xdkjl .framer-t82ptz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-tgvijb { aspect-ratio: 7.672727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 100%; }\",\".framer-xdkjl .framer-luqtv4 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.39); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-g5gih0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 17%; position: relative; white-space: pre-wrap; width: 51%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-xdkjl .framer-1qbe8eh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-391w44, .framer-xdkjl .framer-xwnqw7 { flex: none; height: 58px; position: relative; width: 57px; }\",\".framer-xdkjl .framer-15jhbf9 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xdkjl .framer-l3gkh4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-xdkjl .framer-21mvj6 { flex: none; height: 102%; position: relative; width: 99%; }\",\".framer-xdkjl .framer-1ennpt7 { align-content: center; align-items: center; background-color: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 839px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-wl9qxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1080px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-hxjh0r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 621px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1tizh3r-container, .framer-xdkjl .framer-13wlzeu-container, .framer-xdkjl .framer-1l30zhm-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-xdkjl .framer-1lscaj3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-18xknwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 920px; overflow: hidden; padding: 54px 0px 54px 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-18mnjaz { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5) 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-xdkjl .framer-11fvt88 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; min-height: 68px; min-width: 362px; overflow: hidden; padding: 0px; position: absolute; top: -66px; width: min-content; z-index: 1; }\",\".framer-xdkjl .framer-qnlon9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 83%; }\",\".framer-xdkjl .framer-pyu7hm { align-content: center; align-items: center; background-color: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-wzr2rt { align-content: center; align-items: center; background-color: var(--token-74beb892-dbf8-42c6-a3a3-1ef855a65e13, #d30110); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 57px 40px 57px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdkjl .framer-ktrwtj { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 97%; }\",\".framer-xdkjl .framer-uc4ik4 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.39); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 74%; }\",\".framer-xdkjl .framer-17owrha, .framer-xdkjl .framer-rfpeul, .framer-xdkjl .framer-1xe5p5c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xdkjl .framer-hiqebh, .framer-xdkjl .framer-197rwdz, .framer-xdkjl .framer-1e9rqyz, .framer-xdkjl .framer-k8kb7j, .framer-xdkjl .framer-6oj34m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 39%; position: relative; white-space: pre-wrap; width: 102%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-xdkjl .framer-5s9e72, .framer-xdkjl .framer-1mdbjhp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 167px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-vr28oz { flex: none; height: 102px; position: relative; width: 236px; }\",\".framer-xdkjl .framer-tpvdnm { flex: none; height: 108px; position: relative; width: 268px; }\",\".framer-xdkjl .framer-1nydm1b, .framer-xdkjl .framer-1h54xni { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.39); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-mukghd, .framer-xdkjl .framer-bbvb1b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xdkjl .framer-pir22x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; min-height: 112px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1hvih8i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 17%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-xdkjl .framer-1mdex1s, .framer-xdkjl .framer-18w10m, .framer-xdkjl .framer-1s5zsd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1nxn553 { flex: none; height: 95px; position: relative; width: 449px; }\",\".framer-xdkjl .framer-17apc8l { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.39); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: 74%; }\",\".framer-xdkjl .framer-kmscqo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xdkjl .framer-1yzngq5 { flex: none; height: 85px; position: relative; width: 331px; }\",\".framer-xdkjl .framer-mf1ydz { flex: none; height: 95px; position: relative; width: 235px; }\",\".framer-xdkjl .framer-1amw20s { align-content: center; align-items: center; background-color: var(--token-1600748c-fbb9-4380-8d30-2636c0599394, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-zmimfg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-xdkjl .framer-15waxed-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-xdkjl .framer-19sl4wp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 884px; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1u8t25d { border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 430px; overflow: visible; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1k8hai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-17job80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdkjl .framer-1idjme5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 65%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-xdkjl .framer-1c2t70p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-xdkjl .framer-86nlz5-container { bottom: 16px; flex: none; height: 36px; position: fixed; right: 20px; width: 142px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",'.framer-xdkjl[data-border=\"true\"]::after, .framer-xdkjl [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-xdkjl.framer-1ux9lqd { width: 810px; } .framer-xdkjl .framer-1m9jv6v-container { width: auto; } .framer-xdkjl .framer-y2ah9s { padding: 120px 30px 0px 30px; } .framer-xdkjl .framer-py8oee { gap: 24px; } .framer-xdkjl .framer-123a55z { height: 498px; padding: 30px 0px 30px 0px; } .framer-xdkjl .framer-1ofdfpk { height: 315px; } .framer-xdkjl .framer-y3l2iq { bottom: -160px; gap: 89px; padding: 60px 20px 60px 20px; } .framer-xdkjl .framer-xcpqdp { order: 0; width: 260px; } .framer-xdkjl .framer-rq9krv { width: 13%; } .framer-xdkjl .framer-15etb6r { height: var(--framer-aspect-ratio-supported, 75px); width: 75px; } .framer-xdkjl .framer-x2kyz8, .framer-xdkjl .framer-qnlon9 { gap: 30px; justify-content: flex-end; overflow: visible; } .framer-xdkjl .framer-pxe3ka { padding: 100px 0px 0px 0px; } .framer-xdkjl .framer-1p89yjl { padding: 70px 30px 70px 30px; width: 63%; } .framer-xdkjl .framer-184jthq { height: var(--framer-aspect-ratio-supported, 32px); width: 55%; } .framer-xdkjl .framer-po6962 { flex-direction: column; gap: 31px; } .framer-xdkjl .framer-18vj370, .framer-xdkjl .framer-khlycp { gap: 10px; } .framer-xdkjl .framer-m2ujdz, .framer-xdkjl .framer-pyu7hm, .framer-xdkjl .framer-1amw20s { padding: 80px 40px 80px 40px; } .framer-xdkjl .framer-1n6eg11 { max-width: 800px; padding: 40px 40px 20px 40px; width: 780px; } .framer-xdkjl .framer-xkj47q { max-width: 603px; width: 49%; } .framer-xdkjl .framer-tgvijb { aspect-ratio: unset; height: 76px; width: 100%; } .framer-xdkjl .framer-g5gih0 { height: 19%; width: 89%; } .framer-xdkjl .framer-21mvj6 { height: 59%; width: 99%; } .framer-xdkjl .framer-1ennpt7 { height: 897px; } .framer-xdkjl .framer-hxjh0r { gap: 13px; } .framer-xdkjl .framer-1lscaj3 { padding: 59px 0px 59px 0px; } .framer-xdkjl .framer-18xknwn { padding: 54px 30px 54px 30px; } .framer-xdkjl .framer-18mnjaz { gap: 0px; padding: 60px 20px 60px 20px; } .framer-xdkjl .framer-wzr2rt { max-width: 800px; padding: 40px 40px 57px 40px; width: 780px; } .framer-xdkjl .framer-ktrwtj { gap: 12px; max-width: 603px; width: 86%; } .framer-xdkjl .framer-uc4ik4 { padding: 13px 0px 13px 0px; width: 100%; } .framer-xdkjl .framer-17owrha { flex: none; height: 100px; width: 50%; } .framer-xdkjl .framer-hiqebh, .framer-xdkjl .framer-197rwdz, .framer-xdkjl .framer-k8kb7j, .framer-xdkjl .framer-6oj34m { width: 100%; } .framer-xdkjl .framer-vr28oz, .framer-xdkjl .framer-tpvdnm, .framer-xdkjl .framer-1yzngq5 { height: 61px; width: 150px; } .framer-xdkjl .framer-rfpeul { height: 100px; } .framer-xdkjl .framer-mukghd { gap: 0px; } .framer-xdkjl .framer-1e9rqyz { height: 25px; width: 100%; } .framer-xdkjl .framer-1h54xni { padding: 16px 0px 16px 0px; } .framer-xdkjl .framer-bbvb1b { height: 98px; } .framer-xdkjl .framer-1nxn553 { height: 61px; width: 227px; } .framer-xdkjl .framer-17apc8l { gap: 0px; padding: 16px 0px 16px 0px; width: 84%; } .framer-xdkjl .framer-kmscqo, .framer-xdkjl .framer-1xe5p5c { gap: 0px; height: 98px; } .framer-xdkjl .framer-1s5zsd4 { padding: 2px 0px 2px 0px; } .framer-xdkjl .framer-mf1ydz { height: 52px; width: 129px; } .framer-xdkjl .framer-19sl4wp { gap: 37px; height: 752px; max-width: 90%; } .framer-xdkjl .framer-1u8t25d { height: 291px; } .framer-xdkjl .framer-depqk9 { width: 36%; } .framer-xdkjl .framer-vm3v3f-container { height: 55px; width: 205px; }}\",\"@media (max-width: 809px) { .framer-xdkjl.framer-1ux9lqd { flex-wrap: wrap; gap: 59px; justify-content: center; width: 390px; } .framer-xdkjl .framer-hi0p0s { left: 50%; order: 0; } .framer-xdkjl .framer-1m9jv6v-container { width: 387px; } .framer-xdkjl .framer-y2ah9s { gap: 0px; height: 558px; order: 1; padding: 137px 20px 170px 20px; } .framer-xdkjl .framer-py8oee { gap: 36px; } .framer-xdkjl .framer-123a55z { gap: 25px; padding: 13px 0px 13px 0px; } .framer-xdkjl .framer-8ymxio, .framer-xdkjl .framer-pj4c9s { flex-direction: column; } .framer-xdkjl .framer-1jzuge1, .framer-xdkjl .framer-depqk9 { width: 65%; } .framer-xdkjl .framer-cg45jr, .framer-xdkjl .framer-tpq6ej { gap: 10px; height: 1px; width: 60px; } .framer-xdkjl .framer-ibf98v { width: 92%; } .framer-xdkjl .framer-10ole61, .framer-xdkjl .framer-1g4ubcw { flex-direction: column; gap: 27px; } .framer-xdkjl .framer-tvoupg-container, .framer-xdkjl .framer-189erxb-container, .framer-xdkjl .framer-2drmqg-container, .framer-xdkjl .framer-17a2el9-container { width: 162px; } .framer-xdkjl .framer-1ofdfpk { bottom: -161px; height: 139px; left: calc(50.00000000000002% - 100% / 2); padding: 0px; position: absolute; z-index: 1; } .framer-xdkjl .framer-qsbvzv, .framer-xdkjl .framer-17owrha, .framer-xdkjl .framer-rfpeul { flex: none; width: 100%; } .framer-xdkjl .framer-y3l2iq { bottom: -301px; flex-direction: column; gap: 15px; padding: 16px 20px 16px 20px; } .framer-xdkjl .framer-rq9krv { width: 89%; } .framer-xdkjl .framer-1fuz8gh { flex: none; width: auto; } .framer-xdkjl .framer-x2kyz8 { gap: 0px; width: min-content; } .framer-xdkjl .framer-1c9c3ge { align-content: center; align-items: center; width: 33px; } .framer-xdkjl .framer-rtca4w { gap: 10px; height: 1px; width: 30px; } .framer-xdkjl .framer-1oxwhoa, .framer-xdkjl .framer-gkxlk4 { align-content: center; align-items: center; width: 39px; } .framer-xdkjl .framer-b1srn6, .framer-xdkjl .framer-7v40df { height: 1px; width: 30px; } .framer-xdkjl .framer-1l3f00i, .framer-xdkjl .framer-15bvyuv, .framer-xdkjl .framer-1ysiy6g, .framer-xdkjl .framer-sbqv23 { gap: 6px; } .framer-xdkjl .framer-h6ljiy { align-content: center; align-items: center; width: 68px; } .framer-xdkjl .framer-1cr0s8, .framer-xdkjl .framer-1m3d79e { padding: 9px 0px 0px 0px; } .framer-xdkjl .framer-pxe3ka { order: 3; padding: 180px 20px 0px 20px; } .framer-xdkjl .framer-1p89yjl { gap: 45px; padding: 20px; } .framer-xdkjl .framer-6vvunl { gap: 10px; order: 0; } .framer-xdkjl .framer-184jthq { aspect-ratio: unset; height: 32px; width: 61%; } .framer-xdkjl .framer-po6962 { flex-direction: column; order: 2; } .framer-xdkjl .framer-1p7oli3-container, .framer-xdkjl .framer-1f6eosq-container, .framer-xdkjl .framer-vep50x-container, .framer-xdkjl .framer-10i607u-container { height: 439px; width: 278px; } .framer-xdkjl .framer-m2ujdz { order: 4; padding: 18px 20px 18px 20px; } .framer-xdkjl .framer-1pc9a5j { order: 0; } .framer-xdkjl .framer-1n6eg11 { flex-direction: column; gap: 16px; height: 575px; order: 1; padding: 60px 40px 50px 40px; width: 370px; } .framer-xdkjl .framer-xkj47q { align-content: center; align-items: center; width: 100%; } .framer-xdkjl .framer-tgvijb { aspect-ratio: unset; height: 63px; width: 97%; } .framer-xdkjl .framer-luqtv4 { height: 123px; padding: 19px 0px 19px 0px; } .framer-xdkjl .framer-g5gih0, .framer-xdkjl .framer-hiqebh, .framer-xdkjl .framer-197rwdz, .framer-xdkjl .framer-1e9rqyz, .framer-xdkjl .framer-1hvih8i, .framer-xdkjl .framer-k8kb7j, .framer-xdkjl .framer-6oj34m { height: 34%; width: 100%; } .framer-xdkjl .framer-1qbe8eh, .framer-xdkjl .framer-1mdex1s, .framer-xdkjl .framer-18w10m, .framer-xdkjl .framer-1s5zsd4 { justify-content: center; } .framer-xdkjl .framer-1u07iez { flex-direction: column; gap: 27px; order: 2; } .framer-xdkjl .framer-1ennpt7 { gap: 17px; height: min-content; order: 5; padding: 38px 20px 0px 20px; } .framer-xdkjl .framer-wl9qxa { gap: 54px; } .framer-xdkjl .framer-hxjh0r { flex-direction: column; height: min-content; } .framer-xdkjl .framer-1tizh3r-container, .framer-xdkjl .framer-13wlzeu-container, .framer-xdkjl .framer-1l30zhm-container { flex: none; height: auto; width: 100%; } .framer-xdkjl .framer-1lscaj3 { order: 6; overflow: visible; padding: 2px 0px 0px 0px; } .framer-xdkjl .framer-18xknwn { overflow: visible; padding: 54px 20px 54px 20px; } .framer-xdkjl .framer-18mnjaz { flex-direction: column; gap: 15px; padding: 16px 20px 16px 20px; width: 111%; } .framer-xdkjl .framer-11fvt88 { min-height: 26px; min-width: 111px; top: -24px; } .framer-xdkjl .framer-qnlon9 { gap: 0px; } .framer-xdkjl .framer-xu1oy0, .framer-xdkjl .framer-yj5e7r, .framer-xdkjl .framer-c41fb0, .framer-xdkjl .framer-1btxpbm { align-content: center; align-items: center; } .framer-xdkjl .framer-kum969 { gap: 10px; height: 1px; width: 36px; } .framer-xdkjl .framer-1tqqec1, .framer-xdkjl .framer-1aidwey { height: 1px; width: 36px; } .framer-xdkjl .framer-pyu7hm { order: 7; padding: 0px 20px 0px 20px; } .framer-xdkjl .framer-wzr2rt { flex-direction: column; gap: 16px; order: 0; padding: 60px 40px 50px 40px; width: 370px; } .framer-xdkjl .framer-ktrwtj { gap: 14px; width: 100%; } .framer-xdkjl .framer-uc4ik4 { flex-direction: column; gap: 26px; padding: 10px 0px 10px 0px; width: 101%; } .framer-xdkjl .framer-5s9e72, .framer-xdkjl .framer-1mdbjhp { gap: 10px; } .framer-xdkjl .framer-vr28oz, .framer-xdkjl .framer-tpvdnm { height: 56px; width: 140px; } .framer-xdkjl .framer-1nydm1b { padding: 7px 0px 7px 0px; } .framer-xdkjl .framer-mukghd { gap: 0px; height: 123px; } .framer-xdkjl .framer-pir22x { height: 51%; justify-content: center; min-height: unset; } .framer-xdkjl .framer-1h54xni { padding: 14px 0px 14px 0px; } .framer-xdkjl .framer-1nxn553 { height: 56px; width: 159px; } .framer-xdkjl .framer-17apc8l { gap: 32px; padding: 19px 0px 19px 0px; width: 100%; } .framer-xdkjl .framer-1yzngq5 { height: 56px; width: 100%; } .framer-xdkjl .framer-mf1ydz { height: 66px; width: 100%; } .framer-xdkjl .framer-19uqw2e { flex-direction: column; gap: 27px; order: 1; } .framer-xdkjl .framer-1amw20s { order: 8; padding: 60px 20px 60px 20px; } .framer-xdkjl .framer-19sl4wp { gap: 27px; height: min-content; order: 9; width: 90%; } .framer-xdkjl .framer-1u8t25d { height: 143px; width: 96%; } .framer-xdkjl .framer-1idjme5 { width: 81%; } .framer-xdkjl .framer-1c2t70p-container { order: 11; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9015\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lIGHOFFRd\":{\"layout\":[\"fixed\",\"auto\"]},\"oyYnQPO3S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"s5xzGNKgS\":{\"pattern\":\":s5xzGNKgS\",\"name\":\"manualdoatleta\"},\"x49KNLzXd\":{\"pattern\":\":x49KNLzXd\",\"name\":\"home\"},\"JupEZOS8G\":{\"pattern\":\":JupEZOS8G\",\"name\":\"kits2025\"},\"oVWFcqfsA\":{\"pattern\":\":oVWFcqfsA\",\"name\":\"kits\"},\"QquZeugFT\":{\"pattern\":\":QquZeugFT\",\"name\":\"patrocinadores\"},\"wqI4ZHlUI\":{\"pattern\":\":wqI4ZHlUI\",\"name\":\"documentos2025\"},\"RijmLO8Ez\":{\"pattern\":\":RijmLO8Ez\",\"name\":\"percursos2025\"},\"EzTHiq9Ol\":{\"pattern\":\":EzTHiq9Ol\",\"name\":\"patrocinadores\"},\"HLkkC7FNU\":{\"pattern\":\":HLkkC7FNU\",\"name\":\"faq2025\"},\"GSsce8jWA\":{\"pattern\":\":GSsce8jWA\",\"name\":\"home\"}}\n * @framerResponsiveScreen\n */const FramerVw8xu4fHQ=withCSS(Component,css,\"framer-xdkjl\");export default FramerVw8xu4fHQ;FramerVw8xu4fHQ.displayName=\"Page\";FramerVw8xu4fHQ.defaultProps={height:9015,width:1280};addFonts(FramerVw8xu4fHQ,[{explicitInter:true,fonts:[{family:\"New Science Bold Extended\",source:\"custom\",url:\"https://framerusercontent.com/assets/B004R7XwGSrdakvtqz7TCGihI.woff2\"},{family:\"New Science Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/7cVA9dquALRrVQ946C8D5q3vi9o.woff2\"},{family:\"New Science Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/BNrXUySDh1TwQkJnEmvPYfNXBjc.woff2\"},{family:\"New Science Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/kVMVFublfbf8UXZEpKZ1aG4isI.woff2\"},{family:\"New Science Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/laClTnAQikF01HWDG1ME2TVy1PU.woff2\"}]},...Navbar2Fonts,...EmbedFonts,...CountdownFonts,...Button2Fonts,...ServiceCardFonts,...RegulamentoFonts,...TerceirosFonts,...TermoResponsaibilidadeFonts,...Accordion2Fonts,...Footer2Fonts,...MoreTemplatesFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVw8xu4fHQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lIGHOFFRd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oyYnQPO3S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"s5xzGNKgS\\\":{\\\"pattern\\\":\\\":s5xzGNKgS\\\",\\\"name\\\":\\\"manualdoatleta\\\"},\\\"x49KNLzXd\\\":{\\\"pattern\\\":\\\":x49KNLzXd\\\",\\\"name\\\":\\\"home\\\"},\\\"JupEZOS8G\\\":{\\\"pattern\\\":\\\":JupEZOS8G\\\",\\\"name\\\":\\\"kits2025\\\"},\\\"oVWFcqfsA\\\":{\\\"pattern\\\":\\\":oVWFcqfsA\\\",\\\"name\\\":\\\"kits\\\"},\\\"QquZeugFT\\\":{\\\"pattern\\\":\\\":QquZeugFT\\\",\\\"name\\\":\\\"patrocinadores\\\"},\\\"wqI4ZHlUI\\\":{\\\"pattern\\\":\\\":wqI4ZHlUI\\\",\\\"name\\\":\\\"documentos2025\\\"},\\\"RijmLO8Ez\\\":{\\\"pattern\\\":\\\":RijmLO8Ez\\\",\\\"name\\\":\\\"percursos2025\\\"},\\\"EzTHiq9Ol\\\":{\\\"pattern\\\":\\\":EzTHiq9Ol\\\",\\\"name\\\":\\\"patrocinadores\\\"},\\\"HLkkC7FNU\\\":{\\\"pattern\\\":\\\":HLkkC7FNU\\\",\\\"name\\\":\\\"faq2025\\\"},\\\"GSsce8jWA\\\":{\\\"pattern\\\":\\\":GSsce8jWA\\\",\\\"name\\\":\\\"home\\\"}}\",\"framerIntrinsicWidth\":\"1280\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"9015\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStack", "calculateTimeLeft", "difference", "digitCount", "minTwoDigits", "useForceRender", "_", "set", "ye", "te", "v", "number", "wrapInSpan", "colorValue", "string", "p", "createCountdownString", "timeLeft", "showHours", "showMinutes", "showSeconds", "dayLabel", "hourLabel", "minuteLabel", "secondLabel", "space", "spaceForLabel", "labelType", "labelColor", "days", "u", "l", "hours", "minutes", "seconds", "CountdownTimer", "props", "date", "pickTime", "font", "color", "displayProps", "onComplete", "numberSpace", "labelSpace", "tabularFont", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "lineHeight", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "ue", "int", "emptyString", "timeString", "defaultDate", "addPropertyControls", "ControlType", "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", "link", "link2", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zHELoIiJS", "i59023Feg", "QavlQk3eO", "knY8XGEm6", "x8t_BUxeG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTape9deoi", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramernNlMVo66D", "withCSS", "nNlMVo66D_default", "addPropertyControls", "ControlType", "addFonts", "Button2Fonts", "getFonts", "nNlMVo66D_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "MotionDivWithFX", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "nNlMVo66D_default", "css", "FramerAzTnowcho", "withCSS", "AzTnowcho_default", "addFonts", "Button2Fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4r5p22", "args", "onTap41seku", "onTap1iawarm", "onTapsal5dq", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText", "css", "FramerMT4WFwG04", "withCSS", "MT4WFwG04_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "MT4WFwG04_default", "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", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerE9TLOow3n", "withCSS", "E9TLOow3n_default", "addPropertyControls", "ControlType", "addFonts", "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", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "Link", "css", "FramerFsT_hJ3CP", "withCSS", "FsT_hJ3CP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Button2Fonts", "getFonts", "nNlMVo66D_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "MotionDivWithFX", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "nNlMVo66D_default", "css", "FramerG8vgCyTlX", "withCSS", "G8vgCyTlX_default", "addFonts", "Button2Fonts", "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", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DXIBIgV0J", "DCFL02jIh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerlcnogRWEO", "withCSS", "lcnogRWEO_default", "addPropertyControls", "ControlType", "addFonts", "Button2Fonts", "getFonts", "nNlMVo66D_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "MotionDivWithFX", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "nNlMVo66D_default", "css", "FramersoTRgg_ue", "withCSS", "soTRgg_ue_default", "addFonts", "Button2Fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bot_oKit", "height", "id", "kitFoto", "linkKit", "titleTop", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Ke3nraMz1", "Jy8Qd4CJy", "o8OPy2pZX", "I7NR52Wf4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramervlBjMG0_q", "withCSS", "vlBjMG0_q_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "LogoFonts", "Logo", "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", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "TRYqz29GT", "PI9Hk9WtQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "SVG", "css", "FramerDKEYf50Uw", "withCSS", "DKEYf50Uw_default", "addPropertyControls", "ControlType", "addFonts", "MenuIconFonts", "getFonts", "O_2XZOHKT_default", "Button1Fonts", "DKEYf50Uw_default", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "TBgHLr7MWbuqbc5", "args", "TBgHLr7MW1m8xols", "TBgHLr7MWu99ure", "TBgHLr7MW1tx84qm", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "RichText", "css", "Framerr3T3EQ6vH", "withCSS", "r3T3EQ6vH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Navegbar2Fonts", "getFonts", "r3T3EQ6vH_default", "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", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerXz0nT8A15", "withCSS", "Xz0nT8A15_default", "addPropertyControls", "ControlType", "addFonts", "Navbar2Fonts", "getFonts", "Xz0nT8A15_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "EmbedFonts", "Embed", "RichTextWithOptimizedAppearEffect", "RichText", "CountdownFonts", "CountdownTimer", "ContainerWithOptimizedAppearEffect", "Container", "Button2Fonts", "nNlMVo66D_default", "RichTextWithFX", "withFX", "ServiceCardFonts", "vlBjMG0_q_default", "MotionDivWithFX", "RegulamentoFonts", "soTRgg_ue_default", "TerceirosFonts", "AzTnowcho_default", "TermoResponsaibilidadeFonts", "G8vgCyTlX_default", "Accordion2Fonts", "E9TLOow3n_default", "Footer2Fonts", "FsT_hJ3CP_default", "MoreTemplatesFonts", "lcnogRWEO_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "transition4", "transition5", "animation8", "addImageAlt", "image", "alt", "animation9", "transition6", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "FramerVw8xu4fHQ", "withCSS", "Vw8xu4fHQ_default", "addFonts", "__FramerMetadata__"]
}
