{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/klfzzQYcKRPjSfZvhFj0/0x5Fw3VinXV5ifj7pC7A/g8_A7Pi04.js", "ssg:https://framerusercontent.com/modules/or3CPxkukoMYvX7yjYDP/UcpJBoBZdOB3TrsOtpjK/kQMJjz68O.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"LuMjFvXZ9\",\"yQDUxTw_s\"];const serializationHash=\"framer-2LZZL\";const variantClassNames={LuMjFvXZ9:\"framer-v-p72bbv\",yQDUxTw_s:\"framer-v-1fo4a2x\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Animate:\"yQDUxTw_s\",Default:\"LuMjFvXZ9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LuMjFvXZ9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LuMjFvXZ9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"yQDUxTw_s\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-p72bbv\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"LuMjFvXZ9\",ref:refBinding,style:{...style},...addPropertyOverrides({yQDUxTw_s:{\"data-framer-name\":\"Animate\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1832dwb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nkFjjp7ip-container\",nodeId:\"nkFjjp7ip\",rendersWithMotion:true,scopeId:\"g8_A7Pi04\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"nkFjjp7ip\",layoutId:\"nkFjjp7ip\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qaqu58\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UMioA7gjc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 7\"><path d=\"M 1.744 2.411 C 16.336 2.411 30.901 2.803 45.48 3.185 C 59.549 3.554 73.664 3.361 87.744 3.361\" fill=\"transparent\" stroke-width=\"3.3\" stroke=\"var(--token-211bdaf5-ce71-4144-b094-b658cbfe63ae, rgb(255, 87, 89))\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11526216053,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2LZZL.framer-1idvn8s, .framer-2LZZL .framer-1idvn8s { display: block; }\",\".framer-2LZZL.framer-p72bbv { height: 12px; overflow: visible; position: relative; width: 290px; }\",\".framer-2LZZL .framer-1832dwb-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2LZZL .framer-1qaqu58 { height: 7px; position: relative; width: 90px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yQDUxTw_s\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerg8_A7Pi04=withCSS(Component,css,\"framer-2LZZL\");export default Framerg8_A7Pi04;Framerg8_A7Pi04.displayName=\"Highlight 5\";Framerg8_A7Pi04.defaultProps={height:12,width:290};addPropertyControls(Framerg8_A7Pi04,{variant:{options:[\"LuMjFvXZ9\",\"yQDUxTw_s\"],optionTitles:[\"Default\",\"Animate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg8_A7Pi04,[{explicitInter:true,fonts:[]},...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg8_A7Pi04\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"290\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yQDUxTw_s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g8_A7Pi04.map", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SubmitButton2 from\"https://framerusercontent.com/modules/5SOEwOsLtuuJdBzXv3Wy/FrKC9YMp4eYimC1JvQ1H/lGOW7eF7Z.js\";const SubmitButton2Fonts=getFonts(SubmitButton2);const cycleOrder=[\"EQGsmJ8G0\",\"P0v27Qlwg\",\"kPV85hC8W\",\"YLVaThNzV\"];const serializationHash=\"framer-igmgo\";const variantClassNames={EQGsmJ8G0:\"framer-v-1dazgb8\",kPV85hC8W:\"framer-v-1q368hh\",P0v27Qlwg:\"framer-v-egxfs\",YLVaThNzV:\"framer-v-1nuk022\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:0,duration:.3,ease:[.2,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"EQGsmJ8G0\",\"Desktop 2\":\"P0v27Qlwg\",\"Mobile 1\":\"kPV85hC8W\",\"Mobile 2\":\"YLVaThNzV\"};const getProps=({feedback,feedback2,height,id,image1,image2,link,name1,name2,represent1,represent2,width,...props})=>{return{...props,acMsLTuZU:link??props.acMsLTuZU,c4aHF9ppI:feedback??props.c4aHF9ppI??\"\u201CEm parceria com a MuvHub, atingimos 88% de ocupa\\xe7\\xe3o no primeiro trimestre de opera\\xe7\\xe3o, superando nossa meta em 20%. A integra\\xe7\\xe3o e o suporte dedicado fizeram toda a diferen\\xe7a.\u201D\\n\\n\",caUJGGePW:image1??props.caUJGGePW??{alt:\"\",pixelHeight:6e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg 4000w\"},IIHiKVW1W:feedback2??props.IIHiKVW1W??\"\u201CCom a MuvHub, consegui elevar a taxa de ocupa\\xe7\\xe3o do meu im\\xf3vel de temporada de 65% para 92% em apenas seis meses. A equipe cuidou de tudo, desde a divulga\\xe7\\xe3o at\\xe9 o suporte aos h\\xf3spedes.\u201D\",LUKPUCVky:represent2??props.LUKPUCVky??\"Propriet\\xe1rio Parceiro da MuvHub\",OyIgdX3Zd:name1??props.OyIgdX3Zd??\"Jo\\xe3o Silva\",UQKct4eXy:image2??props.UQKct4eXy??{alt:\"\",pixelHeight:5760,pixelWidth:3840,src:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg 3840w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"EQGsmJ8G0\",W5sC4e8mw:represent1??props.W5sC4e8mw??\"Propriet\\xe1rio Parceiro da MuvHub\",w8px1mVW9:name2??props.w8px1mVW9??\"Maria Oliveira\"};};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,acMsLTuZU,caUJGGePW,OyIgdX3Zd,W5sC4e8mw,c4aHF9ppI,UQKct4eXy,w8px1mVW9,LUKPUCVky,IIHiKVW1W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EQGsmJ8G0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1bw4yub=activeVariantCallback(async(...args)=>{setVariant(\"P0v27Qlwg\");});const onTapmnfjgr=activeVariantCallback(async(...args)=>{setVariant(\"YLVaThNzV\");});const onTap1l3mw95=activeVariantCallback(async(...args)=>{setVariant(\"kPV85hC8W\");});const onTapcdgdzj=activeVariantCallback(async(...args)=>{setVariant(\"EQGsmJ8G0\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"kPV85hC8W\",\"YLVaThNzV\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"kPV85hC8W\",\"YLVaThNzV\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1dazgb8\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"EQGsmJ8G0\",ref:refBinding,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"2px 4px 12px 0px rgba(0, 0, 0, 0.04)\",WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({kPV85hC8W:{\"data-framer-name\":\"Mobile 1\"},P0v27Qlwg:{\"data-framer-name\":\"Desktop 2\"},YLVaThNzV:{\"data-framer-name\":\"Mobile 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h0lcay\",layoutDependency:layoutDependency,layoutId:\"lV6aJfdd0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3q52fo\",layoutDependency:layoutDependency,layoutId:\"sRu_KOYVo\",style:{backgroundColor:\"rgb(127, 127, 135)\",borderBottomLeftRadius:28.72,borderBottomRightRadius:28.72,borderTopLeftRadius:28.72,borderTopRightRadius:28.72},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"116px\",...toResponsiveImage(caUJGGePW)},className:\"framer-1k88mre\",\"data-framer-name\":\"Image+Background\",layoutDependency:layoutDependency,layoutId:\"RASY7fDlC\",style:{borderBottomLeftRadius:28.72,borderBottomRightRadius:28.72,borderTopLeftRadius:28.72,borderTopRightRadius:28.72},...addPropertyOverrides({kPV85hC8W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"116px\",...toResponsiveImage(caUJGGePW)}},P0v27Qlwg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+0),pixelHeight:5760,pixelWidth:3840,sizes:\"116px\",...toResponsiveImage(UQKct4eXy)}},YLVaThNzV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+0+0+0),pixelHeight:5760,pixelWidth:3840,sizes:\"116px\",...toResponsiveImage(UQKct4eXy)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(93, 58, 220))\"},children:\"\u2605\u2605\u2605\u2605\u2605\"})}),className:\"framer-1e64i8o\",\"data-framer-name\":\"\u2605\u2605\u2605\u2605\u2605\",fonts:[\"FS;Work Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"AFqvcVhVQ\",style:{\"--extracted-r6o4lv\":\"rgb(93, 58, 220)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pxorg1\",layoutDependency:layoutDependency,layoutId:\"x68s46UjK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n3h7a7\",layoutDependency:layoutDependency,layoutId:\"yvwuHsEHX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w78yv\",layoutDependency:layoutDependency,layoutId:\"xcI1EzaYo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"92\"})}),className:\"framer-1c2vb06\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"I6jTFWowC\",style:{\"--extracted-a0htzi\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"92\"})})},P0v27Qlwg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"88\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"88\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})}),className:\"framer-11ij8w1\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"Y3YUToTdZ\",style:{\"--extracted-a0htzi\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"ocupa\\xe7\\xe3o m\\xe9dia\"})}),className:\"framer-nihhog\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"T2JAwM3Ao\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"ocupa\\xe7\\xe3o m\\xe9dia\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"ocupa\\xe7\\xe3o m\\xe9dia\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g8btkg\",layoutDependency:layoutDependency,layoutId:\"iBFBUVAX7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jp89xg\",layoutDependency:layoutDependency,layoutId:\"hsORvgZbN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"24.73\"})}),className:\"framer-ex1h37\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"I0BAjkyrN\",style:{\"--extracted-a0htzi\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"24.73\"})})},P0v27Qlwg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"30.02\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"20.01\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})}),className:\"framer-h399zt\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"R2nnz4jdF\",style:{\"--extracted-a0htzi\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(17, 17, 13))\"},children:\"%\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"aumento em receita\"})}),className:\"framer-9xagys\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"duUNgL0yM\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 13)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kPV85hC8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"aumento em receita\"})})},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"aumento em receita\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-120eisx\",layoutDependency:layoutDependency,layoutId:\"JK6kxNHQD\",transformTemplate:transformTemplate1,children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ecvx45\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nDRgv5UTh\",onTap:onTap1bw4yub,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"2px 4px 12px 0px rgba(0, 0, 0, 0.04)\"},whileHover:animation,whileTap:animation1,...addPropertyOverrides({kPV85hC8W:{onTap:onTapmnfjgr},YLVaThNzV:{onTap:onTap1l3mw95}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a963yb\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"rBFzNUiaJ\",svg:'<svg height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"#11110D\"><path fill=\"currentColor\" d=\"m5.052 12.85 3.549 3.55-1.202 1.202L1.798 12l5.601-5.602 1.202 1.203-3.549 3.549H21v1.7z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16fsegk\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kHaGRtnTV\",onTap:onTap1bw4yub,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"2px 4px 12px 0px rgba(0, 0, 0, 0.04)\"},whileHover:animation,whileTap:animation1,...addPropertyOverrides({kPV85hC8W:{onTap:onTapmnfjgr},YLVaThNzV:{onTap:onTap1l3mw95}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jocfgx\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lrUkbQlBn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.746 12.85 L 14.197 16.4 L 15.399 17.602 L 21 12 L 15.399 6.398 L 14.197 7.601 L 17.746 11.15 L 1.798 11.15 L 1.798 12.85 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12603980636,withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mkkm7p\",layoutDependency:layoutDependency,layoutId:\"s3DbaaFhl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ilt9gt\",layoutDependency:layoutDependency,layoutId:\"jMwC46SWq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"\u201CCom a MuvHub, consegui elevar a taxa de ocupa\\xe7\\xe3o do meu im\\xf3vel de temporada de 65% para 92% em apenas seis meses. A equipe cuidou de tudo, desde a divulga\\xe7\\xe3o at\\xe9 o suporte aos h\\xf3spedes.\u201D\"})}),className:\"framer-syt0sg\",\"data-framer-name\":\"Precifica\\xe7\\xe3o din\\xe2mica e painel de performance\",fonts:[\"FS;Work Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"sH_khvo7Z\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-paragraph-spacing\":\"0px\"},text:IIHiKVW1W,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P0v27Qlwg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:[\"\u201CEm parceria com a MuvHub, atingimos 88% de ocupa\\xe7\\xe3o no primeiro trimestre de opera\\xe7\\xe3o, superando nossa meta em 20%. A integra\\xe7\\xe3o e o suporte dedicado fizeram toda a diferen\\xe7a.\u201D\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),text:c4aHF9ppI},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7V29yayBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"Work Sans\", \"Work Sans Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:[\"\u201CEm parceria com a MuvHub, atingimos 88% de ocupa\\xe7\\xe3o no primeiro trimestre de opera\\xe7\\xe3o, superando nossa meta em 20%. A integra\\xe7\\xe3o e o suporte dedicado fizeram toda a diferen\\xe7a.\u201D\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),text:c4aHF9ppI}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ww5ls\",layoutDependency:layoutDependency,layoutId:\"IbwWA2oaE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fks10m\",layoutDependency:layoutDependency,layoutId:\"x5Yz_odNX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cjyumq\",layoutDependency:layoutDependency,layoutId:\"etUMp7srU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 25, 38))\"},children:\"Jo\\xe3o Silva\"})}),className:\"framer-1o0prlh\",\"data-framer-name\":\"Heading 3 \u2192 Tecnologia & Dados\",fonts:[\"FS;Chillax-semibold\"],layoutDependency:layoutDependency,layoutId:\"cBfdM7e5O\",style:{\"--extracted-r6o4lv\":\"rgb(28, 25, 38)\",\"--framer-paragraph-spacing\":\"0px\"},text:OyIgdX3Zd,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P0v27Qlwg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 25, 38))\"},children:\"Maria Oliveira\"})}),text:w8px1mVW9},YLVaThNzV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.25)\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 25, 38))\"},children:\"Maria Oliveira\"})}),text:w8px1mVW9}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+0+192+12+0+0+0+4),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/pJ14Zm6fSChKb3riNPqdMYdzpDM.svg\"},className:\"framer-1k9adi9\",layoutDependency:layoutDependency,layoutId:\"CxO3X0GO7\",...addPropertyOverrides({kPV85hC8W:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+272.8+0+192+12+0+0+0+4),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/pJ14Zm6fSChKb3riNPqdMYdzpDM.svg\"}},YLVaThNzV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+272.8+0+192+12+0+0+0+4),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/pJ14Zm6fSChKb3riNPqdMYdzpDM.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1tZWRpdW0=\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"Propriet\\xe1rio parceiro da MuvHub\"})}),className:\"framer-14sgozh\",fonts:[\"FS;Chillax-medium\"],layoutDependency:layoutDependency,layoutId:\"oGSLO6Zb0\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 13)\"},text:W5sC4e8mw,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P0v27Qlwg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1tZWRpdW0=\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 13))\"},children:\"Gestora de portf\\xf3lio de im\\xf3veis\"})}),text:LUKPUCVky},YLVaThNzV:{text:LUKPUCVky}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+64+0+192+12+75.2,...addPropertyOverrides({kPV85hC8W:{y:(componentViewport?.y||0)+64+272.8+0+192+12+75.2},YLVaThNzV:{y:(componentViewport?.y||0)+64+272.8+0+192+12+75.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9g33kw-container\",layoutDependency:layoutDependency,layoutId:\"FIb5pqomk-container\",nodeId:\"FIb5pqomk\",rendersWithMotion:true,scopeId:\"kQMJjz68O\",children:/*#__PURE__*/_jsx(SubmitButton2,{bB86SdWg2:\"4px 20px 4px 20px\",c51OiYW2d:\"Solicitar Parceria\",evY7ufUVF:false,FxNHkD8b1:\"rgb(51, 51, 51)\",height:\"100%\",id:\"FIb5pqomk\",jIlthH4rE:\"99px\",L4o3h4No7:\"rgb(255, 255, 255)\",layoutId:\"FIb5pqomk\",NFtNEifBI:\"var(--token-982651bf-316c-4c28-8396-1989e8a1623d, rgb(93, 58, 220))\",sEzH47L94:16,variant:\"RimgkMPUA\",vLrsY6BP7:\"rgb(98, 60, 232)\",width:\"100%\",xl8Na__ZH:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:0},Xwfi0pIio:acMsLTuZU})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t7dr0e\",layoutDependency:layoutDependency,layoutId:\"qCDwAtTni\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bio4no\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Kv4VM1HSu\",onTap:onTap1bw4yub,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"2px 4px 12px 0px rgba(0, 0, 0, 0.04)\"},whileHover:animation,whileTap:animation1,...addPropertyOverrides({P0v27Qlwg:{onTap:onTapcdgdzj}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d00pfu\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ZYkbobv3g\",svg:'<svg height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"#11110D\"><path fill=\"currentColor\" d=\"m5.052 12.85 3.549 3.55-1.202 1.202L1.798 12l5.601-5.602 1.202 1.203-3.549 3.549H21v1.7z\"/></svg>',withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19wx3gp\",layoutDependency:layoutDependency,layoutId:\"pEf3m1r2b\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hrtixj\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eX7gxEt6u\",onTap:onTap1bw4yub,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"2px 4px 12px 0px rgba(0, 0, 0, 0.04)\"},whileHover:animation,whileTap:animation1,...addPropertyOverrides({P0v27Qlwg:{onTap:onTapcdgdzj}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j7fpqd\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GP3jls7p1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.746 12.85 L 14.197 16.4 L 15.399 17.602 L 21 12 L 15.399 6.398 L 14.197 7.601 L 17.746 11.15 L 1.798 11.15 L 1.798 12.85 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12603980636,withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-igmgo.framer-v5e5q0, .framer-igmgo .framer-v5e5q0 { display: block; }\",\".framer-igmgo.framer-1dazgb8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 40px 64px 40px; position: relative; width: 1088px; }\",\".framer-igmgo .framer-h0lcay { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-igmgo .framer-3q52fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-igmgo .framer-1k88mre { flex: none; height: 116px; position: relative; width: 116px; }\",\".framer-igmgo .framer-1e64i8o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-igmgo .framer-1pxorg1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-igmgo .framer-1n3h7a7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-igmgo .framer-w78yv, .framer-igmgo .framer-1jp89xg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-igmgo .framer-1c2vb06, .framer-igmgo .framer-11ij8w1, .framer-igmgo .framer-nihhog, .framer-igmgo .framer-ex1h37, .framer-igmgo .framer-h399zt, .framer-igmgo .framer-9xagys, .framer-igmgo .framer-14sgozh { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-igmgo .framer-g8btkg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-igmgo .framer-120eisx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 20px 0px 0px 0px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-igmgo .framer-ecvx45, .framer-igmgo .framer-16fsegk, .framer-igmgo .framer-bio4no, .framer-igmgo .framer-hrtixj { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 80px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-igmgo .framer-a963yb, .framer-igmgo .framer-1jocfgx, .framer-igmgo .framer-d00pfu, .framer-igmgo .framer-j7fpqd { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-igmgo .framer-mkkm7p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1.6 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-igmgo .framer-1ilt9gt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-igmgo .framer-syt0sg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-igmgo .framer-16ww5ls { 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: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-igmgo .framer-fks10m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-igmgo .framer-cjyumq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-igmgo .framer-1o0prlh { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-igmgo .framer-1k9adi9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; z-index: 1; }\",\".framer-igmgo .framer-9g33kw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-igmgo .framer-1t7dr0e { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: -40px; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 1; }\",\".framer-igmgo .framer-19wx3gp { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -40px; width: min-content; z-index: 1; }\",\".framer-igmgo.framer-v-1q368hh.framer-1dazgb8, .framer-igmgo.framer-v-1nuk022.framer-1dazgb8 { flex-direction: column; gap: 32px; width: 372px; }\",\".framer-igmgo.framer-v-1q368hh .framer-h0lcay, .framer-igmgo.framer-v-1nuk022 .framer-h0lcay { flex: none; gap: 24px; width: 100%; }\",\".framer-igmgo.framer-v-1q368hh .framer-3q52fo, .framer-igmgo.framer-v-1nuk022 .framer-3q52fo { order: 1; }\",\".framer-igmgo.framer-v-1q368hh .framer-1e64i8o, .framer-igmgo.framer-v-1nuk022 .framer-1e64i8o { order: 2; }\",\".framer-igmgo.framer-v-1q368hh .framer-1pxorg1, .framer-igmgo.framer-v-1nuk022 .framer-1pxorg1 { gap: 16px; order: 3; }\",\".framer-igmgo.framer-v-1q368hh .framer-120eisx, .framer-igmgo.framer-v-1nuk022 .framer-120eisx { order: 0; }\",\".framer-igmgo.framer-v-1q368hh .framer-mkkm7p, .framer-igmgo.framer-v-1nuk022 .framer-mkkm7p { flex: none; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 447\n * @framerIntrinsicWidth 1088\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"P0v27Qlwg\":{\"layout\":[\"fixed\",\"auto\"]},\"kPV85hC8W\":{\"layout\":[\"fixed\",\"auto\"]},\"YLVaThNzV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"acMsLTuZU\":\"link\",\"caUJGGePW\":\"image1\",\"OyIgdX3Zd\":\"name1\",\"W5sC4e8mw\":\"represent1\",\"c4aHF9ppI\":\"feedback\",\"UQKct4eXy\":\"image2\",\"w8px1mVW9\":\"name2\",\"LUKPUCVky\":\"represent2\",\"IIHiKVW1W\":\"feedback2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkQMJjz68O=withCSS(Component,css,\"framer-igmgo\");export default FramerkQMJjz68O;FramerkQMJjz68O.displayName=\"SocialProof\";FramerkQMJjz68O.defaultProps={height:447,width:1088};addPropertyControls(FramerkQMJjz68O,{variant:{options:[\"EQGsmJ8G0\",\"P0v27Qlwg\",\"kPV85hC8W\",\"YLVaThNzV\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Mobile 1\",\"Mobile 2\"],title:\"Variant\",type:ControlType.Enum},acMsLTuZU:{title:\"Link\",type:ControlType.Link},caUJGGePW:{__defaultAssetReference:\"data:framer/asset-reference,xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?originalFilename=photo-1549473448-b0acc73629dc%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMTZ8fG1hbiUyMGJ1c2luZXNzfGVufDB8fHx8MTc0ODAxMDU2NHww%26ixlib%3Drb-4.1.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,xaIZ83ne1gV3ysfOJDSyCRQdAK8.jpg?originalFilename=photo-1549473448-b0acc73629dc%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMTZ8fG1hbiUyMGJ1c2luZXNzfGVufDB8fHx8MTc0ODAxMDU2NHww%26ixlib%3Drb-4.1.jpg&preferredSize=auto\"},description:\"User\",title:\"Image 1\",type:ControlType.ResponsiveImage},OyIgdX3Zd:{defaultValue:\"Jo\\xe3o Silva\",description:\"1\",displayTextArea:false,title:\"Name 1\",type:ControlType.String},W5sC4e8mw:{defaultValue:\"Propriet\\xe1rio Parceiro da MuvHub\",displayTextArea:false,title:\"Represent 1\",type:ControlType.String},c4aHF9ppI:{defaultValue:\"\u201CEm parceria com a MuvHub, atingimos 88% de ocupa\\xe7\\xe3o no primeiro trimestre de opera\\xe7\\xe3o, superando nossa meta em 20%. A integra\\xe7\\xe3o e o suporte dedicado fizeram toda a diferen\\xe7a.\u201D\\n\\n\",description:\"2\",displayTextArea:true,title:\"Feedback\",type:ControlType.String},UQKct4eXy:{__defaultAssetReference:\"data:framer/asset-reference,a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?originalFilename=photo-1573497019940-1c28c88b4f3e%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMHx8d29tYW4lMjBidXNpbmVzc3xlbnwwfHx8fDE3NDgwMTA1Mjh8MA%26ixlib%3Drb-4.1.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?originalFilename=photo-1573497019940-1c28c88b4f3e%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxMHx8d29tYW4lMjBidXNpbmVzc3xlbnwwfHx8fDE3NDgwMTA1Mjh8MA%26ixlib%3Drb-4.1.jpg&preferredSize=auto\"},title:\"Image 2\",type:ControlType.ResponsiveImage},w8px1mVW9:{defaultValue:\"Maria Oliveira\",description:\"2\",displayTextArea:false,title:\"Name 2\",type:ControlType.String},LUKPUCVky:{defaultValue:\"Propriet\\xe1rio Parceiro da MuvHub\",description:\"Propriet\\xe1rio, corretor...\",displayTextArea:false,title:\"Represent 2\",type:ControlType.String},IIHiKVW1W:{defaultValue:\"\u201CCom a MuvHub, consegui elevar a taxa de ocupa\\xe7\\xe3o do meu im\\xf3vel de temporada de 65% para 92% em apenas seis meses. A equipe cuidou de tudo, desde a divulga\\xe7\\xe3o at\\xe9 o suporte aos h\\xf3spedes.\u201D\",description:\"1\",displayTextArea:false,title:\"Feedback 2\",type:ControlType.String}});addFonts(FramerkQMJjz68O,[{explicitInter:true,fonts:[{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G463L6WWJWSX4R6VTEVFCTIXPE3AUDEF/V4JHHUSZMHBPK3DFEHLGTZVXVBHVLZ7P/ND3FIMQYFEQ2VM2WWNXCGGBFYRPR7FMH.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MBOJEUZXMXZXHAW3KKWUFI6R7OIPIRYU/FBJ6H6I7LKZ2WGOVP25FDJOOUIMXMY2Z/THXRGVPNH45VMHCGWEEJATJ2RCOHTNBI.woff2\",weight:\"500\"},{family:\"Chillax\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2T24MWUOKZU65SZJ33GPRGNOKE4KPOBX/T6LIXZJIPB23UDPMTIKURYWSZLXZBJ3A/THF5L6EHVL4N4NNE3GYDZNZSHABL5CH5.woff2\",weight:\"600\"},{family:\"Chillax\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XASL35KKT35X3ACCBCOQKKABSR6AT3FX/6MU5BWUUPHCFUHM2F3E3QPQGKXCVBUOO/WZY5PMNTII6NKOB2TTIAX7QVAWMSY2DQ.woff2\",weight:\"500\"}]},...SubmitButton2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkQMJjz68O\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"447\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1088\",\"framerVariables\":\"{\\\"acMsLTuZU\\\":\\\"link\\\",\\\"caUJGGePW\\\":\\\"image1\\\",\\\"OyIgdX3Zd\\\":\\\"name1\\\",\\\"W5sC4e8mw\\\":\\\"represent1\\\",\\\"c4aHF9ppI\\\":\\\"feedback\\\",\\\"UQKct4eXy\\\":\\\"image2\\\",\\\"w8px1mVW9\\\":\\\"name2\\\",\\\"LUKPUCVky\\\":\\\"represent2\\\",\\\"IIHiKVW1W\\\":\\\"feedback2\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P0v27Qlwg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kPV85hC8W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YLVaThNzV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kQMJjz68O.map"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "AnimatorFonts", "getFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "Framerg8_A7Pi04", "withCSS", "g8_A7Pi04_default", "addPropertyControls", "ControlType", "addFonts", "SubmitButton2Fonts", "getFonts", "lGOW7eF7Z_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transition2", "animation", "transition3", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "feedback", "feedback2", "height", "id", "image1", "image2", "link", "name1", "name2", "represent1", "represent2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "acMsLTuZU", "caUJGGePW", "OyIgdX3Zd", "W5sC4e8mw", "c4aHF9ppI", "UQKct4eXy", "w8px1mVW9", "LUKPUCVky", "IIHiKVW1W", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1bw4yub", "args", "onTapmnfjgr", "onTap1l3mw95", "onTapcdgdzj", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerkQMJjz68O", "withCSS", "kQMJjz68O_default", "addPropertyControls", "ControlType", "addFonts"]
}
