{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/4QzPLn7NuM1IbHWQtAy9/Q1nl1UzXvEifZNvkdoXd/Clients.js", "ssg:https://framerusercontent.com/modules/abY4ztEMEkdGb0I3cUqQ/6PKqdkaRG9rXR6VQ1DZs/IilknqsQI.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withClickGA(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{console.log(\"ProbaloAhora\");window.gtag(\"event\",\"on_tryit_click\",{event_category:\"click\",event_label:\"hero\",value:1});}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClickGA\":{\"type\":\"reactHoc\",\"name\":\"withClickGA\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clients.map", "// Generated by Framer (b0164a3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import CTA from\"https://framerusercontent.com/modules/5GrtY43xGshMX07Vwsoc/RzhopUYgR1LdzSLMuBi0/FLXzApIyg.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Tag from\"#framer/local/canvasComponent/EwgjuU71G/EwgjuU71G.js\";import NavSimple,*as NavSimpleInfo from\"#framer/local/canvasComponent/hH1DdpI8D/hH1DdpI8D.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/hljNqlOx9/hljNqlOx9.js\";import FeatureSimple from\"#framer/local/canvasComponent/IMm2i7xki/IMm2i7xki.js\";import FeatureList from\"#framer/local/canvasComponent/PzjKYwnhA/PzjKYwnhA.js\";import LogoItessa from\"#framer/local/canvasComponent/tm3ntr_Fe/tm3ntr_Fe.js\";import{withClickGA,withHover}from\"#framer/local/codeFile/V1W80Wz/Clients.js\";import*as sharedStyle2 from\"#framer/local/css/Bgl_uNKYX/Bgl_uNKYX.js\";import*as sharedStyle1 from\"#framer/local/css/dGJYq65Lz/dGJYq65Lz.js\";import*as sharedStyle5 from\"#framer/local/css/GPDKd6Ic6/GPDKd6Ic6.js\";import*as sharedStyle4 from\"#framer/local/css/PWn1k_MD2/PWn1k_MD2.js\";import*as sharedStyle3 from\"#framer/local/css/UkYay4GtR/UkYay4GtR.js\";import*as sharedStyle from\"#framer/local/css/uUM82aRhQ/uUM82aRhQ.js\";import*as sharedStyle6 from\"#framer/local/css/Vh8sOD5QM/Vh8sOD5QM.js\";import metadataProvider from\"#framer/local/webPageMetadata/IilknqsQI/IilknqsQI.js\";const NavSimpleFonts=getFonts(NavSimple);const NavSimpleWithClickGAWithMappedReactProps1226c7r=withMappedReactProps(withClickGA(NavSimple),NavSimpleInfo);const TagFonts=getFonts(Tag);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ButtonWithHoverWithMappedReactProps1v1ipky=withMappedReactProps(withHover(Button),ButtonInfo);const CTAFonts=getFonts(CTA);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const FeatureSimpleFonts=getFonts(FeatureSimple);const ButtonWithClickGAWithMappedReactProps1v1ipky=withMappedReactProps(withClickGA(Button),ButtonInfo);const MotionDivWithFX=withFX(motion.div);const FeatureListFonts=getFonts(FeatureList);const LogoItessaFonts=getFonts(LogoItessa);const PhosphorFonts=getFonts(Phosphor);const breakpoints={Hw_19DBJP:\"(max-width: 809px)\",IhsBlG76f:\"(min-width: 1200px)\",JSHnK5hFh:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SBhWc\";const variantClassNames={Hw_19DBJP:\"framer-v-1sysy87\",IhsBlG76f:\"framer-v-6t96s3\",JSHnK5hFh:\"framer-v-1cam4o5\"};const transition1={delay:.2,duration:.7,ease:[0,.89,.39,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:50};const transition2={delay:.4,duration:.7,ease:[0,.89,.39,1],type:\"tween\"};const animation2={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.6,duration:.7,ease:[0,.89,.39,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:0,duration:3.5,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation5={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:120};const transition5={delay:0,duration:1,ease:[0,.88,.23,1.01],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:120};const animation7={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation8={opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:120};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:.3,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"IhsBlG76f\",Phone:\"Hw_19DBJP\",Tablet:\"JSHnK5hFh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"IhsBlG76f\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-SBhWc`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-SBhWc`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Hw_19DBJP\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"JSHnK5hFh\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"JSHnK5hFh\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Hw_19DBJP\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IhsBlG76f\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6t96s3\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2o5tlt-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{variant:\"onuwv4s61\"}},children:/*#__PURE__*/_jsx(NavSimpleWithClickGAWithMappedReactProps1226c7r,{height:\"100%\",id:\"pQv_dMl8J\",JU5116W8C:\"PqgBulBPi\",layoutId:\"pQv_dMl8J\",LylWg8UG8:5,oqrd6d5I6:\"rgba(255, 255, 255, 0)\",style:{height:\"100%\",width:\"100%\"},Tyvh_HtHO:\"rgb(0, 0, 0)\",variant:\"J7TtQthx_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cx3k8l\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrulq4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-woqt8f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1laqlns-container\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Lanzamiento!\",id:\"qpysqZ1E6\",layoutId:\"qpysqZ1E6\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Z2wjynIFK\",width:\"100%\",Z69PPXt7v:false})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-187puy7\",\"data-styles-preset\":\"uUM82aRhQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 0, 0) 52.8294%, rgb(34, 64, 171) 100%)\"},children:[\"Prometheo\",/*#__PURE__*/_jsx(\"br\",{}),\"by Itesa\"]})})}),className:\"framer-13fr10g\",\"data-framer-appear-id\":\"13fr10g\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Integramos AI directo a tus canales de venta y a tus procesos para que puedas dedicarte a lo tuyo y al mismo tiempo atender a tus clientes de la mejor manera.\"})}),className:\"framer-1dqfp2f\",\"data-framer-appear-id\":\"1dqfp2f\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-wxlu6y\",\"data-framer-appear-id\":\"wxlu6y\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:518},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:662,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qswvzz-container\",children:/*#__PURE__*/_jsx(ButtonWithHoverWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"pdyaKsG2h\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"pdyaKsG2h\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://prometheoapp.itesa.ar/register\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:530},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:674,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ubuo1q-container\",children:/*#__PURE__*/_jsx(CTA,{bVToBLBTS:\"Conocer m\\xe1s \",height:\"100%\",id:\"fJnvEX01P\",KqeH5xil_:\"rgb(0, 0, 0)\",layoutId:\"fJnvEX01P\",MJWWsEY26:\"https://api.whatsapp.com/send?phone=16479309315&text=Hola!%20Quiero%20crear%20un%20Agente%20con%20Prometheo\",variant:\"uvXz5tOXs\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11y2b10\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(632),pixelHeight:1500,pixelWidth:1500,sizes:\"min(min(100vw - 40px, 1200px), 600px)\",src:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png\",srcSet:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png 1500w\"}},JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"561px\",src:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png\",srcSet:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png 1500w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(206.99094161037272),pixelHeight:1500,pixelWidth:1500,sizes:\"calc(min(max((min(max(100vw - 80px, 1px), 1200px) - 10px) / 2, 1px), 600px) + 147px)\",src:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png\",srcSet:\"https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mS28QhWcSped7JSQ7vltnisa5c8.png 1500w\"},className:\"framer-1f7jeqz\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\",style:{rotate:-163}})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"214.1243px\",src:\"https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png\",srcSet:\"https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(141),pixelHeight:1500,pixelWidth:1500,sizes:\"236px\",src:\"https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png\",srcSet:\"https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png?scale-down-to=512 512w,https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CoAe1eW9S1x6kWgYfFZw038Bw.png 1500w\"},className:\"framer-1of1rfa hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"220px\",src:\"https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png\",srcSet:\"https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png?scale-down-to=512 512w,https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(815),pixelHeight:1500,pixelWidth:1500,sizes:\"243px\",src:\"https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png\",srcSet:\"https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png?scale-down-to=512 512w,https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MJeIlKDeZABMXLwJpB6Bztr0ofE.png 1500w\"},className:\"framer-fzqp3k hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\",style:{rotate:35}})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dg5e1x\",\"data-framer-name\":\"Logo Strip\",name:\"Logo Strip\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-brdwsi-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"BqXkMYnSD\",layoutId:\"BqXkMYnSD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3xe56\",\"data-framer-name\":\"Logo Day\",name:\"Logo Day\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhhymn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:14,intrinsicWidth:150,pixelHeight:28,pixelWidth:300,src:\"https://framerusercontent.com/images/xbK4mhyYkRHQvEDbEmTWyT1gY.png\"},className:\"framer-1iab0n9\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hs25hl\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1100,intrinsicWidth:2500,pixelHeight:2200,pixelWidth:5e3,sizes:\"75px\",src:\"https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/gGXSJIHuyt0gwCUwHyYsqExZUFY.png 5000w\"},className:\"framer-l5yt3c\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ht6ktm\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:200,pixelHeight:200,pixelWidth:400,src:\"https://framerusercontent.com/images/2EoUd2DOqv1dl8mtRcPYlYYKg.png\"},className:\"framer-134vlub\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1han8ud\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:277.5,intrinsicWidth:512,pixelHeight:555,pixelWidth:1024,sizes:\"55.3514px\",src:\"https://framerusercontent.com/images/JatcXZJOBbQfnV8seuhIvhg47UE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JatcXZJOBbQfnV8seuhIvhg47UE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JatcXZJOBbQfnV8seuhIvhg47UE.png 1024w\"},className:\"framer-1s8i5zf\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-noqn37\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:800,pixelHeight:500,pixelWidth:1600,sizes:\"75px\",src:\"https://framerusercontent.com/images/sq2Sda142Rq4iWTjhH8wA3r3SHU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sq2Sda142Rq4iWTjhH8wA3r3SHU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sq2Sda142Rq4iWTjhH8wA3r3SHU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sq2Sda142Rq4iWTjhH8wA3r3SHU.png 1600w\"},className:\"framer-1yer0g7\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18i8gm7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:600,pixelHeight:384,pixelWidth:1200,sizes:\"75px\",src:\"https://framerusercontent.com/images/pJwzLTXr1SMUU6Mkm7xb5F7p4Bc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pJwzLTXr1SMUU6Mkm7xb5F7p4Bc.png?scale-down-to=512 512w,https://framerusercontent.com/images/pJwzLTXr1SMUU6Mkm7xb5F7p4Bc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pJwzLTXr1SMUU6Mkm7xb5F7p4Bc.png 1200w\"},className:\"framer-h1t18w\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bidf82\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41,intrinsicWidth:195.5,pixelHeight:82,pixelWidth:391,src:\"https://framerusercontent.com/images/jcbpzR11X0GZ228zcckIhGrkD4.png\"},className:\"framer-4byw8u\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rn7qph\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:23.5,intrinsicWidth:150,pixelHeight:47,pixelWidth:300,src:\"https://framerusercontent.com/images/xhnv4va0ESnuEy04YtwELkNDo.png\"},className:\"framer-1wpp6nw\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lgzhn3\"})]})],speed:30,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q09ih6\",\"data-framer-name\":\"Features Product\",name:\"Features Product\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c1ypq0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tczmqq-container\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Aumenta tu productividad\",id:\"mTmknDgpL\",layoutId:\"mTmknDgpL\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Z2wjynIFK\",width:\"100%\",Z69PPXt7v:false})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",children:\"Vendemos por vos\"})}),className:\"framer-qvtamp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tu asistente podr\\xe1 responder todas las consultas de tus clientes y si lo deseas podes entrenarlo para que cierre las ventas directamente en la conversaci\\xf3n. \"})}),className:\"framer-19akkxu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dhk5c\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1414,intrinsicWidth:2280,loading:getLoadingLazyAtYPosition(1668.4),pixelHeight:1964,pixelWidth:3024,sizes:\"min(100vw - 40px, 1200px)\",src:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png\",srcSet:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png 3024w\"}},JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1414,intrinsicWidth:2280,pixelHeight:1964,pixelWidth:3024,sizes:\"min(100vw - 80px, 1200px)\",src:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png\",srcSet:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png 3024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1414,intrinsicWidth:2280,loading:getLoadingLazyAtYPosition(1569.4),pixelHeight:1964,pixelWidth:3024,sizes:\"min(100vw - 80px, 1200px)\",src:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png\",srcSet:\"https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/udVZkJWjpDD5X9iiFHuTtIFOgk.png 3024w\"},className:\"framer-19nvram\",\"data-border\":true,\"data-framer-name\":\"App_2x\",name:\"App_2x\",style:{transformPerspective:1200}})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"252px\",src:\"https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png\",srcSet:\"https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(1683.4),pixelHeight:1500,pixelWidth:1500,sizes:\"252px\",src:\"https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png\",srcSet:\"https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mIeiiFyiLX8guUCulp8nzYRde7s.png 1500w\"},className:\"framer-1gjb52s hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"252px\",src:\"https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png\",srcSet:\"https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png?scale-down-to=512 512w,https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(1935.4),pixelHeight:1500,pixelWidth:1500,sizes:\"252px\",src:\"https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png\",srcSet:\"https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png?scale-down-to=512 512w,https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/y2xlq1h3icZ4jgx95T5M5Jv9fhg.png 1500w\"},className:\"framer-pnoogb hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15swlg5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"max(min(100vw - 40px, 1200px), 200px)\",y:2475.4},JSHnK5hFh:{width:\"max((min(100vw - 80px, 1200px) - 40px) / 2, 200px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:\"max((min(100vw - 80px, 1200px) - 120px) / 4, 200px)\",y:2376.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11tfarj-container\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Leaf\",height:\"100%\",id:\"QYwoe1yxa\",iHqIagJOF:\"Conoce mas\",layoutId:\"QYwoe1yxa\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Integraci\\xf3n rapida\",ZdZM7np2V:true,ZfP85W1Qa:\"Integra rapidamente tu linea de WhatsApp y IG\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"max(min(100vw - 40px, 1200px), 200px)\",y:2692.4},JSHnK5hFh:{width:\"max((min(100vw - 80px, 1200px) - 40px) / 2, 200px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:\"max((min(100vw - 80px, 1200px) - 120px) / 4, 200px)\",y:2376.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18clc0z-container\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Target\",height:\"100%\",id:\"UyDQg0nUy\",iHqIagJOF:\"Conoce mas\",layoutId:\"UyDQg0nUy\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"CRM en tiempo real\",ZdZM7np2V:true,ZfP85W1Qa:\"Mira todas las conversaciones en tiempo real. Podes intervenir si hace falta\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"max(min(100vw - 40px, 1200px), 200px)\",y:2909.4},JSHnK5hFh:{width:\"max((min(100vw - 80px, 1200px) - 40px) / 2, 200px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:\"max((min(100vw - 80px, 1200px) - 120px) / 4, 200px)\",y:2376.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvpjnr-container\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Brain\",height:\"100%\",id:\"ikcl932d7\",iHqIagJOF:\"Conoce mas\",layoutId:\"ikcl932d7\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Integrado con GPT-4o\",ZdZM7np2V:true,ZfP85W1Qa:\"Usamos el ultimo modelo de OpenAI para que tu asistente sea el mas inteligente\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"max(min(100vw - 40px, 1200px), 200px)\",y:3126.4},JSHnK5hFh:{width:\"max((min(100vw - 80px, 1200px) - 40px) / 2, 200px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:\"max((min(100vw - 80px, 1200px) - 120px) / 4, 200px)\",y:2376.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pmhhkg-container\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"TagChevron\",height:\"100%\",id:\"JDr42gMMp\",iHqIagJOF:\"Conoce mas\",layoutId:\"JDr42gMMp\",Pzs4GcH4x:\"rgb(0, 0, 0)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Smart Tags\",ZdZM7np2V:true,ZfP85W1Qa:\"Sistema de tags inteligente que se encarga de clasificar a los leads por vos\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ycmxk\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h02tdf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbjvbr-container\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Everything you need\",id:\"kzO5HAo0P\",layoutId:\"kzO5HAo0P\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Z2wjynIFK\",width:\"100%\",Z69PPXt7v:false})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",children:\"Nos integramos con tus procesos\"})}),className:\"framer-1sqkc6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Con Prometheo, es posible construir funciones que encajen perfectamente en tus operaciones existentes. El modelo comprende qu\\xe9 tarea llevar a cabo y la realiza. \"})}),className:\"framer-19o51up\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hjwtzt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-acg8fm\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f54332\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3730.8),pixelHeight:1500,pixelWidth:1500,sizes:\"317.0249px\",src:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png\",srcSet:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png 1500w\"}},JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"317.0249px\",src:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png\",srcSet:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3140.8),pixelHeight:1500,pixelWidth:1500,sizes:\"317.0249px\",src:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png\",srcSet:\"https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zrh9kSWXaKcO7lUaSip2SW6KdP4.png 1500w\"},className:\"framer-hljstx\",\"data-framer-name\":\"cube\",name:\"cube\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dg66y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Funciones Custom\"})}),className:\"framer-tp20y0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Entender tu proceso es esencial para nosotros. De esta forma podemos desarrollar funciones que se integren y te solucionen tus dolores de cabeza.\"})}),className:\"framer-14wk7eh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pw6z08\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dd0hkt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(4286.6),pixelHeight:1500,pixelWidth:1500,sizes:\"317px\",src:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png\",srcSet:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=512 512w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png 1500w\"}},JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"317px\",src:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png\",srcSet:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=512 512w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3140.8),pixelHeight:1500,pixelWidth:1500,sizes:\"317px\",src:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png\",srcSet:\"https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=512 512w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QBkCPoeejpECqrXOviZdvDrmKws.png 1500w\"},className:\"framer-1vwy77n\",\"data-framer-name\":\"star\",name:\"star\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g75qq1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Entrenamiento con casos de exito\"})}),className:\"framer-ezsv8l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Comp\\xe1rtenos esas conversaciones donde todo salio bien para que el asistente las tome  como par\\xe1metros y las repita constantemente\"})}),className:\"framer-1ipewts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-18b0xi2\",\"data-framer-name\":\"Header\",name:\"Header\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9u3zr1 hidden-1cam4o5\",\"data-framer-name\":\"Feature Night\",name:\"Feature Night\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16mugze\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t2hdvi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multiples asistentes para multiples entornos\"})}),className:\"framer-7kz9kh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entendemos que las circunstancias cambian constantemente, por eso podr\\xe1s seleccionar de los diferentes asistentes que generes, al que mas se adapte a tus necesidades\"})}),className:\"framer-13zu5a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:4622.099999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:4371.299999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1222b59-container\",children:/*#__PURE__*/_jsx(ButtonWithClickGAWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"r6_KHqUcy\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"r6_KHqUcy\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"zb8n5Cev9\",width:\"100%\",yTZZaFOb3:\"https://prometheoapp.itesa.ar/register\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ug21s2\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(4641.099999999999),pixelHeight:3392,pixelWidth:1560,positionX:\"center\",positionY:\"center\",sizes:\"calc(max(min(90vw, 1200px) - 40px, 1px) - 80px)\",src:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048 941w,https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3896.6),pixelHeight:3392,pixelWidth:1560,positionX:\"center\",positionY:\"center\",sizes:\"calc(max((max(min(100vw - 80px, 1200px) - 80px, 1px) - 40px) / 2, 1px) - 80px)\",src:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048 941w,https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png 1560w\"},className:\"framer-2b71hi\",\"data-framer-name\":\"Shape Icon\",name:\"Shape Icon\"})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bcuime hidden-6t96s3 hidden-1sysy87\",\"data-framer-name\":\"Feature Night\",name:\"Feature Night\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pvhjpa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rmpr4m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multiples asistentes para multiples entornos\"})}),className:\"framer-9dzufu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entendemos que las circunstancias cambian constantemente, por eso podr\\xe1s seleccionar de los diferentes asistentes que generes, al que mas se adapte a tus necesidades\"})}),className:\"framer-1n26rvi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r0t59u-container\",children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"gOh9IX0bS\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"gOh9IX0bS\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"zb8n5Cev9\",width:\"100%\",yTZZaFOb3:\"https://api.whatsapp.com/send?phone=16475609602&text=Hola!%20Quiero%20integrar%20Prometheo%20a%20mis%20procesos\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nqf2em\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:3392,pixelWidth:1560,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png?scale-down-to=2048 941w,https://framerusercontent.com/images/hG4MIZgCK5tCglPjI7c6Xy0UZTQ.png 1560w\"},className:\"framer-fr9dq2\",\"data-framer-name\":\"Shape Icon\",name:\"Shape Icon\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ek2ar\",\"data-framer-name\":\"Pricing\",name:\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4qayq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",children:\"Precios\"})}),className:\"framer-3sqizy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Completamente adaptables segun tus necesidades\"})}),className:\"framer-kw4ubu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3nvrv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rttdj0\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5rbd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-13rf66x\",\"data-styles-preset\":\"GPDKd6Ic6\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Multi-Channel\"})}),className:\"framer-43pc7z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gq7wpd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$50\"})}),className:\"framer-8ahn3w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-13rf66x\",\"data-styles-preset\":\"GPDKd6Ic6\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"/mes\"})}),className:\"framer-ebs76m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"calc(min(100vw - 40px, 320px) - 80px)\",y:5338.599999999999},JSHnK5hFh:{width:\"calc(min(100vw - 80px, 320px) - 80px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"calc(min(max((100vw - 100px) / 2, 1px), 320px) - 80px)\",y:5372.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i4an7y-container\",children:/*#__PURE__*/_jsx(ButtonWithClickGAWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"kfKfNAxcm\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"kfKfNAxcm\",RmkZjgJwi:\"ArrowRight\",style:{width:\"100%\"},UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"zb8n5Cev9\",width:\"100%\",yTZZaFOb3:\"https://prometheoapp.itesa.ar/register\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8g8t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5422.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5456.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kd89ir-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"zArhObp7u\",jTcf_EQ_W:\"Conexion 1 una linea de WhatsApp\",layoutId:\"zArhObp7u\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5461.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5495.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gz8zo3-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"i1VZIESPV\",jTcf_EQ_W:\"Multples Asistentes\",layoutId:\"i1VZIESPV\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5500.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5534.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13e2w58-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"Sa63eVG3I\",jTcf_EQ_W:\"Smart Tags\",layoutId:\"Sa63eVG3I\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5539.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5573.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dc76z5-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"UBohRpNuW\",jTcf_EQ_W:\"CRM\",layoutId:\"UBohRpNuW\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5578.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5612.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0df75-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"ucHdUUtHd\",jTcf_EQ_W:\"Soporte Basico\",layoutId:\"ucHdUUtHd\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5617.599999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5651.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uwa4eu-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"AB866aFhI\",jTcf_EQ_W:\"Conexion Instagram\",layoutId:\"AB866aFhI\",pbavLymla:\"Option\",T2CsNbFcm:\"rgb(255, 255, 255)\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kpsy9i\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5qt5k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-13rf66x\",\"data-styles-preset\":\"GPDKd6Ic6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Integrations\"})}),className:\"framer-13bidxp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1of39fu-container\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Custom\",id:\"XoM845sCA\",layoutId:\"XoM845sCA\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Nq1uWl93W\",width:\"100%\",Z69PPXt7v:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3a6ypp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",children:\"+$50\"})}),className:\"framer-1kj4fnt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-13rf66x\",\"data-styles-preset\":\"GPDKd6Ic6\",children:\"/mes\"})}),className:\"framer-1rayqi8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:\"calc(min(100vw - 40px, 320px) - 80px)\",y:5889.999999999999},JSHnK5hFh:{width:\"calc(min(100vw - 80px, 320px) - 80px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"calc(min(max((100vw - 100px) / 2, 1px), 320px) - 80px)\",y:5333.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f7shzs-container\",children:/*#__PURE__*/_jsx(ButtonWithClickGAWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"P9_doeQeN\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"P9_doeQeN\",RmkZjgJwi:\"ArrowRight\",style:{width:\"100%\"},UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://prometheoapp.itesa.ar/register\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hjtlqe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:5973.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5417.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10e0826-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"Pr1q5fCea\",jTcf_EQ_W:\"Google Calendar\",layoutId:\"Pr1q5fCea\",pbavLymla:\"Brain\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6012.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5456.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19y6094-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"w35fccrCz\",jTcf_EQ_W:\"Slack\",layoutId:\"w35fccrCz\",pbavLymla:\"Brain\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6051.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5495.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-my4e6i-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"MdLdKGcGh\",jTcf_EQ_W:\"Mercado Pago\",layoutId:\"MdLdKGcGh\",pbavLymla:\"Brain\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6090.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5534.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-35vlxj-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"jTRXfDZQg\",jTcf_EQ_W:\"APIS\",layoutId:\"jTRXfDZQg\",pbavLymla:\"Brain\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6129.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5573.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xoy27-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"Wc_k768jW\",jTcf_EQ_W:\"Completamente Customizable\",layoutId:\"Wc_k768jW\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6168.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5612.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kqdmur-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"ejsaN9pgD\",jTcf_EQ_W:\"Acciones Recurrentes\",layoutId:\"ejsaN9pgD\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6207.999999999999},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,y:5651.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qx4kro-container\",children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"SnF2MmwFJ\",jTcf_EQ_W:\"Soporte Prioritario\",layoutId:\"SnF2MmwFJ\",pbavLymla:\"Check\",T2CsNbFcm:\"rgb(0, 0, 0)\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kgs4b4\",\"data-framer-name\":\"CTA Day\",name:\"CTA Day\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qjhe3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Probalo Ahora\"})}),className:\"framer-4ej3zy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Habla con nuestro demo asistente ahora!\"})}),className:\"framer-ogz8qk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"360px\",src:\"https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png\",srcSet:\"https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:300,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(5959.8),pixelHeight:1500,pixelWidth:1500,sizes:\"360px\",src:\"https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png\",srcSet:\"https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F95XtBuIu9yRJpVFOQe6khYgo.png 1500w\"},className:\"framer-laag1y hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:1500,pixelWidth:1500,sizes:\"359.5px\",src:\"https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png\",srcSet:\"https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:300,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(5768.400000000001),pixelHeight:1500,pixelWidth:1500,sizes:\"359.5px\",src:\"https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png\",srcSet:\"https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fTvRR9UO6UHLEJxbKleRMkrgzgo.png 1500w\"},className:\"framer-19h8uav hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",name:\"Shape Holo\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4s9ye\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6586.4},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:6149.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16x8bp0-container\",children:/*#__PURE__*/_jsx(ButtonWithClickGAWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"O5yyzh1UG\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Probalo Ahora\",layoutId:\"O5yyzh1UG\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(0, 0, 0)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:\"https://prometheoapp.itesa.ar/register\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6598.4},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:6161.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-klxiqt-container\",children:/*#__PURE__*/_jsx(CTA,{bVToBLBTS:\"Conocer m\\xe1s\",height:\"100%\",id:\"LJqpS7S6t\",KqeH5xil_:\"rgb(0, 0, 0)\",layoutId:\"LJqpS7S6t\",MJWWsEY26:\"https://api.whatsapp.com/send?phone=16479309315&text=Hola!%20Quiero%20crear%20un%20Agente%20con%20Prometheo\",variant:\"uvXz5tOXs\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpuq9d\",\"data-framer-name\":\"Footer Complete Night\",name:\"Footer Complete Night\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brorf1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wq09l\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ws7gm8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:6780.4},JSHnK5hFh:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:6403.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q6xtth-container\",children:/*#__PURE__*/_jsx(LogoItessa,{height:\"100%\",id:\"OsNb2JsPl\",layoutId:\"OsNb2JsPl\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-co6105\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/itesainnovation/\",nodeId:\"NabgX5Zu5\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ld69fm framer-6rh4wo\",\"data-framer-name\":\"Instagram\",name:\"Instagram\",whileHover:animation9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{svgContentId:11957378107},JSHnK5hFh:{svgContentId:11957378107}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1orp4ym\",\"data-framer-name\":\"Instagram\",layout:\"position\",name:\"Instagram\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 4 8.667 C 4 6.089 6.089 4 8.667 4 L 15.333 4 C 17.911 4 20 6.089 20 8.667 L 20 15.333 C 20 17.911 17.911 20 15.333 20 L 8.667 20 C 6.089 20 4 17.911 4 15.333 Z M 15.333 7.333 C 15.322 7.817 15.574 8.268 15.991 8.513 C 16.408 8.758 16.924 8.758 17.341 8.513 C 17.758 8.269 18.01 7.817 17.999 7.334 C 17.983 6.609 17.391 6.03 16.667 6.03 C 15.942 6.03 15.35 6.609 15.333 7.333 Z M 8.667 12 C 8.667 13.841 10.16 15.334 12.001 15.333 C 13.842 15.333 15.334 13.84 15.334 11.999 C 15.334 10.158 13.841 8.666 12 8.666 C 10.159 8.666 8.666 10.159 8.667 12 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:3367443515,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/itesainnovation/\",nodeId:\"StCTMwONa\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15ddgct framer-6rh4wo\",\"data-framer-name\":\"LinkedIn\",name:\"LinkedIn\",whileHover:animation9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{svgContentId:11863471675},JSHnK5hFh:{svgContentId:11863471675}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9w351h\",\"data-framer-name\":\"LinkedIn\",layout:\"position\",name:\"LinkedIn\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 4 7 C 4 5.343 5.343 4 7 4 L 17 4 C 18.657 4 20 5.343 20 7 L 20 17 C 20 18.657 18.657 20 17 20 L 7 20 C 5.343 20 4 18.657 4 17 Z M 8.85 17.393 L 8.85 10.169 L 6.434 10.169 L 6.434 17.393 Z M 7.642 9.182 C 8.484 9.182 9.009 8.628 9.009 7.934 C 8.993 7.225 8.484 6.686 7.658 6.686 C 6.831 6.686 6.291 7.225 6.291 7.934 C 6.291 8.628 6.815 9.182 7.626 9.182 Z M 10.187 17.394 C 10.187 17.394 10.187 17.394 10.187 17.393 L 10.187 17.393 Z M 12.604 17.393 L 12.604 13.359 C 12.604 13.143 12.62 12.928 12.683 12.773 C 12.858 12.342 13.256 11.895 13.923 11.895 C 14.798 11.895 15.148 12.557 15.148 13.529 L 15.148 17.393 L 17.564 17.393 L 17.564 13.251 C 17.564 11.032 16.372 9.999 14.782 9.999 C 13.5 9.999 12.925 10.699 12.604 11.192 L 12.604 10.169 L 10.187 10.169 C 10.219 10.844 10.188 17.351 10.187 17.393 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:3273537083,withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@itesainnovation\",nodeId:\"yNYxaekCr\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1h92yyb framer-6rh4wo\",\"data-framer-name\":\"TikTok\",name:\"TikTok\",whileHover:animation9,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f86jge\",\"data-framer-name\":\"TikTok\",layout:\"position\",name:\"TikTok\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.631 7.136 C 17.514 7.077 17.401 7.012 17.29 6.941 C 16.97 6.733 16.676 6.488 16.415 6.211 C 15.763 5.478 15.519 4.734 15.429 4.213 L 15.433 4.213 C 15.358 3.78 15.389 3.501 15.394 3.501 L 12.421 3.501 L 12.421 14.79 C 12.421 14.942 12.421 15.092 12.415 15.24 C 12.415 15.258 12.413 15.275 12.412 15.295 C 12.412 15.303 12.412 15.311 12.41 15.32 L 12.41 15.326 C 12.346 16.149 11.87 16.886 11.14 17.294 C 10.765 17.503 10.342 17.613 9.91 17.613 C 8.526 17.613 7.403 16.503 7.403 15.134 C 7.403 13.764 8.526 12.655 9.91 12.655 C 10.173 12.654 10.433 12.695 10.682 12.775 L 10.686 9.802 C 9.156 9.608 7.614 10.051 6.432 11.024 C 5.919 11.462 5.489 11.983 5.159 12.566 C 5.033 12.779 4.56 13.632 4.503 15.018 C 4.467 15.805 4.707 16.62 4.822 16.956 L 4.822 16.964 C 4.894 17.162 5.173 17.839 5.629 18.409 C 5.996 18.867 6.43 19.269 6.916 19.602 L 6.916 19.595 L 6.923 19.602 C 8.362 20.563 9.958 20.5 9.958 20.5 C 10.234 20.489 11.159 20.5 12.21 20.011 C 13.375 19.468 14.038 18.661 14.038 18.661 C 14.462 18.178 14.799 17.628 15.035 17.034 C 15.304 16.34 15.394 15.507 15.394 15.174 L 15.394 9.184 C 15.43 9.206 15.91 9.518 15.91 9.518 C 15.91 9.518 16.602 9.953 17.681 10.237 C 18.456 10.439 19.499 10.481 19.499 10.481 L 19.499 7.583 C 19.133 7.622 18.391 7.508 17.631 7.136 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12632740446,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCW5gUZ7lKGrAbLOkHv2xfbw\",nodeId:\"Eq8fAgylH\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-b0rly framer-6rh4wo\",\"data-framer-name\":\"YouTube\",name:\"YouTube\",whileHover:animation9})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vgf1ku\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Legal\"})}),className:\"framer-14utkn3\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://prometheoapp.itesa.ar/privacy-policy\",nodeId:\"FH5ZZgVFZ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-kcabgq\",\"data-styles-preset\":\"Vh8sOD5QM\",children:\"Privacidad\"})})})}),className:\"framer-14exs0c\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-w876m9 hidden-6t96s3 hidden-1cam4o5\",\"data-framer-name\":\"Medium\",name:\"Medium\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11a9fun\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g4rjcg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"xgfP8GqojVjoCq4H5g\",layoutId:\"xgfP8GqojVjoCq4H5g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-SBhWc { background: white; }`,\".framer-SBhWc.framer-6rh4wo, .framer-SBhWc .framer-6rh4wo { display: block; }\",\".framer-SBhWc.framer-6t96s3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-SBhWc .framer-2o5tlt-container { flex: none; height: 71px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-SBhWc .framer-cx3k8l { align-content: center; align-items: center; background: radial-gradient(101.4% 61.3% at 12.4% 100%, #0832bd 0%, rgb(189, 204, 255) 86.29293355855856%, rgb(235, 239, 255) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 260px 40px 120px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-SBhWc .framer-1mrulq4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-woqt8f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-1laqlns-container, .framer-SBhWc .framer-qswvzz-container, .framer-SBhWc .framer-ubuo1q-container, .framer-SBhWc .framer-tczmqq-container, .framer-SBhWc .framer-1qbjvbr-container, .framer-SBhWc .framer-1222b59-container, .framer-SBhWc .framer-r0t59u-container, .framer-SBhWc .framer-kd89ir-container, .framer-SBhWc .framer-gz8zo3-container, .framer-SBhWc .framer-13e2w58-container, .framer-SBhWc .framer-dc76z5-container, .framer-SBhWc .framer-i0df75-container, .framer-SBhWc .framer-uwa4eu-container, .framer-SBhWc .framer-1of39fu-container, .framer-SBhWc .framer-10e0826-container, .framer-SBhWc .framer-19y6094-container, .framer-SBhWc .framer-my4e6i-container, .framer-SBhWc .framer-35vlxj-container, .framer-SBhWc .framer-17xoy27-container, .framer-SBhWc .framer-kqdmur-container, .framer-SBhWc .framer-qx4kro-container, .framer-SBhWc .framer-16x8bp0-container, .framer-SBhWc .framer-klxiqt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SBhWc .framer-13fr10g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-1dqfp2f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 460px; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-wxlu6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-11y2b10 { flex: 1 0 0px; height: 552px; max-width: 600px; overflow: visible; position: relative; width: 1px; }\",\".framer-SBhWc .framer-1f7jeqz { -webkit-filter: drop-shadow(-30px -90px 26px rgba(28, 51, 128, 0.25)); aspect-ratio: 1 / 1; filter: drop-shadow(-30px -90px 26px rgba(28, 51, 128, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 707px); left: -73px; overflow: visible; position: absolute; right: -74px; top: -87px; }\",\".framer-SBhWc .framer-1of1rfa { -webkit-filter: drop-shadow(-30px 90px 26px rgba(28, 52, 130, 0.15)); aspect-ratio: 1 / 1; filter: drop-shadow(-30px 90px 26px rgba(28, 52, 130, 0.15)); flex: none; height: var(--framer-aspect-ratio-supported, 236px); left: -205px; overflow: visible; position: absolute; top: -153px; width: 236px; }\",\".framer-SBhWc .framer-fzqp3k { -webkit-filter: drop-shadow(-30px 90px 26px rgba(28, 52, 130, 0.15)); aspect-ratio: 1 / 1; bottom: -212px; filter: drop-shadow(-30px 90px 26px rgba(28, 52, 130, 0.15)); flex: none; height: var(--framer-aspect-ratio-supported, 243px); overflow: visible; position: absolute; right: -101px; width: 243px; }\",\".framer-SBhWc .framer-dg5e1x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-brdwsi-container { -webkit-filter: grayscale(1); filter: grayscale(1); flex: none; height: 82px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1c3xe56 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-mhhymn, .framer-SBhWc .framer-1hs25hl, .framer-SBhWc .framer-1han8ud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-1iab0n9 { aspect-ratio: 10.714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); overflow: visible; position: relative; width: 125px; }\",\".framer-SBhWc .framer-l5yt3c { -webkit-filter: grayscale(1); aspect-ratio: 2.272727272727273 / 1; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-ht6ktm, .framer-SBhWc .framer-noqn37, .framer-SBhWc .framer-18i8gm7, .framer-SBhWc .framer-1bidf82, .framer-SBhWc .framer-rn7qph { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-134vlub { -webkit-filter: grayscale(1); aspect-ratio: 2 / 1; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-1s8i5zf { -webkit-filter: grayscale(1); aspect-ratio: 1.845045045045045 / 1; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 55px; }\",\".framer-SBhWc .framer-1yer0g7 { aspect-ratio: 3.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-h1t18w { aspect-ratio: 3.125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 192px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-4byw8u { aspect-ratio: 4.7682926829268295 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-1wpp6nw { aspect-ratio: 6.382978723404255 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 75px; }\",\".framer-SBhWc .framer-lgzhn3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; min-height: 12px; min-width: 75px; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-q09ih6 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 40.132271171941866%, rgb(209, 220, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1c1ypq0, .framer-SBhWc .framer-1h02tdf, .framer-SBhWc .framer-1i4qayq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-qvtamp, .framer-SBhWc .framer-19akkxu, .framer-SBhWc .framer-19o51up { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-5dhk5c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-19nvram { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.6124469589816124 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 20px 40px 0px rgba(10, 23, 61, 0.2); flex: none; height: var(--framer-aspect-ratio-supported, 695px); overflow: visible; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1gjb52s { -webkit-filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); aspect-ratio: 1 / 1; bottom: 341px; filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); flex: none; height: var(--framer-aspect-ratio-supported, 252px); overflow: visible; position: absolute; right: -135px; width: 252px; z-index: 1; }\",\".framer-SBhWc .framer-pnoogb { -webkit-filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); aspect-ratio: 1 / 1; bottom: 89px; filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); flex: none; height: var(--framer-aspect-ratio-supported, 252px); left: -133px; overflow: visible; position: absolute; width: 252px; z-index: 1; }\",\".framer-SBhWc .framer-15swlg5 { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-11tfarj-container, .framer-SBhWc .framer-18clc0z-container, .framer-SBhWc .framer-pvpjnr-container, .framer-SBhWc .framer-pmhhkg-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-SBhWc .framer-4ycmxk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1sqkc6y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 490px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-hjwtzt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-acg8fm { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SBhWc .framer-1f54332, .framer-SBhWc .framer-1dd0hkt { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 361px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-hljstx { -webkit-filter: hue-rotate(0deg); aspect-ratio: 1.0497512437810945 / 1; filter: hue-rotate(0deg); flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 379px); }\",\".framer-SBhWc .framer-12dg66y, .framer-SBhWc .framer-1g75qq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-tp20y0, .framer-SBhWc .framer-ezsv8l { --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-SBhWc .framer-14wk7eh, .framer-SBhWc .framer-1ipewts { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-1pw6z08 { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b984212c-6b21-4967-bb54-ce90369391ae, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SBhWc .framer-1vwy77n { -webkit-filter: hue-rotate(0deg); aspect-ratio: 1.0496688741721854 / 1; filter: hue-rotate(0deg); flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 379px); }\",\".framer-SBhWc .framer-18b0xi2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 103vh; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-9u3zr1 { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SBhWc .framer-16mugze { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-t2hdvi, .framer-SBhWc .framer-rmpr4m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-7kz9kh, .framer-SBhWc .framer-9dzufu, .framer-SBhWc .framer-3sqizy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 510px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-13zu5a, .framer-SBhWc .framer-1n26rvi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 510px; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-ug21s2 { --border-bottom-width: 1px; --border-color: var(--token-58a904ff-197a-49b3-8356-adaa464e1642, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 0.9 / 1; background: radial-gradient(105.1% 50% at 52.400000000000006% 100%, #542880 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; max-height: 720px; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-2b71hi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 460px); overflow: visible; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1bcuime { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SBhWc .framer-1pvhjpa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-nqf2em { --border-bottom-width: 1px; --border-color: var(--token-58a904ff-197a-49b3-8356-adaa464e1642, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 0.9 / 1; background: radial-gradient(105.1% 50% at 52.400000000000006% 100%, #542880 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 222px); justify-content: center; max-height: 720px; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-fr9dq2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-SBhWc .framer-3ek2ar { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-kw4ubu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-1r3nvrv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-rttdj0 { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 320px; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-1x5rbd, .framer-SBhWc .framer-d5qt5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-43pc7z, .framer-SBhWc .framer-ebs76m, .framer-SBhWc .framer-13bidxp, .framer-SBhWc .framer-1rayqi8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-SBhWc .framer-gq7wpd, .framer-SBhWc .framer-3a6ypp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-8ahn3w, .framer-SBhWc .framer-1kj4fnt, .framer-SBhWc .framer-14utkn3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SBhWc .framer-i4an7y-container, .framer-SBhWc .framer-f7shzs-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-SBhWc .framer-1k8g8t, .framer-SBhWc .framer-1hjtlqe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1kpsy9i { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 320px; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SBhWc .framer-1kgs4b4 { align-content: center; align-items: center; background: radial-gradient(84.6% 67.10000000000001% at 50% 100%, #bdccff 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 120px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-16qjhe3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-SBhWc .framer-4ej3zy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 690px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-ogz8qk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SBhWc .framer-laag1y { -webkit-filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); aspect-ratio: 1 / 1; bottom: -210px; filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); flex: none; height: var(--framer-aspect-ratio-supported, 360px); overflow: visible; position: absolute; right: -204px; width: 360px; z-index: 1; }\",\".framer-SBhWc .framer-19h8uav { -webkit-filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); aspect-ratio: 1 / 1; filter: drop-shadow(0px 60px 26px rgba(20, 36, 94, 0.2)); flex: none; height: var(--framer-aspect-ratio-supported, 360px); left: -244px; overflow: visible; position: absolute; top: -142px; width: 360px; z-index: 1; }\",\".framer-SBhWc .framer-b4s9ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-SBhWc .framer-lpuq9d { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SBhWc .framer-1brorf1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 80px 80px 80px 20px; position: relative; width: 1px; }\",\".framer-SBhWc .framer-15wq09l { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-1ws7gm8 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 91px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-SBhWc .framer-q6xtth-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-SBhWc .framer-co6105 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-SBhWc .framer-1ld69fm, .framer-SBhWc .framer-15ddgct, .framer-SBhWc .framer-1h92yyb, .framer-SBhWc .framer-b0rly { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-SBhWc .framer-1orp4ym { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-SBhWc .framer-9w351h { flex: none; height: 24px; position: absolute; right: 0px; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-SBhWc .framer-1f86jge { flex: none; height: 24px; left: calc(54.166666666666686% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-SBhWc .framer-vgf1ku { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-SBhWc .framer-14exs0c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SBhWc .framer-w876m9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SBhWc .framer-11a9fun { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-SBhWc .framer-1g4rjcg-container { bottom: 1px; flex: none; height: 16px; left: 0px; position: absolute; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SBhWc.framer-6t96s3, .framer-SBhWc .framer-cx3k8l, .framer-SBhWc .framer-woqt8f, .framer-SBhWc .framer-wxlu6y, .framer-SBhWc .framer-dg5e1x, .framer-SBhWc .framer-1c3xe56, .framer-SBhWc .framer-mhhymn, .framer-SBhWc .framer-1hs25hl, .framer-SBhWc .framer-ht6ktm, .framer-SBhWc .framer-1han8ud, .framer-SBhWc .framer-noqn37, .framer-SBhWc .framer-18i8gm7, .framer-SBhWc .framer-1bidf82, .framer-SBhWc .framer-rn7qph, .framer-SBhWc .framer-lgzhn3, .framer-SBhWc .framer-q09ih6, .framer-SBhWc .framer-1c1ypq0, .framer-SBhWc .framer-5dhk5c, .framer-SBhWc .framer-4ycmxk, .framer-SBhWc .framer-1h02tdf, .framer-SBhWc .framer-hjwtzt, .framer-SBhWc .framer-acg8fm, .framer-SBhWc .framer-1f54332, .framer-SBhWc .framer-12dg66y, .framer-SBhWc .framer-1pw6z08, .framer-SBhWc .framer-1dd0hkt, .framer-SBhWc .framer-1g75qq1, .framer-SBhWc .framer-18b0xi2, .framer-SBhWc .framer-9u3zr1, .framer-SBhWc .framer-16mugze, .framer-SBhWc .framer-t2hdvi, .framer-SBhWc .framer-ug21s2, .framer-SBhWc .framer-1bcuime, .framer-SBhWc .framer-1pvhjpa, .framer-SBhWc .framer-rmpr4m, .framer-SBhWc .framer-nqf2em, .framer-SBhWc .framer-3ek2ar, .framer-SBhWc .framer-1i4qayq, .framer-SBhWc .framer-1r3nvrv, .framer-SBhWc .framer-rttdj0, .framer-SBhWc .framer-gq7wpd, .framer-SBhWc .framer-1k8g8t, .framer-SBhWc .framer-1kpsy9i, .framer-SBhWc .framer-3a6ypp, .framer-SBhWc .framer-1hjtlqe, .framer-SBhWc .framer-1kgs4b4, .framer-SBhWc .framer-16qjhe3, .framer-SBhWc .framer-b4s9ye, .framer-SBhWc .framer-lpuq9d, .framer-SBhWc .framer-1ws7gm8, .framer-SBhWc .framer-co6105, .framer-SBhWc .framer-vgf1ku, .framer-SBhWc .framer-w876m9 { gap: 0px; } .framer-SBhWc.framer-6t96s3 > *, .framer-SBhWc .framer-18b0xi2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SBhWc.framer-6t96s3 > :first-child, .framer-SBhWc .framer-woqt8f > :first-child, .framer-SBhWc .framer-dg5e1x > :first-child, .framer-SBhWc .framer-q09ih6 > :first-child, .framer-SBhWc .framer-1c1ypq0 > :first-child, .framer-SBhWc .framer-5dhk5c > :first-child, .framer-SBhWc .framer-4ycmxk > :first-child, .framer-SBhWc .framer-1h02tdf > :first-child, .framer-SBhWc .framer-acg8fm > :first-child, .framer-SBhWc .framer-12dg66y > :first-child, .framer-SBhWc .framer-1pw6z08 > :first-child, .framer-SBhWc .framer-1g75qq1 > :first-child, .framer-SBhWc .framer-18b0xi2 > :first-child, .framer-SBhWc .framer-t2hdvi > :first-child, .framer-SBhWc .framer-ug21s2 > :first-child, .framer-SBhWc .framer-rmpr4m > :first-child, .framer-SBhWc .framer-nqf2em > :first-child, .framer-SBhWc .framer-3ek2ar > :first-child, .framer-SBhWc .framer-1i4qayq > :first-child, .framer-SBhWc .framer-rttdj0 > :first-child, .framer-SBhWc .framer-1k8g8t > :first-child, .framer-SBhWc .framer-1kpsy9i > :first-child, .framer-SBhWc .framer-1hjtlqe > :first-child, .framer-SBhWc .framer-1kgs4b4 > :first-child, .framer-SBhWc .framer-16qjhe3 > :first-child, .framer-SBhWc .framer-1ws7gm8 > :first-child, .framer-SBhWc .framer-vgf1ku > :first-child { margin-top: 0px; } .framer-SBhWc.framer-6t96s3 > :last-child, .framer-SBhWc .framer-woqt8f > :last-child, .framer-SBhWc .framer-dg5e1x > :last-child, .framer-SBhWc .framer-q09ih6 > :last-child, .framer-SBhWc .framer-1c1ypq0 > :last-child, .framer-SBhWc .framer-5dhk5c > :last-child, .framer-SBhWc .framer-4ycmxk > :last-child, .framer-SBhWc .framer-1h02tdf > :last-child, .framer-SBhWc .framer-acg8fm > :last-child, .framer-SBhWc .framer-12dg66y > :last-child, .framer-SBhWc .framer-1pw6z08 > :last-child, .framer-SBhWc .framer-1g75qq1 > :last-child, .framer-SBhWc .framer-18b0xi2 > :last-child, .framer-SBhWc .framer-t2hdvi > :last-child, .framer-SBhWc .framer-ug21s2 > :last-child, .framer-SBhWc .framer-rmpr4m > :last-child, .framer-SBhWc .framer-nqf2em > :last-child, .framer-SBhWc .framer-3ek2ar > :last-child, .framer-SBhWc .framer-1i4qayq > :last-child, .framer-SBhWc .framer-rttdj0 > :last-child, .framer-SBhWc .framer-1k8g8t > :last-child, .framer-SBhWc .framer-1kpsy9i > :last-child, .framer-SBhWc .framer-1hjtlqe > :last-child, .framer-SBhWc .framer-1kgs4b4 > :last-child, .framer-SBhWc .framer-16qjhe3 > :last-child, .framer-SBhWc .framer-1ws7gm8 > :last-child, .framer-SBhWc .framer-vgf1ku > :last-child { margin-bottom: 0px; } .framer-SBhWc .framer-cx3k8l > *, .framer-SBhWc .framer-wxlu6y > *, .framer-SBhWc .framer-1f54332 > *, .framer-SBhWc .framer-1dd0hkt > *, .framer-SBhWc .framer-b4s9ye > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SBhWc .framer-cx3k8l > :first-child, .framer-SBhWc .framer-wxlu6y > :first-child, .framer-SBhWc .framer-1c3xe56 > :first-child, .framer-SBhWc .framer-mhhymn > :first-child, .framer-SBhWc .framer-1hs25hl > :first-child, .framer-SBhWc .framer-ht6ktm > :first-child, .framer-SBhWc .framer-1han8ud > :first-child, .framer-SBhWc .framer-noqn37 > :first-child, .framer-SBhWc .framer-18i8gm7 > :first-child, .framer-SBhWc .framer-1bidf82 > :first-child, .framer-SBhWc .framer-rn7qph > :first-child, .framer-SBhWc .framer-lgzhn3 > :first-child, .framer-SBhWc .framer-hjwtzt > :first-child, .framer-SBhWc .framer-1f54332 > :first-child, .framer-SBhWc .framer-1dd0hkt > :first-child, .framer-SBhWc .framer-9u3zr1 > :first-child, .framer-SBhWc .framer-16mugze > :first-child, .framer-SBhWc .framer-1bcuime > :first-child, .framer-SBhWc .framer-1pvhjpa > :first-child, .framer-SBhWc .framer-1r3nvrv > :first-child, .framer-SBhWc .framer-gq7wpd > :first-child, .framer-SBhWc .framer-3a6ypp > :first-child, .framer-SBhWc .framer-b4s9ye > :first-child, .framer-SBhWc .framer-lpuq9d > :first-child, .framer-SBhWc .framer-co6105 > :first-child, .framer-SBhWc .framer-w876m9 > :first-child { margin-left: 0px; } .framer-SBhWc .framer-cx3k8l > :last-child, .framer-SBhWc .framer-wxlu6y > :last-child, .framer-SBhWc .framer-1c3xe56 > :last-child, .framer-SBhWc .framer-mhhymn > :last-child, .framer-SBhWc .framer-1hs25hl > :last-child, .framer-SBhWc .framer-ht6ktm > :last-child, .framer-SBhWc .framer-1han8ud > :last-child, .framer-SBhWc .framer-noqn37 > :last-child, .framer-SBhWc .framer-18i8gm7 > :last-child, .framer-SBhWc .framer-1bidf82 > :last-child, .framer-SBhWc .framer-rn7qph > :last-child, .framer-SBhWc .framer-lgzhn3 > :last-child, .framer-SBhWc .framer-hjwtzt > :last-child, .framer-SBhWc .framer-1f54332 > :last-child, .framer-SBhWc .framer-1dd0hkt > :last-child, .framer-SBhWc .framer-9u3zr1 > :last-child, .framer-SBhWc .framer-16mugze > :last-child, .framer-SBhWc .framer-1bcuime > :last-child, .framer-SBhWc .framer-1pvhjpa > :last-child, .framer-SBhWc .framer-1r3nvrv > :last-child, .framer-SBhWc .framer-gq7wpd > :last-child, .framer-SBhWc .framer-3a6ypp > :last-child, .framer-SBhWc .framer-b4s9ye > :last-child, .framer-SBhWc .framer-lpuq9d > :last-child, .framer-SBhWc .framer-co6105 > :last-child, .framer-SBhWc .framer-w876m9 > :last-child { margin-right: 0px; } .framer-SBhWc .framer-woqt8f > *, .framer-SBhWc .framer-dg5e1x > *, .framer-SBhWc .framer-acg8fm > *, .framer-SBhWc .framer-1pw6z08 > *, .framer-SBhWc .framer-ug21s2 > *, .framer-SBhWc .framer-nqf2em > *, .framer-SBhWc .framer-rttdj0 > *, .framer-SBhWc .framer-1kpsy9i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-SBhWc .framer-1c3xe56 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-SBhWc .framer-mhhymn > *, .framer-SBhWc .framer-1hs25hl > *, .framer-SBhWc .framer-1han8ud > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-SBhWc .framer-ht6ktm > *, .framer-SBhWc .framer-noqn37 > *, .framer-SBhWc .framer-18i8gm7 > *, .framer-SBhWc .framer-1bidf82 > *, .framer-SBhWc .framer-rn7qph > *, .framer-SBhWc .framer-lgzhn3 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-SBhWc .framer-q09ih6 > *, .framer-SBhWc .framer-3ek2ar > *, .framer-SBhWc .framer-1kgs4b4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SBhWc .framer-1c1ypq0 > *, .framer-SBhWc .framer-1h02tdf > *, .framer-SBhWc .framer-t2hdvi > *, .framer-SBhWc .framer-rmpr4m > *, .framer-SBhWc .framer-1i4qayq > *, .framer-SBhWc .framer-1k8g8t > *, .framer-SBhWc .framer-1hjtlqe > *, .framer-SBhWc .framer-16qjhe3 > *, .framer-SBhWc .framer-vgf1ku > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SBhWc .framer-5dhk5c > *, .framer-SBhWc .framer-12dg66y > *, .framer-SBhWc .framer-1g75qq1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SBhWc .framer-4ycmxk > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SBhWc .framer-hjwtzt > *, .framer-SBhWc .framer-1r3nvrv > *, .framer-SBhWc .framer-co6105 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SBhWc .framer-9u3zr1 > *, .framer-SBhWc .framer-16mugze > *, .framer-SBhWc .framer-1bcuime > *, .framer-SBhWc .framer-1pvhjpa > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-SBhWc .framer-gq7wpd > *, .framer-SBhWc .framer-3a6ypp > *, .framer-SBhWc .framer-w876m9 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-SBhWc .framer-lpuq9d > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-SBhWc .framer-1ws7gm8 > * { margin: 0px; margin-bottom: calc(91px / 2); margin-top: calc(91px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-SBhWc[data-border=\"true\"]::after, .framer-SBhWc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-SBhWc { background: white; } .framer-SBhWc.framer-6t96s3 { width: 810px; } .framer-SBhWc .framer-cx3k8l { height: min-content; padding: 170px 40px 120px 40px; } .framer-SBhWc .framer-1mrulq4 { align-content: center; align-items: center; gap: 40px; justify-content: flex-start; } .framer-SBhWc .framer-11y2b10 { flex: none; width: 35%; } .framer-SBhWc .framer-1f7jeqz { height: var(--framer-aspect-ratio-supported, 561px); left: unset; right: -220px; top: 51%; transform: translateY(-50%); width: 561px; } .framer-SBhWc .framer-1of1rfa { height: var(--framer-aspect-ratio-supported, 214px); left: -148px; top: -128px; width: 214px; } .framer-SBhWc .framer-fzqp3k { bottom: -182px; height: var(--framer-aspect-ratio-supported, 220px); right: -176px; width: 220px; } .framer-SBhWc .framer-19nvram { height: var(--framer-aspect-ratio-supported, 453px); } .framer-SBhWc .framer-15swlg5 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-SBhWc .framer-1f54332, .framer-SBhWc .framer-1dd0hkt { height: var(--framer-aspect-ratio-supported, 211px); } .framer-SBhWc .framer-hljstx, .framer-SBhWc .framer-1vwy77n { width: var(--framer-aspect-ratio-supported, 222px); } .framer-SBhWc .framer-18b0xi2 { height: min-content; padding: 40px; } .framer-SBhWc .framer-1bcuime { display: block; height: auto; padding: unset; } .framer-SBhWc .framer-1pvhjpa { bottom: -2525px; flex: none; left: 305px; position: absolute; width: 1fr; } .framer-SBhWc .framer-nqf2em { aspect-ratio: unset; height: 500px; } .framer-SBhWc .framer-fr9dq2 { height: var(--framer-aspect-ratio-supported, 0px); } .framer-SBhWc .framer-kw4ubu { max-width: 340px; } .framer-SBhWc .framer-1r3nvrv { align-content: center; align-items: center; flex-direction: column; } .framer-SBhWc .framer-rttdj0, .framer-SBhWc .framer-1kpsy9i { flex: none; width: 100%; } .framer-SBhWc .framer-1brorf1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-SBhWc .framer-15wq09l { align-self: unset; gap: 30px; height: min-content; justify-content: flex-start; width: 100%; } .framer-SBhWc .framer-1ws7gm8 { align-self: unset; width: 288px; } .framer-SBhWc .framer-14utkn3 { order: 0; } .framer-SBhWc .framer-14exs0c { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SBhWc .framer-1mrulq4, .framer-SBhWc .framer-1bcuime, .framer-SBhWc .framer-1r3nvrv, .framer-SBhWc .framer-1brorf1, .framer-SBhWc .framer-15wq09l { gap: 0px; } .framer-SBhWc .framer-1mrulq4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-SBhWc .framer-1mrulq4 > :first-child { margin-left: 0px; } .framer-SBhWc .framer-1mrulq4 > :last-child { margin-right: 0px; } .framer-SBhWc .framer-1bcuime > *, .framer-SBhWc .framer-1bcuime > :first-child, .framer-SBhWc .framer-1bcuime > :last-child { margin: 0px; } .framer-SBhWc .framer-1r3nvrv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SBhWc .framer-1r3nvrv > :first-child, .framer-SBhWc .framer-1brorf1 > :first-child, .framer-SBhWc .framer-15wq09l > :first-child { margin-top: 0px; } .framer-SBhWc .framer-1r3nvrv > :last-child, .framer-SBhWc .framer-1brorf1 > :last-child, .framer-SBhWc .framer-15wq09l > :last-child { margin-bottom: 0px; } .framer-SBhWc .framer-1brorf1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SBhWc .framer-15wq09l > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-SBhWc { background: white; } .framer-SBhWc.framer-6t96s3 { height: 6211px; width: 390px; } .framer-SBhWc .framer-cx3k8l { flex-direction: column; height: min-content; padding: 150px 20px 80px 20px; } .framer-SBhWc .framer-1mrulq4 { flex: none; flex-direction: column; gap: 60px; justify-content: flex-start; width: 100%; } .framer-SBhWc .framer-woqt8f, .framer-SBhWc .framer-t2hdvi, .framer-SBhWc .framer-rttdj0, .framer-SBhWc .framer-1kpsy9i { flex: none; width: 100%; } .framer-SBhWc .framer-11y2b10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-SBhWc .framer-1f7jeqz { height: var(--framer-aspect-ratio-supported, 200px); left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-SBhWc .framer-q09ih6, .framer-SBhWc .framer-3ek2ar, .framer-SBhWc .framer-1kgs4b4 { padding: 40px 20px 40px 20px; } .framer-SBhWc .framer-19nvram { height: var(--framer-aspect-ratio-supported, 124px); } .framer-SBhWc .framer-15swlg5 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-SBhWc .framer-4ycmxk { gap: 40px; padding: 40px 20px 40px 20px; } .framer-SBhWc .framer-hjwtzt, .framer-SBhWc .framer-16mugze { flex-direction: column; } .framer-SBhWc .framer-acg8fm, .framer-SBhWc .framer-1pw6z08 { flex: none; padding: 20px; width: 100%; } .framer-SBhWc .framer-1f54332, .framer-SBhWc .framer-1dd0hkt { height: var(--framer-aspect-ratio-supported, 153px); } .framer-SBhWc .framer-hljstx, .framer-SBhWc .framer-1vwy77n { width: var(--framer-aspect-ratio-supported, 210px); } .framer-SBhWc .framer-18b0xi2 { flex: 1.1 0 0px; height: 1px; padding: 0px; } .framer-SBhWc .framer-9u3zr1 { padding: 40px 20px 40px 20px; width: 90%; } .framer-SBhWc .framer-ug21s2 { flex: none; height: var(--framer-aspect-ratio-supported, 222px); width: 100%; } .framer-SBhWc .framer-2b71hi { height: var(--framer-aspect-ratio-supported, 200px); } .framer-SBhWc .framer-1r3nvrv { align-content: center; align-items: center; flex-direction: column; } .framer-SBhWc .framer-lpuq9d { padding: 20px; } .framer-SBhWc .framer-1brorf1 { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-SBhWc .framer-15wq09l { align-self: unset; gap: 20px; height: min-content; justify-content: flex-start; order: 0; width: 100%; } .framer-SBhWc .framer-1ws7gm8 { align-self: unset; width: 100%; } .framer-SBhWc .framer-vgf1ku { order: 1; width: 100%; } .framer-SBhWc .framer-14utkn3 { order: 0; } .framer-SBhWc .framer-14exs0c { order: 1; } .framer-SBhWc .framer-w876m9 { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SBhWc .framer-cx3k8l, .framer-SBhWc .framer-1mrulq4, .framer-SBhWc .framer-11y2b10, .framer-SBhWc .framer-4ycmxk, .framer-SBhWc .framer-hjwtzt, .framer-SBhWc .framer-16mugze, .framer-SBhWc .framer-1r3nvrv, .framer-SBhWc .framer-1brorf1, .framer-SBhWc .framer-15wq09l { gap: 0px; } .framer-SBhWc .framer-cx3k8l > *, .framer-SBhWc .framer-11y2b10 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SBhWc .framer-cx3k8l > :first-child, .framer-SBhWc .framer-1mrulq4 > :first-child, .framer-SBhWc .framer-11y2b10 > :first-child, .framer-SBhWc .framer-4ycmxk > :first-child, .framer-SBhWc .framer-hjwtzt > :first-child, .framer-SBhWc .framer-16mugze > :first-child, .framer-SBhWc .framer-1r3nvrv > :first-child, .framer-SBhWc .framer-1brorf1 > :first-child, .framer-SBhWc .framer-15wq09l > :first-child { margin-top: 0px; } .framer-SBhWc .framer-cx3k8l > :last-child, .framer-SBhWc .framer-1mrulq4 > :last-child, .framer-SBhWc .framer-11y2b10 > :last-child, .framer-SBhWc .framer-4ycmxk > :last-child, .framer-SBhWc .framer-hjwtzt > :last-child, .framer-SBhWc .framer-16mugze > :last-child, .framer-SBhWc .framer-1r3nvrv > :last-child, .framer-SBhWc .framer-1brorf1 > :last-child, .framer-SBhWc .framer-15wq09l > :last-child { margin-bottom: 0px; } .framer-SBhWc .framer-1mrulq4 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SBhWc .framer-4ycmxk > *, .framer-SBhWc .framer-16mugze > *, .framer-SBhWc .framer-1brorf1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SBhWc .framer-hjwtzt > *, .framer-SBhWc .framer-1r3nvrv > *, .framer-SBhWc .framer-15wq09l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5921.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JSHnK5hFh\":{\"layout\":[\"fixed\",\"auto\"]},\"Hw_19DBJP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerIilknqsQI=withCSS(Component,css,\"framer-SBhWc\");export default FramerIilknqsQI;FramerIilknqsQI.displayName=\"Page\";FramerIilknqsQI.defaultProps={height:5921.5,width:1200};addFonts(FramerIilknqsQI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavSimpleFonts,...TagFonts,...ButtonFonts,...CTAFonts,...TickerFonts,...FeatureSimpleFonts,...FeatureListFonts,...LogoItessaFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIilknqsQI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSHnK5hFh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hw_19DBJP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"5921.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withHover", "Component", "props", "p", "withClickGA", "window", "NavSimpleFonts", "getFonts", "hH1DdpI8D_default", "NavSimpleWithClickGAWithMappedReactProps1226c7r", "withMappedReactProps", "withClickGA", "hH1DdpI8D_exports", "TagFonts", "EwgjuU71G_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "hljNqlOx9_default", "ButtonWithHoverWithMappedReactProps1v1ipky", "withHover", "hljNqlOx9_exports", "CTAFonts", "FLXzApIyg_default", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithFX", "withFX", "Image2", "TickerFonts", "Ticker", "FeatureSimpleFonts", "IMm2i7xki_default", "ButtonWithClickGAWithMappedReactProps1v1ipky", "MotionDivWithFX", "FeatureListFonts", "PzjKYwnhA_default", "LogoItessaFonts", "tm3ntr_Fe_default", "PhosphorFonts", "Icon", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transformTemplate1", "_", "t", "animation5", "transition5", "animation6", "animation7", "animation8", "transition6", "animation9", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Link", "SVG", "css", "FramerIilknqsQI", "withCSS", "IilknqsQI_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
