{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/bLjMJfb4FRoc8C7p7tTD/1wLg04h8ZkMWxXDF3vWN/FramerAuth.js", "ssg:https://framerusercontent.com/modules/BMXhjC6jDgfaGpi26EYI/p0O7QJGZSLeQrUf1GsDT/b31dn3bCo.js", "ssg:https://framerusercontent.com/modules/jbMijqwkIaXH9RWx0fLl/oTKUV0INGOtIxnf3NjcR/Bymg77_tA.js", "ssg:https://framerusercontent.com/modules/FPlCx2QflQRQTqOO0HfZ/ilbr75Jabr85E7TOwtV5/FramerAuth.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useRouter,inferInitialRouteFromPath}from\"framer\";import{auth}from\"https://cdn.framerauth.com/scripts/framerauth-sdk@beta.js\";const useStore=createStore({user:null,isAuthenticated:false,isLoaded:false});export function withAuth(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{if(!store.isAuthenticated){auth.getUser({cache:false}).then(({data,error})=>{const{user}=data;if(user){setStore({user:user,isAuthenticated:true,isLoaded:true});}else{setStore({isLoaded:true});}});}},[]);return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withStore(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withSignOut(Component){const handleClick=()=>{auth.signOut(\"/\");};return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withEmail(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.email});};}export function withFirstName(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.first_name});};}export function withLoggedIn(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withLoggedOut(Component){return props=>{const[store]=useStore();if(store.user)return null;let className=props.className||\"\";if(!store.isLoaded){className+=\" fa-cloak\";}return /*#__PURE__*/_jsx(Component,{...props,className:className.trim()});};}export function withVariant(Component){return props=>{const[store]=useStore();const variant=store.user?null:props===null||props===void 0?void 0:props.variant;return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};}export function withIsLessonComplete(Component){return props=>{var _store_user_data,_store_user;const[store,setStore]=useStore();// Do not display the component if the user is logged out\nif(!store.user)return null;const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;const isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";if(!isCompleted)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withActionCompleteLesson(Component){return props=>{var _store_user_data,_store_user;const router=useRouter();const[store,setStore]=useStore();const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;let isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";// Do not display the component if the user is logged out\nif(!store.user)return null;// Define an async function handleClick to handle the click event.\nconst handleClick=async event=>{try{// If the lesson has been completed exit the function\nif(isCompleted)return;// Update the components local state (for instant UI update)\nisCompleted=true;// Call the FramerAuth API to update the user data, marking the course as completed.\nconst{data,error}=await auth.patchUserData({[key]:\"completed\"});// If there is an error throw it.\nif(error){throw new Error(\"Error updating course status.\");}// If there is no error, update the user data in the store with the updated data.\nconst updatedUser={...store.user,data};setStore({user:updatedUser});// If there is a link, redirect the user.\nif(props===null||props===void 0?void 0:props.link){const[path,hash]=props.link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}}}catch(error){console.error(error);isCompleted=false;}};// Set the variant based on the completed state\nconst variant=isCompleted?props===null||props===void 0?void 0:props.variant:null;// Render the original component with the modified props and onClick handler.\nreturn /*#__PURE__*/_jsx(Component,{...props,variant:variant,onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withLoggedIn\":{\"type\":\"reactHoc\",\"name\":\"withLoggedIn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withStore\":{\"type\":\"reactHoc\",\"name\":\"withStore\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withActionCompleteLesson\":{\"type\":\"reactHoc\",\"name\":\"withActionCompleteLesson\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFirstName\":{\"type\":\"reactHoc\",\"name\":\"withFirstName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAuth\":{\"type\":\"reactHoc\",\"name\":\"withAuth\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEmail\":{\"type\":\"reactHoc\",\"name\":\"withEmail\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIsLessonComplete\":{\"type\":\"reactHoc\",\"name\":\"withIsLessonComplete\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSignOut\":{\"type\":\"reactHoc\",\"name\":\"withSignOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withVariant\":{\"type\":\"reactHoc\",\"name\":\"withVariant\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoggedOut\":{\"type\":\"reactHoc\",\"name\":\"withLoggedOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerAuth.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fdKmaKTcwyk9sUc8v7VY/nE2A4J5a41cz6d1nhbkN/ro387skeA.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/91gLw9aWHzG9FxkuQHu3/Lq7irySjWcT4KxBdLGIL/w_A1P0q8O.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xKDsmWtZwjXUc94Fxtdw/Y5tMVZPj72gONk4sfaEV/Weuk36qOm.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ozTlFInwtZ2bHI8mTOTl/jYSSCLu1K8NmCpGrLZKH/YckFIlg3V.js\";import Play from\"https://framerusercontent.com/modules/jbMijqwkIaXH9RWx0fLl/oTKUV0INGOtIxnf3NjcR/Bymg77_tA.js\";const PlayFonts=getFonts(Play);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={gDR1GmFeN:{hover:true},RGzGYqwLM:{hover:true},t4pLvMY5Q:{hover:true},zTRPT6hvJ:{hover:true,pressed:true}};const cycleOrder=[\"t4pLvMY5Q\",\"RGzGYqwLM\",\"zTRPT6hvJ\",\"bvzOIhx06\",\"gDR1GmFeN\"];const serializationHash=\"framer-P6v9p\";const variantClassNames={bvzOIhx06:\"framer-v-sqb8xs\",gDR1GmFeN:\"framer-v-q9waw2\",RGzGYqwLM:\"framer-v-cn1b61\",t4pLvMY5Q:\"framer-v-1fptzx7\",zTRPT6hvJ:\"framer-v-nyayq9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Menu lateral\":\"gDR1GmFeN\",\"Variant 3\":\"zTRPT6hvJ\",\"Variant 4\":\"bvzOIhx06\",Default:\"t4pLvMY5Q\",Locked:\"RGzGYqwLM\"};const getProps=({autor,categoria,cursorLock,cursorPlay,date,default1,height,id,image,link,locked,title,width,...props})=>{return{...props,A3j2_NnFs:date??props.A3j2_NnFs??\"1970-01-01T00:00:00.000Z\",b9rsAYzfQ:cursorPlay??props.b9rsAYzfQ,EdoR5fjmK:link??props.EdoR5fjmK,EQ5JpLptX:cursorLock??props.EQ5JpLptX,FlcfA6b8n:title??props.FlcfA6b8n??\"Title\",iTWADHo7d:default1??props.iTWADHo7d,lNNmXc5RI:categoria??props.lNNmXc5RI??\"Categoria\",RipFRC0Ww:autor??props.RipFRC0Ww,variant:humanReadableVariantMap[props.variant]??props.variant??\"t4pLvMY5Q\",vVcroSUuC:locked??props.vVcroSUuC,xqUglY9Ez:image??props.xqUglY9Ez??{src:\"https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=1024 717w,https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?scale-down-to=2048 1434w,https://framerusercontent.com/images/WBmp3IgmU4ACV3Ya6du6fJLgA.jpg 2650w\"}};};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,iTWADHo7d,xqUglY9Ez,FlcfA6b8n,A3j2_NnFs,vVcroSUuC,b9rsAYzfQ,EQ5JpLptX,lNNmXc5RI,RipFRC0Ww,EdoR5fjmK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t4pLvMY5Q\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"RGzGYqwLM-hover\")return false;return true;};const isDisplayed1=()=>{if([\"zTRPT6hvJ-pressed\",\"zTRPT6hvJ-hover\"].includes(gestureVariant))return true;if(baseVariant===\"zTRPT6hvJ\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"gDR1GmFeN-hover\")return true;if(baseVariant===\"gDR1GmFeN\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"gDR1GmFeN-hover\")return false;if(baseVariant===\"gDR1GmFeN\")return false;return true;};const isDisplayed4=()=>{if([\"zTRPT6hvJ-pressed\",\"zTRPT6hvJ-hover\"].includes(gestureVariant))return false;if(baseVariant===\"zTRPT6hvJ\")return false;return true;};const isDisplayed5=()=>{if([\"zTRPT6hvJ-pressed\",\"zTRPT6hvJ-hover\"].includes(gestureVariant))return false;if([\"zTRPT6hvJ\",\"bvzOIhx06\"].includes(baseVariant))return false;return true;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(A3j2_NnFs,{dateStyle:\"medium\",locale:\"pt-BR\"},activeLocaleCode);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:iTWADHo7d,nodeId:\"t4pLvMY5Q\",smoothScroll:true,...addPropertyOverrides({RGzGYqwLM:{href:vVcroSUuC},zTRPT6hvJ:{href:EdoR5fjmK}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1fptzx7\",className,classNames)} framer-1431768`,\"data-border\":true,\"data-framer-cursor\":b9rsAYzfQ,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"t4pLvMY5Q\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(115, 115, 115, 0.37)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"none\",...style},variants:{\"RGzGYqwLM-hover\":{boxShadow:\"none\"},\"t4pLvMY5Q-hover\":{boxShadow:\"none\"},\"zTRPT6hvJ-hover\":{backgroundColor:\"rgb(255, 222, 204)\"},\"zTRPT6hvJ-pressed\":{backgroundColor:\"var(--token-492246bc-541d-4174-a090-7ec4ac97510b, rgb(255, 255, 255))\"},bvzOIhx06:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},gDR1GmFeN:{backgroundColor:\"var(--token-1d77b891-7947-4ac5-9ad2-67828441cbd6, rgb(255, 255, 255))\",boxShadow:\"none\"},zTRPT6hvJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9ee90875-3d85-4b49-acd2-61cc1bbab3c3, rgb(255, 255, 255))\",boxShadow:\"0px 1px 2px 0px rgba(0,0,0,0.25)\"}},...addPropertyOverrides({\"gDR1GmFeN-hover\":{\"data-framer-name\":undefined},\"RGzGYqwLM-hover\":{\"data-framer-name\":undefined},\"t4pLvMY5Q-hover\":{\"data-framer-name\":undefined},\"zTRPT6hvJ-hover\":{\"data-framer-name\":undefined},\"zTRPT6hvJ-pressed\":{\"data-framer-name\":undefined},bvzOIhx06:{\"data-framer-name\":\"Variant 4\"},gDR1GmFeN:{\"data-framer-name\":\"Menu lateral\"},RGzGYqwLM:{\"data-framer-cursor\":EQ5JpLptX,\"data-framer-name\":\"Locked\"},zTRPT6hvJ:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z4zout\",layoutDependency:layoutDependency,layoutId:\"Up5ippax0\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6hy1f\",\"data-framer-name\":\"Photo Stack\",layoutDependency:layoutDependency,layoutId:\"QR5QgNZBS\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(xqUglY9Ez)},className:\"framer-flpd77\",layoutDependency:layoutDependency,layoutId:\"OpLcOJBED\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"RGzGYqwLM-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"t4pLvMY5Q-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"zTRPT6hvJ-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"zTRPT6hvJ-pressed\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},bvzOIhx06:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},gDR1GmFeN:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"zTRPT6hvJ-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+5+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 10px, 1px)`,...toResponsiveImage(xqUglY9Ez)}},bvzOIhx06:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} * 0.4058, 1px)`,...toResponsiveImage(xqUglY9Ez)}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qn4533\",\"data-framer-name\":\"Lock Stack\",layoutDependency:layoutDependency,layoutId:\"bC6K1_ol_\",style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},variants:{\"t4pLvMY5Q-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},bvzOIhx06:{backgroundColor:\"rgba(0, 0, 0, 0)\"},gDR1GmFeN:{backgroundColor:\"rgba(0, 0, 0, 0)\"},RGzGYqwLM:{backgroundColor:\"rgba(38, 38, 38, 0.75)\"},zTRPT6hvJ:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5zvxb\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"CNhejMbBz\",transformTemplate:transformTemplate1,children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"60px\",y:(componentViewport?.y||0)+0+0+0+0+0+87.00000000000006+0+0,...addPropertyOverrides({\"zTRPT6hvJ-pressed\":{y:(componentViewport?.y||0)+5+0+0+0+0+87.00000000000006+0+0},bvzOIhx06:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-155f351-container\",layoutDependency:layoutDependency,layoutId:\"ll6aMGKP8-container\",children:/*#__PURE__*/_jsx(Play,{height:\"100%\",id:\"ll6aMGKP8\",layoutId:\"ll6aMGKP8\",style:{height:\"100%\",width:\"100%\"},variant:\"Eihmuba8M\",width:\"100%\",...addPropertyOverrides({\"gDR1GmFeN-hover\":{variant:\"ctosRDY2u\"},\"t4pLvMY5Q-hover\":{variant:\"ctosRDY2u\"},\"zTRPT6hvJ-hover\":{variant:\"ctosRDY2u\"},\"zTRPT6hvJ-pressed\":{variant:\"ctosRDY2u\"},RGzGYqwLM:{variant:\"z3z62SMqc\"}},baseVariant,gestureVariant)})})})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2hg6i4\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"nLOGZk_83\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4176pv\",layoutDependency:layoutDependency,layoutId:\"swV4nUbNQ\",children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a1tvg5\",\"data-styles-preset\":\"Weuk36qOm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(82, 116, 255)))\"},children:\"Category / date\"})}),className:\"framer-1ip6656\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ev2y6DRZL\",style:{\"--extracted-r6o4lv\":\"var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(82, 116, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lNNmXc5RI,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i55i97\",\"data-framer-name\":\"Video Title\",layoutDependency:layoutDependency,layoutId:\"QpiL6nzUu\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jznn88\",layoutDependency:layoutDependency,layoutId:\"CRHj2EYO1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e54skt\",\"data-styles-preset\":\"ro387skeA\",children:\"Getting Started Copy\"})}),className:\"framer-hdhz7l\",\"data-framer-name\":\"Video Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rqdKGpqGg\",text:FlcfA6b8n,variants:{zTRPT6hvJ:{\"--extracted-r6o4lv\":\"var(--token-1d77b891-7947-4ac5-9ad2-67828441cbd6, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bvzOIhx06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Title\"})})},gDR1GmFeN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-113fewu\",\"data-styles-preset\":\"w_A1P0q8O\",children:\"Title\"})})},zTRPT6hvJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e54skt\",\"data-styles-preset\":\"ro387skeA\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1d77b891-7947-4ac5-9ad2-67828441cbd6, rgb(0, 0, 0)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:\"#Solidworks #Projetos #Engenharia\"})}),className:\"framer-pd145w\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"TDE8EoA_a\",style:{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13s633s\",layoutDependency:layoutDependency,layoutId:\"qjlkCWzvV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+117.99999999999999+0+0),sizes:\"43px\",...toResponsiveImage(RipFRC0Ww),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-hpgaf2\",\"data-framer-name\":\"Category Image\",layoutDependency:layoutDependency,layoutId:\"PYtCuH2gh\",style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},...addPropertyOverrides({\"zTRPT6hvJ-pressed\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+5+0+2+211.99999999999997+0),sizes:\"36px\",...toResponsiveImage(RipFRC0Ww),...{positionX:\"center\",positionY:\"center\"}}},bvzOIhx06:{background:{alt:\"\",fit:\"fill\",sizes:\"43px\",...toResponsiveImage(RipFRC0Ww),...{positionX:\"center\",positionY:\"center\"}}},zTRPT6hvJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+2+211.99999999999997+0),sizes:\"36px\",...toResponsiveImage(RipFRC0Ww),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mj41g1\",layoutDependency:layoutDependency,layoutId:\"JXgIooNZd\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-523487e2-4090-473f-8572-b70158c5aceb, rgb(153, 160, 174)))\"},children:\"#Solidworks #Projetos #Engenharia\"})}),className:\"framer-1dvrds0\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"Sg14XEl86\",style:{\"--extracted-r6o4lv\":\"var(--token-523487e2-4090-473f-8572-b70158c5aceb, rgb(153, 160, 174))\"},variants:{bvzOIhx06:{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bvzOIhx06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:\"#Solidworks #Projetos #Engenharia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iv4rg6\",layoutDependency:layoutDependency,layoutId:\"ZwIX8qSKf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pij5be\",\"data-framer-name\":\"Date\",layoutDependency:layoutDependency,layoutId:\"PZsMzWlWn\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ir2wvx-container\",layoutDependency:layoutDependency,layoutId:\"usposaQ0V-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarBlank\",id:\"usposaQ0V\",layoutId:\"usposaQ0V\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38)))\"},children:\"Content\"})}),className:\"framer-s4mwly\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xjC848vAX\",style:{\"--extracted-r6o4lv\":\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\"},text:textContent,variants:{bvzOIhx06:{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"},zTRPT6hvJ:{\"--extracted-r6o4lv\":\"var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bvzOIhx06:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:\"1 de jan. de 1970\"})})},zTRPT6hvJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe9ded06-f608-4919-9137-825f8ed57e50, rgb(125, 125, 125)))\"},children:\"1 de jan. de 1970\"})})}},baseVariant,gestureVariant)})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8cwgw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"jHz7_k204\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 89, 0, 0.33)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,boxShadow:\"0px 24px 64px 0px rgba(217, 217, 217, 0.48)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"100%\"},children:\"Categoria\"})}),className:\"framer-18ctcvo\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"AVbuewkS_\",text:lNNmXc5RI,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P6v9p.framer-1431768, .framer-P6v9p .framer-1431768 { display: block; }\",\".framer-P6v9p.framer-1fptzx7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 480px; will-change: var(--framer-will-change-override, transform); }\",\".framer-P6v9p .framer-z4zout { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-o6hy1f { align-content: center; align-items: center; aspect-ratio: 2 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 240px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P6v9p .framer-flpd77 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-P6v9p .framer-1qn4533 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-P6v9p .framer-1d5zvxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-P6v9p .framer-155f351-container { flex: none; height: 60px; position: relative; width: 60px; z-index: 1; }\",\".framer-P6v9p .framer-2hg6i4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-4176pv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 201px; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-1ip6656, .framer-P6v9p .framer-hdhz7l, .framer-P6v9p .framer-pd145w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-P6v9p .framer-1i55i97 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-jznn88 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-P6v9p .framer-13s633s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 24px 10px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-hpgaf2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 43px; }\",\".framer-P6v9p .framer-1mj41g1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-P6v9p .framer-1dvrds0, .framer-P6v9p .framer-s4mwly { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-P6v9p .framer-iv4rg6 { 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-P6v9p .framer-pij5be { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-P6v9p .framer-1ir2wvx-container { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-P6v9p .framer-1a8cwgw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px 13px 8px 13px; position: relative; width: min-content; }\",\".framer-P6v9p .framer-18ctcvo { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P6v9p.framer-1fptzx7, .framer-P6v9p .framer-z4zout, .framer-P6v9p .framer-o6hy1f, .framer-P6v9p .framer-1qn4533, .framer-P6v9p .framer-1d5zvxb, .framer-P6v9p .framer-2hg6i4, .framer-P6v9p .framer-4176pv, .framer-P6v9p .framer-1i55i97, .framer-P6v9p .framer-jznn88, .framer-P6v9p .framer-13s633s, .framer-P6v9p .framer-1mj41g1, .framer-P6v9p .framer-pij5be, .framer-P6v9p .framer-1a8cwgw { gap: 0px; } .framer-P6v9p.framer-1fptzx7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-P6v9p.framer-1fptzx7 > :first-child, .framer-P6v9p .framer-1d5zvxb > :first-child, .framer-P6v9p .framer-2hg6i4 > :first-child, .framer-P6v9p .framer-4176pv > :first-child, .framer-P6v9p .framer-jznn88 > :first-child, .framer-P6v9p .framer-13s633s > :first-child, .framer-P6v9p .framer-1mj41g1 > :first-child { margin-top: 0px; } .framer-P6v9p.framer-1fptzx7 > :last-child, .framer-P6v9p .framer-1d5zvxb > :last-child, .framer-P6v9p .framer-2hg6i4 > :last-child, .framer-P6v9p .framer-4176pv > :last-child, .framer-P6v9p .framer-jznn88 > :last-child, .framer-P6v9p .framer-13s633s > :last-child, .framer-P6v9p .framer-1mj41g1 > :last-child { margin-bottom: 0px; } .framer-P6v9p .framer-z4zout > *, .framer-P6v9p .framer-o6hy1f > *, .framer-P6v9p .framer-1qn4533 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-P6v9p .framer-z4zout > :first-child, .framer-P6v9p .framer-o6hy1f > :first-child, .framer-P6v9p .framer-1qn4533 > :first-child, .framer-P6v9p .framer-1i55i97 > :first-child, .framer-P6v9p .framer-pij5be > :first-child, .framer-P6v9p .framer-1a8cwgw > :first-child { margin-left: 0px; } .framer-P6v9p .framer-z4zout > :last-child, .framer-P6v9p .framer-o6hy1f > :last-child, .framer-P6v9p .framer-1qn4533 > :last-child, .framer-P6v9p .framer-1i55i97 > :last-child, .framer-P6v9p .framer-pij5be > :last-child, .framer-P6v9p .framer-1a8cwgw > :last-child { margin-right: 0px; } .framer-P6v9p .framer-1d5zvxb > *, .framer-P6v9p .framer-2hg6i4 > *, .framer-P6v9p .framer-4176pv > *, .framer-P6v9p .framer-jznn88 > *, .framer-P6v9p .framer-1mj41g1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-P6v9p .framer-1i55i97 > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-P6v9p .framer-13s633s > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-P6v9p .framer-pij5be > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-P6v9p .framer-1a8cwgw > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-P6v9p.framer-v-cn1b61 .framer-155f351-container, .framer-P6v9p.framer-v-nyayq9 .framer-pij5be, .framer-P6v9p.framer-v-sqb8xs .framer-pij5be { order: 0; }\",\".framer-P6v9p.framer-v-nyayq9.framer-1fptzx7, .framer-P6v9p.framer-v-q9waw2.framer-1fptzx7 { gap: 15px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-2hg6i4 { min-width: unset; padding: 2px 0px 14px 0px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-4176pv { flex-direction: row; min-height: unset; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-1ip6656 { flex: 1 0 0px; width: 1px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-13s633s { align-content: center; align-items: center; flex-direction: row; padding: 0px 24px 0px 10px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-hpgaf2 { height: var(--framer-aspect-ratio-supported, 36px); width: 36px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-1mj41g1 { flex: 1 0 0px; gap: 6px; justify-content: flex-start; width: 1px; }\",\".framer-P6v9p.framer-v-nyayq9 .framer-iv4rg6 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P6v9p.framer-v-nyayq9.framer-1fptzx7, .framer-P6v9p.framer-v-nyayq9 .framer-4176pv, .framer-P6v9p.framer-v-nyayq9 .framer-13s633s, .framer-P6v9p.framer-v-nyayq9 .framer-1mj41g1 { gap: 0px; } .framer-P6v9p.framer-v-nyayq9.framer-1fptzx7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-P6v9p.framer-v-nyayq9.framer-1fptzx7 > :first-child, .framer-P6v9p.framer-v-nyayq9 .framer-1mj41g1 > :first-child { margin-top: 0px; } .framer-P6v9p.framer-v-nyayq9.framer-1fptzx7 > :last-child, .framer-P6v9p.framer-v-nyayq9 .framer-1mj41g1 > :last-child { margin-bottom: 0px; } .framer-P6v9p.framer-v-nyayq9 .framer-4176pv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-P6v9p.framer-v-nyayq9 .framer-4176pv > :first-child, .framer-P6v9p.framer-v-nyayq9 .framer-13s633s > :first-child { margin-left: 0px; } .framer-P6v9p.framer-v-nyayq9 .framer-4176pv > :last-child, .framer-P6v9p.framer-v-nyayq9 .framer-13s633s > :last-child { margin-right: 0px; } .framer-P6v9p.framer-v-nyayq9 .framer-13s633s > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-P6v9p.framer-v-nyayq9 .framer-1mj41g1 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-P6v9p.framer-v-sqb8xs.framer-1fptzx7 { cursor: unset; flex-direction: row; gap: 15px; height: 226px; width: 1104px; }\",\".framer-P6v9p.framer-v-sqb8xs .framer-z4zout { height: 79%; width: 41%; }\",\".framer-P6v9p.framer-v-sqb8xs .framer-o6hy1f, .framer-P6v9p.framer-v-sqb8xs .framer-flpd77 { height: var(--framer-aspect-ratio-supported, 224px); }\",\".framer-P6v9p.framer-v-sqb8xs .framer-2hg6i4 { flex: 1 0 0px; padding: 2px 0px 14px 0px; width: 1px; }\",\".framer-P6v9p.framer-v-sqb8xs .framer-13s633s { align-content: flex-end; align-items: flex-end; flex-direction: row; padding: 0px 24px 0px 10px; }\",\".framer-P6v9p.framer-v-sqb8xs .framer-1mj41g1 { flex: 1 0 0px; gap: 0px; justify-content: flex-start; width: 1px; }\",\".framer-P6v9p.framer-v-sqb8xs .framer-1dvrds0 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P6v9p.framer-v-sqb8xs.framer-1fptzx7, .framer-P6v9p.framer-v-sqb8xs .framer-13s633s, .framer-P6v9p.framer-v-sqb8xs .framer-1mj41g1 { gap: 0px; } .framer-P6v9p.framer-v-sqb8xs.framer-1fptzx7 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-P6v9p.framer-v-sqb8xs.framer-1fptzx7 > :first-child, .framer-P6v9p.framer-v-sqb8xs .framer-13s633s > :first-child { margin-left: 0px; } .framer-P6v9p.framer-v-sqb8xs.framer-1fptzx7 > :last-child, .framer-P6v9p.framer-v-sqb8xs .framer-13s633s > :last-child { margin-right: 0px; } .framer-P6v9p.framer-v-sqb8xs .framer-13s633s > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-P6v9p.framer-v-sqb8xs .framer-1mj41g1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-P6v9p.framer-v-sqb8xs .framer-1mj41g1 > :first-child { margin-top: 0px; } .framer-P6v9p.framer-v-sqb8xs .framer-1mj41g1 > :last-child { margin-bottom: 0px; } }\",\".framer-P6v9p.framer-v-q9waw2 .framer-o6hy1f { height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-P6v9p.framer-v-q9waw2 .framer-flpd77 { height: var(--framer-aspect-ratio-supported, 234px); }\",\".framer-P6v9p.framer-v-q9waw2 .framer-2hg6i4 { padding: 2px 0px 5px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P6v9p.framer-v-q9waw2.framer-1fptzx7 { gap: 0px; } .framer-P6v9p.framer-v-q9waw2.framer-1fptzx7 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-P6v9p.framer-v-q9waw2.framer-1fptzx7 > :first-child { margin-top: 0px; } .framer-P6v9p.framer-v-q9waw2.framer-1fptzx7 > :last-child { margin-bottom: 0px; } }\",\".framer-P6v9p.framer-v-cn1b61.hover .framer-1d5zvxb { min-height: 72px; min-width: 72px; }\",\".framer-P6v9p.framer-v-nyayq9.pressed.framer-1fptzx7 { padding: 5px; }\",\".framer-P6v9p.framer-v-nyayq9.pressed .framer-o6hy1f, .framer-P6v9p.framer-v-nyayq9.pressed .framer-flpd77 { height: var(--framer-aspect-ratio-supported, 235px); }\",\".framer-P6v9p.framer-v-nyayq9.pressed .framer-2hg6i4, .framer-P6v9p.framer-v-nyayq9.hover .framer-2hg6i4 { min-width: unset; }\",\".framer-P6v9p.framer-v-nyayq9.pressed .framer-4176pv, .framer-P6v9p.framer-v-nyayq9.hover .framer-4176pv { min-height: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-P6v9p[data-border=\"true\"]::after, .framer-P6v9p [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 434\n * @framerIntrinsicWidth 480\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RGzGYqwLM\":{\"layout\":[\"fixed\",\"auto\"]},\"zTRPT6hvJ\":{\"layout\":[\"fixed\",\"auto\"]},\"bvzOIhx06\":{\"layout\":[\"fixed\",\"fixed\"]},\"gDR1GmFeN\":{\"layout\":[\"fixed\",\"auto\"]},\"XcsA2wMmp\":{\"layout\":[\"fixed\",\"auto\"]},\"l0LTYcMzi\":{\"layout\":[\"fixed\",\"auto\"]},\"oIG7tiWqd\":{\"layout\":[\"fixed\",\"auto\"]},\"clUa1nI48\":{\"layout\":[\"fixed\",\"auto\"]},\"jlBQqzRlL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"iTWADHo7d\":\"default1\",\"xqUglY9Ez\":\"image\",\"FlcfA6b8n\":\"title\",\"A3j2_NnFs\":\"date\",\"vVcroSUuC\":\"locked\",\"b9rsAYzfQ\":\"cursorPlay\",\"EQ5JpLptX\":\"cursorLock\",\"lNNmXc5RI\":\"categoria\",\"RipFRC0Ww\":\"autor\",\"EdoR5fjmK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb31dn3bCo=withCSS(Component,css,\"framer-P6v9p\");export default Framerb31dn3bCo;Framerb31dn3bCo.displayName=\"Video Card\";Framerb31dn3bCo.defaultProps={height:434,width:480};addPropertyControls(Framerb31dn3bCo,{variant:{options:[\"t4pLvMY5Q\",\"RGzGYqwLM\",\"zTRPT6hvJ\",\"bvzOIhx06\",\"gDR1GmFeN\"],optionTitles:[\"Default\",\"Locked\",\"Variant 3\",\"Variant 4\",\"Menu lateral\"],title:\"Variant\",type:ControlType.Enum},iTWADHo7d:{title:\"Default\",type:ControlType.Link},xqUglY9Ez:{__defaultAssetReference:\"data:framer/asset-reference,WBmp3IgmU4ACV3Ya6du6fJLgA.jpg?originalFilename=photo-1563291074-2bf8677ac0e5%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0MXx8YmFja2dyb3VuZHxlbnwwfHx8fDE3MDY4NzI5NDV8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},FlcfA6b8n:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},A3j2_NnFs:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},vVcroSUuC:{title:\"Locked\",type:ControlType.Link},b9rsAYzfQ:{title:\"Cursor Play\",type:ControlType.CustomCursor},EQ5JpLptX:{title:\"Cursor Lock\",type:ControlType.CustomCursor},lNNmXc5RI:{defaultValue:\"Categoria\",displayTextArea:false,title:\"Categoria\",type:ControlType.String},RipFRC0Ww:{title:\"Autor \",type:ControlType.ResponsiveImage},EdoR5fjmK:{title:\"Link\",type:ControlType.Link}});addFonts(Framerb31dn3bCo,[{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...PlayFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb31dn3bCo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"iTWADHo7d\\\":\\\"default1\\\",\\\"xqUglY9Ez\\\":\\\"image\\\",\\\"FlcfA6b8n\\\":\\\"title\\\",\\\"A3j2_NnFs\\\":\\\"date\\\",\\\"vVcroSUuC\\\":\\\"locked\\\",\\\"b9rsAYzfQ\\\":\\\"cursorPlay\\\",\\\"EQ5JpLptX\\\":\\\"cursorLock\\\",\\\"lNNmXc5RI\\\":\\\"categoria\\\",\\\"RipFRC0Ww\\\":\\\"autor\\\",\\\"EdoR5fjmK\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"434\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"480\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RGzGYqwLM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zTRPT6hvJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bvzOIhx06\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gDR1GmFeN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XcsA2wMmp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l0LTYcMzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oIG7tiWqd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"clUa1nI48\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jlBQqzRlL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (13d9867)\nimport{jsx as _jsx}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{withVariant}from\"https://framerusercontent.com/modules/FPlCx2QflQRQTqOO0HfZ/ilbr75Jabr85E7TOwtV5/FramerAuth.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithVariant=withVariant(motion.div);const cycleOrder=[\"Eihmuba8M\",\"cQPUlgvHn\",\"z3z62SMqc\",\"ctosRDY2u\"];const serializationHash=\"framer-XzFXe\";const variantClassNames={cQPUlgvHn:\"framer-v-1p9ev33\",ctosRDY2u:\"framer-v-d4wyla\",Eihmuba8M:\"framer-v-14ngo7y\",z3z62SMqc:\"framer-v-126yc1o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Lock Open\":\"cQPUlgvHn\",\"Variant 4\":\"ctosRDY2u\",Default:\"Eihmuba8M\",Lock:\"z3z62SMqc\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Eihmuba8M\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Eihmuba8M\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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(MotionDivWithVariant,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14ngo7y\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Eihmuba8M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.75)\",borderBottomLeftRadius:240,borderBottomRightRadius:240,borderTopLeftRadius:240,borderTopRightRadius:240,boxShadow:\"0px 0px 20px 0px rgba(0, 0, 0, 0.1)\",...style},variants:{ctosRDY2u:{backgroundColor:\"rgba(255, 255, 255, 0.99)\",boxShadow:\"0px 0px 20px 0px var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(255, 91, 1))\"}},...addPropertyOverrides({cQPUlgvHn:{\"data-framer-name\":\"Lock Open\"},ctosRDY2u:{\"data-framer-name\":\"Variant 4\"},z3z62SMqc:{\"data-framer-name\":\"Lock\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pfs2l8-container\",layoutDependency:layoutDependency,layoutId:\"bmvDO8doM-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-806a3e8b-537f-422d-88d8-4b9f1a8fbacd, rgb(38, 38, 38))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"bmvDO8doM\",layoutId:\"bmvDO8doM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({cQPUlgvHn:{iconSelection:\"LockSimpleOpen\"},ctosRDY2u:{color:\"var(--token-e786d274-1fd4-44b2-8bb2-53d1a18b7911, rgb(255, 91, 1))\"},z3z62SMqc:{iconSelection:\"LockSimple\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XzFXe.framer-ola93b, .framer-XzFXe .framer-ola93b { display: block; }\",\".framer-XzFXe.framer-14ngo7y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XzFXe .framer-1pfs2l8-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XzFXe.framer-14ngo7y { gap: 0px; } .framer-XzFXe.framer-14ngo7y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XzFXe.framer-14ngo7y > :first-child { margin-left: 0px; } .framer-XzFXe.framer-14ngo7y > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cQPUlgvHn\":{\"layout\":[\"fixed\",\"fixed\"]},\"z3z62SMqc\":{\"layout\":[\"fixed\",\"fixed\"]},\"ctosRDY2u\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBymg77_tA=withCSS(Component,css,\"framer-XzFXe\");export default FramerBymg77_tA;FramerBymg77_tA.displayName=\"Play\";FramerBymg77_tA.defaultProps={height:60,width:60};addPropertyControls(FramerBymg77_tA,{variant:{options:[\"Eihmuba8M\",\"cQPUlgvHn\",\"z3z62SMqc\",\"ctosRDY2u\"],optionTitles:[\"Default\",\"Lock Open\",\"Lock\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBymg77_tA,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBymg77_tA\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cQPUlgvHn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z3z62SMqc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ctosRDY2u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"60\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Bymg77_tA.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useRouter,inferInitialRouteFromPath}from\"framer\";import{auth}from\"https://cdn.framerauth.com/scripts/framerauth-sdk@beta.js\";const useStore=createStore({user:null,isAuthenticated:false,isLoaded:false});export function withAuth(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{if(!store.isAuthenticated){auth.getUser({cache:false}).then(({data,error})=>{const{user}=data;if(user){setStore({user:user,isAuthenticated:true,isLoaded:true});}else{setStore({isLoaded:true});}});}},[]);return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withStore(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withSignOut(Component){const handleClick=()=>{auth.signOut(\"/\");};return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withEmail(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.email});};}export function withFirstName(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.first_name});};}export function withLoggedIn(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withLoggedOut(Component){return props=>{const[store]=useStore();if(store.user)return null;let className=props.className||\"\";if(!store.isLoaded){className+=\" fa-cloak\";}return /*#__PURE__*/_jsx(Component,{...props,className:className.trim()});};}export function withVariant(Component){return props=>{const[store]=useStore();const variant=store.user?null:props===null||props===void 0?void 0:props.variant;return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};}export function withIsLessonComplete(Component){return props=>{var _store_user_data,_store_user;const[store,setStore]=useStore();// Do not display the component if the user is logged out\nif(!store.user)return null;const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;const isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";if(!isCompleted)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withActionCompleteLesson(Component){return props=>{var _store_user_data,_store_user;const router=useRouter();const[store,setStore]=useStore();const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;let isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";// Do not display the component if the user is logged out\nif(!store.user)return null;// Define an async function handleClick to handle the click event.\nconst handleClick=async event=>{try{// If the lesson has been completed exit the function\nif(isCompleted)return;// Update the components local state (for instant UI update)\nisCompleted=true;// Call the FramerAuth API to update the user data, marking the course as completed.\nconst{data,error}=await auth.patchUserData({[key]:\"completed\"});// If there is an error throw it.\nif(error){throw new Error(\"Error updating course status.\");}// If there is no error, update the user data in the store with the updated data.\nconst updatedUser={...store.user,data};setStore({user:updatedUser});// If there is a link, redirect the user.\nif(props===null||props===void 0?void 0:props.link){const[path,hash]=props.link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}}}catch(error){console.error(error);isCompleted=false;}};// Set the variant based on the completed state\nconst variant=isCompleted?props===null||props===void 0?void 0:props.variant:null;// Render the original component with the modified props and onClick handler.\nreturn /*#__PURE__*/_jsx(Component,{...props,variant:variant,onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withLoggedIn\":{\"type\":\"reactHoc\",\"name\":\"withLoggedIn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withStore\":{\"type\":\"reactHoc\",\"name\":\"withStore\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withActionCompleteLesson\":{\"type\":\"reactHoc\",\"name\":\"withActionCompleteLesson\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFirstName\":{\"type\":\"reactHoc\",\"name\":\"withFirstName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAuth\":{\"type\":\"reactHoc\",\"name\":\"withAuth\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEmail\":{\"type\":\"reactHoc\",\"name\":\"withEmail\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIsLessonComplete\":{\"type\":\"reactHoc\",\"name\":\"withIsLessonComplete\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSignOut\":{\"type\":\"reactHoc\",\"name\":\"withSignOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withVariant\":{\"type\":\"reactHoc\",\"name\":\"withVariant\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoggedOut\":{\"type\":\"reactHoc\",\"name\":\"withLoggedOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerAuth.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "useStore", "createStore", "withVariant", "Component", "props", "store", "useStore", "variant", "p", "b31dn3bCo_exports", "__export", "__FramerMetadata__", "b31dn3bCo_default", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "useStore", "createStore", "withVariant", "Component", "props", "store", "useStore", "variant", "p", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithVariant", "withVariant", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerBymg77_tA", "withCSS", "Bymg77_tA_default", "addPropertyControls", "ControlType", "addFonts", "PlayFonts", "getFonts", "Bymg77_tA_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "autor", "categoria", "cursorLock", "cursorPlay", "default1", "height", "id", "image", "link", "locked", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "iTWADHo7d", "xqUglY9Ez", "FlcfA6b8n", "A3j2_NnFs", "vVcroSUuC", "b9rsAYzfQ", "EQ5JpLptX", "lNNmXc5RI", "RipFRC0Ww", "EdoR5fjmK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "Framerb31dn3bCo", "withCSS", "b31dn3bCo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
