{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/kYCELkonkbusHgeD8uZn/81h4pvbGAeEzTV3u5LRV/C1F_IGQer.js", "ssg:https://framerusercontent.com/modules/5W4pRuz8JX4HUp6TBWFR/670vt0GvuNNaNO1Ql72B/I821SrwXh.js", "ssg:https://framerusercontent.com/modules/03pQZpIPfWgODE8XaYpF/tB55OLcaUO0aZXXS6Ic3/y3g78iBfU.js", "ssg:https://framerusercontent.com/modules/WfTNSpRvgyFyOMXAVD8X/6u00tFWJxIudsuJvmPqh/M1qWU1f1s.js", "ssg:https://framerusercontent.com/modules/T5zU75Ghhov9abIafW8C/Z0F8r9wuWRUXhhfMVzUu/yGQ8F3sjP.js", "ssg:https://framerusercontent.com/modules/hSWQXcBEcF6Orx5UksVw/lmzWheT9WXCzHTRQJ14g/pcWuwzkC9.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (662ecd5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Display Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Pro Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pP8jGDD2pYcPsFhEVhEaEJMaxII.woff2\"}]}];export const css=['.framer-0OiwV .framer-styles-preset-1a3to1n:not(.rich-text-wrapper), .framer-0OiwV .framer-styles-preset-1a3to1n.rich-text-wrapper p { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 2413px) and (min-width: 1440px) { .framer-0OiwV .framer-styles-preset-1a3to1n:not(.rich-text-wrapper), .framer-0OiwV .framer-styles-preset-1a3to1n.rich-text-wrapper p { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1194px) { .framer-0OiwV .framer-styles-preset-1a3to1n:not(.rich-text-wrapper), .framer-0OiwV .framer-styles-preset-1a3to1n.rich-text-wrapper p { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1193px) and (min-width: 744px) { .framer-0OiwV .framer-styles-preset-1a3to1n:not(.rich-text-wrapper), .framer-0OiwV .framer-styles-preset-1a3to1n.rich-text-wrapper p { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 743px) and (min-width: 0px) { .framer-0OiwV .framer-styles-preset-1a3to1n:not(.rich-text-wrapper), .framer-0OiwV .framer-styles-preset-1a3to1n.rich-text-wrapper p { --framer-font-family: \"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-0OiwV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kYCELkonkbusHgeD8uZn/81h4pvbGAeEzTV3u5LRV/C1F_IGQer.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/U2ODo4PIwWZGJ1tDf2O2/vAKbeSqHac17HC2gx1wl/oi9EPRecV.js\";const VideoFonts=getFonts(Video);const MaterialFonts=getFonts(Material);const cycleOrder=[\"cRb7j8gBW\",\"sCNHAhAVr\"];const serializationHash=\"framer-znjFH\";const variantClassNames={cRb7j8gBW:\"framer-v-qvgiih\",sCNHAhAVr:\"framer-v-1jxbp72\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"cRb7j8gBW\",\"Variant 2\":\"sCNHAhAVr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cRb7j8gBW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cRb7j8gBW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqhpvka=activeVariantCallback(async(...args)=>{setVariant(\"sCNHAhAVr\");});const onTapq82t9m=activeVariantCallback(async(...args)=>{setVariant(\"cRb7j8gBW\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"sCNHAhAVr\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"sCNHAhAVr\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qvgiih\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"cRb7j8gBW\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(240, 238, 238)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",...style},...addPropertyOverrides({sCNHAhAVr:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bqank8\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rbYhK_Zax\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgba(255, 255, 255, 0.95)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",background:\"linear-gradient(90deg, rgb(53, 186, 0) 40%, rgb(204, 204, 204) 211%)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:6,boxShadow:\"2px 2px 5px 0px rgba(0, 0, 0, 0.37)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mayo 2025\"})}),className:\"framer-14xu7t8\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Bhj_99vQk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mok2c0\",layoutDependency:layoutDependency,layoutId:\"sQB41GBNP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iv1c42-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WufNKGIzZ-container\",nodeId:\"WufNKGIzZ\",rendersWithMotion:true,scopeId:\"I821SrwXh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"WufNKGIzZ\",isMixedBorderRadius:false,layoutId:\"WufNKGIzZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/jEfqvpXDYeARJWMdaKhy0XE24Q.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:21.8,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e7jzih\",\"data-framer-name\":\"Secci\\xf3n Problema\",layoutDependency:layoutDependency,layoutId:\"tfhe6u6q4\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:[\"Sthal, una f\\xe1brica de trailers y distintos tipos de accesorios y agregados para camiones, gestionaba su producci\\xf3n mediante formularios impresos y hojas de Excel separadas para cada estaci\\xf3n de trabajo. Los pedidos se registraban a mano, luego se transcrib\\xedan, a un pizarr\\xf3n y el seguimiento se realizaba de forma visual entre operarios y encargados.\",/*#__PURE__*/_jsx(motion.br,{}),\"Este sistema dificultaba la trazabilidad, generaba errores frecuentes y depend\\xeda demasiado de la experiencia de cada operario, adem\\xe1s no exist\\xed a un sistema de comunicaci\\xf3n claro y estandarizado entre los operarios y los jefes de producci\\xf3n con respecto a las ordenes de trabajo. \"]})}),className:\"framer-1su9qoo\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"McVgiKoEZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15gc937\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"qc6uNro1A\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Text Black\", \"SF Pro Text Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El problema\"})}),className:\"framer-1ec8i1d\",fonts:[\"CUSTOM;SF Pro Text Black\"],layoutDependency:layoutDependency,layoutId:\"uo3TuM1dq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif'},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Fragmentaci\\xf3n, errores y dependencia del papel\"})})}),className:\"framer-iyjt72\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"j8B5g3xc2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j0c1jg\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"zLVG_wYl6\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{sCNHAhAVr:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wrba4m-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vk30SBaI6-container\",nodeId:\"vk30SBaI6\",rendersWithMotion:true,scopeId:\"I821SrwXh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,controls:false,height:\"100%\",id:\"vk30SBaI6\",isMixedBorderRadius:false,layoutId:\"vk30SBaI6\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/jEfqvpXDYeARJWMdaKhy0XE24Q.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:34,style:{height:\"100%\",width:\"100%\"},topLeftRadius:6,topRightRadius:6,volume:25,width:\"100%\",...addPropertyOverrides({sCNHAhAVr:{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,topLeftRadius:12,topRightRadius:12}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hlw9bg\",\"data-framer-name\":\"Secci\\xf3n Rol\",layoutDependency:layoutDependency,layoutId:\"nMzZPcOUb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Fui responsable de analizar el flujo real de trabajo, identificar los puntos cr\\xedticos del sistema actual, y dise\\xf1ar una soluci\\xf3n digital adaptada a los usuarios y sus necesidades.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(0, 0, 0))\"},children:\"Durante todo este proceso convers\\xe9 con trabajadores y gerentes de la f\\xe1brica para relevar el funcionamiento actual y sus necesidades. Gener\\xe9 propuestas de dise\\xf1o, arquitectura, flujos, jerarqu\\xedas, secciones y men\\xfaes, que prototip\\xe9 y posteriormente testeamos. Estos primeros prototipos fueron en Figma, luego en Framer y finalmente en v0 + Supabase para el backend. \"})]}),className:\"framer-1172zl8\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TIHqsxLzM\",style:{\"--extracted-2gxw0f\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lbvm68\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"yQ_NkSfhq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Text Black\", \"SF Pro Text Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Mi Rol\"})}),className:\"framer-1jy3j0o\",fonts:[\"CUSTOM;SF Pro Text Black\"],layoutDependency:layoutDependency,layoutId:\"c5SB4QIXG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif'},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dise\\xf1ador de producto\"})})}),className:\"framer-8vzh7a\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"OMepbFHfI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1056la5\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"EJhDkqwcE\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18ptrgq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sKl2uEFs1-container\",nodeId:\"sKl2uEFs1\",rendersWithMotion:true,scopeId:\"I821SrwXh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"sKl2uEFs1\",isMixedBorderRadius:false,layoutId:\"sKl2uEFs1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/wx0nuJ2US1TOVEutSGjPplQbZA.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:34,style:{width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mff0uw\",\"data-framer-name\":\"Secci\\xf3n Impacto\",layoutDependency:layoutDependency,layoutId:\"BtQwbOAZ9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"La digitalizaci\\xf3n permiti\\xf3 centralizar la informaci\\xf3n, reducir errores humanos y mejorar la trazabilidad de cada pedido en producci\\xf3n. Aunque a\\xfan est\\xe1 en etapa de validaci\\xf3n, los beneficios ya son tangibles:\"}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:[/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Reducci\\xf3n del tiempo para registrar un pedido y comunicarlo al equipo de trabajo: \"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"de ~15 min a ~2 min.\"})})]}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Eliminaci\\xf3n del papel en el registro inicial y seguimiento.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Visibilidad total del estado de cada pieza de cualquier estaci\\xf3n y el desempe\\xf1o de la fabrica en \",/*#__PURE__*/_jsx(motion.strong,{children:\"tiempo real.\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Mayor autonom\\xeda operativa para los operarios. \"})})]})]}),className:\"framer-1qrhvhp\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"tVi88o1tl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gj69tm\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"TITYiA8aY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Text Black\", \"SF Pro Text Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El Impacto\"})}),className:\"framer-4mrp9w\",fonts:[\"CUSTOM;SF Pro Text Black\"],layoutDependency:layoutDependency,layoutId:\"Pv_RolbTU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif'},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Un proceso m\\xe1s ordenado, trazable y sin papel\"})})}),className:\"framer-1t21gsq\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"zbYk2VnlI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18p2u4q\",\"data-framer-name\":\"Secci\\xf3n Soluci\\xf3n\",layoutDependency:layoutDependency,layoutId:\"veO9_ima5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Dise\\xf1\\xe9 una interfaz clara para los operarios, los administrativos y los encargados, donde pueden ver los pedidos asignados a cada estaci\\xf3n, registrar avances y agregar notas. El administrador puede ingresar pedidos desde un formulario, asignar piezas a estaciones y aprobar el avance de cada etapa.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"La soluci\\xf3n respeta el modelo mental de los usuarios y traduce la l\\xf3gica operativa en pantallas accesibles desde cualquier dispositivo con navegador.\"})]}),className:\"framer-1bedszx\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FjS9AG8Ly\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yx1ftx\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"dnmND3CSn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Text Black\", \"SF Pro Text Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"La Soluci\\xf3n\"})}),className:\"framer-1uoyeh5\",fonts:[\"CUSTOM;SF Pro Text Black\"],layoutDependency:layoutDependency,layoutId:\"vNb4RH6eR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif'},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Una app web simple y centrada en los usuarios\"})})}),className:\"framer-t4nwaf\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"ebvaWSD2Z\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yeiowx\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"xrS2vW1ld\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3z64io-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"B41_vetij-container\",nodeId:\"B41_vetij\",rendersWithMotion:true,scopeId:\"I821SrwXh\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"B41_vetij\",isMixedBorderRadius:false,layoutId:\"B41_vetij\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fd2xq5QQ5AJhQmgJz1nc6hq99U.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c6dhrm\",\"data-framer-name\":\"Secci\\xf3n Proceso\",layoutDependency:layoutDependency,layoutId:\"NAOZ0AEnD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Comenc\\xe9 con entrevistas al cliente para comprender el flujo productivo y los diferentes tipos de usuarios. A partir de ah\\xed, document\\xe9 el proceso actual y propuse una estructura digital que respete la estructura de tres etapas por estaci\\xf3n, cuatro estaciones de trabajo y los diferentes estados posibles para cada pedido.\"}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:[\"Luego dise\\xf1\\xe9 flujos diferenciados para operarios y administradores, un mapa de sitio y una base de datos relacional .\",/*#__PURE__*/_jsx(motion.br,{}),\"Todo el proceso fue iterativo, adapt\\xe1ndome a la l\\xf3gica de producci\\xf3n real y a las restricciones t\\xe9cnicas.\"]})]}),className:\"framer-4xgbor\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uSsTsDLrv\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wc9rgb\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"ERyXHPOHK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJsYWNr\",\"--framer-font-family\":'\"SF Pro Text Black\", \"SF Pro Text Black Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El Proceso\"})}),className:\"framer-1botxoy\",fonts:[\"CUSTOM;SF Pro Text Black\"],layoutDependency:layoutDependency,layoutId:\"KyX8aYAsv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Display Regular\", \"SF Pro Display Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif'},children:/*#__PURE__*/_jsx(motion.strong,{children:\"De la observaci\\xf3n al dise\\xf1o funcional\"})})}),className:\"framer-1qnwigp\",fonts:[\"CUSTOM;SF Pro Display Regular\"],layoutDependency:layoutDependency,layoutId:\"rtr7chWfd\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,pixelHeight:485,pixelWidth:980,src:\"https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png\",srcSet:\"https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png 980w\"},className:\"framer-1htjyj4\",\"data-framer-name\":\"Frame 150\",layoutDependency:layoutDependency,layoutId:\"bScvIWoMH\",...addPropertyOverrides({sCNHAhAVr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||4001)-24-4006)/2+1027.4+24)+0+415.2),pixelHeight:485,pixelWidth:980,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png\",srcSet:\"https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dkst4IIi6PDTJiQ4veXS1yRxcRk.png 980w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,pixelHeight:485,pixelWidth:481,src:\"https://framerusercontent.com/images/w9SchDGrWdDXpYWRosUqfebRk.png\"},className:\"framer-cbwxkw\",\"data-framer-name\":\"Frame 150\",layoutDependency:layoutDependency,layoutId:\"TNqhnFupJ\",...addPropertyOverrides({sCNHAhAVr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||4001)-24-4006)/2+1027.4+24)+0+709.2),pixelHeight:485,pixelWidth:481,src:\"https://framerusercontent.com/images/w9SchDGrWdDXpYWRosUqfebRk.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oh2a28\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"rJLQiIe1N\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3fmq2w\",\"data-framer-name\":\"Titulo del trabajo\",layoutDependency:layoutDependency,layoutId:\"geYdi64bK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Sistema de Gestion\"})}),className:\"framer-yykgbw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jcCkHT6cy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n8uuz8\",layoutDependency:layoutDependency,layoutId:\"diinNomWo\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i3h8kg\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xzOwV3aQj\",onTap:onTapqhpvka,style:{\"--border-bottom-width\":\"0.1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0.1px\",\"--border-right-width\":\"0.1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({sCNHAhAVr:{onTap:onTapq82t9m}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Ver caso\"})}),className:\"framer-1h8sqs8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lkGva0DR0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16duyb7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LSMtuTmAl-container\",nodeId:\"LSMtuTmAl\",rendersWithMotion:true,scopeId:\"I821SrwXh\",style:{rotate:90},variants:{sCNHAhAVr:{rotate:-90}},whileHover:animation,...addPropertyOverrides({sCNHAhAVr:{whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"LSMtuTmAl\",layoutId:\"LSMtuTmAl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-znjFH.framer-6pyoeo, .framer-znjFH .framer-6pyoeo { display: block; }\",\".framer-znjFH.framer-qvgiih { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 327px; justify-content: flex-end; max-width: 700px; min-width: 0px; overflow: hidden; padding: 10px; position: relative; width: 700px; will-change: var(--framer-will-change-override, transform); }\",\".framer-znjFH .framer-bqank8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 24px 8px 24px; position: absolute; right: 16px; top: 16px; width: min-content; z-index: 1; }\",\".framer-znjFH .framer-14xu7t8, .framer-znjFH .framer-1ec8i1d, .framer-znjFH .framer-iyjt72, .framer-znjFH .framer-1jy3j0o, .framer-znjFH .framer-8vzh7a, .framer-znjFH .framer-4mrp9w, .framer-znjFH .framer-1t21gsq, .framer-znjFH .framer-1uoyeh5, .framer-znjFH .framer-t4nwaf, .framer-znjFH .framer-1botxoy, .framer-znjFH .framer-1qnwigp, .framer-znjFH .framer-yykgbw, .framer-znjFH .framer-1h8sqs8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-znjFH .framer-1mok2c0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-znjFH .framer-iv1c42-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-znjFH .framer-e7jzih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 551px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-znjFH .framer-1su9qoo { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-znjFH .framer-15gc937 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 99px; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: 1px; }\",\".framer-znjFH .framer-1j0c1jg { align-self: stretch; flex: 1 0 0px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-znjFH .framer-1wrba4m-container { flex: none; height: 1fr; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-znjFH .framer-hlw9bg, .framer-znjFH .framer-1mff0uw, .framer-znjFH .framer-18p2u4q, .framer-znjFH .framer-1c6dhrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-znjFH .framer-1172zl8, .framer-znjFH .framer-1qrhvhp, .framer-znjFH .framer-1bedszx, .framer-znjFH .framer-4xgbor { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-znjFH .framer-lbvm68, .framer-znjFH .framer-gj69tm, .framer-znjFH .framer-1yx1ftx, .framer-znjFH .framer-wc9rgb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-znjFH .framer-1056la5, .framer-znjFH .framer-1yeiowx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 289px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-znjFH .framer-18ptrgq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-znjFH .framer-3z64io-container { aspect-ratio: 4 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 800px); }\",\".framer-znjFH .framer-1htjyj4 { flex: none; height: 282px; overflow: visible; position: relative; width: 100%; }\",\".framer-znjFH .framer-cbwxkw { flex: none; height: 398px; overflow: visible; position: relative; width: 100%; }\",\".framer-znjFH .framer-1oh2a28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-znjFH .framer-3fmq2w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-znjFH .framer-1n8uuz8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-end; min-height: 32px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-znjFH .framer-i3h8kg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-znjFH .framer-16duyb7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 25px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-znjFH.framer-v-1jxbp72.framer-qvgiih { gap: 12px; height: min-content; justify-content: center; padding: 0px 24px 24px 24px; width: 386px; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-e7jzih { flex-direction: column; min-height: unset; order: 2; padding: 0px 5px 32px 0px; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1su9qoo { flex: none; order: 1; width: 100%; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-15gc937 { flex: none; min-height: unset; order: 0; width: 100%; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1ec8i1d, .framer-znjFH.framer-v-1jxbp72 .framer-lbvm68, .framer-znjFH.framer-v-1jxbp72 .framer-gj69tm, .framer-znjFH.framer-v-1jxbp72 .framer-1yx1ftx, .framer-znjFH.framer-v-1jxbp72 .framer-wc9rgb { order: 0; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-iyjt72, .framer-znjFH.framer-v-1jxbp72 .framer-1172zl8, .framer-znjFH.framer-v-1jxbp72 .framer-1qrhvhp, .framer-znjFH.framer-v-1jxbp72 .framer-1bedszx, .framer-znjFH.framer-v-1jxbp72 .framer-4xgbor { order: 1; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1j0c1jg { align-content: center; align-items: center; align-self: unset; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 289px; justify-content: center; order: 2; overflow: hidden; padding: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1wrba4m-container { height: 100%; left: unset; position: relative; top: unset; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-hlw9bg, .framer-znjFH.framer-v-1jxbp72 .framer-cbwxkw { order: 3; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1mff0uw { order: 6; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-18p2u4q { order: 5; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1yeiowx, .framer-znjFH.framer-v-1jxbp72 .framer-1htjyj4 { order: 2; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-3z64io-container { width: var(--framer-aspect-ratio-supported, 1156px); }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1c6dhrm { order: 4; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-1oh2a28 { order: 7; padding: 0px 0px 0px 8px; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-i3h8kg { padding: 0px 0px 0px 4px; }\",\".framer-znjFH.framer-v-1jxbp72 .framer-16duyb7-container { will-change: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-znjFH[data-border=\"true\"]::after, .framer-znjFH [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 327\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"0px\",\"700px\",null,null]},\"sCNHAhAVr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"0px\",\"700px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerI821SrwXh=withCSS(Component,css,\"framer-znjFH\");export default FramerI821SrwXh;FramerI821SrwXh.displayName=\"Modelo Mobile\";FramerI821SrwXh.defaultProps={height:327,width:700};addPropertyControls(FramerI821SrwXh,{variant:{options:[\"cRb7j8gBW\",\"sCNHAhAVr\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerI821SrwXh,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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:\"SF Pro Text Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/YUcLYSubGwLHi868ez1n6KhDEE.woff2\"},{family:\"SF Pro Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pP8jGDD2pYcPsFhEVhEaEJMaxII.woff2\"}]},...VideoFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI821SrwXh\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"327\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"700\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"0px\\\",\\\"700px\\\",null,null]},\\\"sCNHAhAVr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"0px\\\",\\\"700px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./I821SrwXh.map", "// Generated by Framer (662ecd5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kYCELkonkbusHgeD8uZn/81h4pvbGAeEzTV3u5LRV/C1F_IGQer.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/U2ODo4PIwWZGJ1tDf2O2/vAKbeSqHac17HC2gx1wl/oi9EPRecV.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/F34Y3kG16dfwuRCqlPzE/txelrKue9ZGYGlqaLNRb/sMwza4aWZ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7D6Of0HVnOYp9fYsdUBz/88hb0lxBgPjXEJnn5jDb/wSRyMS98l.js\";const VideoFonts=getFonts(Video);const MaterialFonts=getFonts(Material);const cycleOrder=[\"pvgsEK_8l\",\"B3yyYa7SL\"];const serializationHash=\"framer-9UfeF\";const variantClassNames={B3yyYa7SL:\"framer-v-17zgkpe\",pvgsEK_8l:\"framer-v-1gh1jkw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"pvgsEK_8l\",\"Variant 2\":\"B3yyYa7SL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pvgsEK_8l\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pvgsEK_8l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1n1rg0f=activeVariantCallback(async(...args)=>{setVariant(\"B3yyYa7SL\");});const onTap1yk7oe4=activeVariantCallback(async(...args)=>{setVariant(\"pvgsEK_8l\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"B3yyYa7SL\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"B3yyYa7SL\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gh1jkw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pvgsEK_8l\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(240, 238, 238)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",...style},...addPropertyOverrides({B3yyYa7SL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13nmfck\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"iVvE4Pbzj\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgba(255, 255, 255, 0.95)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",background:\"linear-gradient(90deg, rgb(53, 186, 0) 40%, rgb(204, 204, 204) 211%)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:6,boxShadow:\"2px 2px 5px 0px rgba(0, 0, 0, 0.37)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mayo 2025\"})}),className:\"framer-z83umx\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Q8t8baWte\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qra7p8\",layoutDependency:layoutDependency,layoutId:\"j3eK3NtKn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bz3gsz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c1237zHwn-container\",nodeId:\"c1237zHwn\",rendersWithMotion:true,scopeId:\"y3g78iBfU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"c1237zHwn\",isMixedBorderRadius:false,layoutId:\"c1237zHwn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/jEfqvpXDYeARJWMdaKhy0XE24Q.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:21.8,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qza7o2\",\"data-framer-name\":\"Secci\\xf3n Problema\",layoutDependency:layoutDependency,layoutId:\"H9OIT_Y4T\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:[\"Sthal, una f\\xe1brica de trailers y distintos tipos de accesorios y agregados para camiones, gestionaba su producci\\xf3n mediante formularios impresos y hojas de Excel separadas para cada estaci\\xf3n de trabajo. Los pedidos se registraban a mano, luego se transcrib\\xedan, a un pizarr\\xf3n y el seguimiento se realizaba de forma visual entre operarios y encargados.\",/*#__PURE__*/_jsx(motion.br,{}),\"Este sistema dificultaba la trazabilidad, generaba errores frecuentes y depend\\xeda demasiado de la experiencia de cada operario, adem\\xe1s no exist\\xed a un sistema de comunicaci\\xf3n claro y estandarizado entre los operarios y los jefes de producci\\xf3n con respecto a las ordenes de trabajo. \"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-1sv91v5\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DQnJOu5to\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qt3hov\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"hSKt9R2wN\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El problema\"})}),className:\"framer-ja7w8u\",fonts:[\"CUSTOM;SF Pro Text Bold\"],layoutDependency:layoutDependency,layoutId:\"xzJu0BGzC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Fragmentaci\\xf3n, errores y dependencia del papel\"})})}),className:\"framer-1xn4kaf\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"v2Emqbqut\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inpkxj\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"ZnJ5hO98Y\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{B3yyYa7SL:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s70vv6-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tAWPzEIvq-container\",nodeId:\"tAWPzEIvq\",rendersWithMotion:true,scopeId:\"y3g78iBfU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:6,bottomLeftRadius:6,bottomRightRadius:6,controls:false,height:\"100%\",id:\"tAWPzEIvq\",isMixedBorderRadius:false,layoutId:\"tAWPzEIvq\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/jEfqvpXDYeARJWMdaKhy0XE24Q.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:34,style:{height:\"100%\",width:\"100%\"},topLeftRadius:6,topRightRadius:6,volume:25,width:\"100%\",...addPropertyOverrides({B3yyYa7SL:{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,style:{width:\"100%\"},topLeftRadius:12,topRightRadius:12}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vqk5kr\",\"data-framer-name\":\"Secci\\xf3n Rol\",layoutDependency:layoutDependency,layoutId:\"DXiTFNicF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Fui responsable de analizar el flujo real de trabajo, identificar los puntos cr\\xedticos del sistema actual, y dise\\xf1ar una soluci\\xf3n digital adaptada a los usuarios y sus necesidades.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(0, 0, 0))\"},children:\"Durante todo este proceso convers\\xe9 con trabajadores y gerentes de la f\\xe1brica para relevar el funcionamiento actual y sus necesidades. Gener\\xe9 propuestas de dise\\xf1o, arquitectura, flujos, jerarqu\\xedas, secciones y men\\xfaes, que prototip\\xe9 y posteriormente testeamos. Estos primeros prototipos fueron en Figma, luego en Framer y finalmente en v0. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-1seie0n\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WX_DJD_V2\",style:{\"--extracted-2gxw0f\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ds67e4\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"jIMhn37IS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Mi Rol\"})}),className:\"framer-x6attw\",fonts:[\"CUSTOM;SF Pro Text Bold\"],layoutDependency:layoutDependency,layoutId:\"v_ppZtsxN\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Dise\\xf1ador de producto\"})})}),className:\"framer-bwz1qv\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"Mv4ClZrpW\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qgwfwe\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"K4BYxHDTI\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pew1j8-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KiINU7fw0-container\",nodeId:\"KiINU7fw0\",rendersWithMotion:true,scopeId:\"y3g78iBfU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"KiINU7fw0\",isMixedBorderRadius:false,layoutId:\"KiINU7fw0\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/wx0nuJ2US1TOVEutSGjPplQbZA.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:34,style:{width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mbnjnp\",\"data-framer-name\":\"Secci\\xf3n Impacto\",layoutDependency:layoutDependency,layoutId:\"e0EOTRgrb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"La digitalizaci\\xf3n permiti\\xf3 centralizar la informaci\\xf3n, reducir errores humanos y mejorar la trazabilidad de cada pedido en producci\\xf3n. Aunque a\\xfan est\\xe1 en etapa de validaci\\xf3n, los beneficios ya son tangibles:\"}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Reducci\\xf3n del tiempo para registrar un pedido y comunicarlo al equipo de trabajo: \",/*#__PURE__*/_jsx(motion.strong,{children:\"de ~15 min a ~2 min.\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Eliminaci\\xf3n del papel en el registro inicial y seguimiento.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Visibilidad total del estado de cada pieza de cualquier estaci\\xf3n y el desempe\\xf1o de la fabrica en \",/*#__PURE__*/_jsx(motion.strong,{children:\"tiempo real.\"})]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Mayor autonom\\xeda operativa para los operarios. \"})})]})]}),className:\"framer-14q4buc\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"G3Sl7N5AJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z9q72c\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"BjFUkdz68\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El Impacto\"})}),className:\"framer-1jrt66\",fonts:[\"CUSTOM;SF Pro Text Bold\"],layoutDependency:layoutDependency,layoutId:\"QFR33W1MS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Un proceso m\\xe1s ordenado, trazable y sin papel\"})})}),className:\"framer-1gcj04v\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"y_1g85vsL\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n10iy2\",\"data-framer-name\":\"Secci\\xf3n Soluci\\xf3n\",layoutDependency:layoutDependency,layoutId:\"QBYVkWffN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Dise\\xf1\\xe9 una interfaz clara para los operarios, los administrativos y los encargados, donde pueden ver los pedidos asignados a cada estaci\\xf3n, registrar avances y agregar notas. El administrador puede ingresar pedidos desde un formulario, asignar piezas a estaciones y aprobar el avance de cada etapa.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"La soluci\\xf3n respeta el modelo mental de los usuarios y traduce la l\\xf3gica operativa en pantallas accesibles desde cualquier dispositivo con navegador.\"})]}),className:\"framer-ug3wui\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i2mL_egEL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-piclh0\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"zDeYDivVR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"La Soluci\\xf3n\"})}),className:\"framer-v9f2hg\",fonts:[\"CUSTOM;SF Pro Text Bold\"],layoutDependency:layoutDependency,layoutId:\"sREFesN0R\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Una app web simple, funcional y centrada en los usuarios\"})})}),className:\"framer-1jx8psj\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"SzrPJgrNm\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sv307f\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"PyPw_5ei_\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tr3rkh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ctB5ONJGJ-container\",nodeId:\"ctB5ONJGJ\",rendersWithMotion:true,scopeId:\"y3g78iBfU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"ctB5ONJGJ\",isMixedBorderRadius:false,layoutId:\"ctB5ONJGJ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fd2xq5QQ5AJhQmgJz1nc6hq99U.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:25,width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jvapg8\",\"data-framer-name\":\"Secci\\xf3n Proceso\",layoutDependency:layoutDependency,layoutId:\"MdVShNs7O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(0, 0, 0))\"},children:[\"Comenc\\xe9 con entrevistas al cliente para comprender el flujo productivo y los diferentes tipos de usuarios. A partir de ah\\xed, document\\xe9 el proceso\",/*#__PURE__*/_jsx(motion.br,{}),\"actual y propuse una estructura digital que respete la estructura de tres etapas por estaci\\xf3n, cuatro estaciones de trabajo y los diferentes estados posibles para cada pedido.\"]})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Luego dise\\xf1\\xe9 flujos diferenciados para operarios y administradores, un mapa de sitio y una base de datos relacional .Todo el proceso fue iterativo, adapt\\xe1ndome a la l\\xf3gica de producci\\xf3n real y a las restricciones t\\xe9cnicas.\"})]}),className:\"framer-b8138d\",\"data-framer-name\":\"Contenido\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dV5Dbs6Ws\",style:{\"--extracted-1w3ko1f\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fr56jq\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"WVFs4b8hc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IEJvbGQ=\",\"--framer-font-family\":'\"SF Pro Text Bold\", \"SF Pro Text Bold Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"El Proceso\"})}),className:\"framer-iqbyka\",fonts:[\"CUSTOM;SF Pro Text Bold\"],layoutDependency:layoutDependency,layoutId:\"bypKNGgbU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"De la observaci\\xf3n al dise\\xf1o funcional\"})})}),className:\"framer-ep6m4u\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"MYIImvUXf\",style:{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5u9xl5\",\"data-framer-name\":\"Video - Contenido\",layoutDependency:layoutDependency,layoutId:\"HECC2fp0c\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,pixelHeight:485,pixelWidth:1979,src:\"https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png\",srcSet:\"https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png 1979w\"},className:\"framer-hdyoms\",\"data-framer-name\":\"Frame 150\",layoutDependency:layoutDependency,layoutId:\"G5caustqu\",...addPropertyOverrides({B3yyYa7SL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:485,intrinsicWidth:1979,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+(((componentViewport?.height||2660)-48-3822)/2+1343+24)+0+435+-98),pixelHeight:485,pixelWidth:1979,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png\",srcSet:\"https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wEWY2pWpV6WVc6c8qAUMZsO6uEc.png 1979w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a1qyyj\",\"data-framer-name\":\"Titulo\",layoutDependency:layoutDependency,layoutId:\"yZXib0jrW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pveiq2\",\"data-framer-name\":\"Titulo del trabajo\",layoutDependency:layoutDependency,layoutId:\"I4xq8Vujl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Sistema de Gestion de Producci\\xf3n\"})}),className:\"framer-5kgr99\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Iql1HLUVY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(0, 0, 0))\"},children:\"Product design  - Development - Figma + Framer + V0 + Supabase\"})}),className:\"framer-j45z0v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GkT2UKt_i\",style:{\"--extracted-1eung3n\":\"rgb(0, 0, 0)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vz8c56\",layoutDependency:layoutDependency,layoutId:\"mYlGS4iA4\",style:{backgroundColor:\"rgb(255, 255, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ctk8xb\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mk8q0r1Tg\",onTap:onTap1n1rg0f,style:{\"--border-bottom-width\":\"0.1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"0.1px\",\"--border-right-width\":\"0.1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({B3yyYa7SL:{onTap:onTap1yk7oe4}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Ver caso de estudio\"})}),className:\"framer-2mo2tl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zi6ZwiK36\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7ts0v-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zV_KAYpXX-container\",nodeId:\"zV_KAYpXX\",rendersWithMotion:true,scopeId:\"y3g78iBfU\",style:{rotate:90},variants:{B3yyYa7SL:{rotate:-90}},whileHover:animation,...addPropertyOverrides({B3yyYa7SL:{whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"zV_KAYpXX\",layoutId:\"zV_KAYpXX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9UfeF.framer-1pjmvrm, .framer-9UfeF .framer-1pjmvrm { display: block; }\",\".framer-9UfeF.framer-1gh1jkw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 327px; justify-content: flex-end; max-width: 1300px; min-width: 1000px; overflow: hidden; padding: 10px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9UfeF .framer-13nmfck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 24px 8px 24px; position: absolute; right: 16px; top: 16px; width: min-content; z-index: 1; }\",\".framer-9UfeF .framer-z83umx, .framer-9UfeF .framer-ja7w8u, .framer-9UfeF .framer-1xn4kaf, .framer-9UfeF .framer-x6attw, .framer-9UfeF .framer-bwz1qv, .framer-9UfeF .framer-1jrt66, .framer-9UfeF .framer-1gcj04v, .framer-9UfeF .framer-v9f2hg, .framer-9UfeF .framer-1jx8psj, .framer-9UfeF .framer-iqbyka, .framer-9UfeF .framer-ep6m4u, .framer-9UfeF .framer-5kgr99, .framer-9UfeF .framer-j45z0v, .framer-9UfeF .framer-2mo2tl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9UfeF .framer-1qra7p8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9UfeF .framer-bz3gsz-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-9UfeF .framer-qza7o2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 551px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9UfeF .framer-1sv91v5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9UfeF .framer-1qt3hov { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 99px; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: 1px; }\",\".framer-9UfeF .framer-1inpkxj { align-self: stretch; flex: 1 0 0px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-9UfeF .framer-s70vv6-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-9UfeF .framer-1vqk5kr, .framer-9UfeF .framer-1mbnjnp, .framer-9UfeF .framer-1n10iy2, .framer-9UfeF .framer-jvapg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-9UfeF .framer-1seie0n, .framer-9UfeF .framer-14q4buc, .framer-9UfeF .framer-ug3wui, .framer-9UfeF .framer-b8138d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9UfeF .framer-1ds67e4, .framer-9UfeF .framer-z9q72c, .framer-9UfeF .framer-piclh0, .framer-9UfeF .framer-fr56jq { 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: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-9UfeF .framer-qgwfwe, .framer-9UfeF .framer-1sv307f, .framer-9UfeF .framer-5u9xl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 289px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9UfeF .framer-pew1j8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9UfeF .framer-tr3rkh-container { aspect-ratio: 4 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 1px; }\",\".framer-9UfeF .framer-hdyoms { aspect-ratio: 4.08041237113402 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 49px); overflow: visible; position: relative; width: 1px; }\",\".framer-9UfeF .framer-1a1qyyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-9UfeF .framer-pveiq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9UfeF .framer-1vz8c56 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-end; min-height: 32px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9UfeF .framer-ctk8xb { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-9UfeF .framer-7ts0v-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 25px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9UfeF.framer-v-17zgkpe.framer-1gh1jkw { gap: 12px; height: min-content; justify-content: center; padding: 24px; width: 1000px; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-qza7o2 { flex-direction: column; min-height: unset; order: 2; padding: 0px 5px 32px 0px; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1sv91v5 { flex: none; order: 1; width: 100%; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1qt3hov { flex: none; min-height: unset; order: 0; width: 100%; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-ja7w8u, .framer-9UfeF.framer-v-17zgkpe .framer-1ds67e4, .framer-9UfeF.framer-v-17zgkpe .framer-z9q72c, .framer-9UfeF.framer-v-17zgkpe .framer-piclh0, .framer-9UfeF.framer-v-17zgkpe .framer-fr56jq { order: 0; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1xn4kaf, .framer-9UfeF.framer-v-17zgkpe .framer-1seie0n, .framer-9UfeF.framer-v-17zgkpe .framer-14q4buc, .framer-9UfeF.framer-v-17zgkpe .framer-ug3wui, .framer-9UfeF.framer-v-17zgkpe .framer-b8138d { order: 1; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1inpkxj { align-content: center; align-items: center; align-self: unset; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 289px; justify-content: center; order: 2; overflow: hidden; padding: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9UfeF.framer-v-17zgkpe .framer-s70vv6-container { height: auto; left: unset; position: relative; top: unset; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1vqk5kr { order: 3; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1mbnjnp { order: 6; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1n10iy2 { order: 5; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1sv307f, .framer-9UfeF.framer-v-17zgkpe .framer-5u9xl5 { order: 2; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-tr3rkh-container { height: var(--framer-aspect-ratio-supported, 238px); }\",\".framer-9UfeF.framer-v-17zgkpe .framer-jvapg8 { order: 4; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-hdyoms { height: var(--framer-aspect-ratio-supported, 234px); }\",\".framer-9UfeF.framer-v-17zgkpe .framer-1a1qyyj { order: 7; padding: 0px 0px 0px 8px; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-ctk8xb { padding: 0px 0px 0px 4px; }\",\".framer-9UfeF.framer-v-17zgkpe .framer-7ts0v-container { will-change: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-9UfeF[data-border=\"true\"]::after, .framer-9UfeF [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 327\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"1000px\",\"1300px\",null,null]},\"B3yyYa7SL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"1000px\",\"1300px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framery3g78iBfU=withCSS(Component,css,\"framer-9UfeF\");export default Framery3g78iBfU;Framery3g78iBfU.displayName=\"Modelo\";Framery3g78iBfU.defaultProps={height:327,width:1200};addPropertyControls(Framery3g78iBfU,{variant:{options:[\"pvgsEK_8l\",\"B3yyYa7SL\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery3g78iBfU,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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:\"SF Pro Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/GgU5ErbfJ4v55ziHU0Kah2HUGE.woff2\"}]},...VideoFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery3g78iBfU\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"1000px\\\",\\\"1300px\\\",null,null]},\\\"B3yyYa7SL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"1000px\\\",\\\"1300px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"327\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y3g78iBfU.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Display Thin\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Pro Display Thin\",source:\"custom\",url:\"https://framerusercontent.com/assets/00e4hVEihH3feA3vgijJA5kmwY.woff2\"}]}];export const css=['.framer-i08yI .framer-styles-preset-2vpqsz:not(.rich-text-wrapper), .framer-i08yI .framer-styles-preset-2vpqsz.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Thin\", \"SF Pro Display Thin Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 2413px) and (min-width: 1440px) { .framer-i08yI .framer-styles-preset-2vpqsz:not(.rich-text-wrapper), .framer-i08yI .framer-styles-preset-2vpqsz.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Thin\", \"SF Pro Display Thin Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1194px) { .framer-i08yI .framer-styles-preset-2vpqsz:not(.rich-text-wrapper), .framer-i08yI .framer-styles-preset-2vpqsz.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Thin\", \"SF Pro Display Thin Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1193px) and (min-width: 744px) { .framer-i08yI .framer-styles-preset-2vpqsz:not(.rich-text-wrapper), .framer-i08yI .framer-styles-preset-2vpqsz.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Thin\", \"SF Pro Display Thin Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 743px) and (min-width: 0px) { .framer-i08yI .framer-styles-preset-2vpqsz:not(.rich-text-wrapper), .framer-i08yI .framer-styles-preset-2vpqsz.rich-text-wrapper h1 { --framer-font-family: \"SF Pro Display Thin\", \"SF Pro Display Thin Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-i08yI\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Rounded Heavy\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Pro Rounded Heavy\",source:\"custom\",url:\"https://framerusercontent.com/assets/vd1yvspqlRZDtbwLOIl9SeC2Q.woff2\"}]}];export const css=['.framer-g4S7k .framer-styles-preset-c6ext9:not(.rich-text-wrapper), .framer-g4S7k .framer-styles-preset-c6ext9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Rounded Heavy\", \"SF Pro Rounded Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1440px) and (min-width: 1440px) { .framer-g4S7k .framer-styles-preset-c6ext9:not(.rich-text-wrapper), .framer-g4S7k .framer-styles-preset-c6ext9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Rounded Heavy\", \"SF Pro Rounded Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1194px) { .framer-g4S7k .framer-styles-preset-c6ext9:not(.rich-text-wrapper), .framer-g4S7k .framer-styles-preset-c6ext9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Rounded Heavy\", \"SF Pro Rounded Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1193px) and (min-width: 744px) { .framer-g4S7k .framer-styles-preset-c6ext9:not(.rich-text-wrapper), .framer-g4S7k .framer-styles-preset-c6ext9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Rounded Heavy\", \"SF Pro Rounded Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 743px) and (min-width: 0px) { .framer-g4S7k .framer-styles-preset-c6ext9:not(.rich-text-wrapper), .framer-g4S7k .framer-styles-preset-c6ext9.rich-text-wrapper h2 { --framer-font-family: \"SF Pro Rounded Heavy\", \"SF Pro Rounded Heavy Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 6px; --framer-text-alignment: left; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-g4S7k\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import LENGTABHOME from\"#framer/local/canvasComponent/hWKuWpEge/hWKuWpEge.js\";import ModeloMobile from\"#framer/local/canvasComponent/I821SrwXh/I821SrwXh.js\";import LENGDESKHOME from\"#framer/local/canvasComponent/mSk56KqVH/mSk56KqVH.js\";import MiniFooter from\"#framer/local/canvasComponent/oLhwq8RDm/oLhwq8RDm.js\";import Boton from\"#framer/local/canvasComponent/vacZoT4ID/vacZoT4ID.js\";import NavBar from\"#framer/local/canvasComponent/VjSrVhjTo/VjSrVhjTo.js\";import Modelo from\"#framer/local/canvasComponent/y3g78iBfU/y3g78iBfU.js\";import ContactButton from\"#framer/local/canvasComponent/Zh6qlEsYR/Zh6qlEsYR.js\";import*as sharedStyle2 from\"#framer/local/css/C1F_IGQer/C1F_IGQer.js\";import*as sharedStyle from\"#framer/local/css/M1qWU1f1s/M1qWU1f1s.js\";import*as sharedStyle4 from\"#framer/local/css/oi9EPRecV/oi9EPRecV.js\";import*as sharedStyle5 from\"#framer/local/css/sMwza4aWZ/sMwza4aWZ.js\";import*as sharedStyle3 from\"#framer/local/css/wSRyMS98l/wSRyMS98l.js\";import*as sharedStyle1 from\"#framer/local/css/yGQ8F3sjP/yGQ8F3sjP.js\";import metadataProvider from\"#framer/local/webPageMetadata/pcWuwzkC9/pcWuwzkC9.js\";const LENGTABHOMEFonts=getFonts(LENGTABHOME);const LENGDESKHOMEFonts=getFonts(LENGDESKHOME);const NavBarFonts=getFonts(NavBar);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ContactButtonFonts=getFonts(ContactButton);const MaterialFonts=getFonts(Material);const BotonFonts=getFonts(Boton);const ModeloMobileFonts=getFonts(ModeloMobile);const ImageWithFX=withFX(Image);const ModeloFonts=getFonts(Modelo);const MiniFooterFonts=getFonts(MiniFooter);const breakpoints={bS5PmDxEj:\"(min-width: 744px) and (max-width: 1193px)\",geL8KdhdP:\"(min-width: 1440px)\",O8PxrQM0N:\"(max-width: 743px)\",xYCWBWZB9:\"(min-width: 1194px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-O8Dg8\";const variantClassNames={bS5PmDxEj:\"framer-v-d7wqgj\",geL8KdhdP:\"framer-v-1v801oz\",O8PxrQM0N:\"framer-v-ix17qo\",xYCWBWZB9:\"framer-v-u6fdta\"};const transition1={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={cursor:\"grabbing\"};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet mini\":\"bS5PmDxEj\",Desktop:\"geL8KdhdP\",Phone:\"O8PxrQM0N\",Tablet:\"xYCWBWZB9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"geL8KdhdP\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xYCWBWZB9\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"xYCWBWZB9\",\"bS5PmDxEj\",\"O8PxrQM0N\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"bS5PmDxEj\",\"O8PxrQM0N\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"bS5PmDxEj\")return true;return false;};const elementId=useRouteElementId(\"rLUVV3IUo\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"WKEdafbWI\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"hZ15_5H2u\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"bBqjYBZAJ\");const ref4=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"O8PxrQM0N\")return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"O8PxrQM0N\")return true;return false;};const elementId4=useRouteElementId(\"KHXaQ3kHc\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"icY4AybrF\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"vk2VeQru8\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"D5u_uwmtW\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"XQ0Sb8lg1\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"GOYbW6Y6A\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"nDaSRmZbx\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"CDzMh7530\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"exB5LWUyS\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"AEU_XrRiU\");const ref14=React.useRef(null);const isDisplayed6=()=>{if(!isBrowser())return true;if([\"bS5PmDxEj\",\"O8PxrQM0N\"].includes(baseVariant))return false;return true;};const elementId14=useRouteElementId(\"UwZgGn9sA\");const ref15=React.useRef(null);const elementId15=useRouteElementId(\"ojUDRtsxC\");const ref16=React.useRef(null);const elementId16=useRouteElementId(\"aHjF1__Tg\");const ref17=React.useRef(null);const elementId17=useRouteElementId(\"NrbEe8ftl\");const ref18=React.useRef(null);const elementId18=useRouteElementId(\"Ce4_0xyt3\");const ref19=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"geL8KdhdP\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1v801oz\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{__framer__parallaxTransformEnabled:undefined,__framer__styleTransformEffectEnabled:undefined,animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:200,__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:2,stiffness:1e3,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation,className:\"framer-14bauc4\",\"data-framer-appear-id\":\"14bauc4\",\"data-framer-name\":\"Nav y languaje\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{height:36,y:(componentViewport?.y||0)+0+0+37}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bp2a6b-container hidden-1v801oz hidden-d7wqgj hidden-ix17qo\",nodeId:\"zd9tnnR0h\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(LENGTABHOME,{height:\"100%\",id:\"zd9tnnR0h\",layoutId:\"zd9tnnR0h\",variant:\"Ws_bH3HWJ\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hqjiz1-container hidden-u6fdta hidden-d7wqgj hidden-ix17qo\",nodeId:\"HZcA87xeh\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(LENGDESKHOME,{height:\"100%\",id:\"HZcA87xeh\",layoutId:\"HZcA87xeh\",style:{width:\"100%\"},variant:\"FnNudMhPP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{y:(componentViewport?.y||0)+0+0+28},O8PxrQM0N:{y:(componentViewport?.y||0)+0+0+21},xYCWBWZB9:{y:(componentViewport?.y||0)+0+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"558px\",y:(componentViewport?.y||0)+0+0+31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e1hlja-container\",nodeId:\"BLzLEzWOg\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"BLzLEzWOg\",layoutId:\"BLzLEzWOg\",style:{maxWidth:\"100%\"},variant:\"g6eecUuup\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{height:36,y:(componentViewport?.y||0)+0+0+33},O8PxrQM0N:{height:36,y:(componentViewport?.y||0)+0+0+25.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qst743-container hidden-1v801oz hidden-u6fdta\",nodeId:\"cmUfPqsOl\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(LENGTABHOME,{height:\"100%\",id:\"cmUfPqsOl\",layoutId:\"cmUfPqsOl\",variant:\"Ws_bH3HWJ\",width:\"100%\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11qdnc6 hidden-1v801oz hidden-u6fdta hidden-ix17qo\",\"data-framer-name\":\"About\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1ru22\",\"data-framer-name\":\"Texto y botones\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7vvie\",\"data-framer-name\":\"Texto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhqma4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ofm6p6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2vpqsz\",\"data-styles-preset\":\"M1qWU1f1s\",children:\"Joaqu\\xedn Martinoia\"})}),className:\"framer-hh8mx6\",fonts:[\"Inter\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-c6ext9\",\"data-styles-preset\":\"yGQ8F3sjP\",children:\" UX Designer \"})}),className:\"framer-1ejrvbq\",fonts:[\"Inter\"],id:elementId2,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Transformando ideas en experiencias intuitivas\"})}),className:\"framer-1ixhlbd\",fonts:[\"Inter\"],id:elementId3,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czis6f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{y:(componentViewport?.y||0)+0+192+70+0+0+0+158+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i13fmu-container\",nodeId:\"g2G5T67hy\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"g2G5T67hy\",layoutId:\"g2G5T67hy\",style:{height:\"100%\",width:\"100%\"},variant:\"oF0neO33o\",width:\"100%\"})})})})})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:445,intrinsicWidth:445,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:445,pixelWidth:445,src:\"https://framerusercontent.com/images/8tOsd0gUyYC0DXR3CnngGhcncSI.jpg\"},className:\"framer-1esvcza hidden-ix17qo\",\"data-framer-name\":\"Iconocolores\"}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j653ye hidden-1v801oz hidden-u6fdta hidden-d7wqgj\",\"data-framer-name\":\"About\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y0431n\",\"data-framer-name\":\"Texto y botones\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stqsb8\",\"data-framer-name\":\"Texto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aa5zyp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n46ur1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2vpqsz\",\"data-styles-preset\":\"M1qWU1f1s\",children:\"Joaqu\\xedn Martinoia\"})}),className:\"framer-rbacz7\",fonts:[\"Inter\"],id:elementId5,ref:ref6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-c6ext9\",\"data-styles-preset\":\"yGQ8F3sjP\",children:\" UX Designer \"})}),className:\"framer-v8oo9z\",fonts:[\"Inter\"],id:elementId6,ref:ref7,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Transformando ideas en experiencias intuitivas\"})}),className:\"framer-1y0w2c9\",fonts:[\"Inter\"],id:elementId7,ref:ref8,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fwqsdf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{y:(componentViewport?.y||0)+0+167+0+24+0+16+225.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hz42d1-container\",nodeId:\"dLdn26K1V\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"dLdn26K1V\",layoutId:\"dLdn26K1V\",style:{height:\"100%\",width:\"100%\"},variant:\"oF0neO33o\",width:\"100%\"})})})})})]})})}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dc6z1 hidden-1v801oz hidden-u6fdta hidden-d7wqgj\",\"data-framer-name\":\"Casos de estudio\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Casos de estudio\"})}),className:\"framer-d817n2 hidden-1v801oz\",fonts:[\"Inter\"],id:elementId8,ref:ref9,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pzydir hidden-1v801oz\",\"data-framer-name\":\"Casos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8do5n\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lkKlLOxqH\"},motionChild:true,nodeId:\"uYhvlUfmO\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7543.4+0+38.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.91 - 12px)`,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"},className:\"framer-2wt30o framer-62xj79\",\"data-framer-name\":\"BLUM\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbip4k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-poch49\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z587kh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Blum\"})}),className:\"framer-1xhu9mo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ci7ph7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"IOT - Research - UI - Prototype - Mobile\"})}),className:\"framer-1gma7mu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17f04mp\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lkKlLOxqH\"},motionChild:true,nodeId:\"e0wIQZBfM\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1v7v6e4 framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j2udlc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XSUZL3OJp\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"XSUZL3OJp\",layoutId:\"XSUZL3OJp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-drq75t\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Su7uhZAo_\"},motionChild:true,nodeId:\"MkMoX13ra\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7543.4+0+38.8+0+176+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.91 - 12px)`,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"},className:\"framer-to8u2x framer-62xj79\",\"data-framer-name\":\"NAR\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ya1ze\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k9k3kw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7gxtq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Naranja X\"})}),className:\"framer-gyoo5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ke397\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Fintech - UI - Prototype - Mobile\"})}),className:\"framer-5q57cp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7saghc\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Su7uhZAo_\"},motionChild:true,nodeId:\"rLvXK6aL7\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1j8yoeh framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ploe2u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lzWd1fwXS\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lzWd1fwXS\",layoutId:\"lzWd1fwXS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1at04le\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"skEO9Mxxb\"},motionChild:true,nodeId:\"jr2qt_beP\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7543.4+0+38.8+0+352+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.91 - 12px)`,src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"},className:\"framer-r1ngv8 framer-62xj79\",\"data-framer-name\":\"BRU\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gfa22y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-770s0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfnkc0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Brubank\"})}),className:\"framer-10o1g1p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6b6akh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Crypto - UI - Prototype - Mobile\"})}),className:\"framer-k7btqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19t33p0\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"skEO9Mxxb\"},motionChild:true,nodeId:\"cwusdm9uj\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-w8m9ct framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y7odwv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yPFpJhDtT\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"yPFpJhDtT\",layoutId:\"yPFpJhDtT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ub0slh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{y:(componentViewport?.y||0)+0+7543.4+0+38.8+0+528+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"351px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xkeixo-container\",nodeId:\"VFMjJl7gJ\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(Boton,{height:\"100%\",id:\"VFMjJl7gJ\",layoutId:\"VFMjJl7gJ\",style:{width:\"100%\"},variant:\"V3fTnfB8E\",width:\"100%\"})})})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qlascf hidden-1v801oz hidden-u6fdta hidden-d7wqgj\",\"data-framer-name\":\"Trabajos\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Trabajos\"})}),className:\"framer-b43q7b hidden-1v801oz\",fonts:[\"Inter\"],id:elementId9,ref:ref10,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+672.8+0+60.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xvg2x-container\",nodeId:\"CZyLyH5c8\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(ModeloMobile,{height:\"100%\",id:\"CZyLyH5c8\",layoutId:\"CZyLyH5c8\",style:{width:\"100%\"},variant:\"cRb7j8gBW\",width:\"100%\"})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1voo54k hidden-1v801oz\",\"data-framer-name\":\"Web\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t2bi9c\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181vahv\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+672.8+0+419.8+0+0+10+0),pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 20px)`,src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"},className:\"framer-183g65s\",\"data-framer-name\":\"ww_caso_de_estudio\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbgqqy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hcnpq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q07oru\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"RIVUS\"})}),className:\"framer-tu0i5z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19d4kel\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Design + Dev\"})}),className:\"framer-f8i0ex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qhdpa5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visitar Web\"})}),className:\"framer-19bn4zd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://neuquenflyfishing.com\",motionChild:true,nodeId:\"V_QwkV1l6\",openInNewTab:true,scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nvqpsf framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-744hdg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CeoN_cOzy\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"CeoN_cOzy\",layoutId:\"CeoN_cOzy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jowz7b hidden-1v801oz hidden-u6fdta hidden-ix17qo\",\"data-framer-name\":\"Casos de estudio\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Casos de estudio\"})}),className:\"framer-r462cf hidden-1v801oz\",fonts:[\"Inter\"],id:elementId10,ref:ref11,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9jlkht hidden-1v801oz\",\"data-framer-name\":\"Casos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17f4ehw\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lkKlLOxqH\"},motionChild:true,nodeId:\"G6J3E0hET\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6294.6+0+38.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"},className:\"framer-zx2s00 framer-62xj79\",\"data-framer-name\":\"BLUM\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dtlp62\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14xomf5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgwbl2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Blum\"})}),className:\"framer-1eb95e0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eug08m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"IOT - Research - UI - Prototype - Mobile\"})}),className:\"framer-1uj6erm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e0ekf0\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lkKlLOxqH\"},motionChild:true,nodeId:\"Xxjic0TZl\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-umhdil framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ghi4jt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aFBnai6Xe\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"aFBnai6Xe\",layoutId:\"aFBnai6Xe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ja513\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Su7uhZAo_\"},motionChild:true,nodeId:\"nJBUriieK\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6294.6+0+38.8+0+176+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"},className:\"framer-1xksqx framer-62xj79\",\"data-framer-name\":\"NAR\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8zuq0t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oji4rc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10kwn45\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Naranja X\"})}),className:\"framer-1yj3qv4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ba6fv7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Fintech - UI - Prototype - Mobile\"})}),className:\"framer-178p33m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3g4re\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Su7uhZAo_\"},motionChild:true,nodeId:\"JHlWFLDqM\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p39rj framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w1qxlf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ruq9lDi9j\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Ruq9lDi9j\",layoutId:\"Ruq9lDi9j\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zpi3nm\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"skEO9Mxxb\"},motionChild:true,nodeId:\"Fpgk8WV_p\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6294.6+0+38.8+0+352+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,pixelHeight:424,pixelWidth:1557,src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"},className:\"framer-dubh0u framer-62xj79\",\"data-framer-name\":\"BRU\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wdv96f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kf6ngs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a8i2il\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Brubank\"})}),className:\"framer-18um9hn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mooqut\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Crypto - UI - Prototype - Mobile\"})}),className:\"framer-5fpmqo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hhqq84\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"skEO9Mxxb\"},motionChild:true,nodeId:\"wMVgKHi4g\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ck1qji framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-65ekvo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UjuZG4wQ5\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"UjuZG4wQ5\",layoutId:\"UjuZG4wQ5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s65vt8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{y:(componentViewport?.y||0)+0+6294.6+0+38.8+0+528+-.6016}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ug9xxy-container\",nodeId:\"mMrkJVXFG\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(Boton,{height:\"100%\",id:\"mMrkJVXFG\",layoutId:\"mMrkJVXFG\",variant:\"V3fTnfB8E\",width:\"100%\"})})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1geu0fy hidden-1v801oz hidden-u6fdta hidden-ix17qo\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Trabajos\"})}),className:\"framer-o79580 hidden-1v801oz\",fonts:[\"Inter\"],id:elementId11,ref:ref12,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ztjfas hidden-1v801oz\",\"data-framer-name\":\"Web\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3s3bq\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+604+0+375.8+0+10+0),pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 20px)`,src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"},className:\"framer-1kjovwi\",\"data-framer-name\":\"ww_caso_de_estudio\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chkhxt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x31oci\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3oj0z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"RIVUS\"})}),className:\"framer-enqptv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ptt3a\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Product design  - Development - Framer + V0\"})}),className:\"framer-l1b03c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l642o7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visitar Web\"})}),className:\"framer-zpyn50\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://neuquenflyfishing.com\",motionChild:true,nodeId:\"tV0Xfo0SH\",openInNewTab:true,scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yh02x8 framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6gm15h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dG70a3jKQ\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"dG70a3jKQ\",layoutId:\"dG70a3jKQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+604+0+38.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gabmwy-container\",nodeId:\"HVBHtGDAT\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(ModeloMobile,{height:\"100%\",id:\"HVBHtGDAT\",layoutId:\"HVBHtGDAT\",style:{height:\"100%\",width:\"100%\"},variant:\"cRb7j8gBW\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zc041v hidden-1v801oz hidden-u6fdta hidden-ix17qo\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Ui Design\"})}),className:\"framer-xyo20b hidden-1v801oz\",fonts:[\"Inter\"],id:elementId12,ref:ref13,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2azsn0 hidden-1v801oz\",\"data-framer-name\":\"UI 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18hotaf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ig9ygu\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+0+0+6+0),pixelHeight:2143,pixelWidth:2918,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 12px)`,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,pixelHeight:2143,pixelWidth:2918,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"},className:\"framer-1ul64u6\",\"data-framer-name\":\"$1\",id:\"1ul64u6\",onTap:onTap3bnx0g({overlay}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1tqpmnw\"),\"data-framer-portal-id\":\"1ul64u6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"eY10QgUj1\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"UI Design Messaging app\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/spyCxmYwaMPytpGyrW7NJFfA.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1d727gb\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1ul64u6\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate2,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3gdvi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kyu85e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s0d78r\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Messaging App\"})}),className:\"framer-1akq4do\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cb4j2q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1uogh8q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikki82\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6y4by\",\"data-framer-name\":\"Checkout\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4x2yz7\",\"data-framer-name\":\"Chekcout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m0nbau\",\"data-border\":true,\"data-framer-name\":\"Checkout\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+2224+0+0+0+0+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9 - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,pixelHeight:865,pixelWidth:1383,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"},className:\"framer-mu1lb8\",\"data-framer-name\":\"$2\",id:\"mu1lb8\",onTap:onTap3bnx0g({overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-10ar0is\"),\"data-framer-portal-id\":\"mu1lb8\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"TmyUqLCjY\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Messaging app\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/N7OpjEvmLWH5XXqxYIotDn4Oxw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-13s3epa\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"mu1lb8\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1avdgj8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1633tl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ktoqth\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Chekout\"})}),className:\"framer-12o4pxk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n81n3y\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile \"})}),className:\"framer-12kct4h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfl5v5\",\"data-framer-name\":\"Wallet\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9d7ss\",\"data-border\":true,\"data-framer-name\":\"Wallet\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+2224+0+0+0+0+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((${componentViewport?.width||\"100vw\"} * 0.9 - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,pixelHeight:865,pixelWidth:1383,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"},className:\"framer-1s57j24\",\"data-framer-name\":\"$3\",id:\"1s57j24\",onTap:onTap3bnx0g({overlay:overlay2}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1usegza\"),\"data-framer-portal-id\":\"1s57j24\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"OnjY8tkLV\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,sizes:\"63.9785vw\",src:\"https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg\",srcSet:\"https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg 2800w\"},className:cx(scopingClassNames,\"framer-1lcii62\"),\"data-framer-name\":\"E_wallet\",\"data-framer-portal-id\":\"1s57j24\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2m7in\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ael80a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f2zxlg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Wallet\"})}),className:\"framer-1rm3e85\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xod0cq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-14oo5h4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jzforh\",\"data-framer-name\":\"Booking\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1habsuu\",\"data-border\":true,\"data-framer-name\":\"Booking\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:870,intrinsicWidth:2980,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+2224+0+946+0+6+0),pixelHeight:870,pixelWidth:2980,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 12px)`,src:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg\",srcSet:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg 2980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:870,intrinsicWidth:2980,pixelHeight:870,pixelWidth:2980,src:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg\",srcSet:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg 2980w\"},className:\"framer-1vfrn79\",\"data-framer-name\":\"$4\",id:\"1vfrn79\",onTap:onTap3bnx0g({overlay:overlay3}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-196qgah\"),\"data-framer-portal-id\":\"1vfrn79\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"jgI4UdcvB\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2307,intrinsicWidth:3076,pixelHeight:2307,pixelWidth:3076,src:\"https://framerusercontent.com/images/XljpUszotsfcLXb7unrNlxR1fg.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-zpqlwt\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1vfrn79\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpwbt0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l09blq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j2sqgz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Booking App\"})}),className:\"framer-1p3ho45\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bhxn1n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-p051x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17c7hre\",\"data-framer-name\":\"Charts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b157um\",\"data-border\":true,\"data-framer-name\":\"Charts\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:2172,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+3362+0+6+0),pixelHeight:773,pixelWidth:2172,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 12px)`,src:\"https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg\",srcSet:\"https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg 2172w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773,intrinsicWidth:2172,pixelHeight:773,pixelWidth:2172,src:\"https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg\",srcSet:\"https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uEc4zi4w9veSwBL7HAmEQw5vY.jpg 2172w\"},className:\"framer-1rmnxul\",\"data-framer-name\":\"$6\",id:\"1rmnxul\",onTap:onTap3bnx0g({overlay:overlay4}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-504hvi\"),\"data-framer-portal-id\":\"1rmnxul\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"bwhUX6CPL\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Analytics Chart\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/y450DnX3XSHkDfF7pkvtbPQlprY.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1s39l2o\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1rmnxul\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hb54dy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114oo3s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8gier\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Portfolio Tracker\"})}),className:\"framer-1nd3pvt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uyxi1p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-lc4f9z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cyjccx\",\"data-border\":true,\"data-framer-name\":\"Landing page\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+3638+6+0),pixelHeight:2143,pixelWidth:2439,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,pixelHeight:2143,pixelWidth:2439,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"},className:\"framer-jzo1u1\",\"data-framer-name\":\"$7\",id:\"jzo1u1\",onTap:onTap3bnx0g({overlay:overlay5}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-6hi9uk\"),\"data-framer-portal-id\":\"jzo1u1\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"R82fd_oGB\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/CpZ9E2RlitH4wFmqmDhuwTId0zI.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-xly14d\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"jzo1u1\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dpzyty\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yynge\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rrrrpe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Landing Page\"})}),className:\"framer-3pb0ce\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gzq2ze\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1e89de0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ee2itx\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aseucf\",\"data-border\":true,\"data-framer-name\":\"Single Product\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+3715+0+6+0),pixelHeight:1714,pixelWidth:1873,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 12px)`,src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,pixelHeight:1714,pixelWidth:1873,src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"},className:\"framer-1x9h9ci\",\"data-framer-name\":\"$9\",id:\"1x9h9ci\",onTap:onTap3bnx0g({overlay:overlay6}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-92gtp2\"),\"data-framer-portal-id\":\"1x9h9ci\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"E_QvzU93r\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Single Product E commerce\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/M881SrwhtM6dt2i1yGSlmuQkDE.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1u2yiuk\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1x9h9ci\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dsl8c6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkdjnw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w754s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Product page\"})}),className:\"framer-1kb5v4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nqa82h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-p2hotb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4w7hu8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kcyren\",\"data-border\":true,\"data-framer-name\":\"Dark mode\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+3797+0+6+0),pixelHeight:2163,pixelWidth:1085,sizes:\"216.1974px\",src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,pixelHeight:2163,pixelWidth:1085,sizes:\"216.1974px\",src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"},className:\"framer-1wnmk1e\",\"data-framer-name\":\"$8\",id:\"1wnmk1e\",onTap:onTap3bnx0g({overlay:overlay7}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3ln7cs\"),\"data-framer-portal-id\":\"1wnmk1e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"amZcS33FF\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/LTo9HHIZujMAh1qEUoyPwT6R54.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1f2e60c\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1wnmk1e\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-90o1gl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajcqoq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vggjln\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Dark Mode\"})}),className:\"framer-1n9nxot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2q03hf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-1277ime\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlsgzd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ubu8ey\",\"data-border\":true,\"data-framer-name\":\"Music\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qrzmvg\",\"data-framer-name\":\"Imagen\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+4309+0+6+0+0+87),pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"top\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 12px)`,src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"},className:\"framer-1ke1hez\",\"data-framer-name\":\"$5\",id:\"1ke1hez\",onTap:onTap3bnx0g({overlay:overlay8}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-pmlkt8\"),\"data-framer-portal-id\":\"1ke1hez\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"RWKtx4ZG8\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/4vT8UfQEOWoQ6SULTOQRwBbToQw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-3lv6of\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1ke1hez\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hmby1s\",\"data-framer-name\":\"Socalo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6brm5\",\"data-framer-name\":\"Titulo y subtitulo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oyee31\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Music Player\"})}),className:\"framer-agf81n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bv04cz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Vision Pro\"})}),className:\"framer-1pxig5o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i34np2\",\"data-framer-name\":\"Web\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7i4oo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rm8czl\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://whispers-and-wisdom.com/\",motionChild:true,nodeId:\"VpSrRYTQ9\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1386.8+0+38.8+0+4565+0+0+10+-3),pixelHeight:438,pixelWidth:3008,positionX:\"left\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 20px)`,src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,pixelHeight:438,pixelWidth:3008,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"},className:\"framer-16kzetu framer-62xj79\",\"data-framer-name\":\"ww_caso_de_estudio\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qbiigu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1580pra\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hyklpb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Whispers & Wisdom\"})}),className:\"framer-1vv2y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15k0i19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Web Design - Figma + Wordpress\"})}),className:\"framer-1o28trn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40lcmt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visit Web\"})}),className:\"framer-zid4e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://whispers-and-wisdom.com/\",motionChild:true,nodeId:\"sgG1aMGmO\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ppgae1 framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1benwjm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uAvi671D9\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uAvi671D9\",layoutId:\"uAvi671D9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st9jkv hidden-1v801oz hidden-u6fdta hidden-d7wqgj\",\"data-framer-name\":\"Ui Design\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Ui Design\"})}),className:\"framer-1newhq7 hidden-1v801oz\",fonts:[\"Inter\"],id:elementId13,ref:ref14,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujx0b3 hidden-1v801oz\",\"data-framer-name\":\"UI 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jns1ys\",\"data-border\":true,\"data-framer-name\":\"Chat\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+0+6+0),pixelHeight:2143,pixelWidth:2918,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,pixelHeight:2143,pixelWidth:2918,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"},className:\"framer-ubdtry\",\"data-framer-name\":\"Imagen Chat\",id:\"ubdtry\",onTap:onTap3bnx0g({overlay:overlay9}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1dvlt3j\"),\"data-framer-portal-id\":\"ubdtry\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"sjHmUxDY8\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"UI Design Messaging app\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/spyCxmYwaMPytpGyrW7NJFfA.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-cisn9n\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"ubdtry\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ifow9\",\"data-framer-name\":\"Barra Inferior\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5f2vw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qrktfd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Messaging App\"})}),className:\"framer-17r1122\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n9zr4i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1cgjj4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19u4df2\",\"data-border\":true,\"data-framer-name\":\"Checkout\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+2224+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,pixelHeight:865,pixelWidth:1383,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"},className:\"framer-6m9tpc\",\"data-framer-name\":\"Imagen Checkout\",id:\"6m9tpc\",onTap:onTap3bnx0g({overlay:overlay10}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-c1cfs9\"),\"data-framer-portal-id\":\"6m9tpc\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"wwWlZpy7y\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2006,intrinsicWidth:1832,pixelHeight:2006,pixelWidth:1832,sizes:\"730.8822px\",src:\"https://framerusercontent.com/images/NUUFNYf73eUoF3cU1EBUZprAF4.jpg\",srcSet:\"https://framerusercontent.com/images/NUUFNYf73eUoF3cU1EBUZprAF4.jpg?scale-down-to=1024 935w,https://framerusercontent.com/images/NUUFNYf73eUoF3cU1EBUZprAF4.jpg 1832w\"},className:cx(scopingClassNames,\"framer-143rdam\"),\"data-framer-name\":\"Checkout\",\"data-framer-portal-id\":\"6m9tpc\",drag:true,dragMomentum:true,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b1dgyv\",\"data-framer-name\":\"Barra inferior\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ikooap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-136uv4t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Chekout\"})}),className:\"framer-14iz4mt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rl0gm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-df8vms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18svmkd\",\"data-border\":true,\"data-framer-name\":\"Wallet\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+3170+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,pixelHeight:865,pixelWidth:1383,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"},className:\"framer-dplg0j\",\"data-framer-name\":\"Imagen wallet\",id:\"dplg0j\",onTap:onTap3bnx0g({overlay:overlay11}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1non2fs\"),\"data-framer-portal-id\":\"dplg0j\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"HoBK78ycr\"),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:1119,pixelHeight:2100,pixelWidth:1119,sizes:\"426.7402px\",src:\"https://framerusercontent.com/images/jy1obdPj0cEVNo7htbhxUrRmUxE.jpg\",srcSet:\"https://framerusercontent.com/images/jy1obdPj0cEVNo7htbhxUrRmUxE.jpg?scale-down-to=1024 545w,https://framerusercontent.com/images/jy1obdPj0cEVNo7htbhxUrRmUxE.jpg?scale-down-to=2048 1091w,https://framerusercontent.com/images/jy1obdPj0cEVNo7htbhxUrRmUxE.jpg 1119w\"},className:cx(scopingClassNames,\"framer-fnfvcd\"),\"data-framer-name\":\"E_wallet\",\"data-framer-portal-id\":\"dplg0j\",transformTemplate:transformTemplate2})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-23tcnh\",\"data-framer-name\":\"Barra inferior\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9m9zz1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9yq341\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Wallet\"})}),className:\"framer-1ld4ik6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vwp8xg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-1j6gp44\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bbhgmo\",\"data-framer-name\":\"Booking\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ums7r6\",\"data-border\":true,\"data-framer-name\":\"Booking\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:429,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+4116+0+0+6+0),pixelHeight:429,pixelWidth:681,sizes:\"339px\",src:\"https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg\",srcSet:\"https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg 681w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:429,intrinsicWidth:681,pixelHeight:429,pixelWidth:681,sizes:\"339px\",src:\"https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg\",srcSet:\"https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/B5QYDPytnac5YSuDFqi552Wz30Q.jpg 681w\"},className:\"framer-18pt69o\",\"data-framer-name\":\"Miniatura_booking\",id:\"18pt69o\",onTap:onTap3bnx0g({overlay:overlay12}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xtlzox\"),\"data-framer-portal-id\":\"18pt69o\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"T8vFgR20U\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2073,intrinsicWidth:2820,pixelHeight:2073,pixelWidth:2820,sizes:\"952.2431px\",src:\"https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg\",srcSet:\"https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg 2820w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2073,intrinsicWidth:2820,pixelHeight:2073,pixelWidth:2820,sizes:\"1088.686px\",src:\"https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg\",srcSet:\"https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ObDQUdbfchcswDPRz5gqu6vgBak.jpg 2820w\"},className:cx(scopingClassNames,\"framer-11wn2z9\"),\"data-framer-name\":\"Busqueda_de_alojamiento\",\"data-framer-portal-id\":\"18pt69o\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmck4m\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45p4ub\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tqj6s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Booking App\"})}),className:\"framer-1h0m06c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13a27v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-13r4jx2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7w90h\",\"data-border\":true,\"data-framer-name\":\"Charts\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:429,intrinsicWidth:681,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+4409+6+0),pixelHeight:429,pixelWidth:681,sizes:\"336.5315px\",src:\"https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg\",srcSet:\"https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg 681w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:429,intrinsicWidth:681,pixelHeight:429,pixelWidth:681,sizes:\"336.5315px\",src:\"https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg\",srcSet:\"https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J4N0xtHaDADYUoEoJTq0vI9P0w.jpg 681w\"},className:\"framer-1et7u3s\",\"data-framer-name\":\"Miniatura_charts\",id:\"1et7u3s\",onTap:onTap3bnx0g({overlay:overlay13}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-15eg001\"),\"data-framer-portal-id\":\"1et7u3s\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"C0njDWErk\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1468,intrinsicWidth:2429,pixelHeight:1468,pixelWidth:2429,sizes:\"993.1529px\",src:\"https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg\",srcSet:\"https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg 2429w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1468,intrinsicWidth:2429,pixelHeight:1468,pixelWidth:2429,sizes:\"1158.6783px\",src:\"https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg\",srcSet:\"https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ABJ98JXKCgU90g0ULNyPSLi04A.jpg 2429w\"},className:cx(scopingClassNames,\"framer-1o8dnhd\"),\"data-framer-name\":\"Analytics_Chart\",\"data-framer-portal-id\":\"1et7u3s\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8yzg7\",\"data-framer-name\":\"Titulo abajo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3s6p7w\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffzx3q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Portfolio Tracker\"})}),className:\"framer-1klkdob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdpxjf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-jseju3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ylasni\",\"data-border\":true,\"data-framer-name\":\"Landing page\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay14=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+4702+6+0),pixelHeight:2143,pixelWidth:2439,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,pixelHeight:2143,pixelWidth:2439,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"},className:\"framer-1gn0a5w\",\"data-framer-name\":\"Miniatura landing\",id:\"1gn0a5w\",onTap:onTap3bnx0g({overlay:overlay14}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay14.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1bq3v8i\"),\"data-framer-portal-id\":\"1gn0a5w\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay14.hide()},\"WT6N5jW_F\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1758,intrinsicWidth:2429,pixelHeight:1758,pixelWidth:2429,sizes:\"967.1786px\",src:\"https://framerusercontent.com/images/fVD5Kw2uh8qQFxrOK0fE3YsJo.jpg\",srcSet:\"https://framerusercontent.com/images/fVD5Kw2uh8qQFxrOK0fE3YsJo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fVD5Kw2uh8qQFxrOK0fE3YsJo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fVD5Kw2uh8qQFxrOK0fE3YsJo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fVD5Kw2uh8qQFxrOK0fE3YsJo.jpg 2429w\"},className:cx(scopingClassNames,\"framer-qyoyug\"),\"data-framer-name\":\"Landing_Page\",\"data-framer-portal-id\":\"1gn0a5w\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snz8xz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0idlt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hh5u2l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Landing Page\"})}),className:\"framer-1gz1ljm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pep9xj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1naq4ie\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlqz9n\",\"data-border\":true,\"data-framer-name\":\"Single Product\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay15=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+4779+6+0),pixelHeight:1714,pixelWidth:1873,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,pixelHeight:1714,pixelWidth:1873,src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"},className:\"framer-18a6yqj\",\"data-framer-name\":\"Single P miniatura\",id:\"18a6yqj\",onTap:onTap3bnx0g({overlay:overlay15}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay15.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-dsu5kd\"),\"data-framer-portal-id\":\"18a6yqj\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay15.hide()},\"voCLZCm01\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:1887,pixelHeight:2100,pixelWidth:1887,sizes:\"718.8571px\",src:\"https://framerusercontent.com/images/EiQVIzJyoIEzSSVQU8HkqrPsIKI.jpg\",srcSet:\"https://framerusercontent.com/images/EiQVIzJyoIEzSSVQU8HkqrPsIKI.jpg?scale-down-to=1024 920w,https://framerusercontent.com/images/EiQVIzJyoIEzSSVQU8HkqrPsIKI.jpg?scale-down-to=2048 1840w,https://framerusercontent.com/images/EiQVIzJyoIEzSSVQU8HkqrPsIKI.jpg 1887w\"},className:cx(scopingClassNames,\"framer-150mmhe\"),\"data-framer-name\":\"Dia_6_Single_Product\",\"data-framer-portal-id\":\"18a6yqj\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tfr08e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pu8i1v\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npeoyv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Product page\"})}),className:\"framer-1owa5pb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tghnij\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-19urqed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h7pnt4\",\"data-border\":true,\"data-framer-name\":\"Dark mode\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay16=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+4861+6+0),pixelHeight:2163,pixelWidth:1085,sizes:\"216.1974px\",src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,pixelHeight:2163,pixelWidth:1085,sizes:\"216.1974px\",src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"},className:\"framer-10db155\",\"data-framer-name\":\"Miniatura Dark mode\",id:\"10db155\",onTap:onTap3bnx0g({overlay:overlay16}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay16.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-tna3bw\"),\"data-framer-portal-id\":\"10db155\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay16.hide()},\"LAijlUjCT\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1981,intrinsicWidth:2250,pixelHeight:1981,pixelWidth:2250,sizes:\"908.9727px\",src:\"https://framerusercontent.com/images/ECxJ506mJhhmb99y3Ex1PjNwzh0.jpg\",srcSet:\"https://framerusercontent.com/images/ECxJ506mJhhmb99y3Ex1PjNwzh0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ECxJ506mJhhmb99y3Ex1PjNwzh0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ECxJ506mJhhmb99y3Ex1PjNwzh0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ECxJ506mJhhmb99y3Ex1PjNwzh0.jpg 2250w\"},className:cx(scopingClassNames,\"framer-1s9lj3y\"),\"data-framer-name\":\"E_wallet_1\",\"data-framer-portal-id\":\"10db155\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-27ztfz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-160ksll\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqenje\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Dark Mode\"})}),className:\"framer-1qzoiaw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-25ju8n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-1mlwurj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cl3y1f\",\"data-border\":true,\"data-framer-name\":\"Music\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay17=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-md1jvf\",\"data-framer-name\":\"Imagen\",id:\"md1jvf\",onTap:onTap3bnx0g({overlay:overlay17}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+5373+6+0+0+87),pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 12px)`,src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"},className:\"framer-uy28y2\",\"data-framer-name\":\"$5\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay17.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-nad3vr\"),\"data-framer-portal-id\":\"md1jvf\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay17.hide()},\"Tn07OdAP8\"),/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2614,intrinsicWidth:2205,pixelHeight:2614,pixelWidth:2205,sizes:\"675.0809px\",src:\"https://framerusercontent.com/images/oscY4zXokCIFeuNE9g6YMKfFmY.jpg\",srcSet:\"https://framerusercontent.com/images/oscY4zXokCIFeuNE9g6YMKfFmY.jpg?scale-down-to=1024 863w,https://framerusercontent.com/images/oscY4zXokCIFeuNE9g6YMKfFmY.jpg?scale-down-to=2048 1727w,https://framerusercontent.com/images/oscY4zXokCIFeuNE9g6YMKfFmY.jpg 2205w\"},className:cx(scopingClassNames,\"framer-1ay672c\"),\"data-framer-name\":\"Mini_Player\",\"data-framer-portal-id\":\"md1jvf\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,exit:animation3,initial:animation6,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate3,whileTap:animation4})]}),getContainer())})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6k8p1u\",\"data-framer-name\":\"Socalo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q23cni\",\"data-framer-name\":\"Titulo y subtitulo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p01set\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Music Player\"})}),className:\"framer-1gyfy61\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lntqc3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Vision Pro\"})}),className:\"framer-133nc9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xcn19y\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay18=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1of28uk\",\"data-border\":true,id:\"1of28uk\",onTap:onTap3bnx0g({overlay:overlay18}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f0kcdf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bd891f4a8\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"bd891f4a8\",layoutId:\"bd891f4a8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay18.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-120ptd\"),\"data-framer-portal-id\":\"1of28uk\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay18.hide()},\"fXsi3EzEM\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/4vT8UfQEOWoQ6SULTOQRwBbToQw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1qt50f7\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1of28uk\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-npkrjd\",\"data-border\":true,\"data-framer-name\":\"Web\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://whispers-and-wisdom.com/\",motionChild:true,nodeId:\"YvzXXnlck\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1507.6+0+38.8+32+5629+10+-3),pixelHeight:438,pixelWidth:3008,positionX:\"left\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9 - 20px)`,src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",backgroundSize:1,fit:\"tile\",intrinsicHeight:438,intrinsicWidth:3008,pixelHeight:438,pixelWidth:3008,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"},className:\"framer-1wekm0a framer-62xj79\",\"data-framer-name\":\"ww_caso_de_estudio\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-onnpqj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ps64y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-173gqgu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Whispers & Wisdom\"})}),className:\"framer-10fu090\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fu34tr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Figma + Wordpress\"})}),className:\"framer-pk6zlk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://whispers-and-wisdom.com/\",motionChild:true,nodeId:\"OvT7zf5Sg\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wlx1n5 framer-62xj79\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mj8u0l\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7q4pzo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GIRWwyDyj\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GIRWwyDyj\",layoutId:\"GIRWwyDyj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15v3nj8 hidden-d7wqgj hidden-ix17qo\",\"data-framer-name\":\"About\",id:elementId14,ref:ref15,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q4l7ul\",\"data-framer-name\":\"Texto y botones\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1po6nqq\",\"data-framer-name\":\"Texto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9kj5h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s71378\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-2vpqsz\",\"data-styles-preset\":\"M1qWU1f1s\",children:\"Joaqu\\xedn Martinoia\"})}),className:\"framer-oz5gr8\",fonts:[\"Inter\"],id:elementId15,ref:ref16,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-c6ext9\",\"data-styles-preset\":\"yGQ8F3sjP\",children:\" UX Designer \"})}),className:\"framer-1auryv9\",fonts:[\"Inter\"],id:elementId16,ref:ref17,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a3to1n\",\"data-styles-preset\":\"C1F_IGQer\",children:\"Transformando ideas en experiencias intuitivas\"})}),className:\"framer-1df231c\",fonts:[\"Inter\"],id:elementId17,ref:ref18,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13l0x6r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{y:(componentViewport?.y||0)+0+192+60+0+0+0+158+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+192+70+0+0+0+158+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qw0gz8-container\",nodeId:\"HQm9iCqdd\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"HQm9iCqdd\",layoutId:\"HQm9iCqdd\",style:{height:\"100%\",width:\"100%\"},variant:\"oF0neO33o\",width:\"100%\"})})})})})]})})}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4qc6y hidden-d7wqgj hidden-ix17qo\",\"data-framer-name\":\"Trabajos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Trabajos\"})}),className:\"framer-1gwy5js\",fonts:[\"Inter\"],id:elementId18,ref:ref19,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px)`,y:(componentViewport?.y||0)+0+584+50+76.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:\"1240px\",y:(componentViewport?.y||0)+0+604+50+76.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ozhfh8-container\",nodeId:\"K4sVxhd1A\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(Modelo,{height:\"100%\",id:\"K4sVxhd1A\",layoutId:\"K4sVxhd1A\",style:{width:\"100%\"},variant:\"pvgsEK_8l\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jm1igh\",\"data-framer-name\":\"Web\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ezzxhb\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-inwe0u\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+584+50+451.8+0+10+0+-73),pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"top\",sizes:`calc((max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 100px, 1px) - 20px) * 1.014)`,src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+604+50+451.8+0+10+0+-66),pixelHeight:401,pixelWidth:1279,positionX:\"center\",positionY:\"center\",sizes:\"1220px\",src:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png\",srcSet:\"https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ta3Iiqq8RsBpHLGgnXOhnJXcjU8.png 1279w\"},className:\"framer-1f1iw64\",\"data-framer-name\":\"ww_caso_de_estudio\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152dfzs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68bu8d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-85a3bm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"RIVUS\"})}),className:\"framer-1hqaefp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q6im2f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Product design  - Development - Framer + V0\"})}),className:\"framer-bu293k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-70y4yh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visitar Web\"})}),className:\"framer-r2pak\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://neuquenflyfishing.com\",motionChild:true,nodeId:\"vsvcYzTcS\",openInNewTab:true,scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-klu5we framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y2cuyh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hoCx5W0cu\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hoCx5W0cu\",layoutId:\"hoCx5W0cu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wgpnba hidden-d7wqgj hidden-ix17qo\",\"data-framer-name\":\"Ui\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Dise\\xf1o UI\"})}),className:\"framer-1cz4ih0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10with1\",\"data-framer-name\":\"UI 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od7uuq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnpn0y\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+52.8+0+0+6+0),pixelHeight:2143,pixelWidth:2918,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2918,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+52.8+0+0+6+-856),pixelHeight:2143,pixelWidth:2918,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg\",srcSet:\"https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SUp8FffJAj1DSnPBpcvsZOn742g.jpg 2918w\"},className:\"framer-apzi8j\",\"data-framer-name\":\"$1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9qub6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2euxjp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1938a77\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Messaging App\"})}),className:\"framer-qwu8q9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eciqjv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1dylm44\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1adtl96\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay19=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d8zk4l\",\"data-border\":true,id:\"d8zk4l\",onTap:onTap3bnx0g({overlay:overlay19}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9fop94-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vwGcp41Ur\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"vwGcp41Ur\",layoutId:\"vwGcp41Ur\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay19.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-11nixwh\"),\"data-framer-portal-id\":\"d8zk4l\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay19.hide()},\"qxafZUzY3\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Messaging app\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/spyCxmYwaMPytpGyrW7NJFfA.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-tondtl\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"d8zk4l\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nin0px\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hdimy3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nyadku\",\"data-framer-name\":\"Chekcout\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo33dj\",\"data-border\":true,\"data-framer-name\":\"Checkout\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+52.8+543+0+0+0+0+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+52.8+0+0+0+0+0+6+-345),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png\",srcSet:\"https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=512 512w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i1ZnsRe7NvcmxhyteuvUx7UoSE.png 1383w\"},className:\"framer-k4fuqv\",\"data-framer-name\":\"$2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-de0xa9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhw3fr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117o6sr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Chekout\"})}),className:\"framer-r3btz9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ghvkty\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile \"})}),className:\"framer-16ce2p4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aqa27c\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay20=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ybyc80\",\"data-border\":true,id:\"1ybyc80\",onTap:onTap3bnx0g({overlay:overlay20}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p5132j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vfLuvHGfu\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"vfLuvHGfu\",layoutId:\"vfLuvHGfu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay20.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1jhsmwl\"),\"data-framer-portal-id\":\"1ybyc80\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay20.hide()},\"oozuUrWxw\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Messaging app\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/N7OpjEvmLWH5XXqxYIotDn4Oxw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1b1vzei\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1ybyc80\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nglto1\",\"data-framer-name\":\"Wallet\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49ffx0\",\"data-border\":true,\"data-framer-name\":\"Wallet\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+52.8+543+0+0+0+0+6+0),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:1383,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+52.8+0+0+0+0+0+6+-345),pixelHeight:865,pixelWidth:1383,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png\",srcSet:\"https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7ktahhdmluOcshU1j1w8azAxM.png 1383w\"},className:\"framer-lhhqj6\",\"data-framer-name\":\"$3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7jbrpx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48ih0u\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-113zek3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Wallet\"})}),className:\"framer-4dakut\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-116pozu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-ndsnen\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y17moz\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay21=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j1f9tn\",\"data-border\":true,id:\"1j1f9tn\",onTap:onTap3bnx0g({overlay:overlay21}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hdv4mo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k7TmyUPt8\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"k7TmyUPt8\",layoutId:\"k7TmyUPt8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay21.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1lfqwox\"),\"data-framer-portal-id\":\"1j1f9tn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay21.hide()},\"V0OF2dWYF\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/k8pEQFJBCwC5jtkT9A7PCLV9Taw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1bjkpkf\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1j1f9tn\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hdrzh8\",\"data-framer-name\":\"Booking\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kfwitk\",\"data-border\":true,\"data-framer-name\":\"Booking\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:870,intrinsicWidth:2980,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+52.8+543+0+946+0+6+0),pixelHeight:870,pixelWidth:2980,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg\",srcSet:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg 2980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:870,intrinsicWidth:2980,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+52.8+0+0+256+0+6+32),pixelHeight:870,pixelWidth:2980,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 2, 1px) - 12px)`,src:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg\",srcSet:\"https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L0uMPEmc5BG2t3OMYxR7eThUbQ.jpg 2980w\"},className:\"framer-1947i69\",\"data-framer-name\":\"$4\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fwfsz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aa0ws4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfifs2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Booking App\"})}),className:\"framer-j7i3de\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vi04v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1o568mv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-awfj6i\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay22=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1no2z99\",\"data-border\":true,id:\"1no2z99\",onTap:onTap3bnx0g({overlay:overlay22}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mq5z29-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HLOkH2AyR\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"HLOkH2AyR\",layoutId:\"HLOkH2AyR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay22.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1gn6s5f\"),\"data-framer-portal-id\":\"1no2z99\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay22.hide()},\"OeIjtrB4_\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2307,intrinsicWidth:3076,pixelHeight:2307,pixelWidth:3076,src:\"https://framerusercontent.com/images/XljpUszotsfcLXb7unrNlxR1fg.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-frukvj\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1no2z99\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awjcyu\",\"data-framer-name\":\"UI 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-295j4q\",\"data-framer-name\":\"Charts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u61kjf\",\"data-border\":true,\"data-framer-name\":\"Charts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:4584,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+2268.8+0+0+6+174),pixelHeight:865,pixelWidth:4584,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 1.5, 1px) - 12px)`,src:\"https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg\",srcSet:\"https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg 4584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:865,intrinsicWidth:4584,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+556.8+0+0+6+174),pixelHeight:865,pixelWidth:4584,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 1.5, 1px) - 12px)`,src:\"https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg\",srcSet:\"https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/q2nnummvd8cGtuY4ypMi11FUbI8.jpg 4584w\"},className:\"framer-1aum9ad\",\"data-framer-name\":\"$6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o22v0x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4qoiz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-181tr1z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Portfolio Tracker\"})}),className:\"framer-1y39rly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wbj6e1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1qqluf8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gl0xko\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay23=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6oksfo\",\"data-border\":true,id:\"6oksfo\",onTap:onTap3bnx0g({overlay:overlay23}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pu8ga-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fxxUsueBj\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"fxxUsueBj\",layoutId:\"fxxUsueBj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay23.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-w3zta6\"),\"data-framer-portal-id\":\"6oksfo\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay23.hide()},\"iOWUNHWlL\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Analytics Chart\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/y450DnX3XSHkDfF7pkvtbPQlprY.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1j8vynu\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"6oksfo\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m16r9c\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hg1s64\",\"data-border\":true,\"data-framer-name\":\"Music\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i8zvce\",\"data-framer-name\":\"Imagen\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+2268.8+0+0+6+0+0+87),pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"bottom\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692,intrinsicWidth:1103,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+556.8+0+0+6+0+0+87),pixelHeight:692,pixelWidth:1103,positionX:\"center\",positionY:\"bottom\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 32px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg\",srcSet:\"https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mg0DAr5z7hLQuIDAU6YdzCPus.jpg 1103w\"},className:\"framer-hahqlh\",\"data-framer-name\":\"$5\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16mduhq\",\"data-framer-name\":\"Socalo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lol5le\",\"data-framer-name\":\"Titulo y subtitulo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s066ft\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Music Player\"})}),className:\"framer-1vxr029\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rix9bz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Vision Pro\"})}),className:\"framer-twd00n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j1fs9l\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay24=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-arqb7z\",\"data-border\":true,id:\"arqb7z\",onTap:onTap3bnx0g({overlay:overlay24}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d18ijv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h3q6Lv00Y\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"h3q6Lv00Y\",layoutId:\"h3q6Lv00Y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay24.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1qog35l\"),\"data-framer-portal-id\":\"arqb7z\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay24.hide()},\"YVkJa61_T\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/4vT8UfQEOWoQ6SULTOQRwBbToQw.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1qf54h\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"arqb7z\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rv2av0\",\"data-framer-name\":\"UI 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x8hkhz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cje68m\",\"data-border\":true,\"data-framer-name\":\"Single Product\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+2516.8+0+0+6+0),pixelHeight:1714,pixelWidth:1873,sizes:\"470.9819px\",src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1714,intrinsicWidth:1873,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+804.8+0+0+6+0),pixelHeight:1714,pixelWidth:1873,sizes:\"470.9819px\",src:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg\",srcSet:\"https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rvHjAQGrTmfa6RRvF1knZ2sZ2lo.jpg 1873w\"},className:\"framer-12h4dy\",\"data-framer-name\":\"$9\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149rrpf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udrd31\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1n5ih\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Product page\"})}),className:\"framer-x0do42\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1amu9j1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-1a5h4u1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zi6oyb\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay25=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dn9jbz\",\"data-border\":true,id:\"1dn9jbz\",onTap:onTap3bnx0g({overlay:overlay25}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lgt7ec-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sua3NSIyI\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"sua3NSIyI\",layoutId:\"sua3NSIyI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay25.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1iyj3gk\"),\"data-framer-portal-id\":\"1dn9jbz\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay25.hide()},\"dDcgIPFfE\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Single Product E commerce\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/M881SrwhtM6dt2i1yGSlmuQkDE.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-1qo9d39\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1dn9jbz\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cg3fl3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2crxl6\",\"data-border\":true,\"data-framer-name\":\"Dark mode\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+2516.8+0+0+6+215),pixelHeight:2163,pixelWidth:1085,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 5, 1px) - 12px)`,src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2163,intrinsicWidth:1085,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+804.8+0+0+6+0),pixelHeight:2163,pixelWidth:1085,sizes:\"216.1974px\",src:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg\",srcSet:\"https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=1024 513w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg?scale-down-to=2048 1027w,https://framerusercontent.com/images/q96oqOjjdv0djxSXA5518ARrpI.jpg 1085w\"},className:\"framer-tg1wf9\",\"data-framer-name\":\"$8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7np6k6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nejr4e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12zpbdx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Dark Mode\"})}),className:\"framer-1vtt6uj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1v6ar\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Mobile\"})}),className:\"framer-1u8bi3w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qyian\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay26=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-px70cx\",\"data-border\":true,id:\"px70cx\",onTap:onTap3bnx0g({overlay:overlay26}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ycs41e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HTmmQz7Io\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"HTmmQz7Io\",layoutId:\"HTmmQz7Io\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay26.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-397lzg\"),\"data-framer-portal-id\":\"px70cx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay26.hide()},\"n6qJ15Qo6\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/LTo9HHIZujMAh1qEUoyPwT6R54.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-x4apc2\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"px70cx\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jsnzw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxuvsr\",\"data-border\":true,\"data-framer-name\":\"Landing page\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1550.8+0+2516.8+0+0+6+0),pixelHeight:2143,pixelWidth:2439,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 2.5, 1px) - 12px)`,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2143,intrinsicWidth:2439,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1570.8+0+804.8+0+0+6+0),pixelHeight:2143,pixelWidth:2439,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 2.5, 1px) - 12px)`,src:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg\",srcSet:\"https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qfz48EmQXnLDu3jSBF6RgU6Nfu0.jpg 2439w\"},className:\"framer-ddzdzr\",\"data-framer-name\":\"$7\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gujjb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwlegc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qq3phk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Landing Page\"})}),className:\"framer-8du2ek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k6gbtm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"UI - Desktop\"})}),className:\"framer-kbasci\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t30xqx\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay27=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c62in6\",\"data-border\":true,id:\"1c62in6\",onTap:onTap3bnx0g({overlay:overlay27}),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e61wzp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uRem_CB4b\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"OpenInFull\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"uRem_CB4b\",layoutId:\"uRem_CB4b\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay27.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-fv4x2m\"),\"data-framer-portal-id\":\"1c62in6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay27.hide()},\"Vbrxp0u1O\"),/*#__PURE__*/_jsx(Image,{animate:animation5,background:{alt:\"UI Design Wallet\",fit:\"fill\",intrinsicHeight:2100,intrinsicWidth:2800,pixelHeight:2100,pixelWidth:2800,src:\"https://framerusercontent.com/images/CpZ9E2RlitH4wFmqmDhuwTId0zI.jpg?scale-down-to=2048\"},className:cx(scopingClassNames,\"framer-f6bxqy\"),\"data-framer-name\":\"Dia_4_Direct_Messaging\",\"data-framer-portal-id\":\"1c62in6\",exit:animation3,initial:animation6,style:{transformPerspective:1200},transformTemplate:transformTemplate2})]}),getContainer())})})]})})})})]})]})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhdypo hidden-d7wqgj hidden-ix17qo\",\"data-framer-name\":\"Web\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dcmfbt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dbg9w\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4627.6+0+0+10+-3),pixelHeight:438,pixelWidth:3008,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 20px)`,src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:438,intrinsicWidth:3008,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2935.6+0+0+10+-3),pixelHeight:438,pixelWidth:3008,sizes:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9, 1px) - 20px)`,src:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg\",srcSet:\"https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ybxu1jBWvZ6zPLppNgIxVcYfwM.jpg 3008w\"},className:\"framer-13rtdxd\",\"data-framer-name\":\"ww_caso_de_estudio\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4rlqy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vyt4dl\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q3y4d3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Whispers & Wisdom\"})}),className:\"framer-13z3y8m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vmqble\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Web redesign - branding - prototype - development - Figma + Wordpress\"})}),className:\"framer-1bbs55q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139ibka\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Visitar Web\"})}),className:\"framer-175b7xl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://whispers-and-wisdom.com/\",motionChild:true,nodeId:\"iPrCtUQrf\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11p77wa framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-300fos-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xL41iV5h4\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xL41iV5h4\",layoutId:\"xL41iV5h4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})})}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6f45r0 hidden-d7wqgj hidden-ix17qo\",\"data-framer-name\":\"Casos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gpd2sd\",\"data-styles-preset\":\"wSRyMS98l\",children:\"Dise\\xf1o UI\"})}),className:\"framer-1r5gf2p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3lo2y\",\"data-framer-name\":\"Casos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10kykov\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xm6tql\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4931.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3239.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg\",srcSet:\"https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HkIAL0km5JELj0htdpYRaO1uc.jpg 1557w\"},className:\"framer-1fc81ww\",\"data-framer-name\":\"BLUM\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3xl8v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x1fipc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ed5gr3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Blum\"})}),className:\"framer-azintv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xyg0po\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"IOT - Research - UI - Prototype - Mobile\"})}),className:\"framer-uot393\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cmhrpc\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lkKlLOxqH\"},motionChild:true,nodeId:\"khxq2VX5Q\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1brkii framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-636kvz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EQe5Bw5YI\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"EQe5Bw5YI\",layoutId:\"EQe5Bw5YI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1va8l8d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jcdesg\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4931.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3239.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg\",srcSet:\"https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RNT4R9MdUGxmQp7xafDnL0xKHoI.jpg 1557w\"},className:\"framer-53l0aa\",\"data-framer-name\":\"NAR\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rckebz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lbv75j\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9c7ko9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Naranja X\"})}),className:\"framer-gmmgs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftutve\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Fintech - UI - Prototype - Mobile\"})}),className:\"framer-1gfbdp6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17me133\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Su7uhZAo_\"},motionChild:true,nodeId:\"Mz8HdmZMl\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-yvjqlc framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oyzu17-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sfBiqx2Kn\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"sfBiqx2Kn\",layoutId:\"sfBiqx2Kn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdq48d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u5mpzv\",\"data-border\":true,\"data-framer-name\":\"MOdelo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4931.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 64px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:424,intrinsicWidth:1557,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3239.6+0+52.8+0+0+6+0),pixelHeight:424,pixelWidth:1557,sizes:\"380px\",src:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg\",srcSet:\"https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxG4wmSflHO5xy3XES4cxs8.jpg 1557w\"},className:\"framer-9d4m4w\",\"data-framer-name\":\"BRU\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ff4hy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l8vfuy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bl3011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wzbdya\",\"data-styles-preset\":\"oi9EPRecV\",children:\"Brubank\"})}),className:\"framer-renir5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f5nw37\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xYCWBWZB9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Crypto - UI - Prototype - Mobile\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1otz54h\",\"data-styles-preset\":\"sMwza4aWZ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Crypto - Research - UI - Prototype - Mobile\"})}),className:\"framer-1v0b50w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uarbi5\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"skEO9Mxxb\"},motionChild:true,nodeId:\"AQjE26HXR\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1l1jx9e framer-62xj79\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x68usg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LQ6yRQqNU\",rendersWithMotion:true,scopeId:\"pcWuwzkC9\",transformTemplate:transformTemplate1,whileHover:animation2,children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowRightAlt\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"LQ6yRQqNU\",layoutId:\"LQ6yRQqNU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bS5PmDxEj:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7014.4},O8PxrQM0N:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8263.2},xYCWBWZB9:{y:(componentViewport?.y||0)+0+5304.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"1200px\",y:(componentViewport?.y||0)+0+3612.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-931ad8-container\",nodeId:\"EdIgc3GfN\",scopeId:\"pcWuwzkC9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O8PxrQM0N:{variant:\"a0E9ydJ4R\"}},children:/*#__PURE__*/_jsx(MiniFooter,{height:\"100%\",id:\"EdIgc3GfN\",layoutId:\"EdIgc3GfN\",style:{height:\"100%\",width:\"100%\"},variant:\"UVo7J2HhN\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O8Dg8.framer-62xj79, .framer-O8Dg8 .framer-62xj79 { display: block; }\",\".framer-O8Dg8.framer-1v801oz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-O8Dg8 .framer-14bauc4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 112px; overflow: hidden; padding: 32px 32px 80px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-1bp2a6b-container { flex: none; height: auto; position: absolute; right: 32px; top: 37px; width: auto; z-index: 1; }\",\".framer-O8Dg8 .framer-1hqjiz1-container { flex: none; height: auto; position: absolute; right: 32px; top: 35px; width: 106px; z-index: 1; }\",\".framer-O8Dg8 .framer-1e1hlja-container { flex: none; height: auto; left: 50%; max-width: 558px; position: absolute; top: 31px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-O8Dg8 .framer-qst743-container { flex: none; height: auto; position: absolute; right: 32px; top: 33px; width: auto; z-index: 1; }\",\".framer-O8Dg8 .framer-11qdnc6, .framer-O8Dg8 .framer-15v3nj8 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-i1ru22, .framer-O8Dg8 .framer-q4l7ul { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 20000px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-1m7vvie, .framer-O8Dg8 .framer-1po6nqq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-fhqma4, .framer-O8Dg8 .framer-1g9kj5h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 118px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-ofm6p6, .framer-O8Dg8 .framer-1s71378 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-hh8mx6, .framer-O8Dg8 .framer-1ejrvbq, .framer-O8Dg8 .framer-1ixhlbd, .framer-O8Dg8 .framer-rbacz7, .framer-O8Dg8 .framer-v8oo9z, .framer-O8Dg8 .framer-1y0w2c9, .framer-O8Dg8 .framer-oz5gr8, .framer-O8Dg8 .framer-1auryv9, .framer-O8Dg8 .framer-1df231c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; scroll-margin-top: 200px; white-space: pre; width: auto; }\",\".framer-O8Dg8 .framer-1czis6f, .framer-O8Dg8 .framer-fwqsdf, .framer-O8Dg8 .framer-13l0x6r { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-O8Dg8 .framer-1i13fmu-container, .framer-O8Dg8 .framer-qw0gz8-container { flex: none; height: 34px; position: relative; width: 40%; }\",\".framer-O8Dg8 .framer-1esvcza { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 50px; overflow: visible; position: absolute; top: 32px; width: 40px; z-index: 1; }\",\".framer-O8Dg8 .framer-1j653ye { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1y0431n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 20000px; overflow: hidden; padding: 24px 50px 24px 50px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-1stqsb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-1aa5zyp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-1n46ur1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-hz42d1-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-dc6z1 { 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: 211px; overflow: hidden; padding: 0px; position: relative; width: 91%; }\",\".framer-O8Dg8 .framer-d817n2, .framer-O8Dg8 .framer-b43q7b, .framer-O8Dg8 .framer-r462cf, .framer-O8Dg8 .framer-o79580, .framer-O8Dg8 .framer-1gwy5js, .framer-O8Dg8 .framer-1cz4ih0, .framer-O8Dg8 .framer-1r5gf2p { --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-O8Dg8 .framer-pzydir, .framer-O8Dg8 .framer-9jlkht { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-q8do5n, .framer-O8Dg8 .framer-17f4ehw { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 160px; justify-content: space-between; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-2wt30o, .framer-O8Dg8 .framer-to8u2x, .framer-O8Dg8 .framer-r1ngv8, .framer-O8Dg8 .framer-zx2s00, .framer-O8Dg8 .framer-1xksqx, .framer-O8Dg8 .framer-dubh0u { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 103px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-O8Dg8 .framer-1lbip4k, .framer-O8Dg8 .framer-13ya1ze, .framer-O8Dg8 .framer-1dtlp62, .framer-O8Dg8 .framer-8zuq0t, .framer-O8Dg8 .framer-1g3gdvi, .framer-O8Dg8 .framer-1avdgj8, .framer-O8Dg8 .framer-1q2m7in, .framer-O8Dg8 .framer-1lpwbt0, .framer-O8Dg8 .framer-1hb54dy, .framer-O8Dg8 .framer-dpzyty, .framer-O8Dg8 .framer-1dsl8c6, .framer-O8Dg8 .framer-90o1gl, .framer-O8Dg8 .framer-hmby1s, .framer-O8Dg8 .framer-qbiigu, .framer-O8Dg8 .framer-13ifow9, .framer-O8Dg8 .framer-1b1dgyv, .framer-O8Dg8 .framer-23tcnh, .framer-O8Dg8 .framer-dmck4m, .framer-O8Dg8 .framer-1n8yzg7, .framer-O8Dg8 .framer-snz8xz, .framer-O8Dg8 .framer-tfr08e, .framer-O8Dg8 .framer-27ztfz, .framer-O8Dg8 .framer-6k8p1u, .framer-O8Dg8 .framer-onnpqj, .framer-O8Dg8 .framer-u9qub6, .framer-O8Dg8 .framer-de0xa9, .framer-O8Dg8 .framer-7jbrpx, .framer-O8Dg8 .framer-10fwfsz, .framer-O8Dg8 .framer-o22v0x, .framer-O8Dg8 .framer-16mduhq, .framer-O8Dg8 .framer-149rrpf, .framer-O8Dg8 .framer-7np6k6, .framer-O8Dg8 .framer-gujjb, .framer-O8Dg8 .framer-q4rlqy, .framer-O8Dg8 .framer-o3xl8v, .framer-O8Dg8 .framer-rckebz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-poch49, .framer-O8Dg8 .framer-1k9k3kw, .framer-O8Dg8 .framer-770s0, .framer-O8Dg8 .framer-14xomf5, .framer-O8Dg8 .framer-oji4rc, .framer-O8Dg8 .framer-kf6ngs, .framer-O8Dg8 .framer-1x1fipc, .framer-O8Dg8 .framer-1lbv75j, .framer-O8Dg8 .framer-1l8vfuy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-z587kh, .framer-O8Dg8 .framer-ci7ph7, .framer-O8Dg8 .framer-b7gxtq, .framer-O8Dg8 .framer-2ke397, .framer-O8Dg8 .framer-qfnkc0, .framer-O8Dg8 .framer-6b6akh, .framer-O8Dg8 .framer-q07oru, .framer-O8Dg8 .framer-19d4kel, .framer-O8Dg8 .framer-fgwbl2, .framer-O8Dg8 .framer-eug08m, .framer-O8Dg8 .framer-10kwn45, .framer-O8Dg8 .framer-1ba6fv7, .framer-O8Dg8 .framer-1a8i2il, .framer-O8Dg8 .framer-mooqut, .framer-O8Dg8 .framer-z3oj0z, .framer-O8Dg8 .framer-3ptt3a, .framer-O8Dg8 .framer-1s0d78r, .framer-O8Dg8 .framer-1cb4j2q, .framer-O8Dg8 .framer-ktoqth, .framer-O8Dg8 .framer-n81n3y, .framer-O8Dg8 .framer-f2zxlg, .framer-O8Dg8 .framer-1xod0cq, .framer-O8Dg8 .framer-j2sqgz, .framer-O8Dg8 .framer-bhxn1n, .framer-O8Dg8 .framer-l8gier, .framer-O8Dg8 .framer-1uyxi1p, .framer-O8Dg8 .framer-1rrrrpe, .framer-O8Dg8 .framer-1gzq2ze, .framer-O8Dg8 .framer-1w754s, .framer-O8Dg8 .framer-1nqa82h, .framer-O8Dg8 .framer-1vggjln, .framer-O8Dg8 .framer-2q03hf, .framer-O8Dg8 .framer-1oyee31, .framer-O8Dg8 .framer-bv04cz, .framer-O8Dg8 .framer-hyklpb, .framer-O8Dg8 .framer-15k0i19, .framer-O8Dg8 .framer-1qrktfd, .framer-O8Dg8 .framer-n9zr4i, .framer-O8Dg8 .framer-136uv4t, .framer-O8Dg8 .framer-rl0gm, .framer-O8Dg8 .framer-9yq341, .framer-O8Dg8 .framer-vwp8xg, .framer-O8Dg8 .framer-11tqj6s, .framer-O8Dg8 .framer-13a27v, .framer-O8Dg8 .framer-ffzx3q, .framer-O8Dg8 .framer-1gdpxjf, .framer-O8Dg8 .framer-1hh5u2l, .framer-O8Dg8 .framer-1pep9xj, .framer-O8Dg8 .framer-1npeoyv, .framer-O8Dg8 .framer-1tghnij, .framer-O8Dg8 .framer-gqenje, .framer-O8Dg8 .framer-25ju8n, .framer-O8Dg8 .framer-p01set, .framer-O8Dg8 .framer-lntqc3, .framer-O8Dg8 .framer-173gqgu, .framer-O8Dg8 .framer-1fu34tr, .framer-O8Dg8 .framer-85a3bm, .framer-O8Dg8 .framer-1q6im2f, .framer-O8Dg8 .framer-1938a77, .framer-O8Dg8 .framer-1eciqjv, .framer-O8Dg8 .framer-117o6sr, .framer-O8Dg8 .framer-ghvkty, .framer-O8Dg8 .framer-113zek3, .framer-O8Dg8 .framer-116pozu, .framer-O8Dg8 .framer-1xfifs2, .framer-O8Dg8 .framer-19vi04v, .framer-O8Dg8 .framer-181tr1z, .framer-O8Dg8 .framer-wbj6e1, .framer-O8Dg8 .framer-1s066ft, .framer-O8Dg8 .framer-rix9bz, .framer-O8Dg8 .framer-1p1n5ih, .framer-O8Dg8 .framer-1amu9j1, .framer-O8Dg8 .framer-12zpbdx, .framer-O8Dg8 .framer-1s1v6ar, .framer-O8Dg8 .framer-1qq3phk, .framer-O8Dg8 .framer-k6gbtm, .framer-O8Dg8 .framer-q3y4d3, .framer-O8Dg8 .framer-vmqble, .framer-O8Dg8 .framer-ed5gr3, .framer-O8Dg8 .framer-xyg0po, .framer-O8Dg8 .framer-9c7ko9, .framer-O8Dg8 .framer-1ftutve, .framer-O8Dg8 .framer-bl3011, .framer-O8Dg8 .framer-f5nw37 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-1xhu9mo, .framer-O8Dg8 .framer-1gma7mu, .framer-O8Dg8 .framer-gyoo5, .framer-O8Dg8 .framer-5q57cp, .framer-O8Dg8 .framer-10o1g1p, .framer-O8Dg8 .framer-k7btqm, .framer-O8Dg8 .framer-tu0i5z, .framer-O8Dg8 .framer-f8i0ex, .framer-O8Dg8 .framer-19bn4zd, .framer-O8Dg8 .framer-1eb95e0, .framer-O8Dg8 .framer-1uj6erm, .framer-O8Dg8 .framer-1yj3qv4, .framer-O8Dg8 .framer-178p33m, .framer-O8Dg8 .framer-18um9hn, .framer-O8Dg8 .framer-5fpmqo, .framer-O8Dg8 .framer-enqptv, .framer-O8Dg8 .framer-l1b03c, .framer-O8Dg8 .framer-zpyn50, .framer-O8Dg8 .framer-1akq4do, .framer-O8Dg8 .framer-1uogh8q, .framer-O8Dg8 .framer-12o4pxk, .framer-O8Dg8 .framer-12kct4h, .framer-O8Dg8 .framer-1rm3e85, .framer-O8Dg8 .framer-14oo5h4, .framer-O8Dg8 .framer-1p3ho45, .framer-O8Dg8 .framer-p051x, .framer-O8Dg8 .framer-1nd3pvt, .framer-O8Dg8 .framer-lc4f9z, .framer-O8Dg8 .framer-3pb0ce, .framer-O8Dg8 .framer-1e89de0, .framer-O8Dg8 .framer-1kb5v4x, .framer-O8Dg8 .framer-p2hotb, .framer-O8Dg8 .framer-1n9nxot, .framer-O8Dg8 .framer-1277ime, .framer-O8Dg8 .framer-agf81n, .framer-O8Dg8 .framer-1pxig5o, .framer-O8Dg8 .framer-1vv2y3, .framer-O8Dg8 .framer-1o28trn, .framer-O8Dg8 .framer-zid4e, .framer-O8Dg8 .framer-17r1122, .framer-O8Dg8 .framer-1cgjj4, .framer-O8Dg8 .framer-14iz4mt, .framer-O8Dg8 .framer-df8vms, .framer-O8Dg8 .framer-1ld4ik6, .framer-O8Dg8 .framer-1j6gp44, .framer-O8Dg8 .framer-1h0m06c, .framer-O8Dg8 .framer-13r4jx2, .framer-O8Dg8 .framer-1klkdob, .framer-O8Dg8 .framer-jseju3, .framer-O8Dg8 .framer-1gz1ljm, .framer-O8Dg8 .framer-1naq4ie, .framer-O8Dg8 .framer-1owa5pb, .framer-O8Dg8 .framer-19urqed, .framer-O8Dg8 .framer-1qzoiaw, .framer-O8Dg8 .framer-1mlwurj, .framer-O8Dg8 .framer-1gyfy61, .framer-O8Dg8 .framer-133nc9f, .framer-O8Dg8 .framer-10fu090, .framer-O8Dg8 .framer-pk6zlk, .framer-O8Dg8 .framer-1hqaefp, .framer-O8Dg8 .framer-bu293k, .framer-O8Dg8 .framer-r2pak, .framer-O8Dg8 .framer-qwu8q9, .framer-O8Dg8 .framer-1dylm44, .framer-O8Dg8 .framer-r3btz9, .framer-O8Dg8 .framer-16ce2p4, .framer-O8Dg8 .framer-4dakut, .framer-O8Dg8 .framer-ndsnen, .framer-O8Dg8 .framer-j7i3de, .framer-O8Dg8 .framer-1o568mv, .framer-O8Dg8 .framer-1y39rly, .framer-O8Dg8 .framer-1qqluf8, .framer-O8Dg8 .framer-1vxr029, .framer-O8Dg8 .framer-twd00n, .framer-O8Dg8 .framer-x0do42, .framer-O8Dg8 .framer-1a5h4u1, .framer-O8Dg8 .framer-1vtt6uj, .framer-O8Dg8 .framer-1u8bi3w, .framer-O8Dg8 .framer-8du2ek, .framer-O8Dg8 .framer-kbasci, .framer-O8Dg8 .framer-13z3y8m, .framer-O8Dg8 .framer-1bbs55q, .framer-O8Dg8 .framer-175b7xl, .framer-O8Dg8 .framer-azintv, .framer-O8Dg8 .framer-uot393, .framer-O8Dg8 .framer-gmmgs, .framer-O8Dg8 .framer-1gfbdp6, .framer-O8Dg8 .framer-renir5, .framer-O8Dg8 .framer-1v0b50w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-O8Dg8 .framer-17f04mp, .framer-O8Dg8 .framer-7saghc, .framer-O8Dg8 .framer-19t33p0, .framer-O8Dg8 .framer-1e0ekf0, .framer-O8Dg8 .framer-t3g4re, .framer-O8Dg8 .framer-1hhqq84, .framer-O8Dg8 .framer-1xcn19y, .framer-O8Dg8 .framer-1adtl96, .framer-O8Dg8 .framer-aqa27c, .framer-O8Dg8 .framer-y17moz, .framer-O8Dg8 .framer-awfj6i, .framer-O8Dg8 .framer-gl0xko, .framer-O8Dg8 .framer-j1fs9l, .framer-O8Dg8 .framer-zi6oyb, .framer-O8Dg8 .framer-1qyian, .framer-O8Dg8 .framer-t30xqx, .framer-O8Dg8 .framer-1cmhrpc, .framer-O8Dg8 .framer-17me133, .framer-O8Dg8 .framer-1uarbi5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-1v7v6e4, .framer-O8Dg8 .framer-umhdil, .framer-O8Dg8 .framer-1brkii { --border-bottom-width: 0.1px; --border-color: #222222; --border-left-width: 0.1px; --border-right-width: 0.1px; --border-style: solid; --border-top-width: 0.1px; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; gap: 10px; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1j2udlc-container, .framer-O8Dg8 .framer-1ghi4jt-container, .framer-O8Dg8 .framer-636kvz-container { flex: none; height: 32px; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-O8Dg8 .framer-drq75t, .framer-O8Dg8 .framer-1at04le, .framer-O8Dg8 .framer-15ja513, .framer-O8Dg8 .framer-zpi3nm { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 160px; justify-content: space-between; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1j8yoeh, .framer-O8Dg8 .framer-w8m9ct, .framer-O8Dg8 .framer-nvqpsf, .framer-O8Dg8 .framer-1p39rj, .framer-O8Dg8 .framer-1ck1qji, .framer-O8Dg8 .framer-yh02x8, .framer-O8Dg8 .framer-ppgae1, .framer-O8Dg8 .framer-klu5we, .framer-O8Dg8 .framer-11p77wa, .framer-O8Dg8 .framer-yvjqlc, .framer-O8Dg8 .framer-1l1jx9e { --border-bottom-width: 0.1px; --border-color: #222222; --border-left-width: 0.1px; --border-right-width: 0.1px; --border-style: solid; --border-top-width: 0.1px; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-ploe2u-container, .framer-O8Dg8 .framer-y7odwv-container, .framer-O8Dg8 .framer-744hdg-container, .framer-O8Dg8 .framer-1w1qxlf-container, .framer-O8Dg8 .framer-65ekvo-container, .framer-O8Dg8 .framer-6gm15h-container, .framer-O8Dg8 .framer-1benwjm-container, .framer-O8Dg8 .framer-7q4pzo-container, .framer-O8Dg8 .framer-y2cuyh-container, .framer-O8Dg8 .framer-300fos-container, .framer-O8Dg8 .framer-oyzu17-container, .framer-O8Dg8 .framer-x68usg-container { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 32px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-O8Dg8 .framer-gfa22y, .framer-O8Dg8 .framer-1wdv96f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-ub0slh, .framer-O8Dg8 .framer-s65vt8 { flex: none; height: 33px; overflow: hidden; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1xkeixo-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 351px; }\",\".framer-O8Dg8 .framer-1qlascf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-6xvg2x-container, .framer-O8Dg8 .framer-ozhfh8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1voo54k, .framer-O8Dg8 .framer-ztjfas, .framer-O8Dg8 .framer-1g6y4by, .framer-O8Dg8 .framer-1jm1igh, .framer-O8Dg8 .framer-10with1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-t2bi9c { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-181vahv, .framer-O8Dg8 .framer-1e3s3bq { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-183g65s, .framer-O8Dg8 .framer-1kjovwi { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 275px; overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1lbgqqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 1px 0px 8px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-12hcnpq, .framer-O8Dg8 .framer-x31oci, .framer-O8Dg8 .framer-kyu85e, .framer-O8Dg8 .framer-1633tl, .framer-O8Dg8 .framer-ael80a, .framer-O8Dg8 .framer-l09blq, .framer-O8Dg8 .framer-114oo3s, .framer-O8Dg8 .framer-10yynge, .framer-O8Dg8 .framer-1tkdjnw, .framer-O8Dg8 .framer-ajcqoq, .framer-O8Dg8 .framer-u6brm5, .framer-O8Dg8 .framer-1580pra, .framer-O8Dg8 .framer-1i5f2vw, .framer-O8Dg8 .framer-1ikooap, .framer-O8Dg8 .framer-9m9zz1, .framer-O8Dg8 .framer-45p4ub, .framer-O8Dg8 .framer-3s6p7w, .framer-O8Dg8 .framer-1x0idlt, .framer-O8Dg8 .framer-pu8i1v, .framer-O8Dg8 .framer-160ksll, .framer-O8Dg8 .framer-1q23cni, .framer-O8Dg8 .framer-18ps64y, .framer-O8Dg8 .framer-68bu8d, .framer-O8Dg8 .framer-2euxjp, .framer-O8Dg8 .framer-1dhw3fr, .framer-O8Dg8 .framer-48ih0u, .framer-O8Dg8 .framer-aa0ws4, .framer-O8Dg8 .framer-y4qoiz, .framer-O8Dg8 .framer-lol5le, .framer-O8Dg8 .framer-1udrd31, .framer-O8Dg8 .framer-1nejr4e, .framer-O8Dg8 .framer-1qwlegc, .framer-O8Dg8 .framer-1vyt4dl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-O8Dg8 .framer-1qhdpa5, .framer-O8Dg8 .framer-l642o7, .framer-O8Dg8 .framer-40lcmt, .framer-O8Dg8 .framer-70y4yh, .framer-O8Dg8 .framer-139ibka { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 32px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-1jowz7b { 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: 410px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-ug9xxy-container { flex: none; height: auto; position: absolute; right: 0px; top: -1px; width: auto; }\",\".framer-O8Dg8 .framer-1geu0fy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-1chkhxt, .framer-O8Dg8 .framer-152dfzs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 1px 0px 8px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-gabmwy-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-zc041v { 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: 1538px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-xyo20b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O8Dg8 .framer-2azsn0, .framer-O8Dg8 .framer-1ikki82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-18hotaf, .framer-O8Dg8 .framer-1jzforh { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); 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%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-ig9ygu, .framer-O8Dg8 .framer-m0nbau, .framer-O8Dg8 .framer-a9d7ss, .framer-O8Dg8 .framer-1habsuu, .framer-O8Dg8 .framer-aseucf { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1ul64u6, .framer-O8Dg8 .framer-ubdtry { aspect-ratio: 1.3616425571628559 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 147px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8.framer-1tqpmnw, .framer-O8Dg8.framer-10ar0is, .framer-O8Dg8.framer-1usegza, .framer-O8Dg8.framer-196qgah, .framer-O8Dg8.framer-504hvi, .framer-O8Dg8.framer-6hi9uk, .framer-O8Dg8.framer-3ln7cs, .framer-O8Dg8.framer-pmlkt8, .framer-O8Dg8.framer-1dvlt3j, .framer-O8Dg8.framer-c1cfs9, .framer-O8Dg8.framer-1xtlzox, .framer-O8Dg8.framer-15eg001, .framer-O8Dg8.framer-1bq3v8i, .framer-O8Dg8.framer-dsu5kd, .framer-O8Dg8.framer-tna3bw, .framer-O8Dg8.framer-nad3vr, .framer-O8Dg8.framer-120ptd, .framer-O8Dg8.framer-11nixwh, .framer-O8Dg8.framer-1jhsmwl, .framer-O8Dg8.framer-1lfqwox, .framer-O8Dg8.framer-1gn6s5f, .framer-O8Dg8.framer-w3zta6, .framer-O8Dg8.framer-1qog35l, .framer-O8Dg8.framer-1iyj3gk, .framer-O8Dg8.framer-397lzg, .framer-O8Dg8.framer-fv4x2m { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-O8Dg8.framer-1d727gb { aspect-ratio: 1.3484162895927603 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 148px); left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-4x2yz7, .framer-O8Dg8 .framer-cfl5v5 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-mu1lb8, .framer-O8Dg8 .framer-1s57j24, .framer-O8Dg8 .framer-6m9tpc, .framer-O8Dg8 .framer-dplg0j { aspect-ratio: 1.5988439306358382 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 125px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8.framer-13s3epa, .framer-O8Dg8.framer-zpqlwt, .framer-O8Dg8.framer-1s39l2o, .framer-O8Dg8.framer-xly14d, .framer-O8Dg8.framer-1f2e60c, .framer-O8Dg8.framer-3lv6of { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 85%; left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 267px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8.framer-1lcii62 { aspect-ratio: 1.0759493670886076 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 186px); left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 64%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-1vfrn79 { aspect-ratio: 3.425287356321839 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-17c7hre { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 244px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-b157um, .framer-O8Dg8 .framer-1u61kjf { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1rmnxul { cursor: pointer; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1cyjccx, .framer-O8Dg8 .framer-ylasni { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-jzo1u1, .framer-O8Dg8 .framer-1gn0a5w { aspect-ratio: 1.1381241250583294 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 176px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1ee2itx { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1x9h9ci, .framer-O8Dg8 .framer-18a6yqj { aspect-ratio: 1.0927654609101516 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 183px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8.framer-92gtp2 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-O8Dg8.framer-1u2yiuk { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 85%; left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 267px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-O8Dg8 .framer-4w7hu8 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1kcyren, .framer-O8Dg8 .framer-ubu8ey, .framer-O8Dg8 .framer-qnpn0y, .framer-O8Dg8 .framer-1eo33dj, .framer-O8Dg8 .framer-49ffx0, .framer-O8Dg8 .framer-kfwitk, .framer-O8Dg8 .framer-1hg1s64, .framer-O8Dg8 .framer-1cje68m, .framer-O8Dg8 .framer-2crxl6 { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1wnmk1e, .framer-O8Dg8 .framer-10db155 { aspect-ratio: 0.5016181229773463 / 1; cursor: pointer; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-O8Dg8 .framer-1hlsgzd { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 224px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1qrzmvg, .framer-O8Dg8 .framer-1i8zvce { align-content: center; align-items: center; background-color: #999999; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1ke1hez { aspect-ratio: 1.5939306358381502 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 125px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-i34np2, .framer-O8Dg8 .framer-awjcyu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 224px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-j7i4oo { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-rm8czl { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-16kzetu, .framer-O8Dg8 .framer-1wekm0a { flex: none; height: 170px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-O8Dg8 .framer-st9jkv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 216px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-1newhq7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-O8Dg8 .framer-1ujx0b3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-jns1ys, .framer-O8Dg8 .framer-19u4df2, .framer-O8Dg8 .framer-18svmkd, .framer-O8Dg8 .framer-1ums7r6, .framer-O8Dg8 .framer-rlqz9n { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8.framer-cisn9n { aspect-ratio: 1.3339805825242719 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; gap: 10px; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 267px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8.framer-143rdam { aspect-ratio: 0.9132602193419741 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 183px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8.framer-1non2fs { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-O8Dg8.framer-fnfvcd { aspect-ratio: 0.5332252836304701 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 80%; left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 107px); z-index: 2; }\",\".framer-O8Dg8 .framer-bbhgmo { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-18pt69o { aspect-ratio: 1.599056603773585 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: relative; width: 339px; }\",\".framer-O8Dg8.framer-11wn2z9 { aspect-ratio: 1.3603473227206946 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 272px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-1v7w90h { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1et7u3s { aspect-ratio: 1.5874125874125875 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: relative; width: 337px; }\",\".framer-O8Dg8.framer-1o8dnhd { aspect-ratio: 1.6552547770700636 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 70%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 331px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8.framer-qyoyug { aspect-ratio: 1.381683731513083 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 70%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 276px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8.framer-150mmhe { aspect-ratio: 0.8985714285714286 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 180px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-h7pnt4 { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 480px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8.framer-1s9lj3y { aspect-ratio: 1.1357900050479557 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 227px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-cl3y1f { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 224px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-md1jvf { align-content: center; align-items: center; background-color: #999999; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-uy28y2 { aspect-ratio: 1.5939306358381502 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8.framer-1ay672c { aspect-ratio: 0.8435348125478195 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; cursor: grab; flex: none; height: 80%; left: 30px; overflow: visible; position: fixed; top: 50%; transform: translateY(-50%); width: var(--framer-aspect-ratio-supported, 169px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-1of28uk, .framer-O8Dg8 .framer-d8zk4l, .framer-O8Dg8 .framer-1ybyc80, .framer-O8Dg8 .framer-1j1f9tn, .framer-O8Dg8 .framer-1no2z99, .framer-O8Dg8 .framer-6oksfo, .framer-O8Dg8 .framer-arqb7z, .framer-O8Dg8 .framer-1dn9jbz, .framer-O8Dg8 .framer-px70cx, .framer-O8Dg8 .framer-1c62in6 { --border-bottom-width: 0.1px; --border-color: #222222; --border-left-width: 0.1px; --border-right-width: 0.1px; --border-style: solid; --border-top-width: 0.1px; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; cursor: pointer; flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1f0kcdf-container, .framer-O8Dg8 .framer-9fop94-container, .framer-O8Dg8 .framer-1p5132j-container, .framer-O8Dg8 .framer-1hdv4mo-container, .framer-O8Dg8 .framer-mq5z29-container, .framer-O8Dg8 .framer-1pu8ga-container, .framer-O8Dg8 .framer-1d18ijv-container, .framer-O8Dg8 .framer-lgt7ec-container, .framer-O8Dg8 .framer-ycs41e-container, .framer-O8Dg8 .framer-e61wzp-container { flex: none; height: 30px; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-O8Dg8.framer-1qt50f7 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 90%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-npkrjd { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 224px; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1wlx1n5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 32px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-O8Dg8 .framer-1mj8u0l { --border-bottom-width: 0.1px; --border-color: #222222; --border-left-width: 0.1px; --border-right-width: 0.1px; --border-style: solid; --border-top-width: 0.1px; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1q4qc6y { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 50px; position: relative; width: 1340px; }\",\".framer-O8Dg8 .framer-ezzxhb { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-inwe0u { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 10px; height: 275px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1f1iw64 { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -66px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(50.00000000000002% - 1220px / 2); overflow: visible; padding: 0px; position: absolute; top: -66px; width: 1220px; }\",\".framer-O8Dg8 .framer-1wgpnba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-1od7uuq { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 480px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-apzi8j { aspect-ratio: 1.3616425571628559 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 456px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8.framer-tondtl, .framer-O8Dg8.framer-1b1vzei, .framer-O8Dg8.framer-1bjkpkf, .framer-O8Dg8.framer-frukvj, .framer-O8Dg8.framer-1j8vynu, .framer-O8Dg8.framer-1qf54h, .framer-O8Dg8.framer-1qo9d39, .framer-O8Dg8.framer-x4apc2, .framer-O8Dg8.framer-f6bxqy { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 85vh; left: 50%; overflow: visible; position: fixed; top: 50%; transform: translate(-50%, -50%); width: var(--framer-aspect-ratio-supported, 267px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-O8Dg8 .framer-1nin0px { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 480px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-hdimy3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1nyadku, .framer-O8Dg8 .framer-nglto1, .framer-O8Dg8 .framer-1m16r9c, .framer-O8Dg8 .framer-1va8l8d, .framer-O8Dg8 .framer-1qdq48d { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-k4fuqv, .framer-O8Dg8 .framer-lhhqj6 { aspect-ratio: 1.5988439306358382 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 180px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-hdrzh8 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1947i69 { aspect-ratio: 3.425287356321839 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 181px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-295j4q { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1aum9ad { aspect-ratio: 5.299421965317919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 157px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-hahqlh { aspect-ratio: 1.5939306358381502 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 257px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1rv2av0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 480px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1x8hkhz, .framer-O8Dg8 .framer-5jsnzw { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-12h4dy { aspect-ratio: 1.0927654609101516 / 1; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 471px); }\",\".framer-O8Dg8 .framer-1cg3fl3 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-tg1wf9 { aspect-ratio: 0.5016181229773463 / 1; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 216px); }\",\".framer-O8Dg8 .framer-mxuvsr, .framer-O8Dg8 .framer-1jcdesg, .framer-O8Dg8 .framer-u5mpzv { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.12043746035487857px 0.6021873017743928px 0.6141129605170832px -1.25px rgba(0, 0, 0, 0.18), 0.4577066606486914px 2.288533303243457px 2.333855194149068px -2.5px rgba(0, 0, 0, 0.16), 2px 10px 10.198039027185569px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-ddzdzr { aspect-ratio: 1.1381241250583294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 422px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-1uhdypo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 224px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-dcmfbt { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-O8Dg8 .framer-5dbg9w { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-13rtdxd { flex: none; height: 170px; overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-6f45r0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 90%; }\",\".framer-O8Dg8 .framer-1q3lo2y { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 160px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-10kykov { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0.24087492070975713px 0.3613123810646357px 0.43424343879617605px -1.25px rgba(0, 0, 0, 0.18), 0.9154133212973828px 1.3731199819460742px 1.6502848340902525px -2.5px rgba(0, 0, 0, 0.16), 4px 6px 7.211102550927978px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-xm6tql { --border-bottom-width: 1px; --border-color: #f0eeee; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-O8Dg8 .framer-1fc81ww, .framer-O8Dg8 .framer-53l0aa { aspect-ratio: 3.672169811320755 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 109px); overflow: visible; position: relative; width: 100%; }\",\".framer-O8Dg8 .framer-9d4m4w { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 103px; overflow: visible; position: relative; width: 380px; }\",\".framer-O8Dg8 .framer-5ff4hy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 380px; }\",\".framer-O8Dg8 .framer-931ad8-container { flex: none; height: 66px; position: relative; width: 1200px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-O8Dg8[data-border=\"true\"]::after, .framer-O8Dg8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1194px) and (max-width: 1439px) { .framer-O8Dg8.framer-1v801oz { width: 1194px; } .framer-O8Dg8 .framer-14bauc4 { height: 112px; min-height: unset; } .framer-O8Dg8 .framer-1e1hlja-container { top: 32px; } .framer-O8Dg8 .framer-15v3nj8 { padding: 60px 0px 60px 0px; } .framer-O8Dg8 .framer-1q4qc6y, .framer-O8Dg8 .framer-9d4m4w { width: 100%; } .framer-O8Dg8 .framer-1f1iw64 { bottom: -67px; left: calc(49.720670391061475% - 101.39664804469272% / 2); top: -73px; width: 101%; } .framer-O8Dg8 .framer-1od7uuq, .framer-O8Dg8 .framer-qnpn0y, .framer-O8Dg8 .framer-1nin0px, .framer-O8Dg8 .framer-1nyadku, .framer-O8Dg8 .framer-1eo33dj, .framer-O8Dg8 .framer-nglto1, .framer-O8Dg8 .framer-49ffx0, .framer-O8Dg8 .framer-kfwitk, .framer-O8Dg8 .framer-awjcyu, .framer-O8Dg8 .framer-1rv2av0 { height: min-content; } .framer-O8Dg8 .framer-apzi8j { height: var(--framer-aspect-ratio-supported, 374px); } .framer-O8Dg8 .framer-hdimy3, .framer-O8Dg8 .framer-hdrzh8 { flex: none; height: min-content; } .framer-O8Dg8 .framer-k4fuqv, .framer-O8Dg8 .framer-lhhqj6 { height: var(--framer-aspect-ratio-supported, 145px); } .framer-O8Dg8 .framer-1947i69 { height: var(--framer-aspect-ratio-supported, 149px); } .framer-O8Dg8 .framer-295j4q, .framer-O8Dg8 .framer-1m16r9c { height: 224px; } .framer-O8Dg8 .framer-1aum9ad { height: var(--framer-aspect-ratio-supported, 129px); } .framer-O8Dg8 .framer-hahqlh { height: var(--framer-aspect-ratio-supported, 211px); } .framer-O8Dg8 .framer-tg1wf9 { flex: none; height: var(--framer-aspect-ratio-supported, 379px); width: 100%; } .framer-O8Dg8 .framer-1nejr4e { gap: 4px; } .framer-O8Dg8 .framer-ddzdzr { height: var(--framer-aspect-ratio-supported, 344px); } .framer-O8Dg8 .framer-1fc81ww, .framer-O8Dg8 .framer-53l0aa { aspect-ratio: unset; height: 103px; } .framer-O8Dg8 .framer-5ff4hy { flex: 1 0 0px; height: 1px; width: 100%; }}\",\"@media (min-width: 744px) and (max-width: 1193px) { .framer-O8Dg8.framer-1v801oz { width: 744px; } .framer-O8Dg8 .framer-14bauc4 { height: 112px; min-height: unset; order: 0; } .framer-O8Dg8 .framer-1e1hlja-container { top: 28px; } .framer-O8Dg8 .framer-11qdnc6, .framer-O8Dg8 .framer-gabmwy-container { order: 1; } .framer-O8Dg8 .framer-1esvcza, .framer-O8Dg8 .framer-ztjfas { order: 2; } .framer-O8Dg8 .framer-1jowz7b { min-height: unset; order: 8; } .framer-O8Dg8 .framer-1geu0fy { order: 6; } .framer-O8Dg8 .framer-o79580 { order: 0; } .framer-O8Dg8 .framer-zc041v { min-height: unset; order: 7; } .framer-O8Dg8 .framer-1ul64u6 { height: var(--framer-aspect-ratio-supported, 483px); } .framer-O8Dg8 .framer-mu1lb8, .framer-O8Dg8 .framer-1s57j24 { height: var(--framer-aspect-ratio-supported, 191px); } .framer-O8Dg8 .framer-1vfrn79 { height: var(--framer-aspect-ratio-supported, 192px); } .framer-O8Dg8 .framer-jzo1u1 { height: var(--framer-aspect-ratio-supported, 578px); } .framer-O8Dg8 .framer-1x9h9ci { height: var(--framer-aspect-ratio-supported, 602px); } .framer-O8Dg8 .framer-1wnmk1e { width: var(--framer-aspect-ratio-supported, 216px); } .framer-O8Dg8 .framer-1ke1hez { height: var(--framer-aspect-ratio-supported, 413px); } .framer-O8Dg8 .framer-931ad8-container { order: 17; width: 100%; }}\",\"@media (max-width: 743px) { .framer-O8Dg8.framer-1v801oz { overflow: visible; width: 390px; } .framer-O8Dg8 .framer-14bauc4 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%); flex-direction: row; gap: 12px; height: 87px; justify-content: center; min-height: unset; min-width: 380px; order: 3; overflow: visible; padding: 0px 32px 0px 32px; position: sticky; top: 0px; will-change: unset; } .framer-O8Dg8 .framer-1e1hlja-container { left: unset; position: relative; top: unset; transform: unset; } .framer-O8Dg8 .framer-qst743-container { position: relative; right: unset; top: unset; } .framer-O8Dg8 .framer-1j653ye { order: 4; } .framer-O8Dg8 .framer-dc6z1 { min-height: unset; order: 8; } .framer-O8Dg8 .framer-1qlascf { order: 5; } .framer-O8Dg8 .framer-st9jkv { flex-direction: column; min-height: unset; order: 7; } .framer-O8Dg8 .framer-1newhq7, .framer-O8Dg8 .framer-1ujx0b3 { flex: none; width: 100%; } .framer-O8Dg8 .framer-ubdtry { height: var(--framer-aspect-ratio-supported, 249px); } .framer-O8Dg8 .framer-6m9tpc, .framer-O8Dg8 .framer-dplg0j { height: var(--framer-aspect-ratio-supported, 212px); } .framer-O8Dg8.framer-11wn2z9 { height: 70%; } .framer-O8Dg8.framer-1o8dnhd { height: 60%; } .framer-O8Dg8 .framer-1gn0a5w { height: var(--framer-aspect-ratio-supported, 298px); } .framer-O8Dg8 .framer-18a6yqj { height: var(--framer-aspect-ratio-supported, 310px); } .framer-O8Dg8 .framer-10db155 { width: var(--framer-aspect-ratio-supported, 216px); } .framer-O8Dg8 .framer-uy28y2 { height: var(--framer-aspect-ratio-supported, 213px); } .framer-O8Dg8 .framer-931ad8-container { order: 10; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3678\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xYCWBWZB9\":{\"layout\":[\"fixed\",\"auto\"]},\"bS5PmDxEj\":{\"layout\":[\"fixed\",\"auto\"]},\"O8PxrQM0N\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rLUVV3IUo\":{\"pattern\":\":rLUVV3IUo\",\"name\":\"abbout\"},\"WKEdafbWI\":{\"pattern\":\":WKEdafbWI\",\"name\":\"about\"},\"hZ15_5H2u\":{\"pattern\":\":hZ15_5H2u\",\"name\":\"about\"},\"bBqjYBZAJ\":{\"pattern\":\":bBqjYBZAJ\",\"name\":\"about\"},\"KHXaQ3kHc\":{\"pattern\":\":KHXaQ3kHc\",\"name\":\"abbout\"},\"icY4AybrF\":{\"pattern\":\":icY4AybrF\",\"name\":\"about\"},\"vk2VeQru8\":{\"pattern\":\":vk2VeQru8\",\"name\":\"about\"},\"D5u_uwmtW\":{\"pattern\":\":D5u_uwmtW\",\"name\":\"about\"},\"XQ0Sb8lg1\":{\"pattern\":\":XQ0Sb8lg1\",\"name\":\"contacto\"},\"GOYbW6Y6A\":{\"pattern\":\":GOYbW6Y6A\",\"name\":\"contacto\"},\"nDaSRmZbx\":{\"pattern\":\":nDaSRmZbx\",\"name\":\"contacto\"},\"CDzMh7530\":{\"pattern\":\":CDzMh7530\",\"name\":\"contacto\"},\"exB5LWUyS\":{\"pattern\":\":exB5LWUyS\",\"name\":\"\"},\"AEU_XrRiU\":{\"pattern\":\":AEU_XrRiU\",\"name\":\"\"},\"UwZgGn9sA\":{\"pattern\":\":UwZgGn9sA\",\"name\":\"abbout\"},\"ojUDRtsxC\":{\"pattern\":\":ojUDRtsxC\",\"name\":\"about\"},\"aHjF1__Tg\":{\"pattern\":\":aHjF1__Tg\",\"name\":\"about\"},\"NrbEe8ftl\":{\"pattern\":\":NrbEe8ftl\",\"name\":\"about\"},\"Ce4_0xyt3\":{\"pattern\":\":Ce4_0xyt3\",\"name\":\"trabajos\"}}\n * @framerResponsiveScreen\n */const FramerpcWuwzkC9=withCSS(Component,css,\"framer-O8Dg8\");export default FramerpcWuwzkC9;FramerpcWuwzkC9.displayName=\"Home\";FramerpcWuwzkC9.defaultProps={height:3678,width:1440};addFonts(FramerpcWuwzkC9,[{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\"}]},...LENGTABHOMEFonts,...LENGDESKHOMEFonts,...NavBarFonts,...ContactButtonFonts,...MaterialFonts,...BotonFonts,...ModeloMobileFonts,...ModeloFonts,...MiniFooterFonts,...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\":\"FramerpcWuwzkC9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"3678\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xYCWBWZB9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bS5PmDxEj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O8PxrQM0N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"rLUVV3IUo\\\":{\\\"pattern\\\":\\\":rLUVV3IUo\\\",\\\"name\\\":\\\"abbout\\\"},\\\"WKEdafbWI\\\":{\\\"pattern\\\":\\\":WKEdafbWI\\\",\\\"name\\\":\\\"about\\\"},\\\"hZ15_5H2u\\\":{\\\"pattern\\\":\\\":hZ15_5H2u\\\",\\\"name\\\":\\\"about\\\"},\\\"bBqjYBZAJ\\\":{\\\"pattern\\\":\\\":bBqjYBZAJ\\\",\\\"name\\\":\\\"about\\\"},\\\"KHXaQ3kHc\\\":{\\\"pattern\\\":\\\":KHXaQ3kHc\\\",\\\"name\\\":\\\"abbout\\\"},\\\"icY4AybrF\\\":{\\\"pattern\\\":\\\":icY4AybrF\\\",\\\"name\\\":\\\"about\\\"},\\\"vk2VeQru8\\\":{\\\"pattern\\\":\\\":vk2VeQru8\\\",\\\"name\\\":\\\"about\\\"},\\\"D5u_uwmtW\\\":{\\\"pattern\\\":\\\":D5u_uwmtW\\\",\\\"name\\\":\\\"about\\\"},\\\"XQ0Sb8lg1\\\":{\\\"pattern\\\":\\\":XQ0Sb8lg1\\\",\\\"name\\\":\\\"contacto\\\"},\\\"GOYbW6Y6A\\\":{\\\"pattern\\\":\\\":GOYbW6Y6A\\\",\\\"name\\\":\\\"contacto\\\"},\\\"nDaSRmZbx\\\":{\\\"pattern\\\":\\\":nDaSRmZbx\\\",\\\"name\\\":\\\"contacto\\\"},\\\"CDzMh7530\\\":{\\\"pattern\\\":\\\":CDzMh7530\\\",\\\"name\\\":\\\"contacto\\\"},\\\"exB5LWUyS\\\":{\\\"pattern\\\":\\\":exB5LWUyS\\\",\\\"name\\\":\\\"\\\"},\\\"AEU_XrRiU\\\":{\\\"pattern\\\":\\\":AEU_XrRiU\\\",\\\"name\\\":\\\"\\\"},\\\"UwZgGn9sA\\\":{\\\"pattern\\\":\\\":UwZgGn9sA\\\",\\\"name\\\":\\\"abbout\\\"},\\\"ojUDRtsxC\\\":{\\\"pattern\\\":\\\":ojUDRtsxC\\\",\\\"name\\\":\\\"about\\\"},\\\"aHjF1__Tg\\\":{\\\"pattern\\\":\\\":aHjF1__Tg\\\",\\\"name\\\":\\\"about\\\"},\\\"NrbEe8ftl\\\":{\\\"pattern\\\":\\\":NrbEe8ftl\\\",\\\"name\\\":\\\"about\\\"},\\\"Ce4_0xyt3\\\":{\\\"pattern\\\":\\\":Ce4_0xyt3\\\",\\\"name\\\":\\\"trabajos\\\"}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "MaterialFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqhpvka", "args", "onTapq82t9m", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerI821SrwXh", "withCSS", "I821SrwXh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "VideoFonts", "getFonts", "Video", "MaterialFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1n1rg0f", "args", "onTap1yk7oe4", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "Framery3g78iBfU", "withCSS", "y3g78iBfU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "LENGTABHOMEFonts", "getFonts", "hWKuWpEge_default", "LENGDESKHOMEFonts", "mSk56KqVH_default", "NavBarFonts", "VjSrVhjTo_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ContactButtonFonts", "Zh6qlEsYR_default", "MaterialFonts", "Icon", "BotonFonts", "vacZoT4ID_default", "ModeloMobileFonts", "I821SrwXh_default", "ImageWithFX", "Image2", "ModeloFonts", "y3g78iBfU_default", "MiniFooterFonts", "oLhwq8RDm_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "inertia", "preventDefault", "e", "animation3", "animation4", "transformTemplate2", "animation5", "animation6", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed4", "isDisplayed5", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "isDisplayed6", "elementId14", "ref15", "elementId15", "ref16", "elementId16", "ref17", "elementId17", "ref18", "elementId18", "ref19", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText", "x", "getLoadingLazyAtYPosition", "Link", "l", "AnimatePresence", "Ga", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "overlay8", "overlay9", "overlay10", "overlay11", "overlay12", "overlay13", "overlay14", "overlay15", "overlay16", "overlay17", "overlay18", "overlay19", "overlay20", "overlay21", "overlay22", "overlay23", "overlay24", "overlay25", "overlay26", "overlay27", "css", "FramerpcWuwzkC9", "withCSS", "pcWuwzkC9_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
