{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js", "ssg:https://framerusercontent.com/modules/t0PMnafix9QrVnfqm5Ad/8nofZzor5BaY743nExxn/ALgam2e8P.js", "ssg:https://framerusercontent.com/modules/0HmJOZuejw8H8pgeshYx/NmCI9yLM1xslB5aYTRQ1/cO7Tjd9NY.js", "ssg:https://framerusercontent.com/modules/fFAb54y4QQPJe4DkpKUl/Se2nUXYfOhvNoyiwObcl/bYUbdJDLd.js", "ssg:https://framerusercontent.com/modules/ChgLQjMk8kVivRaaKcrk/ehGKTfHyNwu4sQkeHevi/ocRuI2VCf.js", "ssg:https://framerusercontent.com/modules/3ozXyWKpLpIb691LIYjq/enZtN9aLhzAMsTGXgNzP/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}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\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rz2MSC1XZ9J88ZAnCZ5t/QQw51h0UhTawx5g9ad2e/wgAAjoY2q.js\";const serializationHash=\"framer-xxtMz\";const variantClassNames={RxiAB6Fj0:\"framer-v-4gaaj6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,DjrE_1BbJ:(_ref=title!==null&&title!==void 0?title:props.DjrE_1BbJ)!==null&&_ref!==void 0?_ref:\"Placeholder\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DjrE_1BbJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"RxiAB6Fj0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4gaaj6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RxiAB6Fj0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-1858ea1e-2c2e-4877-84dd-9333bcfa966e, rgb(230, 228, 225))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y8pfxj\",\"data-styles-preset\":\"wgAAjoY2q\",children:\"Placeholder\"})}),className:\"framer-reyekt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"srH7NM0Js\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DjrE_1BbJ,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xxtMz.framer-1n65wqx, .framer-xxtMz .framer-1n65wqx { display: block; }\",\".framer-xxtMz.framer-4gaaj6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 37px; justify-content: center; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-xxtMz .framer-reyekt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxtMz.framer-4gaaj6 { gap: 0px; } .framer-xxtMz.framer-4gaaj6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xxtMz.framer-4gaaj6 > :first-child { margin-top: 0px; } .framer-xxtMz.framer-4gaaj6 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 93\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"DjrE_1BbJ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerALgam2e8P=withCSS(Component,css,\"framer-xxtMz\");export default FramerALgam2e8P;FramerALgam2e8P.displayName=\"Tag\";FramerALgam2e8P.defaultProps={height:37,width:93};addPropertyControls(FramerALgam2e8P,{DjrE_1BbJ:{defaultValue:\"Placeholder\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerALgam2e8P,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerALgam2e8P\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"37\",\"framerVariables\":\"{\\\"DjrE_1BbJ\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"93\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ALgam2e8P.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/t0PMnafix9QrVnfqm5Ad/8nofZzor5BaY743nExxn/ALgam2e8P.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"TOFdqlU3c\",\"MNQpLNk9N\",\"rp2oMHcrB\",\"bOabWZVmz\",\"uJQzc3CvZ\",\"L1uJWNm3k\"];const serializationHash=\"framer-chk27\";const variantClassNames={bOabWZVmz:\"framer-v-xffhjj\",L1uJWNm3k:\"framer-v-2t11dv\",MNQpLNk9N:\"framer-v-1ycnqd\",rp2oMHcrB:\"framer-v-ztstm6\",TOFdqlU3c:\"framer-v-h04v4q\",uJQzc3CvZ:\"framer-v-1oucs4n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Id. Visual / Motion Design / Ilustra\\xe7\\xe3o\":\"TOFdqlU3c\",\"Id. Visual / Motion Design\":\"MNQpLNk9N\",\"Id. Visual\":\"bOabWZVmz\",\"UX / UI\":\"uJQzc3CvZ\",Iconografia:\"rp2oMHcrB\",UI:\"L1uJWNm3k\"};const getProps=({height,id,visible,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,dXEeDeL9S:(_ref=visible!==null&&visible!==void 0?visible:props.dXEeDeL9S)!==null&&_ref!==void 0?_ref:true,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"TOFdqlU3c\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dXEeDeL9S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TOFdqlU3c\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=value=>{if(baseVariant===\"L1uJWNm3k\")return false;return value;};const isDisplayed1=value=>{if([\"rp2oMHcrB\",\"bOabWZVmz\"].includes(baseVariant))return false;if([\"uJQzc3CvZ\",\"L1uJWNm3k\"].includes(baseVariant))return true;return value;};const isDisplayed2=value=>{if([\"MNQpLNk9N\",\"rp2oMHcrB\",\"bOabWZVmz\",\"uJQzc3CvZ\",\"L1uJWNm3k\"].includes(baseVariant))return false;return value;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h04v4q\",className,classNames),\"data-framer-name\":\"Id. Visual / Motion Design / Ilustra\\xe7\\xe3o\",layoutDependency:layoutDependency,layoutId:\"TOFdqlU3c\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bOabWZVmz:{\"data-framer-name\":\"Id. Visual\"},L1uJWNm3k:{\"data-framer-name\":\"UI\"},MNQpLNk9N:{\"data-framer-name\":\"Id. Visual / Motion Design\"},rp2oMHcrB:{\"data-framer-name\":\"Iconografia\"},uJQzc3CvZ:{\"data-framer-name\":\"UX / UI\"}},baseVariant,gestureVariant),children:[isDisplayed(dXEeDeL9S)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11c9qrl-container\",layoutDependency:layoutDependency,layoutId:\"fTh2VFSMQ-container\",children:/*#__PURE__*/_jsx(Tag,{DjrE_1BbJ:\"Identidade Visual\",height:\"100%\",id:\"fTh2VFSMQ\",layoutId:\"fTh2VFSMQ\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({rp2oMHcrB:{DjrE_1BbJ:\"Iconografia\"},uJQzc3CvZ:{DjrE_1BbJ:\"UX Design\"}},baseVariant,gestureVariant)})})}),isDisplayed1(dXEeDeL9S)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1357wda-container\",layoutDependency:layoutDependency,layoutId:\"zmjT3dkQW-container\",children:/*#__PURE__*/_jsx(Tag,{DjrE_1BbJ:\"Motion Design\",height:\"100%\",id:\"zmjT3dkQW\",layoutId:\"zmjT3dkQW\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({L1uJWNm3k:{DjrE_1BbJ:\"UI Design\"},uJQzc3CvZ:{DjrE_1BbJ:\"UI Design\"}},baseVariant,gestureVariant)})})}),isDisplayed2(dXEeDeL9S)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8fu8w-container\",layoutDependency:layoutDependency,layoutId:\"cUIupMUvG-container\",children:/*#__PURE__*/_jsx(Tag,{DjrE_1BbJ:\"Ilustra\\xe7\\xe3o\",height:\"100%\",id:\"cUIupMUvG\",layoutId:\"cUIupMUvG\",style:{height:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-chk27.framer-1sjb0h6, .framer-chk27 .framer-1sjb0h6 { display: block; }\",\".framer-chk27.framer-h04v4q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 327px; }\",\".framer-chk27 .framer-11c9qrl-container, .framer-chk27 .framer-1357wda-container, .framer-chk27 .framer-1c8fu8w-container { flex: none; height: 37px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-chk27.framer-h04v4q { gap: 0px; } .framer-chk27.framer-h04v4q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-chk27.framer-h04v4q > :first-child { margin-left: 0px; } .framer-chk27.framer-h04v4q > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 327\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MNQpLNk9N\":{\"layout\":[\"fixed\",\"auto\"]},\"rp2oMHcrB\":{\"layout\":[\"fixed\",\"auto\"]},\"bOabWZVmz\":{\"layout\":[\"fixed\",\"auto\"]},\"uJQzc3CvZ\":{\"layout\":[\"fixed\",\"auto\"]},\"L1uJWNm3k\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dXEeDeL9S\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercO7Tjd9NY=withCSS(Component,css,\"framer-chk27\");export default FramercO7Tjd9NY;FramercO7Tjd9NY.displayName=\"Tags\";FramercO7Tjd9NY.defaultProps={height:37,width:327};addPropertyControls(FramercO7Tjd9NY,{variant:{options:[\"TOFdqlU3c\",\"MNQpLNk9N\",\"rp2oMHcrB\",\"bOabWZVmz\",\"uJQzc3CvZ\",\"L1uJWNm3k\"],optionTitles:[\"Id. Visual / Motion Design / Ilustra\\xe7\\xe3o\",\"Id. Visual / Motion Design\",\"Iconografia\",\"Id. Visual\",\"UX / UI\",\"UI\"],title:\"Variant\",type:ControlType.Enum},dXEeDeL9S:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramercO7Tjd9NY,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercO7Tjd9NY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MNQpLNk9N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rp2oMHcrB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bOabWZVmz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uJQzc3CvZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L1uJWNm3k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"dXEeDeL9S\\\":\\\"visible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"37\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"327\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cO7Tjd9NY.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oY0GWn4A1VYZQW0ZFWST/ZfDVVcrl9a2JhOHVPgoo/NvzBkduhg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/98kJJ5SPpex2JjzX5vlJ/KnLl9TPbrrVfAMGfcDyv/nyvDlEmr0.js\";import Tags from\"https://framerusercontent.com/modules/0HmJOZuejw8H8pgeshYx/NmCI9yLM1xslB5aYTRQ1/cO7Tjd9NY.js\";const TagsFonts=getFonts(Tags);const TagsControls=getPropertyControls(Tags);const enabledGestures={c_KmxxXqv:{hover:true},CbWRBQ_UI:{hover:true},FhxSHOd77:{hover:true},gaJycUYJd:{hover:true},gTOn402LX:{hover:true},IrHla9Owj:{hover:true},IS_ZVrKni:{hover:true},KWHKboBby:{hover:true},LuRibsApH:{hover:true},mpow9THet:{hover:true},nFgHrGUuE:{hover:true},NpYTCIbTX:{hover:true},S1JyaYSZY:{hover:true},sNvX45h4p:{hover:true},t5wljrvKj:{hover:true},zeqmDXPtb:{hover:true}};const cycleOrder=[\"gTOn402LX\",\"yLkxdXNQE\",\"mpow9THet\",\"NpYTCIbTX\",\"gaJycUYJd\",\"nFgHrGUuE\",\"sNvX45h4p\",\"FhxSHOd77\",\"LuRibsApH\",\"S1JyaYSZY\",\"zeqmDXPtb\",\"CbWRBQ_UI\",\"IS_ZVrKni\",\"t5wljrvKj\",\"KWHKboBby\",\"c_KmxxXqv\",\"IrHla9Owj\",\"tdBu9qntl\",\"VmLBF6xX5\",\"tvnTOOmdC\",\"as0Cza2J6\",\"nCN_3D5KZ\",\"EhfVRvRrr\",\"i9QUrFl1z\"];const serializationHash=\"framer-03UVN\";const variantClassNames={as0Cza2J6:\"framer-v-1tvlmgk\",c_KmxxXqv:\"framer-v-11hi95u\",CbWRBQ_UI:\"framer-v-13lyc04\",EhfVRvRrr:\"framer-v-161da2a\",FhxSHOd77:\"framer-v-8737t1\",gaJycUYJd:\"framer-v-18hs30d\",gTOn402LX:\"framer-v-6wpchd\",i9QUrFl1z:\"framer-v-uiiwld\",IrHla9Owj:\"framer-v-vyrkq8\",IS_ZVrKni:\"framer-v-1t54mo8\",KWHKboBby:\"framer-v-5i2ldv\",LuRibsApH:\"framer-v-1xgtwoc\",mpow9THet:\"framer-v-apa3d1\",nCN_3D5KZ:\"framer-v-1ixaf5r\",nFgHrGUuE:\"framer-v-yh4688\",NpYTCIbTX:\"framer-v-1nb5bze\",S1JyaYSZY:\"framer-v-1ondjr8\",sNvX45h4p:\"framer-v-1iepaxm\",t5wljrvKj:\"framer-v-1rkbbnb\",tdBu9qntl:\"framer-v-bowl74\",tvnTOOmdC:\"framer-v-f5379e\",VmLBF6xX5:\"framer-v-16efa1h\",yLkxdXNQE:\"framer-v-hmh13m\",zeqmDXPtb:\"framer-v-6p997b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,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 humanReadableEnumMap={\"Id. Visual / Motion Design / Ilustra\\xe7\\xe3o\":\"TOFdqlU3c\",\"Id. Visual / Motion Design\":\"MNQpLNk9N\",\"Id. Visual\":\"bOabWZVmz\",\"UX / UI\":\"uJQzc3CvZ\",Iconografia:\"rp2oMHcrB\",UI:\"L1uJWNm3k\"};const humanReadableVariantMap={\"Desktop / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"gaJycUYJd\",\"Desktop / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"gTOn402LX\",\"Desktop / Aplicativo do Aluno\":\"sNvX45h4p\",\"Desktop / CLAREIA (2023)\":\"nFgHrGUuE\",\"Desktop / CLAREIA (2024)\":\"mpow9THet\",\"Desktop / Est\\xfadio Kenzo\":\"LuRibsApH\",\"Desktop / Iconografia Olist\":\"NpYTCIbTX\",\"Desktop / Landing Page ComprAqui\":\"FhxSHOd77\",\"Phone / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"tvnTOOmdC\",\"Phone / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"yLkxdXNQE\",\"Phone / Aplicativo do Aluno\":\"nCN_3D5KZ\",\"Phone / CLAREIA (2023)\":\"as0Cza2J6\",\"Phone / CLAREIA (2024)\":\"tdBu9qntl\",\"Phone / Est\\xfadio Kenzo\":\"i9QUrFl1z\",\"Phone / Iconografia Olist\":\"VmLBF6xX5\",\"Phone / Landing Page ComprAqui\":\"EhfVRvRrr\",\"Tablet / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"IS_ZVrKni\",\"Tablet / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\":\"S1JyaYSZY\",\"Tablet / Aplicativo do Aluno\":\"KWHKboBby\",\"Tablet / CLAREIA (2023)\":\"t5wljrvKj\",\"Tablet / CLAREIA (2024)\":\"zeqmDXPtb\",\"Tablet / Est\\xfadio Kenzo\":\"IrHla9Owj\",\"Tablet / Iconografia Olist\":\"CbWRBQ_UI\",\"Tablet / Landing Page ComprAqui\":\"c_KmxxXqv\"};const getProps=({height,id,text,variant1,visible,width,year,...props})=>{return{...props,HjEyxcrvv:year??props.HjEyxcrvv??\"2024\",IW1Ay2Oe4:visible??props.IW1Ay2Oe4??true,ls7zSrF6J:text??props.ls7zSrF6J??\"19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",SCsGdinqN:humanReadableEnumMap[variant1]??variant1??props.SCsGdinqN??\"TOFdqlU3c\",variant:humanReadableVariantMap[props.variant]??props.variant??\"gTOn402LX\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IW1Ay2Oe4,ls7zSrF6J,HjEyxcrvv,SCsGdinqN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gTOn402LX\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"S1JyaYSZY-hover\",\"zeqmDXPtb-hover\",\"CbWRBQ_UI-hover\",\"IS_ZVrKni-hover\",\"t5wljrvKj-hover\",\"KWHKboBby-hover\",\"c_KmxxXqv-hover\",\"IrHla9Owj-hover\"].includes(gestureVariant))return false;if([\"yLkxdXNQE\",\"S1JyaYSZY\",\"zeqmDXPtb\",\"CbWRBQ_UI\",\"IS_ZVrKni\",\"t5wljrvKj\",\"KWHKboBby\",\"c_KmxxXqv\",\"IrHla9Owj\",\"tdBu9qntl\",\"VmLBF6xX5\",\"tvnTOOmdC\",\"as0Cza2J6\",\"nCN_3D5KZ\",\"EhfVRvRrr\",\"i9QUrFl1z\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"yLkxdXNQE\",\"tdBu9qntl\",\"VmLBF6xX5\",\"tvnTOOmdC\",\"as0Cza2J6\",\"nCN_3D5KZ\",\"EhfVRvRrr\",\"i9QUrFl1z\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rUzp7Lk95\"},nodeId:\"gTOn402LX\",openInNewTab:false,...addPropertyOverrides({\"CbWRBQ_UI-hover\":{href:undefined},\"NpYTCIbTX-hover\":{href:undefined},as0Cza2J6:{href:\"https://www.behance.net/gallery/189312767/CLAREIA-%282023%29-Identidade-Visual\",openInNewTab:true},c_KmxxXqv:{href:\"https://www.behance.net/gallery/189737889/ComprAqui-Website\",openInNewTab:true},CbWRBQ_UI:{href:undefined,openInNewTab:true},EhfVRvRrr:{href:\"https://www.behance.net/gallery/189737889/ComprAqui-Website\",openInNewTab:true},FhxSHOd77:{href:\"https://www.behance.net/gallery/189737889/ComprAqui-Website\",openInNewTab:true},gaJycUYJd:{href:\"https://www.behance.net/gallery/189401759/18-Premio-Lollo-Terra-de-MPB-Identidade-Visual\",openInNewTab:true},i9QUrFl1z:{href:\"https://www.behance.net/gallery/114603273/Estudio-Kenzo-Identidade-Visual\",openInNewTab:true},IrHla9Owj:{href:\"https://www.behance.net/gallery/114603273/Estudio-Kenzo-Identidade-Visual\",openInNewTab:true},IS_ZVrKni:{href:\"https://www.behance.net/gallery/189401759/18-Premio-Lollo-Terra-de-MPB-Identidade-Visual\",openInNewTab:true},KWHKboBby:{href:\"https://www.behance.net/gallery/185218239/Aplicativo-do-Aluno-UXUI\",openInNewTab:true},LuRibsApH:{href:\"https://www.behance.net/gallery/114603273/Estudio-Kenzo-Identidade-Visual\",openInNewTab:true},mpow9THet:{href:{webPageId:\"jhfGpe7NV\"}},nCN_3D5KZ:{href:\"https://www.behance.net/gallery/185218239/Aplicativo-do-Aluno-UXUI\",openInNewTab:true},nFgHrGUuE:{href:\"https://www.behance.net/gallery/189312767/CLAREIA-%282023%29-Identidade-Visual\",openInNewTab:true},NpYTCIbTX:{href:undefined,openInNewTab:true},sNvX45h4p:{href:\"https://www.behance.net/gallery/185218239/Aplicativo-do-Aluno-UXUI\",openInNewTab:true},t5wljrvKj:{href:\"https://www.behance.net/gallery/189312767/CLAREIA-%282023%29-Identidade-Visual\",openInNewTab:true},tdBu9qntl:{href:{webPageId:\"jhfGpe7NV\"}},tvnTOOmdC:{href:\"https://www.behance.net/gallery/189401759/18-Premio-Lollo-Terra-de-MPB-Identidade-Visual\",openInNewTab:true},VmLBF6xX5:{href:undefined,openInNewTab:true},zeqmDXPtb:{href:{webPageId:\"jhfGpe7NV\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-6wpchd\",className,classNames)} framer-1jr2p5d`,\"data-framer-name\":\"Desktop / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",layoutDependency:layoutDependency,layoutId:\"gTOn402LX\",ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"c_KmxxXqv-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"CbWRBQ_UI-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"FhxSHOd77-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"gaJycUYJd-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"gTOn402LX-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"IrHla9Owj-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"IS_ZVrKni-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"KWHKboBby-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"LuRibsApH-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"mpow9THet-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"nFgHrGUuE-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"NpYTCIbTX-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"S1JyaYSZY-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"sNvX45h4p-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"t5wljrvKj-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"},\"zeqmDXPtb-hover\":{backgroundColor:\"var(--token-f1741fa1-cae4-4931-9cf7-1aa3a4f3ef70, rgb(237, 236, 233))\"}},...addPropertyOverrides({\"c_KmxxXqv-hover\":{\"data-framer-name\":undefined},\"CbWRBQ_UI-hover\":{\"data-framer-name\":undefined},\"FhxSHOd77-hover\":{\"data-framer-name\":undefined},\"gaJycUYJd-hover\":{\"data-framer-name\":undefined},\"gTOn402LX-hover\":{\"data-framer-name\":undefined},\"IrHla9Owj-hover\":{\"data-framer-name\":undefined},\"IS_ZVrKni-hover\":{\"data-framer-name\":undefined},\"KWHKboBby-hover\":{\"data-framer-name\":undefined},\"LuRibsApH-hover\":{\"data-framer-name\":undefined},\"mpow9THet-hover\":{\"data-framer-name\":undefined},\"nFgHrGUuE-hover\":{\"data-framer-name\":undefined},\"NpYTCIbTX-hover\":{\"data-framer-name\":undefined},\"S1JyaYSZY-hover\":{\"data-framer-name\":undefined},\"sNvX45h4p-hover\":{\"data-framer-name\":undefined},\"t5wljrvKj-hover\":{\"data-framer-name\":undefined},\"zeqmDXPtb-hover\":{\"data-framer-name\":undefined},as0Cza2J6:{\"data-framer-name\":\"Phone / CLAREIA (2023)\"},c_KmxxXqv:{\"data-framer-name\":\"Tablet / Landing Page ComprAqui\"},CbWRBQ_UI:{\"data-framer-name\":\"Tablet / Iconografia Olist\"},EhfVRvRrr:{\"data-framer-name\":\"Phone / Landing Page ComprAqui\"},FhxSHOd77:{\"data-framer-name\":\"Desktop / Landing Page ComprAqui\"},gaJycUYJd:{\"data-framer-name\":\"Desktop / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"},i9QUrFl1z:{\"data-framer-name\":\"Phone / Est\\xfadio Kenzo\"},IrHla9Owj:{\"data-framer-name\":\"Tablet / Est\\xfadio Kenzo\"},IS_ZVrKni:{\"data-framer-name\":\"Tablet / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"},KWHKboBby:{\"data-framer-name\":\"Tablet / Aplicativo do Aluno\"},LuRibsApH:{\"data-framer-name\":\"Desktop / Est\\xfadio Kenzo\"},mpow9THet:{\"data-framer-name\":\"Desktop / CLAREIA (2024)\"},nCN_3D5KZ:{\"data-framer-name\":\"Phone / Aplicativo do Aluno\"},nFgHrGUuE:{\"data-framer-name\":\"Desktop / CLAREIA (2023)\"},NpYTCIbTX:{\"data-framer-name\":\"Desktop / Iconografia Olist\"},S1JyaYSZY:{\"data-framer-name\":\"Tablet / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"},sNvX45h4p:{\"data-framer-name\":\"Desktop / Aplicativo do Aluno\"},t5wljrvKj:{\"data-framer-name\":\"Tablet / CLAREIA (2023)\"},tdBu9qntl:{\"data-framer-name\":\"Phone / CLAREIA (2024)\"},tvnTOOmdC:{\"data-framer-name\":\"Phone / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"},VmLBF6xX5:{\"data-framer-name\":\"Phone / Iconografia Olist\"},yLkxdXNQE:{\"data-framer-name\":\"Phone / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"},zeqmDXPtb:{\"data-framer-name\":\"Tablet / CLAREIA (2024)\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2024\"})}),className:\"framer-jqbm2i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LWoqidb4W\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HjEyxcrvv,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"c_KmxxXqv-hover\":{text:undefined},\"FhxSHOd77-hover\":{text:undefined},\"gaJycUYJd-hover\":{text:undefined},\"IrHla9Owj-hover\":{text:undefined},\"KWHKboBby-hover\":{text:undefined},\"LuRibsApH-hover\":{text:undefined},\"mpow9THet-hover\":{text:undefined},\"nFgHrGUuE-hover\":{text:undefined},\"NpYTCIbTX-hover\":{text:undefined},\"sNvX45h4p-hover\":{text:undefined},\"t5wljrvKj-hover\":{text:undefined},as0Cza2J6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},c_KmxxXqv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},EhfVRvRrr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},FhxSHOd77:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},gaJycUYJd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},i9QUrFl1z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2021\"})}),text:undefined},IrHla9Owj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2021\"})}),text:undefined},KWHKboBby:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},LuRibsApH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2021\"})}),text:undefined},mpow9THet:{text:undefined},nCN_3D5KZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},nFgHrGUuE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},NpYTCIbTX:{text:undefined},sNvX45h4p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},t5wljrvKj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},tdBu9qntl:{text:undefined},tvnTOOmdC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f1i8py\",\"data-styles-preset\":\"nyvDlEmr0\",children:\"2023\"})}),text:undefined},VmLBF6xX5:{text:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"})}),className:\"framer-kf88i6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ULQw8eT2y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ls7zSrF6J,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"c_KmxxXqv-hover\":{text:undefined},\"CbWRBQ_UI-hover\":{text:undefined},\"FhxSHOd77-hover\":{text:undefined},\"gaJycUYJd-hover\":{text:undefined},\"IrHla9Owj-hover\":{text:undefined},\"IS_ZVrKni-hover\":{text:undefined},\"KWHKboBby-hover\":{text:undefined},\"LuRibsApH-hover\":{text:undefined},\"mpow9THet-hover\":{text:undefined},\"nFgHrGUuE-hover\":{text:undefined},\"NpYTCIbTX-hover\":{text:undefined},\"sNvX45h4p-hover\":{text:undefined},\"t5wljrvKj-hover\":{text:undefined},\"zeqmDXPtb-hover\":{text:undefined},as0Cza2J6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"CLAREIA (2023)\"})}),text:undefined},c_KmxxXqv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Landing Page ComprAqui\"})}),text:undefined},CbWRBQ_UI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Iconografia Olist\"})}),text:undefined},EhfVRvRrr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"Landing Page ComprAqui\"})}),text:undefined},FhxSHOd77:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Landing Page ComprAqui\"})}),text:undefined},gaJycUYJd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"})}),text:undefined},i9QUrFl1z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"Est\\xfadio Kenzo\"})}),text:undefined},IrHla9Owj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Est\\xfadio Kenzo\"})}),text:undefined},IS_ZVrKni:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"})}),text:undefined},KWHKboBby:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Aplicativo do Aluno\"})}),text:undefined},LuRibsApH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Est\\xfadio Kenzo\"})}),text:undefined},mpow9THet:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"CLAREIA (2024)\"})}),text:undefined},nCN_3D5KZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"Aplicativo do Aluno\"})}),text:undefined},nFgHrGUuE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"CLAREIA (2023)\"})}),text:undefined},NpYTCIbTX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Iconografia Olist\"})}),text:undefined},sNvX45h4p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"Aplicativo do Aluno\"})}),text:undefined},t5wljrvKj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"CLAREIA (2023)\"})}),text:undefined},tdBu9qntl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"CLAREIA (2024)\"})}),text:undefined},tvnTOOmdC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"})}),text:undefined},VmLBF6xX5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"Iconografia Olist\"})}),text:undefined},yLkxdXNQE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",style:{\"--framer-text-alignment\":\"right\"},children:\"19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\"})})},zeqmDXPtb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-nh9x2c\",\"data-styles-preset\":\"NvzBkduhg\",children:\"CLAREIA (2024)\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/QeB9KY6FMxKbe7se9nGQxfz7ppU.png\",srcSet:\"https://framerusercontent.com/images/QeB9KY6FMxKbe7se9nGQxfz7ppU.png?scale-down-to=512 512w,https://framerusercontent.com/images/QeB9KY6FMxKbe7se9nGQxfz7ppU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QeB9KY6FMxKbe7se9nGQxfz7ppU.png 1729w\"},className:\"framer-mo8jfz\",\"data-framer-name\":\"Image-1\",layoutDependency:layoutDependency,layoutId:\"ItGEOsPO2\",...addPropertyOverrides({FhxSHOd77:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/hWc8IDFfjFItSB1uKi01G65TJRU.png\",srcSet:\"https://framerusercontent.com/images/hWc8IDFfjFItSB1uKi01G65TJRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hWc8IDFfjFItSB1uKi01G65TJRU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hWc8IDFfjFItSB1uKi01G65TJRU.png 1729w\"}},gaJycUYJd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/j0l3slXqbPVrLJLRxltPZ8wHlns.png\",srcSet:\"https://framerusercontent.com/images/j0l3slXqbPVrLJLRxltPZ8wHlns.png?scale-down-to=512 512w,https://framerusercontent.com/images/j0l3slXqbPVrLJLRxltPZ8wHlns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j0l3slXqbPVrLJLRxltPZ8wHlns.png 1729w\"}},LuRibsApH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/dv6qIBkT5zX2h3Fk2Dd9NKcrKuI.png\",srcSet:\"https://framerusercontent.com/images/dv6qIBkT5zX2h3Fk2Dd9NKcrKuI.png?scale-down-to=512 512w,https://framerusercontent.com/images/dv6qIBkT5zX2h3Fk2Dd9NKcrKuI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dv6qIBkT5zX2h3Fk2Dd9NKcrKuI.png 1729w\"}},mpow9THet:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/2qaacPfKQBXoVBplb4P7c4JN8.png\",srcSet:\"https://framerusercontent.com/images/2qaacPfKQBXoVBplb4P7c4JN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qaacPfKQBXoVBplb4P7c4JN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qaacPfKQBXoVBplb4P7c4JN8.png 1729w\"}},nFgHrGUuE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/bO0J4HOf3qAxPnre8e4teFOa4.png\",srcSet:\"https://framerusercontent.com/images/bO0J4HOf3qAxPnre8e4teFOa4.png?scale-down-to=512 512w,https://framerusercontent.com/images/bO0J4HOf3qAxPnre8e4teFOa4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bO0J4HOf3qAxPnre8e4teFOa4.png 1729w\"}},NpYTCIbTX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/ZL9gkd61QERGajDU6gh2wixU4.png\",srcSet:\"https://framerusercontent.com/images/ZL9gkd61QERGajDU6gh2wixU4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZL9gkd61QERGajDU6gh2wixU4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZL9gkd61QERGajDU6gh2wixU4.png 1729w\"}},sNvX45h4p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:972,intrinsicWidth:1729,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:972,pixelWidth:1729,sizes:\"288px\",src:\"https://framerusercontent.com/images/01DFGRRoDQ6wqLScX0dVe114NI.png\",srcSet:\"https://framerusercontent.com/images/01DFGRRoDQ6wqLScX0dVe114NI.png?scale-down-to=512 512w,https://framerusercontent.com/images/01DFGRRoDQ6wqLScX0dVe114NI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/01DFGRRoDQ6wqLScX0dVe114NI.png 1729w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:\"327px\",y:(componentViewport?.y||0)+32,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13wdaht-container\",layoutDependency:layoutDependency,layoutId:\"CA3siU4FL-container\",children:/*#__PURE__*/_jsx(Tags,{dXEeDeL9S:IW1Ay2Oe4,height:\"100%\",id:\"CA3siU4FL\",layoutId:\"CA3siU4FL\",style:{width:\"100%\"},variant:SCsGdinqN,width:\"100%\",...addPropertyOverrides({c_KmxxXqv:{variant:\"L1uJWNm3k\"},CbWRBQ_UI:{variant:\"rp2oMHcrB\"},FhxSHOd77:{variant:\"L1uJWNm3k\"},gaJycUYJd:{variant:\"TOFdqlU3c\"},IrHla9Owj:{variant:\"bOabWZVmz\"},IS_ZVrKni:{variant:\"TOFdqlU3c\"},KWHKboBby:{variant:\"uJQzc3CvZ\"},LuRibsApH:{variant:\"bOabWZVmz\"},mpow9THet:{variant:\"MNQpLNk9N\"},nFgHrGUuE:{variant:\"TOFdqlU3c\"},NpYTCIbTX:{variant:\"rp2oMHcrB\"},sNvX45h4p:{variant:\"uJQzc3CvZ\"},t5wljrvKj:{variant:\"TOFdqlU3c\"},zeqmDXPtb:{variant:\"MNQpLNk9N\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-03UVN.framer-1jr2p5d, .framer-03UVN .framer-1jr2p5d { display: block; }\",\".framer-03UVN.framer-6wpchd { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 32px; position: relative; text-decoration: none; width: 1376px; }\",\".framer-03UVN .framer-jqbm2i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 37px; word-break: break-word; word-wrap: break-word; }\",\".framer-03UVN .framer-kf88i6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\".framer-03UVN .framer-mo8jfz { aspect-ratio: 1.77880658436214 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 162px); overflow: visible; position: relative; width: 288px; }\",\".framer-03UVN .framer-13wdaht-container { flex: none; height: auto; position: relative; width: 327px; }\",\".framer-03UVN.framer-v-hmh13m.framer-6wpchd, .framer-03UVN.framer-v-bowl74.framer-6wpchd, .framer-03UVN.framer-v-16efa1h.framer-6wpchd, .framer-03UVN.framer-v-f5379e.framer-6wpchd, .framer-03UVN.framer-v-1tvlmgk.framer-6wpchd, .framer-03UVN.framer-v-1ixaf5r.framer-6wpchd, .framer-03UVN.framer-v-161da2a.framer-6wpchd, .framer-03UVN.framer-v-uiiwld.framer-6wpchd { cursor: unset; padding: 32px 0px 32px 0px; width: 390px; }\",\".framer-03UVN.framer-v-hmh13m .framer-kf88i6, .framer-03UVN.framer-v-bowl74 .framer-kf88i6, .framer-03UVN.framer-v-16efa1h .framer-kf88i6, .framer-03UVN.framer-v-f5379e .framer-kf88i6, .framer-03UVN.framer-v-1tvlmgk .framer-kf88i6, .framer-03UVN.framer-v-161da2a .framer-kf88i6, .framer-03UVN.framer-v-uiiwld .framer-kf88i6 { width: 184px; }\",\".framer-03UVN.framer-v-1ondjr8.framer-6wpchd, .framer-03UVN.framer-v-6p997b.framer-6wpchd, .framer-03UVN.framer-v-13lyc04.framer-6wpchd, .framer-03UVN.framer-v-1t54mo8.framer-6wpchd, .framer-03UVN.framer-v-1rkbbnb.framer-6wpchd, .framer-03UVN.framer-v-5i2ldv.framer-6wpchd, .framer-03UVN.framer-v-11hi95u.framer-6wpchd, .framer-03UVN.framer-v-vyrkq8.framer-6wpchd { width: 774px; }\",\".framer-03UVN.framer-v-1ondjr8 .framer-kf88i6, .framer-03UVN.framer-v-6p997b .framer-kf88i6, .framer-03UVN.framer-v-13lyc04 .framer-kf88i6, .framer-03UVN.framer-v-1t54mo8 .framer-kf88i6, .framer-03UVN.framer-v-1rkbbnb .framer-kf88i6, .framer-03UVN.framer-v-5i2ldv .framer-kf88i6, .framer-03UVN.framer-v-11hi95u .framer-kf88i6, .framer-03UVN.framer-v-vyrkq8 .framer-kf88i6 { width: 170px; }\",\".framer-03UVN.framer-v-1ixaf5r .framer-kf88i6 { white-space: pre; width: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 226\n * @framerIntrinsicWidth 1376\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yLkxdXNQE\":{\"layout\":[\"fixed\",\"auto\"]},\"mpow9THet\":{\"layout\":[\"fixed\",\"auto\"]},\"NpYTCIbTX\":{\"layout\":[\"fixed\",\"auto\"]},\"gaJycUYJd\":{\"layout\":[\"fixed\",\"auto\"]},\"nFgHrGUuE\":{\"layout\":[\"fixed\",\"auto\"]},\"sNvX45h4p\":{\"layout\":[\"fixed\",\"auto\"]},\"FhxSHOd77\":{\"layout\":[\"fixed\",\"auto\"]},\"LuRibsApH\":{\"layout\":[\"fixed\",\"auto\"]},\"S1JyaYSZY\":{\"layout\":[\"fixed\",\"auto\"]},\"zeqmDXPtb\":{\"layout\":[\"fixed\",\"auto\"]},\"CbWRBQ_UI\":{\"layout\":[\"fixed\",\"auto\"]},\"IS_ZVrKni\":{\"layout\":[\"fixed\",\"auto\"]},\"t5wljrvKj\":{\"layout\":[\"fixed\",\"auto\"]},\"KWHKboBby\":{\"layout\":[\"fixed\",\"auto\"]},\"c_KmxxXqv\":{\"layout\":[\"fixed\",\"auto\"]},\"IrHla9Owj\":{\"layout\":[\"fixed\",\"auto\"]},\"tdBu9qntl\":{\"layout\":[\"fixed\",\"auto\"]},\"VmLBF6xX5\":{\"layout\":[\"fixed\",\"auto\"]},\"tvnTOOmdC\":{\"layout\":[\"fixed\",\"auto\"]},\"as0Cza2J6\":{\"layout\":[\"fixed\",\"auto\"]},\"nCN_3D5KZ\":{\"layout\":[\"fixed\",\"auto\"]},\"EhfVRvRrr\":{\"layout\":[\"fixed\",\"auto\"]},\"i9QUrFl1z\":{\"layout\":[\"fixed\",\"auto\"]},\"oUjLX_95H\":{\"layout\":[\"fixed\",\"auto\"]},\"DP3ZSCu0h\":{\"layout\":[\"fixed\",\"auto\"]},\"eMkqWQbFV\":{\"layout\":[\"fixed\",\"auto\"]},\"g7cAf9ZXu\":{\"layout\":[\"fixed\",\"auto\"]},\"uQWeBnz5M\":{\"layout\":[\"fixed\",\"auto\"]},\"SPpg3tPdm\":{\"layout\":[\"fixed\",\"auto\"]},\"ppRBGKGKJ\":{\"layout\":[\"fixed\",\"auto\"]},\"wGJmKkuyY\":{\"layout\":[\"fixed\",\"auto\"]},\"pGxxTR5wk\":{\"layout\":[\"fixed\",\"auto\"]},\"R83CQF_h0\":{\"layout\":[\"fixed\",\"auto\"]},\"fmTW6off2\":{\"layout\":[\"fixed\",\"auto\"]},\"LIjyXzEJE\":{\"layout\":[\"fixed\",\"auto\"]},\"PmezvHayg\":{\"layout\":[\"fixed\",\"auto\"]},\"joPkBLco9\":{\"layout\":[\"fixed\",\"auto\"]},\"leJAbxY6Z\":{\"layout\":[\"fixed\",\"auto\"]},\"XSsKrkv17\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IW1Ay2Oe4\":\"visible\",\"ls7zSrF6J\":\"text\",\"HjEyxcrvv\":\"year\",\"SCsGdinqN\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbYUbdJDLd=withCSS(Component,css,\"framer-03UVN\");export default FramerbYUbdJDLd;FramerbYUbdJDLd.displayName=\"work\";FramerbYUbdJDLd.defaultProps={height:226,width:1376};addPropertyControls(FramerbYUbdJDLd,{variant:{options:[\"gTOn402LX\",\"yLkxdXNQE\",\"mpow9THet\",\"NpYTCIbTX\",\"gaJycUYJd\",\"nFgHrGUuE\",\"sNvX45h4p\",\"FhxSHOd77\",\"LuRibsApH\",\"S1JyaYSZY\",\"zeqmDXPtb\",\"CbWRBQ_UI\",\"IS_ZVrKni\",\"t5wljrvKj\",\"KWHKboBby\",\"c_KmxxXqv\",\"IrHla9Owj\",\"tdBu9qntl\",\"VmLBF6xX5\",\"tvnTOOmdC\",\"as0Cza2J6\",\"nCN_3D5KZ\",\"EhfVRvRrr\",\"i9QUrFl1z\"],optionTitles:[\"Desktop / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Phone / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Desktop / CLAREIA (2024)\",\"Desktop / Iconografia Olist\",\"Desktop / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Desktop / CLAREIA (2023)\",\"Desktop / Aplicativo do Aluno\",\"Desktop / Landing Page ComprAqui\",\"Desktop / Est\\xfadio Kenzo\",\"Tablet / 19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Tablet / CLAREIA (2024)\",\"Tablet / Iconografia Olist\",\"Tablet / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Tablet / CLAREIA (2023)\",\"Tablet / Aplicativo do Aluno\",\"Tablet / Landing Page ComprAqui\",\"Tablet / Est\\xfadio Kenzo\",\"Phone / CLAREIA (2024)\",\"Phone / Iconografia Olist\",\"Phone / 18\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",\"Phone / CLAREIA (2023)\",\"Phone / Aplicativo do Aluno\",\"Phone / Landing Page ComprAqui\",\"Phone / Est\\xfadio Kenzo\"],title:\"Variant\",type:ControlType.Enum},IW1Ay2Oe4:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},ls7zSrF6J:{defaultValue:\"19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",displayTextArea:false,title:\"Text\",type:ControlType.String},HjEyxcrvv:{defaultValue:\"2024\",displayTextArea:false,title:\"Year\",type:ControlType.String},SCsGdinqN:TagsControls?.[\"variant\"]&&{...TagsControls[\"variant\"],defaultValue:\"TOFdqlU3c\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FramerbYUbdJDLd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TagsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbYUbdJDLd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yLkxdXNQE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mpow9THet\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NpYTCIbTX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gaJycUYJd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nFgHrGUuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sNvX45h4p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FhxSHOd77\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LuRibsApH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S1JyaYSZY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zeqmDXPtb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CbWRBQ_UI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IS_ZVrKni\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t5wljrvKj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KWHKboBby\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c_KmxxXqv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IrHla9Owj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tdBu9qntl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VmLBF6xX5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tvnTOOmdC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"as0Cza2J6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nCN_3D5KZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EhfVRvRrr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i9QUrFl1z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oUjLX_95H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DP3ZSCu0h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eMkqWQbFV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g7cAf9ZXu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uQWeBnz5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SPpg3tPdm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ppRBGKGKJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wGJmKkuyY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pGxxTR5wk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R83CQF_h0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fmTW6off2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LIjyXzEJE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PmezvHayg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"joPkBLco9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"leJAbxY6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XSsKrkv17\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"226\",\"framerVariables\":\"{\\\"IW1Ay2Oe4\\\":\\\"visible\\\",\\\"ls7zSrF6J\\\":\\\"text\\\",\\\"HjEyxcrvv\\\":\\\"year\\\",\\\"SCsGdinqN\\\":\\\"variant1\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1376\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bYUbdJDLd.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ke03KsMV74VShd81xXBT/Jq5J09GyZ4HkHUuRLRpw/HTEMxPgU7.js\";const cycleOrder=[\"dvaPmy4Pt\",\"dR8YoA2hK\",\"uf2g73Nmu\"];const serializationHash=\"framer-DTuID\";const variantClassNames={dR8YoA2hK:\"framer-v-1clqnoj\",dvaPmy4Pt:\"framer-v-l0z6mp\",uf2g73Nmu:\"framer-v-s75eqi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"dvaPmy4Pt\",\"Variant 2\":\"dR8YoA2hK\",\"Variant 3\":\"uf2g73Nmu\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,sOw2FF5hm:(_ref=title!==null&&title!==void 0?title:props.sOw2FF5hm)!==null&&_ref!==void 0?_ref:\"Ver trabalho \uD83D\uDC40\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"dvaPmy4Pt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,sOw2FF5hm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dvaPmy4Pt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l0z6mp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dvaPmy4Pt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-d80faab7-f73a-4bd6-b7a4-822dcb804584, rgb(3, 90, 65))\",borderBottomLeftRadius:360,borderBottomRightRadius:360,borderTopLeftRadius:360,borderTopRightRadius:360,...style},variants:{dR8YoA2hK:{backgroundColor:\"var(--token-dc64b759-fef8-471f-b03b-43520e04ec91, rgb(217, 33, 33))\"},uf2g73Nmu:{backgroundColor:\"var(--token-2b765c87-d29f-48b6-b0a0-deff27ef7983, rgb(0, 0, 0))\"}},...addPropertyOverrides({dR8YoA2hK:{\"data-framer-name\":\"Variant 2\"},uf2g73Nmu:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1unek88\",\"data-styles-preset\":\"HTEMxPgU7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255)))\"},children:\"Ver trabalho \uD83D\uDC40\"})}),className:\"framer-186qm7y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U8Qt_7lpV\",style:{\"--extracted-r6o4lv\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sOw2FF5hm,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dR8YoA2hK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1unek88\",\"data-styles-preset\":\"HTEMxPgU7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255)))\"},children:\"Esse s\\xf3 em reuni\\xe3o \uD83D\uDD12\"})}),text:undefined},uf2g73Nmu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1unek88\",\"data-styles-preset\":\"HTEMxPgU7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255)))\"},children:\"foto_conceitual_de_perfil_para_banda_lanca\\xe7mento.jpg\"})}),text:undefined}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DTuID.framer-8qchn6, .framer-DTuID .framer-8qchn6 { display: block; }\",\".framer-DTuID.framer-l0z6mp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 13px 20px 13px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DTuID .framer-186qm7y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DTuID.framer-l0z6mp { gap: 0px; } .framer-DTuID.framer-l0z6mp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DTuID.framer-l0z6mp > :first-child { margin-left: 0px; } .framer-DTuID.framer-l0z6mp > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 157\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"dR8YoA2hK\":{\"layout\":[\"auto\",\"auto\"]},\"uf2g73Nmu\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"sOw2FF5hm\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerocRuI2VCf=withCSS(Component,css,\"framer-DTuID\");export default FramerocRuI2VCf;FramerocRuI2VCf.displayName=\"cursor-trabalho\";FramerocRuI2VCf.defaultProps={height:48,width:157};addPropertyControls(FramerocRuI2VCf,{variant:{options:[\"dvaPmy4Pt\",\"dR8YoA2hK\",\"uf2g73Nmu\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},sOw2FF5hm:{defaultValue:\"Ver trabalho \uD83D\uDC40\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerocRuI2VCf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerocRuI2VCf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dR8YoA2hK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uf2g73Nmu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"sOw2FF5hm\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"157\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ocRuI2VCf.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Work from\"#framer/local/canvasComponent/bYUbdJDLd/bYUbdJDLd.js\";import CursorTrabalho from\"#framer/local/canvasComponent/ocRuI2VCf/ocRuI2VCf.js\";import Header from\"#framer/local/canvasComponent/P1QOitgaa/P1QOitgaa.js\";import Cursor from\"#framer/local/canvasComponent/QcSJYeSEF/QcSJYeSEF.js\";import Footer from\"#framer/local/canvasComponent/wlY9Q68In/wlY9Q68In.js\";import*as sharedStyle4 from\"#framer/local/css/gDhdsODY6/gDhdsODY6.js\";import*as sharedStyle3 from\"#framer/local/css/HTEMxPgU7/HTEMxPgU7.js\";import*as sharedStyle5 from\"#framer/local/css/JNB8goH4p/JNB8goH4p.js\";import*as sharedStyle2 from\"#framer/local/css/ngxV7nFEo/ngxV7nFEo.js\";import*as sharedStyle1 from\"#framer/local/css/TL7wQqrej/TL7wQqrej.js\";import*as sharedStyle from\"#framer/local/css/xoop23Ria/xoop23Ria.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const TimeDateFonts=getFonts(TimeDate);const WorkFonts=getFonts(Work);const FooterFonts=getFonts(Footer);const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const CursorFonts=getFonts(Cursor);const CursorTrabalhoFonts=getFonts(CursorTrabalho);const breakpoints={iVivpYl8O:\"(min-width: 810px) and (max-width: 1439px)\",kj6r1QDmK:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KWnyW\";const variantClassNames={iVivpYl8O:\"framer-v-bhxfk5\",kj6r1QDmK:\"framer-v-1ikf7sp\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.075,duration:.2,ease:[.79,-.33,.79,.33],type:\"tween\"};const textEffect={effect:animation2,tokenization:\"line\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation2,startDelay:.1,tokenization:\"line\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={bounce:0,delay:0,duration:.2,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"kj6r1QDmK\",Tablet:\"iVivpYl8O\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"SEY6Q0cmL\"};const cursor1={component:CursorTrabalho,transition:transition3,variant:\"dvaPmy4Pt\"};const cursor2={component:CursorTrabalho,transition:transition3,variant:\"dR8YoA2hK\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"oPA5Mo0j3\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"kj6r1QDmK\")return false;return true;};const elementId1=useRouteElementId(\"yfhvi1HbS\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"WjgV_mGen\");const ref4=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"18ppl9\":cursor2,\"1dhtgmi\":cursor,\"1n74q4h\":cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1dhtgmi\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ijkdm-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"TfCbhCAFy\",intensity:10,layoutId:\"TfCbhCAFy\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n4ae6\",\"data-framer-name\":\"section 01\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:832,intrinsicWidth:832,loading:getLoadingLazyAtYPosition(701),pixelHeight:832,pixelWidth:832,sizes:\"235px\",src:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg\",srcSet:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg 832w\"}},kj6r1QDmK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:832,intrinsicWidth:832,loading:getLoadingLazyAtYPosition(801.6),pixelHeight:832,pixelWidth:832,sizes:\"184px\",src:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg\",srcSet:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg 832w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:832,intrinsicWidth:832,loading:getLoadingLazyAtYPosition(691.4),pixelHeight:832,pixelWidth:832,sizes:\"235px\",src:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg\",srcSet:\"https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Smo2ioOJQeqJ4g7uRF8bqixKfs.jpg 832w\"},className:\"framer-1y3qy80\",\"data-framer-appear-id\":\"1y3qy80\",\"data-framer-name\":\"gustavo-image\",initial:animation1,optimized:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12oyl2w\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1lh1kmj\",\"data-styles-preset\":\"TL7wQqrej\",children:\"Designer brasileiro expressando a paix\\xe3o musical em identidades visuais e produtos digitais.\"})})},kj6r1QDmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-184qn3\",\"data-styles-preset\":\"ngxV7nFEo\",style:{\"--framer-text-color\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\"},children:\"Designer brasileiro expressando a paix\\xe3o musical em identidades visuais e produtos digitais.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jwdtov\",\"data-styles-preset\":\"xoop23Ria\",style:{\"--framer-text-color\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\"},children:\"Designer brasileiro expressando a paix\\xe3o musical em identidades visuais e produtos digitais.\"})}),className:\"framer-6xa6ce\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1lh1kmj\",\"data-styles-preset\":\"TL7wQqrej\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\"},children:\"Atualmente transformando a jornada de pets e tutores na @budz.app\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-jwdtov\",\"data-styles-preset\":\"xoop23Ria\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\"},children:\"Atualmente transformando a jornada de pets e tutores na @budz.app\"})}),className:\"framer-1ixyey8 hidden-1ikf7sp\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193hdzj\",\"data-framer-name\":\"infos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-o4hx5j\",\"data-framer-name\":\"arrow\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 19 L 12 5 M 7 14 L 12 19 M 17 14 L 12 19\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;neutral / white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10700821808,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzmvsw\",\"data-framer-name\":\"city\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1unek88\",\"data-styles-preset\":\"HTEMxPgU7\",style:{\"--framer-text-color\":\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\"},children:\"S\\xe3o Miguel Arcanjo, SP\"})}),className:\"framer-10u3ydg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:91,intrinsicWidth:90,loading:getLoadingLazyAtYPosition(1152),pixelHeight:91,pixelWidth:90,src:\"https://framerusercontent.com/images/R9ASHffqTF3husVhJ2jOJRSmY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:91,intrinsicWidth:90,loading:getLoadingLazyAtYPosition(1144),pixelHeight:91,pixelWidth:90,src:\"https://framerusercontent.com/images/R9ASHffqTF3husVhJ2jOJRSmY.png\"},className:\"framer-1ua81d5\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xa7\\xf0\\x9f\\x87\\xb7\"})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xd0rau-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-e7d74357-b2fe-4b96-b447-e37fa6c6ccce, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.07em\",lineHeight:\"0.1px\"},height:\"100%\",id:\"cyiD2X_XE\",layoutId:\"cyiD2X_XE\",monthFormat:\"long\",outputType:\"time\",showMinutes:true,showMonth:true,showSeconds:false,showWeekday:true,showYear:true,tabularFont:false,timeFormat:\"12h\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nnyjpf\",\"data-framer-name\":\"section 02 / footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxcxxc\",\"data-framer-name\":\"section 02\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19n3csf\",\"data-styles-preset\":\"JNB8goH4p\",children:\"Trabalhos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1apfgub\",\"data-styles-preset\":\"gDhdsODY6\",children:\"Trabalhos\"})}),className:\"framer-g46jxl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3h1zbz\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:1364.1999999999998}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:1412.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86jci-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"S1JyaYSZY\"},kj6r1QDmK:{variant:\"yLkxdXNQE\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2024\",id:\"VsZAE2HKb\",IW1Ay2Oe4:true,layoutId:\"VsZAE2HKb\",ls7zSrF6J:\"19\\xba Pr\\xeamio ''Lollo Terra'' de MPB\",SCsGdinqN:\"TOFdqlU3c\",style:{width:\"100%\"},variant:\"gTOn402LX\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14f787l\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:1607.1999999999998}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:1655.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s5razf-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"zeqmDXPtb\"},kj6r1QDmK:{variant:\"tdBu9qntl\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2024\",id:\"kFceTDUyA\",IW1Ay2Oe4:true,layoutId:\"kFceTDUyA\",ls7zSrF6J:\"CLAREIA (2024)\",SCsGdinqN:\"MNQpLNk9N\",style:{width:\"100%\"},variant:\"mpow9THet\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kaxkej\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:1850.1999999999998}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:1898.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4xnzdu-container\",\"data-framer-cursor\":\"18ppl9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"CbWRBQ_UI\"},kj6r1QDmK:{variant:\"VmLBF6xX5\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2024\",id:\"V5PC_L_Wl\",IW1Ay2Oe4:true,layoutId:\"V5PC_L_Wl\",ls7zSrF6J:\"Iconografia Olist\",SCsGdinqN:\"rp2oMHcrB\",style:{width:\"100%\"},variant:\"NpYTCIbTX\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0pua8\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:2093.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:2141.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cgln6u-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"IS_ZVrKni\"},kj6r1QDmK:{variant:\"tvnTOOmdC\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2023\",id:\"Y87fX7ErF\",IW1Ay2Oe4:true,layoutId:\"Y87fX7ErF\",ls7zSrF6J:\"18\\xba Pr\\xeamio \u2018\u2019Lollo Terra'' de MPB\",SCsGdinqN:\"TOFdqlU3c\",style:{width:\"100%\"},variant:\"gaJycUYJd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s80pdp\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:2336.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:2384.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dppc5k-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"t5wljrvKj\"},kj6r1QDmK:{variant:\"as0Cza2J6\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2023\",id:\"ohzPLgQDe\",IW1Ay2Oe4:true,layoutId:\"ohzPLgQDe\",ls7zSrF6J:\"CLAREIA (2023)\",SCsGdinqN:\"TOFdqlU3c\",style:{width:\"100%\"},variant:\"nFgHrGUuE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4o9j4\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:2579.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:2627.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3oxh4g-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"KWHKboBby\"},kj6r1QDmK:{variant:\"nCN_3D5KZ\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2023\",id:\"YbhfYIMlO\",IW1Ay2Oe4:true,layoutId:\"YbhfYIMlO\",ls7zSrF6J:\"Aplicativo do Aluno\",SCsGdinqN:\"uJQzc3CvZ\",style:{width:\"100%\"},variant:\"sNvX45h4p\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zj6n4f\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:2822.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:2870.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11lnivn-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"c_KmxxXqv\"},kj6r1QDmK:{variant:\"EhfVRvRrr\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2023\",id:\"j3U3PJK3U\",IW1Ay2Oe4:true,layoutId:\"j3U3PJK3U\",ls7zSrF6J:\"Landing Page ComprAqui\",SCsGdinqN:\"L1uJWNm3k\",style:{width:\"100%\"},variant:\"FhxSHOd77\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sn4hfg\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"calc(100vw - 48px)\",y:3065.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:\"calc(100vw - 64px)\",y:3113.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ntvuyf-container\",\"data-framer-cursor\":\"1n74q4h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"IrHla9Owj\"},kj6r1QDmK:{variant:\"i9QUrFl1z\"}},children:/*#__PURE__*/_jsx(Work,{height:\"100%\",HjEyxcrvv:\"2021\",id:\"i6TZv7Y10\",IW1Ay2Oe4:true,layoutId:\"i6TZv7Y10\",ls7zSrF6J:\"Est\\xfadio Kenzo\",SCsGdinqN:\"bOabWZVmz\",style:{width:\"100%\"},variant:\"LuRibsApH\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kj6r1QDmK:{width:\"max(100vw - 48px, (100vw - 48px) * 0)\",y:3371.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:383,width:\"max(100vw - 64px, (100vw - 64px) * 0)\",y:3419.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t71bo1-container\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"N2CqlwPQ2\"},kj6r1QDmK:{variant:\"hlKL0CnoF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WjgV_mGen\",layoutId:\"WjgV_mGen\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"TGdO9DDzB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ajdtjj-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iVivpYl8O:{variant:\"Ory55ZzJp\"},kj6r1QDmK:{__framer__targets:[{ref:ref3,target:\"jvWwPKw3h\"},{ref:ref4,target:\"jvWwPKw3h\"}],variant:\"vxZruZBZ3\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"obOPbqUCW\"},{ref:ref4,target:\"obOPbqUCW\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"nhRbNCrWe\",layoutId:\"nhRbNCrWe\",style:{width:\"100%\"},variant:\"KMwB750A3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-73828eb7-79c8-4bd4-8f88-c8215cf742ca, rgb(244, 244, 241)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KWnyW.framer-lux5qc, .framer-KWnyW .framer-lux5qc { display: block; }\",\".framer-KWnyW.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-73828eb7-79c8-4bd4-8f88-c8215cf742ca, #f4f4f1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 0px 32px 0px; position: relative; width: 1440px; }\",\".framer-KWnyW .framer-14ijkdm-container, .framer-KWnyW .framer-xd0rau-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KWnyW .framer-n4ae6 { align-content: flex-start; align-items: flex-start; background-color: var(--token-d80faab7-f73a-4bd6-b7a4-822dcb804584, #035a41); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: flex-end; overflow: visible; padding: 0px 32px 32px 32px; position: relative; width: 100%; z-index: 0; }\",\".framer-KWnyW .framer-1y3qy80 { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 235px); overflow: visible; position: relative; width: 235px; }\",\".framer-KWnyW .framer-12oyl2w { 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-KWnyW .framer-6xa6ce { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 654px; word-break: break-word; word-wrap: break-word; }\",\".framer-KWnyW .framer-1ixyey8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 582px; word-break: break-word; word-wrap: break-word; }\",\".framer-KWnyW .framer-193hdzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KWnyW .framer-o4hx5j { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-KWnyW .framer-1dzmvsw { 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: min-content; }\",\".framer-KWnyW .framer-10u3ydg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KWnyW .framer-1ua81d5 { aspect-ratio: 0.989010989010989 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-KWnyW .framer-1nnyjpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-KWnyW .framer-cxcxxc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-KWnyW .framer-g46jxl { --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-KWnyW .framer-3h1zbz { background-color: var(--token-b1269fac-6507-40b8-8159-72b68bf0f799, #c4c2bf); flex: none; height: 1px; overflow: hidden; position: relative; width: 2000px; }\",\".framer-KWnyW .framer-86jci-container, .framer-KWnyW .framer-s5razf-container, .framer-KWnyW .framer-4xnzdu-container, .framer-KWnyW .framer-1cgln6u-container, .framer-KWnyW .framer-dppc5k-container, .framer-KWnyW .framer-3oxh4g-container, .framer-KWnyW .framer-11lnivn-container, .framer-KWnyW .framer-1ntvuyf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KWnyW .framer-14f787l, .framer-KWnyW .framer-1kaxkej, .framer-KWnyW .framer-r0pua8, .framer-KWnyW .framer-s80pdp, .framer-KWnyW .framer-c4o9j4, .framer-KWnyW .framer-zj6n4f, .framer-KWnyW .framer-1sn4hfg { align-content: center; align-items: center; background-color: var(--token-b1269fac-6507-40b8-8159-72b68bf0f799, #c4c2bf); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KWnyW .framer-t71bo1-container { flex: none; height: auto; max-width: 100%; min-width: 0%; position: relative; width: 100%; }\",\".framer-KWnyW .framer-ajdtjj-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KWnyW.framer-72rtr7, .framer-KWnyW .framer-n4ae6, .framer-KWnyW .framer-1dzmvsw, .framer-KWnyW .framer-1nnyjpf, .framer-KWnyW .framer-cxcxxc, .framer-KWnyW .framer-14f787l, .framer-KWnyW .framer-1kaxkej, .framer-KWnyW .framer-r0pua8, .framer-KWnyW .framer-s80pdp, .framer-KWnyW .framer-c4o9j4, .framer-KWnyW .framer-zj6n4f, .framer-KWnyW .framer-1sn4hfg { gap: 0px; } .framer-KWnyW.framer-72rtr7 > *, .framer-KWnyW .framer-1nnyjpf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KWnyW.framer-72rtr7 > :first-child, .framer-KWnyW .framer-n4ae6 > :first-child, .framer-KWnyW .framer-1nnyjpf > :first-child, .framer-KWnyW .framer-cxcxxc > :first-child { margin-top: 0px; } .framer-KWnyW.framer-72rtr7 > :last-child, .framer-KWnyW .framer-n4ae6 > :last-child, .framer-KWnyW .framer-1nnyjpf > :last-child, .framer-KWnyW .framer-cxcxxc > :last-child { margin-bottom: 0px; } .framer-KWnyW .framer-n4ae6 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-KWnyW .framer-1dzmvsw > *, .framer-KWnyW .framer-14f787l > *, .framer-KWnyW .framer-1kaxkej > *, .framer-KWnyW .framer-r0pua8 > *, .framer-KWnyW .framer-s80pdp > *, .framer-KWnyW .framer-c4o9j4 > *, .framer-KWnyW .framer-zj6n4f > *, .framer-KWnyW .framer-1sn4hfg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KWnyW .framer-1dzmvsw > :first-child, .framer-KWnyW .framer-14f787l > :first-child, .framer-KWnyW .framer-1kaxkej > :first-child, .framer-KWnyW .framer-r0pua8 > :first-child, .framer-KWnyW .framer-s80pdp > :first-child, .framer-KWnyW .framer-c4o9j4 > :first-child, .framer-KWnyW .framer-zj6n4f > :first-child, .framer-KWnyW .framer-1sn4hfg > :first-child { margin-left: 0px; } .framer-KWnyW .framer-1dzmvsw > :last-child, .framer-KWnyW .framer-14f787l > :last-child, .framer-KWnyW .framer-1kaxkej > :last-child, .framer-KWnyW .framer-r0pua8 > :last-child, .framer-KWnyW .framer-s80pdp > :last-child, .framer-KWnyW .framer-c4o9j4 > :last-child, .framer-KWnyW .framer-zj6n4f > :last-child, .framer-KWnyW .framer-1sn4hfg > :last-child { margin-right: 0px; } .framer-KWnyW .framer-cxcxxc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-KWnyW.framer-72rtr7 { width: 810px; } .framer-KWnyW .framer-6xa6ce { width: 357px; } .framer-KWnyW .framer-1ixyey8 { width: 333px; } .framer-KWnyW .framer-g46jxl { order: 0; width: 100%; } .framer-KWnyW .framer-3h1zbz { order: 1; width: 4000px; } .framer-KWnyW .framer-86jci-container { order: 2; } .framer-KWnyW .framer-14f787l { order: 3; } .framer-KWnyW .framer-s5razf-container { order: 4; } .framer-KWnyW .framer-1kaxkej { order: 5; } .framer-KWnyW .framer-4xnzdu-container { order: 6; } .framer-KWnyW .framer-r0pua8 { order: 7; } .framer-KWnyW .framer-1cgln6u-container { order: 8; } .framer-KWnyW .framer-s80pdp { order: 9; } .framer-KWnyW .framer-dppc5k-container { order: 10; } .framer-KWnyW .framer-c4o9j4 { order: 11; } .framer-KWnyW .framer-3oxh4g-container { order: 12; } .framer-KWnyW .framer-zj6n4f { order: 13; } .framer-KWnyW .framer-11lnivn-container { order: 14; } .framer-KWnyW .framer-1sn4hfg { order: 15; } .framer-KWnyW .framer-1ntvuyf-container { order: 16; }}\",\"@media (max-width: 809px) { .framer-KWnyW.framer-72rtr7 { width: 390px; } .framer-KWnyW .framer-n4ae6 { gap: 64px; padding: 0px 24px 24px 24px; } .framer-KWnyW .framer-1y3qy80 { height: var(--framer-aspect-ratio-supported, 184px); width: 184px; } .framer-KWnyW .framer-6xa6ce { align-self: unset; flex: 1 0 0px; width: 1px; } .framer-KWnyW .framer-1nnyjpf { padding: 0px 24px 0px 24px; } .framer-KWnyW .framer-3h1zbz { width: 1000px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KWnyW .framer-n4ae6 { gap: 0px; } .framer-KWnyW .framer-n4ae6 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-KWnyW .framer-n4ae6 > :first-child { margin-top: 0px; } .framer-KWnyW .framer-n4ae6 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3633\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iVivpYl8O\":{\"layout\":[\"fixed\",\"auto\"]},\"kj6r1QDmK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-KWnyW\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3633,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SmoothScrollFonts,...TimeDateFonts,...WorkFonts,...FooterFonts,...HeaderFonts,...CursorFonts,...CursorTrabalhoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iVivpYl8O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kj6r1QDmK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"3633\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "useForceRender", "_", "set", "ye", "te", "v", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "Time", "props", "fontFamily", "fontSize", "fontWeight", "showHours", "color", "font", "tabularFont", "alignment", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "useLocaleCode", "textContent", "ue", "int", "p", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DjrE_1BbJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "css", "FramerALgam2e8P", "withCSS", "ALgam2e8P_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TagFonts", "getFonts", "ALgam2e8P_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "visible", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dXEeDeL9S", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramercO7Tjd9NY", "withCSS", "cO7Tjd9NY_default", "addPropertyControls", "ControlType", "addFonts", "TagsFonts", "getFonts", "cO7Tjd9NY_default", "TagsControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "text", "variant1", "visible", "width", "year", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IW1Ay2Oe4", "ls7zSrF6J", "HjEyxcrvv", "SCsGdinqN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerbYUbdJDLd", "withCSS", "bYUbdJDLd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "sOw2FF5hm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText2", "css", "FramerocRuI2VCf", "withCSS", "ocRuI2VCf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "TimeDateFonts", "Time", "WorkFonts", "bYUbdJDLd_default", "FooterFonts", "wlY9Q68In_default", "HeaderFonts", "P1QOitgaa_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "CursorFonts", "QcSJYeSEF_default", "CursorTrabalhoFonts", "ocRuI2VCf_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "textEffect1", "transition3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "defaultLayoutId", "ae", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
