{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0", "ssg:https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js", "ssg:https://framerusercontent.com/modules/64eSv6zWcLs5gaGrtJR6/8gxa0SM4egrI0ExiznJF/Input.js", "ssg:https://framerusercontent.com/modules/5pfGlLrKKxGFQbhN3zNz/Z1ZDjlVuDVlLLMX1hQIJ/pEgHEiikO.js", "ssg:https://framerusercontent.com/modules/FWSmOwO5hKiKaMZxaK88/zHzQwXvtcB27dNIMXIxU/lzTgMvDCx.js"],
  "sourcesContent": ["import{useLayoutEffect,useEffect}from\"react\";/**\n * Swaps `useLayoutEffect` for `useEffect` on the server to avoid React warnings.\n * NOTE! The effect won't run on the server.\n */ export const useIsomorphicLayoutEffect=typeof document!==\"undefined\"?useLayoutEffect:useEffect;\nexport const __FramerMetadata__ = {\"exports\":{\"useIsomorphicLayoutEffect\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useIsomorphicLayoutEffect.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine,]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return(/*#__PURE__*/ _jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard}));},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\",]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:0.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\",]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"260\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return /*#__PURE__*/_jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard});},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\"]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\"]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"260\",\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,Floating,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Input as Input1}from\"https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js\";import{Input}from\"https://framerusercontent.com/modules/64eSv6zWcLs5gaGrtJR6/8gxa0SM4egrI0ExiznJF/Input.js\";import Button from\"https://framerusercontent.com/modules/0HMRFJtlC392qHL1nG6K/rDY6xwOAHZbV9eUc7u5L/LbLQJIstF.js\";const InputFonts=getFonts(Input);const Input1Fonts=getFonts(Input1);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-QYwps\";const variantClassNames={ozF7byZDD:\"framer-v-10ojaqe\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ozF7byZDD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dqsjke=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ozF7byZDD\");});const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"ozF7byZDD\",openInNewTab:true,scopeId:\"pEgHEiikO\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-10ojaqe\",className,classNames)} framer-u6ds4y`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,id:`${layoutId}-10ojaqe`,layoutDependency:layoutDependency,layoutId:\"ozF7byZDD\",onMouseEnter:onMouseEnterupml6a({overlay}),onTap:onTap1dqsjke,ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Contactar\"})}),className:\"framer-xn1p2v\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"ptTn7i6hP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-10ojaqe`,offsetX:428.25,offsetY:-344,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-12gcwq5\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"lVtr345sW\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lw1m0s-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"L8ResnMVI-container\",nodeId:\"L8ResnMVI\",rendersWithMotion:true,scopeId:\"pEgHEiikO\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(235, 235, 235)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:8,borderWidth:1,bottomLeftRadius:8,bottomRightRadius:8,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:false,fontFamily:\"\",fontSize:16,fontWeight:400,height:\"100%\",id:\"L8ResnMVI\",isMixedBorderRadius:false,isRTL:false,keyboard:\"\",layoutId:\"L8ResnMVI\",lineHeight:1.4,maxLength:10,multiLine:false,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,password:false,placeholder:\"Nombre\",placeholderColor:\"rgb(170, 170, 170)\",style:{width:\"100%\"},textAlign:\"left\",textColor:\"rgb(51, 51, 51)\",topLeftRadius:8,topRightRadius:8,truncate:false,value:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lh9cp7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jEyV1fBlO-container\",nodeId:\"jEyV1fBlO\",rendersWithMotion:true,scopeId:\"pEgHEiikO\",children:/*#__PURE__*/_jsx(Input1,{backgroundColor:\"rgb(235, 235, 235)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:8,borderWidth:1,bottomLeftRadius:8,bottomRightRadius:8,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:false,fontFamily:\"\",fontSize:16,fontWeight:400,height:\"100%\",id:\"jEyV1fBlO\",isMixedBorderRadius:false,isRTL:false,keyboard:\"\",layoutId:\"jEyV1fBlO\",lineHeight:1.4,maxLength:10,multiLine:false,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,password:false,placeholder:\"Apellido\",placeholderColor:\"rgb(170, 170, 170)\",style:{width:\"100%\"},textAlign:\"left\",textColor:\"rgb(51, 51, 51)\",topLeftRadius:8,topRightRadius:8,truncate:false,value:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eo2wmt-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"QMEf2nb9T-container\",nodeId:\"QMEf2nb9T\",rendersWithMotion:true,scopeId:\"pEgHEiikO\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(235, 235, 235)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:8,borderWidth:1,bottomLeftRadius:8,bottomRightRadius:8,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:false,fontFamily:\"\",fontSize:16,fontWeight:400,height:\"100%\",id:\"QMEf2nb9T\",isMixedBorderRadius:false,isRTL:false,keyboard:\"email\",layoutId:\"QMEf2nb9T\",lineHeight:1.4,maxLength:10,multiLine:false,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,password:false,placeholder:\"Correo electr\\xf3nico\",placeholderColor:\"rgb(170, 170, 170)\",style:{width:\"100%\"},textAlign:\"left\",textColor:\"rgb(51, 51, 51)\",topLeftRadius:8,topRightRadius:8,truncate:false,value:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xfcak1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"I4ZsMpc1B-container\",nodeId:\"I4ZsMpc1B\",rendersWithMotion:true,scopeId:\"pEgHEiikO\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(235, 235, 235)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:8,borderWidth:1,bottomLeftRadius:8,bottomRightRadius:8,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:false,fontFamily:\"\",fontSize:16,fontWeight:400,height:\"100%\",id:\"I4ZsMpc1B\",isMixedBorderRadius:false,isRTL:false,keyboard:\"tel\",layoutId:\"I4ZsMpc1B\",lineHeight:1.4,maxLength:10,multiLine:false,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,password:false,placeholder:\"Tel\\xe9fono\",placeholderColor:\"rgb(170, 170, 170)\",style:{width:\"100%\"},textAlign:\"left\",textColor:\"rgb(51, 51, 51)\",topLeftRadius:8,topRightRadius:8,truncate:false,value:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w86rq7-container\",layoutDependency:layoutDependency,layoutId:\"Rj0e8cclL-container\",nodeId:\"Rj0e8cclL\",rendersWithMotion:true,scopeId:\"pEgHEiikO\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Rj0e8cclL\",KrOahciow:\"Enviar formulario\",layoutId:\"Rj0e8cclL\",variant:\"Pu_ENOQqW\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\"},children:\"Te pondremos en comunicarte con este Contador por favor ingresa tus datos\"})}),className:\"framer-1tgw7vt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LrrLxBVv8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KPtopuk0G\"},motionChild:true,nodeId:\"ZvvgIGuTO\",scopeId:\"pEgHEiikO\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1t0fgbu framer-u6ds4y\",\"data-framer-name\":\"Taxo-MainLogo 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZvvgIGuTO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 121 34\"><g><path d=\"M 0 34 L 0 0 L 121 0 L 121 34 Z\" fill=\"transparent\"></path><path d=\"M 26.239 31.207 L 31.507 31.207 L 41.86 12.285 L 52.214 31.207 L 57.482 31.207 L 41.86 2.658 Z M 26.538 20.061 L 26.538 14.877 L 15.726 14.877 L 15.726 3.389 L 10.813 3.389 L 10.813 14.877 L 0 14.877 L 0 20.061 L 10.813 20.061 L 10.813 31.207 L 15.726 31.207 L 15.726 20.061 Z M 82.529 3.436 L 72.866 13.632 L 63.202 3.436 L 59.728 7.102 L 69.392 17.298 L 59.728 27.495 L 63.202 31.16 L 72.866 20.964 L 82.529 31.16 L 86.003 27.495 L 76.34 17.298 L 86.003 7.102 Z M 89.763 17.469 C 89.763 9.82 95.66 3.596 102.91 3.596 C 110.16 3.596 116.058 9.82 116.058 17.469 C 116.058 25.119 110.16 31.342 102.91 31.342 C 95.66 31.342 89.763 25.119 89.763 17.469 Z M 94.324 17.469 C 94.324 22.465 98.176 26.529 102.91 26.529 C 107.644 26.529 111.496 22.465 111.496 17.469 C 111.496 12.474 107.644 8.41 102.91 8.41 C 98.176 8.41 94.324 12.474 94.324 17.469 Z M 118.536 9.552 C 119.93 9.552 121 8.423 121 6.983 C 121 5.575 119.93 4.445 118.536 4.445 C 117.158 4.445 116.058 5.575 116.058 6.983 C 116.058 8.423 117.158 9.552 118.536 9.552 Z M 118.55 9.011 C 117.466 9.011 116.673 8.113 116.673 6.983 C 116.673 5.869 117.466 4.955 118.536 4.955 C 119.607 4.955 120.385 5.869 120.385 6.999 C 120.385 8.113 119.607 9.011 118.55 9.011 Z M 117.597 8.314 L 118.155 8.314 L 118.155 7.293 L 118.419 7.293 C 118.727 7.293 118.874 7.417 118.917 7.695 C 118.931 7.752 118.944 7.806 118.957 7.857 C 119.009 8.073 119.049 8.239 119.108 8.314 L 119.71 8.314 C 119.65 8.222 119.607 8.067 119.533 7.68 C 119.46 7.339 119.328 7.153 119.094 7.061 L 119.094 7.03 C 119.386 6.937 119.592 6.72 119.592 6.441 C 119.592 6.194 119.489 5.993 119.358 5.884 C 119.181 5.776 118.975 5.698 118.522 5.698 C 118.125 5.698 117.817 5.729 117.597 5.776 Z M 118.433 6.875 L 118.169 6.875 L 118.169 6.148 C 118.228 6.132 118.331 6.116 118.477 6.116 C 118.83 6.116 118.991 6.271 118.991 6.504 C 118.991 6.767 118.741 6.875 118.433 6.875 Z\" fill=\"rgb(24,29,32)\"></path></g></svg>',svgContentId:9086601833,withExternalLayout:true})})]})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QYwps.framer-u6ds4y, .framer-QYwps .framer-u6ds4y { display: block; }\",\".framer-QYwps.framer-10ojaqe { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 62px; justify-content: center; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QYwps .framer-xn1p2v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QYwps .framer-12gcwq5 { height: 522px; overflow: hidden; position: relative; width: 540px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QYwps .framer-1lw1m0s-container { flex: none; height: auto; left: 63px; position: absolute; top: 168px; width: 183px; }\",\".framer-QYwps .framer-lh9cp7-container { flex: none; height: auto; position: absolute; right: 80px; top: 168px; width: 183px; }\",\".framer-QYwps .framer-1eo2wmt-container { flex: none; height: auto; left: 48%; position: absolute; top: 51%; width: 397px; }\",\".framer-QYwps .framer-xfcak1-container { bottom: 154px; flex: none; height: auto; left: 48%; position: absolute; width: 397px; }\",\".framer-QYwps .framer-1w86rq7-container { bottom: 59px; flex: none; height: auto; position: absolute; right: 80px; width: auto; }\",\".framer-QYwps .framer-1tgw7vt { flex: none; height: auto; left: 48%; position: absolute; top: 110px; white-space: pre-wrap; width: 397px; word-break: break-word; word-wrap: break-word; }\",\".framer-QYwps .framer-1t0fgbu { flex: none; height: 34px; left: 63px; position: absolute; text-decoration: none; top: 54px; width: 121px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 125\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpEgHEiikO=withCSS(Component,css,\"framer-QYwps\");export default FramerpEgHEiikO;FramerpEgHEiikO.displayName=\"Button-contactar\";FramerpEgHEiikO.defaultProps={height:62,width:125};addFonts(FramerpEgHEiikO,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{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\"}]},...InputFonts,...Input1Fonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpEgHEiikO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"125\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"62\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pEgHEiikO.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import ButtonContactar from\"#framer/local/canvasComponent/pEgHEiikO/pEgHEiikO.js\";import NavigationMX2 from\"#framer/local/canvasComponent/sSTo32bFv/sSTo32bFv.js\";import MainFooter from\"#framer/local/canvasComponent/W_P9g9Qym/W_P9g9Qym.js\";import Contadores,{enumToDisplayNameFunctions}from\"#framer/local/collection/C750fDEEd/C750fDEEd.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/cZJAO6zHv/cZJAO6zHv.js\";import*as sharedStyle3 from\"#framer/local/css/gFfVhNAHT/gFfVhNAHT.js\";import*as sharedStyle6 from\"#framer/local/css/I5kTIqmy4/I5kTIqmy4.js\";import*as sharedStyle4 from\"#framer/local/css/lqekuYP1B/lqekuYP1B.js\";import*as sharedStyle7 from\"#framer/local/css/NE_TYPzVl/NE_TYPzVl.js\";import*as sharedStyle5 from\"#framer/local/css/q5FzJw4KI/q5FzJw4KI.js\";import*as sharedStyle from\"#framer/local/css/qmsNToi3K/qmsNToi3K.js\";import*as sharedStyle12 from\"#framer/local/css/tPMBdltvN/tPMBdltvN.js\";import*as sharedStyle2 from\"#framer/local/css/ulBtx3DA6/ulBtx3DA6.js\";import*as sharedStyle9 from\"#framer/local/css/WdBFVVAx3/WdBFVVAx3.js\";import*as sharedStyle11 from\"#framer/local/css/wG6fCXsnO/wG6fCXsnO.js\";import*as sharedStyle10 from\"#framer/local/css/YJJmPEOPc/YJJmPEOPc.js\";import*as sharedStyle1 from\"#framer/local/css/YLRWKQem_/YLRWKQem_.js\";import metadataProvider from\"#framer/local/webPageMetadata/lzTgMvDCx/lzTgMvDCx.js\";const NavigationMX2Fonts=getFonts(NavigationMX2);const RichTextWithFX=withFX(RichText);const HeroFonts=getFonts(Hero);const ButtonContactarFonts=getFonts(ButtonContactar);const MainFooterFonts=getFonts(MainFooter);const breakpoints={HJSTsBvSR:\"(min-width: 1200px)\",hPrxZkuDa:\"(min-width: 834px) and (max-width: 1199px)\",Iw2PDOTnb:\"(max-width: 833px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TmmnG\";const variantClassNames={HJSTsBvSR:\"framer-v-pu3ov5\",hPrxZkuDa:\"framer-v-nqko58\",Iw2PDOTnb:\"framer-v-1m6ggus\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"wu8hJ6OsL\";case\"R65dfKXY_\":return\"GSE6ofIvR\";default:return\"wu8hJ6OsL\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-150,y:0};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"AqqK_7Hc7\";default:return\"AqqK_7Hc7\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"HJSTsBvSR\",Phone:\"Iw2PDOTnb\",Tablet:\"hPrxZkuDa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HJSTsBvSR\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"lzTgMvDCx\",data:Contadores,type:\"Collection\"},select:[{collection:\"lzTgMvDCx\",name:\"s_VTbfjcJ\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"rFnTFqmub\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"SGMiZupx0\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"A9Cg1E_wA\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"wtDZh1m3r\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"qQnhhxtj_\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"prs97b8Tt\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"JNhJ86Jqw\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"xcHuZdu4n\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"ynLASZDyc\",type:\"Identifier\"},{collection:\"lzTgMvDCx\",name:\"WGZJba6GW\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"lzTgMvDCx\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,rFnTFqmub=getFromCurrentRouteData(\"rFnTFqmub\"),s_VTbfjcJ=getFromCurrentRouteData(\"s_VTbfjcJ\")??\"\",JNhJ86Jqw=getFromCurrentRouteData(\"JNhJ86Jqw\")??\"\",qQnhhxtj_=getFromCurrentRouteData(\"qQnhhxtj_\"),WGZJba6GW=getFromCurrentRouteData(\"WGZJba6GW\")??\"\",wtDZh1m3r=getFromCurrentRouteData(\"wtDZh1m3r\"),prs97b8Tt=getFromCurrentRouteData(\"prs97b8Tt\")??\"\",SGMiZupx0=getFromCurrentRouteData(\"SGMiZupx0\")??\"\",A9Cg1E_wA=getFromCurrentRouteData(\"A9Cg1E_wA\")??\"\",ynLASZDyc=getFromCurrentRouteData(\"ynLASZDyc\")??\"\",xcHuZdu4n=getFromCurrentRouteData(\"xcHuZdu4n\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,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,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Iw2PDOTnb\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Iw2PDOTnb\")return false;return true;};const textContent=enumToDisplayNameFunctions[\"wtDZh1m3r\"]?.(wtDZh1m3r,activeLocale);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HJSTsBvSR\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-pu3ov5\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxd287-container\",id:\"1oxd287\",nodeId:\"idZVJR8EA\",scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(NavigationMX2,{height:\"100%\",id:\"idZVJR8EA\",layoutId:\"idZVJR8EA\",style:{width:\"100%\"},variant:convertFromEnum(activeLocale?.id,activeLocale),width:\"100%\"})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-bb4lx7\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wdhb1e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hljx7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycq3yc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hPrxZkuDa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0+0),sizes:\"115px\",...toResponsiveImage(rFnTFqmub)}},Iw2PDOTnb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0+0+0+0),sizes:\"102px\",...toResponsiveImage(rFnTFqmub)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0+0),sizes:\"159px\",...toResponsiveImage(rFnTFqmub)},className:\"framer-2u0shf\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sinqe0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ggjfg\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1yh5a3l\",\"data-styles-preset\":\"qmsNToi3K\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Accede a nuestra red de contadores\"})}),className:\"framer-tk1z3z\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:s_VTbfjcJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3usoc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzbd2m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BbYSXBwDx\",scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(5, 150, 105)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircle\",id:\"BbYSXBwDx\",layoutId:\"BbYSXBwDx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw2PDOTnb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(6, 95, 70)\"},children:\" Conta\\xa0Taxo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(6, 95, 70)\"},children:\" Conta\\xa0Taxo\"})}),className:\"framer-kxfk2d\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wt2in4\",\"data-styles-preset\":\"YLRWKQem_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contador P\\xfablico Autorizado\"})}),className:\"framer-gw5ovm\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wt2in4\",\"data-styles-preset\":\"YLRWKQem_\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nombre Despacho\"})}),className:\"framer-11cu1rg\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:JNhJ86Jqw,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw2PDOTnb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0+0+0+126+0+0+0+67.6),sizes:\"54px\",...toResponsiveImage(qQnhhxtj_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(qQnhhxtj_)},className:\"framer-1ksck3m hidden-pu3ov5 hidden-nqko58\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hPrxZkuDa:{y:(componentViewport?.y||0)+0+64+32+0+42+0+0+0+144},Iw2PDOTnb:{y:(componentViewport?.y||0)+0+64+32+0+42+0+0+0+126+0+493.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+64+32+0+42+0+0+0+202,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf1ukk-container\",nodeId:\"eRl7eU475\",scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(ButtonContactar,{height:\"100%\",id:\"eRl7eU475\",layoutId:\"eRl7eU475\",style:{height:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hPrxZkuDa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0),sizes:\"92px\",...toResponsiveImage(qQnhhxtj_)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+42+0),sizes:\"117px\",...toResponsiveImage(qQnhhxtj_)},className:\"framer-rs0316 hidden-1m6ggus\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vbvijp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6lzt5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy7gfa\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Sobre mi\"})}),className:\"framer-1lbe7wt\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/jKzAzDE1dbmgPC3q8RAo/Vimeo.js:default\":componentPresets.props[\"CBOTRnP_r\"],\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"Z_8bpY01V\"],\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"JC4swuEmc\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:WGZJba6GW,className:\"framer-17c7vsh\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-x67boo\",blockquote:\"framer-styles-preset-1ej9c22\",code:\"framer-styles-preset-1oqgpxq\",h1:\"framer-styles-preset-1yh5a3l\",h2:\"framer-styles-preset-115g1eq\",h3:\"framer-styles-preset-qu4wj2\",h4:\"framer-styles-preset-azw8qr\",h5:\"framer-styles-preset-llc13s\",h6:\"framer-styles-preset-hozhds\",img:\"framer-styles-preset-1jkfht9\",p:\"framer-styles-preset-f5o4z7\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bscr5e\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Especialista en\"})}),className:\"framer-rejogj\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f5o4z7\",\"data-styles-preset\":\"NE_TYPzVl\",children:\"Content\"})}),className:\"framer-pqqv1x\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzki5k\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Estudios\"})}),className:\"framer-176l6sl\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f5o4z7\",\"data-styles-preset\":\"NE_TYPzVl\",children:\"Content\"})}),className:\"framer-1gfasme\",fonts:[\"Inter\"],text:prs97b8Tt,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11s7qeh\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Tipo de asesor\\xeda\"})}),className:\"framer-1p0d38j\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f5o4z7\",\"data-styles-preset\":\"NE_TYPzVl\",children:\"Presencial y Videollamada\"})}),className:\"framer-1ly8t3t\",fonts:[\"Inter\"],text:SGMiZupx0,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xat11\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Direcci\\xf3n\"})}),className:\"framer-5kfa4i\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f5o4z7\",\"data-styles-preset\":\"NE_TYPzVl\",children:\"G\\xf3mez Palacio, Dgo Jes\\xfas Pamanes\"})}),className:\"framer-cuspbm\",fonts:[\"Inter\"],text:A9Cg1E_wA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:ynLASZDyc,motionChild:true,nodeId:\"wLHu_eolW\",openInNewTab:true,scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-12vfr8f framer-moqjt2\",\"data-border\":true,\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw2PDOTnb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Abrir ubicaci\\xf3n en Maps\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Abrir ubicaci\\xf3n en Google Maps\"})}),className:\"framer-efcffq\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hPrxZkuDa:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1731,intrinsicWidth:1608,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+466+0+189.2+0+914.4+0+193.6+10),pixelHeight:1731,pixelWidth:1608,positionX:\"center\",positionY:\"center\",sizes:\"55px\",src:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png\",srcSet:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png?scale-down-to=1024 951w,https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png 1608w\"}},Iw2PDOTnb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1731,intrinsicWidth:1608,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+941.6+0+169.2+0+914.4+0+193.6+0),pixelHeight:1731,pixelWidth:1608,positionX:\"center\",positionY:\"center\",sizes:\"55px\",src:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png\",srcSet:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png?scale-down-to=1024 951w,https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png 1608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1731,intrinsicWidth:1608,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+524+0+0+914.4+0+193.6+10),pixelHeight:1731,pixelWidth:1608,positionX:\"center\",positionY:\"center\",sizes:\"55px\",src:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png\",srcSet:\"https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png?scale-down-to=1024 951w,https://framerusercontent.com/images/51c2lIoIZwH3akcIwuvxXsiqIs.png 1608w\"},className:\"framer-1wf4fwc\"})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tcmnw1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rmyfh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Agenda un asesor\\xeda en 30 mins\"})}),className:\"framer-1cuddlh\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:xcHuZdu4n,motionChild:true,nodeId:\"EuaTeJfPb\",openInNewTab:true,scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-t2s0oi framer-moqjt2\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Agendar cita\"})}),className:\"framer-k8qwsy\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9zp4b1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qgtjim\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-do363a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JFMUy659g\",scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Gift\",id:\"JFMUy659g\",layoutId:\"JFMUy659g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-quxv6u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xbfEres contador?\"})}),className:\"framer-34gjpx\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Si eres contador y quieres automatizar los procesos operativos que realizas, checa \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-weight\":\"700\"},children:\"TAXO\"}),\" y atr\\xe9vete a retar el status quo.\"]})}),className:\"framer-xg7g6s\",fonts:[\"FS;General Sans-regular\",\"FS;General Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KPtopuk0G\"},motionChild:true,nodeId:\"TBObq_YVI\",openInNewTab:false,scopeId:\"lzTgMvDCx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ghr0kb\",\"data-styles-preset\":\"tPMBdltvN\",children:\"Conoce Taxo\"})})})}),className:\"framer-x7o6d6\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://docs.google.com/forms/d/e/1FAIpQLScZIIVmC3SXU0nSfC5jh7cW-un4reC0zL7-e46zAbMEzFov3w/viewform\",motionChild:true,nodeId:\"R6TebVEJp\",openInNewTab:true,scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-d8k2zz framer-moqjt2\",\"data-border\":true,\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VuZXJhbCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xdanete a la Taxo Red\"})}),className:\"framer-b8b08\",\"data-framer-name\":\"Text\",fonts:[\"GF;General Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hPrxZkuDa:{y:(componentViewport?.y||0)+0+2095.2},Iw2PDOTnb:{y:(componentViewport?.y||0)+0+2795.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1964,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ira1h-container\",nodeId:\"pqVpYzFVb\",scopeId:\"lzTgMvDCx\",children:/*#__PURE__*/_jsx(MainFooter,{height:\"100%\",id:\"pqVpYzFVb\",layoutId:\"pqVpYzFVb\",style:{height:\"100%\",width:\"100%\"},variant:convertFromEnum1(activeLocale?.id,activeLocale),width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TmmnG.framer-moqjt2, .framer-TmmnG .framer-moqjt2 { display: block; }\",\".framer-TmmnG.framer-pu3ov5 { 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-TmmnG .framer-1oxd287-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TmmnG .framer-bb4lx7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-TmmnG .framer-wdhb1e { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 348px; justify-content: center; overflow: hidden; padding: 42px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TmmnG .framer-11hljx7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 264px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TmmnG .framer-1ycq3yc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 264px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TmmnG .framer-2u0shf { aspect-ratio: 1 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; flex: none; height: var(--framer-aspect-ratio-supported, 159px); position: relative; width: 159px; }\",\".framer-TmmnG .framer-1sinqe0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 264px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-TmmnG .framer-16ggjfg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 178px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TmmnG .framer-tk1z3z, .framer-TmmnG .framer-gw5ovm, .framer-TmmnG .framer-11cu1rg, .framer-TmmnG .framer-34gjpx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TmmnG .framer-1c3usoc { align-content: center; align-items: center; background-color: #d1fae5; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 28px; justify-content: center; overflow: hidden; padding: 4px 12px 4px 12px; position: relative; width: 135px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TmmnG .framer-1pzbd2m-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-TmmnG .framer-kxfk2d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TmmnG .framer-1ksck3m { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 54px; }\",\".framer-TmmnG .framer-tf1ukk-container { flex: none; height: 62px; position: relative; width: auto; }\",\".framer-TmmnG .framer-rs0316 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 88px); position: relative; width: 117px; }\",\".framer-TmmnG .framer-1vbvijp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-TmmnG .framer-1s6lzt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 602px; }\",\".framer-TmmnG .framer-1sy7gfa, .framer-TmmnG .framer-bscr5e, .framer-TmmnG .framer-nzki5k, .framer-TmmnG .framer-11s7qeh, .framer-TmmnG .framer-4xat11 { --border-bottom-width: 1px; --border-color: #adb0b3; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 602px; }\",\".framer-TmmnG .framer-1lbe7wt, .framer-TmmnG .framer-rejogj, .framer-TmmnG .framer-176l6sl, .framer-TmmnG .framer-1p0d38j, .framer-TmmnG .framer-5kfa4i, .framer-TmmnG .framer-1cuddlh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TmmnG .framer-17c7vsh, .framer-TmmnG .framer-pqqv1x, .framer-TmmnG .framer-1gfasme, .framer-TmmnG .framer-1ly8t3t, .framer-TmmnG .framer-cuspbm { --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-TmmnG .framer-12vfr8f { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 62px; justify-content: center; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: 369px; }\",\".framer-TmmnG .framer-efcffq, .framer-TmmnG .framer-k8qwsy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TmmnG .framer-1wf4fwc { flex: none; height: 42px; position: relative; width: 55px; }\",\".framer-TmmnG .framer-1tcmnw1 { align-content: center; align-items: center; background-color: #edf1f5; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TmmnG .framer-14rmyfh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-TmmnG .framer-t2s0oi { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 62px; justify-content: center; overflow: visible; padding: 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-TmmnG .framer-9zp4b1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 120px 40px 120px; position: relative; width: 100%; }\",\".framer-TmmnG .framer-qgtjim { --border-bottom-width: 8px; --border-color: #f4f2ce; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #000000; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 126px; justify-content: center; overflow: hidden; padding: 20px 20px 32px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-TmmnG .framer-do363a-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-TmmnG .framer-quxv6u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-TmmnG .framer-xg7g6s { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TmmnG .framer-x7o6d6 { --framer-custom-cursors: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TmmnG .framer-d8k2zz { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 17px 9px 17px; position: relative; text-decoration: none; width: 144px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TmmnG .framer-b8b08 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TmmnG .framer-10ira1h-container { flex: none; height: 354px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,'.framer-TmmnG[data-border=\"true\"]::after, .framer-TmmnG [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: 834px) and (max-width: 1199px) { .framer-TmmnG.framer-pu3ov5 { width: 834px; } .framer-TmmnG .framer-bb4lx7 { padding: 32px 64px 80px 64px; } .framer-TmmnG .framer-wdhb1e { height: 290px; } .framer-TmmnG .framer-11hljx7, .framer-TmmnG .framer-1ycq3yc { height: 206px; } .framer-TmmnG .framer-2u0shf { height: var(--framer-aspect-ratio-supported, 115px); width: 115px; } .framer-TmmnG .framer-1sinqe0 { height: 206px; justify-content: flex-start; } .framer-TmmnG .framer-16ggjfg { height: 120px; } .framer-TmmnG .framer-rs0316 { height: var(--framer-aspect-ratio-supported, 69px); width: 92px; } .framer-TmmnG .framer-1vbvijp { flex-direction: column; padding: 0px 64px 0px 64px; } .framer-TmmnG .framer-1s6lzt5 { order: 1; width: 100%; } .framer-TmmnG .framer-1sy7gfa, .framer-TmmnG .framer-bscr5e, .framer-TmmnG .framer-nzki5k, .framer-TmmnG .framer-11s7qeh, .framer-TmmnG .framer-4xat11 { width: 100%; } .framer-TmmnG .framer-1tcmnw1 { flex: none; order: 0; width: 100%; } .framer-TmmnG .framer-9zp4b1 { padding: 80px 64px 40px 64px; }}\",\"@media (max-width: 833px) { .framer-TmmnG.framer-pu3ov5 { width: 390px; } .framer-TmmnG .framer-bb4lx7 { padding: 32px 32px 80px 32px; } .framer-TmmnG .framer-wdhb1e { height: min-content; padding: 42px 24px 42px 24px; } .framer-TmmnG .framer-11hljx7, .framer-TmmnG .framer-qgtjim { flex-direction: column; height: min-content; } .framer-TmmnG .framer-1ycq3yc { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 24px; height: min-content; order: 0; width: 100%; } .framer-TmmnG .framer-2u0shf { height: var(--framer-aspect-ratio-supported, 102px); width: 102px; } .framer-TmmnG .framer-1sinqe0, .framer-TmmnG .framer-quxv6u { flex: none; height: min-content; width: 100%; } .framer-TmmnG .framer-16ggjfg { gap: 6px; height: min-content; } .framer-TmmnG .framer-tk1z3z { order: 0; } .framer-TmmnG .framer-1c3usoc { height: 23px; order: 2; width: 109px; } .framer-TmmnG .framer-1pzbd2m-container { height: 15px; width: 15px; } .framer-TmmnG .framer-gw5ovm { order: 3; } .framer-TmmnG .framer-11cu1rg { order: 4; } .framer-TmmnG .framer-1ksck3m { order: 1; } .framer-TmmnG .framer-1vbvijp { flex-direction: column; padding: 0px 32px 0px 32px; } .framer-TmmnG .framer-1s6lzt5 { order: 1; width: 100%; } .framer-TmmnG .framer-1sy7gfa, .framer-TmmnG .framer-bscr5e, .framer-TmmnG .framer-nzki5k, .framer-TmmnG .framer-11s7qeh, .framer-TmmnG .framer-4xat11 { width: 100%; } .framer-TmmnG .framer-12vfr8f { height: 42px; padding: 10px 20px 10px 20px; width: 327px; } .framer-TmmnG .framer-1tcmnw1 { flex: none; order: 0; width: 100%; } .framer-TmmnG .framer-t2s0oi { height: 42px; padding: 10px 20px 10px 20px; } .framer-TmmnG .framer-9zp4b1 { padding: 80px 32px 40px 32px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1830\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hPrxZkuDa\":{\"layout\":[\"fixed\",\"auto\"]},\"Iw2PDOTnb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerlzTgMvDCx=withCSS(Component,css,\"framer-TmmnG\");export default FramerlzTgMvDCx;FramerlzTgMvDCx.displayName=\"Contadores\";FramerlzTgMvDCx.defaultProps={height:1830,width:1200};addFonts(FramerlzTgMvDCx,[{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:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"}]},...NavigationMX2Fonts,...HeroFonts,...ButtonContactarFonts,...MainFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...componentPresets.fonts?.[\"Z_8bpY01V\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"Z_8bpY01V\"]):[],...componentPresets.fonts?.[\"JC4swuEmc\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"JC4swuEmc\"]):[],...componentPresets.fonts?.[\"CBOTRnP_r\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"CBOTRnP_r\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlzTgMvDCx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hPrxZkuDa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Iw2PDOTnb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"1830\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useIsomorphicLayoutEffect", "fe", "ue", "Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "InputFonts", "getFonts", "Input", "Input1Fonts", "ButtonFonts", "LbLQJIstF_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "animation2", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dqsjke", "args", "onMouseEnterupml6a", "overlay", "loadMore", "scopingClassNames", "cx", "serializationHash", "ref1", "LayoutGroup", "l", "Link", "u", "RichText", "AnimatePresence", "Floating", "MotionDivWithFX", "ComponentViewportProvider", "SmartComponentScopedContainer", "Input", "LbLQJIstF_default", "SVG", "css", "FramerpEgHEiikO", "withCSS", "pEgHEiikO_default", "addFonts", "InputFonts", "Input1Fonts", "ButtonFonts", "NavigationMX2Fonts", "getFonts", "sSTo32bFv_default", "RichTextWithFX", "withFX", "RichText", "HeroFonts", "Icon", "ButtonContactarFonts", "pEgHEiikO_default", "MainFooterFonts", "W_P9g9Qym_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "toResponsiveImage", "animation", "transition1", "animation1", "convertFromEnum1", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "C750fDEEd_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "rFnTFqmub", "s_VTbfjcJ", "JNhJ86Jqw", "qQnhhxtj_", "WGZJba6GW", "wtDZh1m3r", "prs97b8Tt", "SGMiZupx0", "A9Cg1E_wA", "ynLASZDyc", "xcHuZdu4n", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "textContent", "enumToDisplayNameFunctions", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "ComponentPresetsProvider", "Link", "css", "FramerlzTgMvDCx", "withCSS", "lzTgMvDCx_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
