{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/dNGLVw7y3bmowyqK3rfC/zGQ3jCkCPsxSpA1vIgLu/j1T8yhVi6.js", "ssg:https://framerusercontent.com/modules/nuSxqqwJ3AVIWcUbzTvb/cVb518hV7MJicYFCANf5/ksdFXtm8p.js", "ssg:https://framerusercontent.com/modules/sOUwlQlqtqNnJrhhbPCE/wA7W1BX1FpOE0x7LBpUq/rQszDNQHT.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/ggM3mQ1EMJo6CH8sq34x/dFoTEwI9g651LWwV0FPT/ylSvL3M4_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={nNSy0iNS3:{hover:true}};const cycleOrder=[\"nNSy0iNS3\"];const serializationHash=\"framer-9iGn9\";const variantClassNames={nNSy0iNS3:\"framer-v-bkyg2y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:14,delay:0,mass:.1,stiffness:73,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,nome,tap,width,...props})=>{var _ref;return{...props,eVY8Jwm46:(_ref=nome!==null&&nome!==void 0?nome:props.eVY8Jwm46)!==null&&_ref!==void 0?_ref:\"text\",knhAX18GA:tap!==null&&tap!==void 0?tap:props.knhAX18GA};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eVY8Jwm46,knhAX18GA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nNSy0iNS3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1l5rxou=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(knhAX18GA){const res=await knhAX18GA(...args);if(res===false)return false;}setVariant(\"nNSy0iNS3\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-bkyg2y\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nNSy0iNS3\",onTap:onTap1l5rxou,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(112, 167, 56, 0)\",borderBottomLeftRadius:217,borderBottomRightRadius:217,borderTopLeftRadius:217,borderTopRightRadius:217,...style},variants:{\"nNSy0iNS3-hover\":{backgroundColor:\"rgba(108, 137, 166, 0.05)\"}},...addPropertyOverrides({\"nNSy0iNS3-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"text\"})}),className:\"framer-1fqy068\",fonts:[\"GF;Cabin-regular\"],layoutDependency:layoutDependency,layoutId:\"Q_NsMlP0X\",style:{\"--extracted-r6o4lv\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:eVY8Jwm46,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"nNSy0iNS3-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"text\"})}),fonts:[\"GF;Cabin-700\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ah6wuk\",\"data-framer-name\":\"Vector 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Cxv_keFWI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9 10\"><path d=\"M 8.138 5.197 C 8.387 4.953 8.387 4.556 8.138 4.311 L 4.072 0.322 C 3.822 0.078 3.418 0.078 3.168 0.322 C 2.919 0.567 2.919 0.964 3.168 1.209 L 6.782 4.754 L 3.168 8.3 C 2.919 8.544 2.919 8.941 3.168 9.186 C 3.418 9.431 3.822 9.431 4.072 9.186 Z M 0.773 5.62 L 6.773 5.62 L 6.773 3.62 L 0.773 3.62 Z\" fill=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\"></path></svg>',svgContentId:12409786445,withExternalLayout:true,...addPropertyOverrides({\"nNSy0iNS3-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 10\"><path d=\"M 25.14 5.197 C 25.389 4.953 25.389 4.556 25.14 4.311 L 21.074 0.322 C 20.824 0.078 20.42 0.078 20.17 0.322 C 19.921 0.567 19.921 0.964 20.17 1.209 L 23.785 4.754 L 20.17 8.3 C 19.921 8.544 19.921 8.941 20.17 9.186 C 20.42 9.431 20.824 9.431 21.074 9.186 Z M 5.773 5.62 L 23.773 5.62 L 23.773 3.62 L 5.773 3.62 Z\" fill=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\"></path></svg>',svgContentId:9123109185}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9iGn9.framer-1q5kb8n, .framer-9iGn9 .framer-1q5kb8n { display: block; }\",\".framer-9iGn9.framer-bkyg2y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px 23px 6px 23px; position: relative; width: min-content; }\",\".framer-9iGn9 .framer-1fqy068 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 162px; word-break: break-word; word-wrap: break-word; }\",\".framer-9iGn9 .framer-ah6wuk { flex: none; height: 10px; position: relative; width: 9px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9iGn9.framer-bkyg2y { gap: 0px; } .framer-9iGn9.framer-bkyg2y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9iGn9.framer-bkyg2y > :first-child { margin-left: 0px; } .framer-9iGn9.framer-bkyg2y > :last-child { margin-right: 0px; } }\",\".framer-9iGn9.framer-v-bkyg2y.hover .framer-ah6wuk { width: 26px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 217\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Kp3T8WTlb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"eVY8Jwm46\":\"nome\",\"knhAX18GA\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj1T8yhVi6=withCSS(Component,css,\"framer-9iGn9\");export default Framerj1T8yhVi6;Framerj1T8yhVi6.displayName=\"cidades\";Framerj1T8yhVi6.defaultProps={height:32,width:217};addPropertyControls(Framerj1T8yhVi6,{eVY8Jwm46:{defaultValue:\"text\",displayTextArea:false,title:\"nome\",type:ControlType.String},knhAX18GA:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framerj1T8yhVi6,[{explicitInter:true,fonts:[{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Svxm7rE_s.woff2\",weight:\"400\"},{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Svxm7rE_s.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj1T8yhVi6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"eVY8Jwm46\\\":\\\"nome\\\",\\\"knhAX18GA\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"217\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kp3T8WTlb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j1T8yhVi6.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"iuPtuC8HG\"];const serializationHash=\"framer-xXmOt\";const variantClassNames={iuPtuC8HG:\"framer-v-s9lfhb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:2.55,duration:1.3,ease:[.44,0,0,.87],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,gk1tWnoru:(_ref=title!==null&&title!==void 0?title:props.gk1tWnoru)!==null&&_ref!==void 0?_ref:\"Abrir no maps\",WZxGKU0cJ:link!==null&&link!==void 0?link:props.WZxGKU0cJ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gk1tWnoru,WZxGKU0cJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iuPtuC8HG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:WZxGKU0cJ,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-s9lfhb\",className,classNames)} framer-ynmnmr`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"iuPtuC8HG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",borderBottomLeftRadius:295,borderBottomRightRadius:295,borderTopLeftRadius:295,borderTopRightRadius:295,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ba15jh\",layoutDependency:layoutDependency,layoutId:\"ClvPGeA0m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yp32w\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JnTifcC6V\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 6.75 8.25 C 6.75 9.493 7.757 10.5 9 10.5 C 10.243 10.5 11.25 9.493 11.25 8.25 C 11.25 7.007 10.243 6 9 6 C 7.757 6 6.75 7.007 6.75 8.25\" fill=\"transparent\" stroke-width=\"2\" stroke=\"hsl(0, 0%, 100%)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 13.243 12.493 L 10.06 15.675 C 9.475 16.26 8.526 16.26 7.94 15.675 L 4.757 12.493 C 2.414 10.15 2.414 6.351 4.757 4.008 C 7.101 1.664 10.899 1.664 13.243 4.008 C 15.586 6.351 15.586 10.15 13.243 12.493 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"hsl(0, 0%, 100%)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12838604378,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Abrir no maps\"})}),className:\"framer-883pri\",fonts:[\"GF;Cabin-700\"],layoutDependency:layoutDependency,layoutId:\"zr20SSSjo\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\"},text:gk1tWnoru,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xXmOt.framer-ynmnmr, .framer-xXmOt .framer-ynmnmr { display: block; }\",\".framer-xXmOt.framer-s9lfhb { height: 35px; overflow: visible; position: relative; text-decoration: none; width: 144px; }\",\".framer-xXmOt .framer-1ba15jh { flex: none; height: 18px; left: 15px; overflow: visible; position: absolute; top: calc(48.57142857142859% - 18px / 2); width: 18px; }\",\".framer-xXmOt .framer-yp32w { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-xXmOt .framer-883pri { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: absolute; right: 19px; top: 51%; user-select: none; white-space: pre; width: auto; z-index: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 35\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gk1tWnoru\":\"title\",\"WZxGKU0cJ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerksdFXtm8p=withCSS(Component,css,\"framer-xXmOt\");export default FramerksdFXtm8p;FramerksdFXtm8p.displayName=\"maos\";FramerksdFXtm8p.defaultProps={height:35,width:144};addPropertyControls(FramerksdFXtm8p,{gk1tWnoru:{defaultValue:\"Abrir no maps\",displayTextArea:false,title:\"Title\",type:ControlType.String},WZxGKU0cJ:{title:\"Link\",type:ControlType.Link}});addFonts(FramerksdFXtm8p,[{explicitInter:true,fonts:[{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Svxm7rE_s.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerksdFXtm8p\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gk1tWnoru\\\":\\\"title\\\",\\\"WZxGKU0cJ\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"35\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"144\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ksdFXtm8p.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Cidades from\"https://framerusercontent.com/modules/dNGLVw7y3bmowyqK3rfC/zGQ3jCkCPsxSpA1vIgLu/j1T8yhVi6.js\";import Maos from\"https://framerusercontent.com/modules/nuSxqqwJ3AVIWcUbzTvb/cVb518hV7MJicYFCANf5/ksdFXtm8p.js\";const CidadesFonts=getFonts(Cidades);const MotionDivWithFX=withFX(motion.div);const MaosFonts=getFonts(Maos);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"mjCufzHbo\",\"B6lIlDYLv\",\"DbMgzy4KU\",\"Hmpn_nDCH\",\"jZvm9_QyS\"];const serializationHash=\"framer-mP4KH\";const variantClassNames={B6lIlDYLv:\"framer-v-17sunzs\",DbMgzy4KU:\"framer-v-1yf0a9b\",Hmpn_nDCH:\"framer-v-804hil\",jZvm9_QyS:\"framer-v-1y6978r\",mjCufzHbo:\"framer-v-x2i8t7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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 animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};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 animation6={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:0,mass:1,stiffness:228,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:150,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CORA\\xc7\\xc3O\":\"DbMgzy4KU\",BARREIRO:\"Hmpn_nDCH\",CONTAGEM:\"mjCufzHbo\",SANTA:\"B6lIlDYLv\",VENDA:\"jZvm9_QyS\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mjCufzHbo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mjCufzHbo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const knhAX18GA15jixyw=activeVariantCallback(async(...args)=>{setVariant(\"DbMgzy4KU\");});const knhAX18GA1m4orqg=activeVariantCallback(async(...args)=>{setVariant(\"Hmpn_nDCH\");});const knhAX18GA85l6v5=activeVariantCallback(async(...args)=>{setVariant(\"jZvm9_QyS\");});const knhAX18GA15h92eh=activeVariantCallback(async(...args)=>{setVariant(\"mjCufzHbo\");});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"jZvm9_QyS\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Hmpn_nDCH\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"DbMgzy4KU\")return true;return false;};const isDisplayed3=()=>{if([\"B6lIlDYLv\",\"DbMgzy4KU\",\"Hmpn_nDCH\",\"jZvm9_QyS\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"B6lIlDYLv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x2i8t7\",className,classNames),\"data-framer-name\":\"CONTAGEM\",layoutDependency:layoutDependency,layoutId:\"mjCufzHbo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({B6lIlDYLv:{\"data-framer-name\":\"SANTA\"},DbMgzy4KU:{\"data-framer-name\":\"CORA\\xc7\\xc3O\"},Hmpn_nDCH:{\"data-framer-name\":\"BARREIRO\"},jZvm9_QyS:{\"data-framer-name\":\"VENDA\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dk6m70\",layoutDependency:layoutDependency,layoutId:\"RsMbcsfxT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cpu3az\",layoutDependency:layoutDependency,layoutId:\"HubZpp5KU\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tk941p\",\"data-highlight\":true,id:`${layoutId}-1tk941p`,layoutDependency:layoutDependency,layoutId:\"k9vM_Ddo1\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:637,borderBottomRightRadius:637,borderTopLeftRadius:637,borderTopRightRadius:637},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Selecione a cidade\"})}),className:\"framer-13livm0\",\"data-framer-name\":\"Link \u2192 Pre\\xe7os e planos\",fonts:[\"GF;Cabin-regular\"],layoutDependency:layoutDependency,layoutId:\"qBlUTeOdt\",style:{\"--extracted-r6o4lv\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-whsztm\",layoutDependency:layoutDependency,layoutId:\"GspLrztKN\",style:{rotate:90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16jsz80\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vL7lOOT3l\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9 16\"><path d=\"M 1.803 2.068 L 7.803 8 L 1.803 13.932\" fill=\"transparent\" stroke-width=\"2.33\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9717487053,withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1tk941p`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1d3m033\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"uRSrlsibG\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(112, 167, 56, 0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1ezetgf-container\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"phtdm0Zja-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Cora\\xe7\\xe3o Eucar\\xedstico (BH)\",height:\"100%\",id:\"phtdm0Zja\",knhAX18GA:knhAX18GA15jixyw,layoutId:\"phtdm0Zja\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-6orsr4-container\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"worw5es12-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Barreiro (BH)\",height:\"100%\",id:\"worw5es12\",knhAX18GA:knhAX18GA1m4orqg,layoutId:\"worw5es12\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-lj2xsl-container\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"oVBt4Xoso-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Venda Nova (BH)\",height:\"100%\",id:\"oVBt4Xoso\",knhAX18GA:knhAX18GA85l6v5,layoutId:\"oVBt4Xoso\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1t1c5yt-container\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"kXL8J6gAE-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Contagem\",height:\"100%\",id:\"kXL8J6gAE\",knhAX18GA:knhAX18GA15h92eh,layoutId:\"kXL8J6gAE\",width:\"100%\"})})})]})})})]})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Contagem\"})}),className:\"framer-bdh5cj\",fonts:[\"GF;Cabin-700\"],layoutDependency:layoutDependency,layoutId:\"n5TrKd4Tz\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B6lIlDYLv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Santa Luzia\"})})},DbMgzy4KU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Cora\\xe7\\xe3o Eucar\\xedstico (BH)\"})})},Hmpn_nDCH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Barreiro (BH)\"})})},jZvm9_QyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Venda Nova (BH)\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lce95p\",layoutDependency:layoutDependency,layoutId:\"XPw0E8x6a\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12qznov\",layoutDependency:layoutDependency,layoutId:\"VOitHNkxx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ml2wih\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"h3J2GKoVS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 7.5 9.167 C 7.5 10.547 8.619 11.667 10 11.667 C 11.381 11.667 12.5 10.547 12.5 9.167 C 12.5 7.786 11.381 6.667 10 6.667 C 8.619 6.667 7.5 7.786 7.5 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 14.714 13.881 L 11.178 17.417 C 10.528 18.067 9.473 18.067 8.822 17.417 L 5.286 13.881 C 2.682 11.277 2.683 7.056 5.286 4.453 C 7.889 1.849 12.111 1.849 14.714 4.453 C 17.317 7.056 17.318 11.277 14.714 13.881 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11341347221,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNjAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Endere\\xe7o\"})}),className:\"framer-1ht89vy\",fonts:[\"GF;Cabin-600\"],layoutDependency:layoutDependency,layoutId:\"TpskHyBeH\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p6e2v\",layoutDependency:layoutDependency,layoutId:\"KRuF_BbDr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Treze de Junho, 70 - Sala 609/610 - Tres Barras, Contagem - MG, 32040-130, Brasil\"})}),className:\"framer-mlbhvy\",fonts:[\"GF;Cabin-regular\"],layoutDependency:layoutDependency,layoutId:\"p6jcVYpwO\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B6lIlDYLv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Jordelina Maria do Carmo, 602 - 1 andar - Boa Esperan\\xe7a, Belo Horizonte - MG, 33010-200, Brasil\"})})},DbMgzy4KU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Padre Pedro Evangelista, 260 - Cora\\xe7\\xe3o Eucar\\xedstico, Belo Horizonte - MG, 30535-490, Brasil\"})})},Hmpn_nDCH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Hon\\xf3rio Hermeto, 45 - sala 306 - Barreiro, Belo Horizonte - MG, 30640-110, Brasil\"})})},jZvm9_QyS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Luna Street Mall - R. Padre Pedro Pinto, 1595 - Loja 27 a 29, 2 andar - Venda Nova, Belo Horizonte - MG, 31510-000\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-on3ca3\",layoutDependency:layoutDependency,layoutId:\"oeXudwEL8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,...addPropertyOverrides({DbMgzy4KU:{width:\"144px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rd394e-container\",layoutDependency:layoutDependency,layoutId:\"LhVpyr0C8-container\",whileHover:animation6,children:/*#__PURE__*/_jsx(Maos,{gk1tWnoru:\"Abrir no maps\",height:\"100%\",id:\"LhVpyr0C8\",layoutId:\"LhVpyr0C8\",width:\"100%\",WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Medica+Instituto+Sa%C3%BAde+Contagem+-+Neurologista+infantil%2FPneumologista%2FOtorrino%2FEspirometria%2FFibronasolaringoscopia/@-19.9180599,-44.0794304,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bdddb89fc00f:0x4358800d6d4cd994!8m2!3d-19.9180599!4d-44.0768555!16s%2Fg%2F11pv9_rlwx?entry=ttu\",...addPropertyOverrides({B6lIlDYLv:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+M%C3%A9dica+Instituto+Sa%C3%BAde+Santa+Luzia+(+Reumatologista,+Neurologista+Pediatrico,+Endocrinologista,+Pneumologista+)/@-19.7940074,-43.9893371,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bfff0fee705d:0x781492debd67afee!8m2!3d-19.7940074!4d-43.9867622!16s%2Fg%2F11vlzpslmm?entry=ttu\"},DbMgzy4KU:{style:{width:\"100%\"},WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+M%C3%A9dica+Instituto+Sa%C3%BAde+-+Cora%C3%A7%C3%A3o+Eucaristico+IGinecologista,Pneumologista,Alergista,Neurologista,Otorrino%2B35esp/@-19.9247709,-43.9917251,17z/data=!3m1!4b1!4m6!3m5!1s0xa69762aaac7bcd:0xcef861f6f5df13b4!8m2!3d-19.9247709!4d-43.9891502!16s%2Fg%2F11pc9p73jg?entry=ttu\"},Hmpn_nDCH:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Medica+Instituto+Sa%C3%BAde+Barreiro+-+Esp.+M%C3%A9dicas+e+Espirometria%2FOtorrino%2FGeriatra%2FNefrologista%2FEletroneuromiografia/@-19.9737908,-44.0209371,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bd59e8948e91:0xf18b66f91e5a9483!8m2!3d-19.9737908!4d-44.0183622!16s%2Fg%2F11sfry06pp?entry=ttu\"},jZvm9_QyS:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Instituto+Sa%C3%BAde+-+Otorrino%2FPneumologista%2FGinecologista%2FEspirometria%2FDermatologista%2FFibronaso%2FHolter/@-19.8140735,-43.9591199,17z/data=!3m1!4b1!4m6!3m5!1s0xa69742dbea15b3:0x4400e55cf579b8fb!8m2!3d-19.8140735!4d-43.956545!16s%2Fg%2F11pzjlp38q?entry=ttu\"}},baseVariant,gestureVariant)})})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1fsieo9\",layoutDependency:layoutDependency,layoutId:\"cgdncFEw_\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h3vqr7-container\",layoutDependency:layoutDependency,layoutId:\"ZzRv2kboI-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ZzRv2kboI\",intervalControl:1.5,itemAmount:1,layoutId:\"ZzRv2kboI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-vr22q2\",layoutDependency:layoutDependency,layoutId:\"sx_rmP1VI\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xlv04m-container\",layoutDependency:layoutDependency,layoutId:\"ZhzPuHe27-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"ZhzPuHe27\",intervalControl:1.5,itemAmount:1,layoutId:\"ZhzPuHe27\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:581,intrinsicWidth:533,pixelHeight:581,pixelWidth:533,sizes:\"550px\",src:\"https://framerusercontent.com/images/WomFql8HzYVIG5p33KEjMCmGsN8.png\",srcSet:\"https://framerusercontent.com/images/WomFql8HzYVIG5p33KEjMCmGsN8.png 533w\"},className:\"framer-10f6xrk\",layoutDependency:layoutDependency,layoutId:\"YivLQj_qH\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png\",srcSet:\"https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png 1280w\"},className:\"framer-nnxsun\",layoutDependency:layoutDependency,layoutId:\"pTtyjo7QR\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png\",srcSet:\"https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png 1280w\"},className:\"framer-krlzzs\",layoutDependency:layoutDependency,layoutId:\"Jn9CNqBjA\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png\",srcSet:\"https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png 1280w\"},className:\"framer-155tepe\",layoutDependency:layoutDependency,layoutId:\"K91gJwi37\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hhqhyr-container\",layoutDependency:layoutDependency,layoutId:\"OOnUTFIsj-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"OOnUTFIsj\",intervalControl:1.5,itemAmount:1,layoutId:\"OOnUTFIsj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:935,intrinsicWidth:1184,pixelHeight:935,pixelWidth:1184,sizes:\"550px\",src:\"https://framerusercontent.com/images/ndstRVg2YlRRC9kOkiDVk6AS7sc.png\",srcSet:\"https://framerusercontent.com/images/ndstRVg2YlRRC9kOkiDVk6AS7sc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ndstRVg2YlRRC9kOkiDVk6AS7sc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndstRVg2YlRRC9kOkiDVk6AS7sc.png 1184w\"},className:\"framer-dtwafw\",layoutDependency:layoutDependency,layoutId:\"DFfHZ5NlR\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/tq7Zb3JQjOihqBnj2QKZgqLZoI.png\",srcSet:\"https://framerusercontent.com/images/tq7Zb3JQjOihqBnj2QKZgqLZoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tq7Zb3JQjOihqBnj2QKZgqLZoI.png 628w\"},className:\"framer-mc52ld\",layoutDependency:layoutDependency,layoutId:\"VwXPYujuV\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/OcivG3SN79aDcrCPugJQ1AOlXh8.png\",srcSet:\"https://framerusercontent.com/images/OcivG3SN79aDcrCPugJQ1AOlXh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OcivG3SN79aDcrCPugJQ1AOlXh8.png 934w\"},className:\"framer-82osj5\",layoutDependency:layoutDependency,layoutId:\"rkZXaifr9\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/6MmwbHMhCO11ooMQVv1DOxdhQ.png\",srcSet:\"https://framerusercontent.com/images/6MmwbHMhCO11ooMQVv1DOxdhQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/6MmwbHMhCO11ooMQVv1DOxdhQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MmwbHMhCO11ooMQVv1DOxdhQ.png 1390w\"},className:\"framer-1jxq2y5\",layoutDependency:layoutDependency,layoutId:\"XF90QwG8e\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-surkv0-container\",layoutDependency:layoutDependency,layoutId:\"RUT_D0BKC-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"RUT_D0BKC\",intervalControl:1.5,itemAmount:1,layoutId:\"RUT_D0BKC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-1f2qcpc\",layoutDependency:layoutDependency,layoutId:\"OLPLGdhVP\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png\",srcSet:\"https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png 739w\"},className:\"framer-xdzi2l\",layoutDependency:layoutDependency,layoutId:\"SLKuOKV0C\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/65hZA9D6lL5vCeOcYvzgnpahuM.png\",srcSet:\"https://framerusercontent.com/images/65hZA9D6lL5vCeOcYvzgnpahuM.png 591w\"},className:\"framer-16geg04\",layoutDependency:layoutDependency,layoutId:\"AHtYpidAe\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"599px\",src:\"https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png\",srcSet:\"https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png 739w\"},className:\"framer-19diqyi\",layoutDependency:layoutDependency,layoutId:\"r1hjqylgg\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j6pexn-container\",layoutDependency:layoutDependency,layoutId:\"yCaWFTOWu-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"yCaWFTOWu\",intervalControl:1.5,itemAmount:1,layoutId:\"yCaWFTOWu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-12h39so\",layoutDependency:layoutDependency,layoutId:\"D8odVx5id\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mP4KH.framer-71kqvv, .framer-mP4KH .framer-71kqvv { display: block; }\",\".framer-mP4KH.framer-x2i8t7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 354px; overflow: visible; padding: 0px; position: relative; width: 354px; }\",\".framer-mP4KH .framer-1dk6m70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-cpu3az { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mP4KH .framer-1tk941p { 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: 15px 27px 15px 27px; position: relative; width: min-content; }\",\".framer-mP4KH .framer-13livm0 { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-mP4KH .framer-whsztm { 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-mP4KH .framer-16jsz80 { flex: none; height: 16px; position: relative; width: 9px; }\",\".framer-mP4KH .framer-1d3m033 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 14px 20px 14px; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mP4KH .framer-1ezetgf-container, .framer-mP4KH .framer-6orsr4-container, .framer-mP4KH .framer-lj2xsl-container, .framer-mP4KH .framer-1t1c5yt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mP4KH .framer-bdh5cj, .framer-mP4KH .framer-mlbhvy { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-mP4KH .framer-lce95p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-12qznov { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-1ml2wih { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-mP4KH .framer-1ht89vy { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\".framer-mP4KH .framer-p6e2v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-on3ca3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-1rd394e-container { flex: none; height: auto; min-width: 143px; position: relative; width: auto; }\",\".framer-mP4KH .framer-1fsieo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 349px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-h3vqr7-container, .framer-mP4KH .framer-1xlv04m-container, .framer-mP4KH .framer-1hhqhyr-container, .framer-mP4KH .framer-1j6pexn-container { flex: none; height: 302px; position: relative; width: 100%; }\",\".framer-mP4KH .framer-vr22q2, .framer-mP4KH .framer-10f6xrk, .framer-mP4KH .framer-dtwafw, .framer-mP4KH .framer-1f2qcpc, .framer-mP4KH .framer-12h39so { height: 351px; overflow: hidden; position: relative; width: 550px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mP4KH .framer-nnxsun, .framer-mP4KH .framer-krlzzs, .framer-mP4KH .framer-155tepe, .framer-mP4KH .framer-mc52ld, .framer-mP4KH .framer-82osj5, .framer-mP4KH .framer-1jxq2y5, .framer-mP4KH .framer-xdzi2l, .framer-mP4KH .framer-16geg04, .framer-mP4KH .framer-19diqyi { height: 351px; overflow: hidden; position: relative; width: 599px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mP4KH .framer-surkv0-container { flex: none; height: 87%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mP4KH.framer-x2i8t7, .framer-mP4KH .framer-1dk6m70, .framer-mP4KH .framer-cpu3az, .framer-mP4KH .framer-1tk941p, .framer-mP4KH .framer-whsztm, .framer-mP4KH .framer-1d3m033, .framer-mP4KH .framer-lce95p, .framer-mP4KH .framer-12qznov, .framer-mP4KH .framer-p6e2v, .framer-mP4KH .framer-on3ca3, .framer-mP4KH .framer-1fsieo9 { gap: 0px; } .framer-mP4KH.framer-x2i8t7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-mP4KH.framer-x2i8t7 > :first-child, .framer-mP4KH .framer-1dk6m70 > :first-child, .framer-mP4KH .framer-cpu3az > :first-child, .framer-mP4KH .framer-1d3m033 > :first-child, .framer-mP4KH .framer-lce95p > :first-child, .framer-mP4KH .framer-p6e2v > :first-child, .framer-mP4KH .framer-1fsieo9 > :first-child { margin-top: 0px; } .framer-mP4KH.framer-x2i8t7 > :last-child, .framer-mP4KH .framer-1dk6m70 > :last-child, .framer-mP4KH .framer-cpu3az > :last-child, .framer-mP4KH .framer-1d3m033 > :last-child, .framer-mP4KH .framer-lce95p > :last-child, .framer-mP4KH .framer-p6e2v > :last-child, .framer-mP4KH .framer-1fsieo9 > :last-child { margin-bottom: 0px; } .framer-mP4KH .framer-1dk6m70 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-mP4KH .framer-cpu3az > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-mP4KH .framer-1tk941p > *, .framer-mP4KH .framer-whsztm > *, .framer-mP4KH .framer-12qznov > *, .framer-mP4KH .framer-on3ca3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mP4KH .framer-1tk941p > :first-child, .framer-mP4KH .framer-whsztm > :first-child, .framer-mP4KH .framer-12qznov > :first-child, .framer-mP4KH .framer-on3ca3 > :first-child { margin-left: 0px; } .framer-mP4KH .framer-1tk941p > :last-child, .framer-mP4KH .framer-whsztm > :last-child, .framer-mP4KH .framer-12qznov > :last-child, .framer-mP4KH .framer-on3ca3 > :last-child { margin-right: 0px; } .framer-mP4KH .framer-1d3m033 > *, .framer-mP4KH .framer-1fsieo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mP4KH .framer-lce95p > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-mP4KH .framer-p6e2v > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } }\",\".framer-mP4KH.framer-v-1yf0a9b .framer-1rd394e-container { min-width: unset; width: 144px; }\",\".framer-mP4KH.framer-v-1y6978r .framer-mlbhvy { width: 293px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 649\n * @framerIntrinsicWidth 354\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"354px\",null,null]},\"B6lIlDYLv\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"354px\",null,null]},\"DbMgzy4KU\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"354px\",null,null]},\"Hmpn_nDCH\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"354px\",null,null]},\"jZvm9_QyS\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"354px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrQszDNQHT=withCSS(Component,css,\"framer-mP4KH\");export default FramerrQszDNQHT;FramerrQszDNQHT.displayName=\"cidades MOBILE\";FramerrQszDNQHT.defaultProps={height:649,width:354};addPropertyControls(FramerrQszDNQHT,{variant:{options:[\"mjCufzHbo\",\"B6lIlDYLv\",\"DbMgzy4KU\",\"Hmpn_nDCH\",\"jZvm9_QyS\"],optionTitles:[\"CONTAGEM\",\"SANTA\",\"CORA\\xc7\\xc3O\",\"BARREIRO\",\"VENDA\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrQszDNQHT,[{explicitInter:true,fonts:[{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Svxm7rE_s.woff2\",weight:\"400\"},{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Svxm7rE_s.woff2\",weight:\"700\"},{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Svxm7rE_s.woff2\",weight:\"600\"}]},...CidadesFonts,...MaosFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrQszDNQHT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"649\",\"framerIntrinsicWidth\":\"354\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"354px\\\",null,null]},\\\"B6lIlDYLv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"354px\\\",null,null]},\\\"DbMgzy4KU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"354px\\\",null,null]},\\\"Hmpn_nDCH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"354px\\\",null,null]},\\\"jZvm9_QyS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"354px\\\",null,null]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rQszDNQHT.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (e942a9a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Image,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 Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Cidades from\"https://framerusercontent.com/modules/dNGLVw7y3bmowyqK3rfC/zGQ3jCkCPsxSpA1vIgLu/j1T8yhVi6.js\";import Maos from\"https://framerusercontent.com/modules/nuSxqqwJ3AVIWcUbzTvb/cVb518hV7MJicYFCANf5/ksdFXtm8p.js\";const CidadesFonts=getFonts(Cidades);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MotionDivWithFX=withFX(motion.div);const MaosFonts=getFonts(Maos);const ClipboardFonts=getFonts(Clipboard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"TFGan0shQEC3hBfGnE\",\"XVwtAiBVq\",\"nE7HYS8G5\",\"njkoCNEyQ\",\"wMbD0TKw9\"];const serializationHash=\"framer-l49gI\";const variantClassNames={nE7HYS8G5:\"framer-v-1250sz6\",njkoCNEyQ:\"framer-v-1g3uwc5\",TFGan0shQEC3hBfGnE:\"framer-v-1eqpnl\",wMbD0TKw9:\"framer-v-7d4g59\",XVwtAiBVq:\"framer-v-zy85wx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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 animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:150,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation6={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition3={damping:30,delay:0,mass:1,stiffness:228,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:150,y:0};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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableEnumMap1={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"CORA\\xc7\\xc3O\":\"nE7HYS8G5\",BARREIRO:\"njkoCNEyQ\",CONTAGEM:\"TFGan0shQEC3hBfGnE\",SANTA:\"XVwtAiBVq\",VENDA:\"wMbD0TKw9\"};const getProps=({cursor,direction,distribute,gap,height,id,width,...props})=>{return{...props,cfUVGKJy2:gap??props.cfUVGKJy2,k6aW34lfh:humanReadableEnumMap1[direction]??direction??props.k6aW34lfh??\"row\",PQaTX2HD5:humanReadableEnumMap[distribute]??distribute??props.PQaTX2HD5??\"space-between\",RKmgUoZwg:cursor??props.RKmgUoZwg,variant:humanReadableVariantMap[props.variant]??props.variant??\"TFGan0shQEC3hBfGnE\"};};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,RKmgUoZwg,PQaTX2HD5,cfUVGKJy2,k6aW34lfh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TFGan0shQEC3hBfGnE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const knhAX18GA1t4ibg9=activeVariantCallback(async(...args)=>{setVariant(\"nE7HYS8G5\");});const knhAX18GAeika62=activeVariantCallback(async(...args)=>{setVariant(\"njkoCNEyQ\");});const knhAX18GA1eea03t=activeVariantCallback(async(...args)=>{setVariant(\"wMbD0TKw9\");});const knhAX18GAik20g=activeVariantCallback(async(...args)=>{setVariant(\"TFGan0shQEC3hBfGnE\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wMbD0TKw9\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"njkoCNEyQ\")return true;return false;};const isDisplayed2=()=>{if([\"XVwtAiBVq\",\"nE7HYS8G5\",\"njkoCNEyQ\",\"wMbD0TKw9\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"XVwtAiBVq\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1eqpnl\",className,classNames),\"data-framer-name\":\"CONTAGEM\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQEC3hBfGnE\",ref:refBinding,style:{\"--13hyytb\":numberToPixelString(cfUVGKJy2),\"--1iszjqa\":k6aW34lfh,\"--1xcnemj\":k6aW34lfh===\"column\"?\"100%\":\"1px\",\"--cko427\":k6aW34lfh===\"column\"?undefined:\"1 0 0px\",\"--k9ygu4\":PQaTX2HD5,...style},...addPropertyOverrides({nE7HYS8G5:{\"data-framer-name\":\"CORA\\xc7\\xc3O\"},njkoCNEyQ:{\"data-framer-name\":\"BARREIRO\"},wMbD0TKw9:{\"data-framer-name\":\"VENDA\"},XVwtAiBVq:{\"data-framer-name\":\"SANTA\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8umtqp\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQPViCDeMOU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aw9yeh\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQqxQyEDtIp\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pl2ajy\",\"data-framer-cursor\":RKmgUoZwg,\"data-highlight\":true,id:`${layoutId}-1pl2ajy`,layoutDependency:layoutDependency,layoutId:\"TFGan0shQTTc5qGIm5\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:637,borderBottomRightRadius:637,borderTopLeftRadius:637,borderTopRightRadius:637},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Selecione a cidade\"})}),className:\"framer-1lvhthd\",\"data-framer-name\":\"Link \u2192 Pre\\xe7os e planos\",fonts:[\"GF;Cabin-regular\"],layoutDependency:layoutDependency,layoutId:\"TFGan0shQFmsQpIamr\",style:{\"--extracted-r6o4lv\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({nE7HYS8G5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Santo Agostinho (BH)\"})})},njkoCNEyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Barreiro (BH)\"})})},wMbD0TKw9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Venda Nova (BH)\"})})},XVwtAiBVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Santa Luzia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tnw78\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQuvviqxZ3U\",style:{rotate:90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5wpjm2\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQPoyv0laaG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9 16\"><path d=\"M 1.803 2.068 L 7.803 8 L 1.803 13.932\" fill=\"transparent\" stroke-width=\"2.33\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9717487053,withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1pl2ajy`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-qgfepg\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"htzrMPbpI\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(112, 167, 56, 0.05)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-zachnz-container\",\"data-framer-cursor\":RKmgUoZwg,exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"cyle3q4Bx-container\",nodeId:\"cyle3q4Bx\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Cora\\xe7\\xe3o Eucar\\xedstico (BH)\",height:\"100%\",id:\"cyle3q4Bx\",knhAX18GA:knhAX18GA1t4ibg9,layoutId:\"cyle3q4Bx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1qeyir7-container\",\"data-framer-cursor\":RKmgUoZwg,exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"PApHVYqNR-container\",nodeId:\"PApHVYqNR\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Barreiro (BH)\",height:\"100%\",id:\"PApHVYqNR\",knhAX18GA:knhAX18GAeika62,layoutId:\"PApHVYqNR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1tsnnjb-container\",\"data-framer-cursor\":RKmgUoZwg,exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"ONPAYtiZQ-container\",nodeId:\"ONPAYtiZQ\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Venda Nova (BH)\",height:\"100%\",id:\"ONPAYtiZQ\",knhAX18GA:knhAX18GA1eea03t,layoutId:\"ONPAYtiZQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-3j5zw9-container\",\"data-framer-cursor\":RKmgUoZwg,exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"edJt63Csp-container\",nodeId:\"edJt63Csp\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Cidades,{eVY8Jwm46:\"Contagem\",height:\"100%\",id:\"edJt63Csp\",knhAX18GA:knhAX18GAik20g,layoutId:\"edJt63Csp\",width:\"100%\"})})})]})})})]})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Contagem\"})}),className:\"framer-s1h9hx\",fonts:[\"GF;Cabin-700\"],layoutDependency:layoutDependency,layoutId:\"TFGan0shQDErlBTyzv\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nE7HYS8G5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Unidade Santo Agostinho\"})}),transformTemplate:transformTemplate1},njkoCNEyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Barreiro (BH)\"})})},wMbD0TKw9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Venda Nova (BH)\"})})},XVwtAiBVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNzAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Santa Luzia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jwervn\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQq6QAIhAjj\",...addPropertyOverrides({nE7HYS8G5:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etzhgo\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQJ7VMljgOv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rxw1mg\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQxRFROCpIq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 7.5 9.167 C 7.5 10.547 8.619 11.667 10 11.667 C 11.381 11.667 12.5 10.547 12.5 9.167 C 12.5 7.786 11.381 6.667 10 6.667 C 8.619 6.667 7.5 7.786 7.5 9.167\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 14.714 13.881 L 11.178 17.417 C 10.528 18.067 9.473 18.067 8.822 17.417 L 5.286 13.881 C 2.682 11.277 2.683 7.056 5.286 4.453 C 7.889 1.849 12.111 1.849 14.714 4.453 C 17.317 7.056 17.318 11.277 14.714 13.881 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11341347221,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tNjAw\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Endere\\xe7o\"})}),className:\"framer-p8jib2\",fonts:[\"GF;Cabin-600\"],layoutDependency:layoutDependency,layoutId:\"TFGan0shQnch9aLDEq\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4lj56i\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQmawNN1n9t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Treze de Junho, 70 - Sala 609/610 - Tres Barras, Contagem - MG, 32040-130, Brasil\"})}),className:\"framer-1pyti3f\",fonts:[\"GF;Cabin-regular\"],layoutDependency:layoutDependency,layoutId:\"TFGan0shQmJmRfMtkq\",style:{\"--extracted-gdpscs\":\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nE7HYS8G5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Avenida Barbacena, 600 - Santo Agostinho - 201 - Office Med, Belo Horizonte - MG, 30535-490, Brasil\"})})},njkoCNEyQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Hon\\xf3rio Hermeto, 45 - sala 306 - Barreiro, Belo Horizonte - MG, 30640-110, Brasil\"})})},wMbD0TKw9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"Luna Street Mall - R. Padre Pedro Pinto, 1595 - Loja 27 a 29, 2 andar - Venda Nova, Belo Horizonte - MG, 31510-000\"})})},XVwtAiBVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7Q2FiaW4tcmVndWxhcg==\",\"--framer-font-family\":'\"Cabin\", \"Cabin Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166)))\"},children:\"R. Jordelina Maria do Carmo, 602 - 1 andar - Boa Esperan\\xe7a, Belo Horizonte - MG, 33010-200, Brasil\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10prcc7\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQbh8dW0gfz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-awqxdv-container\",\"data-framer-cursor\":RKmgUoZwg,layoutDependency:layoutDependency,layoutId:\"TFGan0shQdnmoXhLl2-container\",nodeId:\"TFGan0shQdnmoXhLl2\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",whileHover:animation6,children:/*#__PURE__*/_jsx(Maos,{gk1tWnoru:\"Abrir no maps\",height:\"100%\",id:\"TFGan0shQdnmoXhLl2\",layoutId:\"TFGan0shQdnmoXhLl2\",width:\"100%\",WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Medica+Instituto+Sa%C3%BAde+Contagem+-+Neurologista+infantil%2FPneumologista%2FOtorrino%2FEspirometria%2FFibronasolaringoscopia/@-19.9180599,-44.0794304,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bdddb89fc00f:0x4358800d6d4cd994!8m2!3d-19.9180599!4d-44.0768555!16s%2Fg%2F11pv9_rlwx?entry=ttu\",...addPropertyOverrides({nE7HYS8G5:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+M%C3%A9dica+Instituto+Sa%C3%BAde+-+Cora%C3%A7%C3%A3o+Eucaristico+IGinecologista,Pneumologista,Alergista,Neurologista,Otorrino%2B35esp/@-19.9247709,-43.9917251,17z/data=!3m1!4b1!4m6!3m5!1s0xa69762aaac7bcd:0xcef861f6f5df13b4!8m2!3d-19.9247709!4d-43.9891502!16s%2Fg%2F11pc9p73jg?entry=ttu\"},njkoCNEyQ:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Medica+Instituto+Sa%C3%BAde+Barreiro+-+Esp.+M%C3%A9dicas+e+Espirometria%2FOtorrino%2FGeriatra%2FNefrologista%2FEletroneuromiografia/@-19.9737908,-44.0209371,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bd59e8948e91:0xf18b66f91e5a9483!8m2!3d-19.9737908!4d-44.0183622!16s%2Fg%2F11sfry06pp?entry=ttu\"},wMbD0TKw9:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+Instituto+Sa%C3%BAde+-+Otorrino%2FPneumologista%2FGinecologista%2FEspirometria%2FDermatologista%2FFibronaso%2FHolter/@-19.8140735,-43.9591199,17z/data=!3m1!4b1!4m6!3m5!1s0xa69742dbea15b3:0x4400e55cf579b8fb!8m2!3d-19.8140735!4d-43.956545!16s%2Fg%2F11pzjlp38q?entry=ttu\"},XVwtAiBVq:{WZxGKU0cJ:\"https://www.google.com/maps/place/Cl%C3%ADnica+M%C3%A9dica+Instituto+Sa%C3%BAde+Santa+Luzia+(+Reumatologista,+Neurologista+Pediatrico,+Endocrinologista,+Pneumologista+)/@-19.7940074,-43.9893371,17z/data=!3m1!4b1!4m6!3m5!1s0xa6bfff0fee705d:0x781492debd67afee!8m2!3d-19.7940074!4d-43.9867622!16s%2Fg%2F11vlzpslmm?entry=ttu\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dk6qra\",\"data-framer-name\":\"copiar\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQGlk7B28Vx\",...addPropertyOverrides({nE7HYS8G5:{whileHover:animation6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sdzy2x-container\",\"data-framer-cursor\":RKmgUoZwg,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TFGan0shQzkjaVUBW7-container\",nodeId:\"TFGan0shQzkjaVUBW7\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"var(--token-93d52f6a-664b-46eb-b74d-d6f9392da6bd, rgb(108, 137, 166))\",content:\"R. Treze de Junho, 70 - Sala 609/610 - Tres Barras, Contagem - MG, 32040-130, Brasil\",fill:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Cabin\", \"Cabin Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(255, 255, 255)\",color:\"var(--token-edf10e4a-9555-45a1-855e-20b5d974fd3a, rgb(40, 88, 136))\",scale:.87,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"TFGan0shQzkjaVUBW7\",isMixedBorderRadius:false,label:\"Copiar endere\\xe7o\",layoutId:\"TFGan0shQzkjaVUBW7\",padding:11,paddingBottom:11,paddingLeft:42,paddingPerSide:true,paddingRight:14,paddingTop:11,topLeftRadius:50,topRightRadius:50,width:\"100%\",...addPropertyOverrides({nE7HYS8G5:{content:\"R. Padre Pedro Evangelista, 260 - Cora\\xe7\\xe3o Eucar\\xedstico, Belo Horizonte - MG, 30535-490, Brasil\",hoverOptions:{backgroundColor:\"rgb(255, 255, 255)\",color:\"var(--token-edf10e4a-9555-45a1-855e-20b5d974fd3a, rgb(40, 88, 136))\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}}},njkoCNEyQ:{content:\"R. Hon\\xf3rio Hermeto, 45 - sala 306 - Barreiro, Belo Horizonte - MG, 30640-110, Brasil\"},wMbD0TKw9:{content:\"Luna Street Mall - R. Padre Pedro Pinto, 1595 - Loja 27 a 29, 2 andar - Venda Nova, Belo Horizonte - MG, 31510-000\"},XVwtAiBVq:{content:\"R. Jordelina Maria do Carmo, 602 - 1 andar - Boa Esperan\\xe7a, Belo Horizonte - MG, 33010-200, Brasil\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jq46l7\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQBsPKYFILe\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13ts9jc\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQChsOB5AsX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 6 7.5 C 6 6.672 6.672 6 7.5 6 L 13.5 6 C 14.328 6 15 6.672 15 7.5 L 15 13.5 C 15 14.328 14.328 15 13.5 15 L 7.5 15 C 6.672 15 6 14.328 6 13.5 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 12 6 L 12 4.5 C 12 3.672 11.328 3 10.5 3 L 4.5 3 C 3.672 3 3 3.672 3 4.5 L 3 10.5 C 3 11.328 3.672 12 4.5 12 L 6 12\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158)) /* {&quot;name&quot;:&quot;Prim\\xe1ria/Cor 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12070517760,withExternalLayout:true})})]})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-y6bnsd\",layoutDependency:layoutDependency,layoutId:\"TFGan0shQu7Ol1NQuc\",style:{borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kkc0qt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IjnyP1S2N-container\",nodeId:\"IjnyP1S2N\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"IjnyP1S2N\",intervalControl:1.5,itemAmount:1,layoutId:\"IjnyP1S2N\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1067,sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-vd3j14\",layoutDependency:layoutDependency,layoutId:\"rxnSTb3QM\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6m9eiy-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tb_oO97aN-container\",nodeId:\"tb_oO97aN\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"tb_oO97aN\",intervalControl:1.5,itemAmount:1,layoutId:\"tb_oO97aN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:581,intrinsicWidth:533,pixelHeight:581,pixelWidth:533,sizes:\"550px\",src:\"https://framerusercontent.com/images/WomFql8HzYVIG5p33KEjMCmGsN8.png\",srcSet:\"https://framerusercontent.com/images/WomFql8HzYVIG5p33KEjMCmGsN8.png 533w\"},className:\"framer-15ojlpj\",layoutDependency:layoutDependency,layoutId:\"P26Bv_EMc\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:\"599px\",src:\"https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png\",srcSet:\"https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png?scale-down-to=512 512w,https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/stEH0XoBFZuzsbYrpF0dE7DWc.png 1280w\"},className:\"framer-1ksn7cb\",layoutDependency:layoutDependency,layoutId:\"QQtSB7_09\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:\"599px\",src:\"https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png\",srcSet:\"https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png?scale-down-to=512 512w,https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBZMPQwuG0SxYkcwvg2Y9MAPi50.png 1280w\"},className:\"framer-1a2ju9i\",layoutDependency:layoutDependency,layoutId:\"lTmxBZI3v\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,sizes:\"599px\",src:\"https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png\",srcSet:\"https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qlz4CkK1KrOvbjNdfbi43KFY.png 1280w\"},className:\"framer-1r65klf\",layoutDependency:layoutDependency,layoutId:\"ZjoRiOLKQ\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mjmwwo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TFGan0shQs95f5qvZh-container\",nodeId:\"TFGan0shQs95f5qvZh\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"TFGan0shQs95f5qvZh\",intervalControl:1.5,itemAmount:1,layoutId:\"TFGan0shQs95f5qvZh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1067,sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-1bilght\",layoutDependency:layoutDependency,layoutId:\"guZ2G5rrG\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:411,pixelWidth:739,sizes:\"599px\",src:\"https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png\",srcSet:\"https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofEGvM8hp0YfwTpMai6WQ4s2EAY.png 739w\"},className:\"framer-1jld5nx\",layoutDependency:layoutDependency,layoutId:\"W48uT5ZxS\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:617,pixelWidth:591,sizes:\"599px\",src:\"https://framerusercontent.com/images/65hZA9D6lL5vCeOcYvzgnpahuM.png\",srcSet:\"https://framerusercontent.com/images/65hZA9D6lL5vCeOcYvzgnpahuM.png 591w\"},className:\"framer-1wveioc\",layoutDependency:layoutDependency,layoutId:\"kDrzgG3SH\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:523,pixelWidth:739,sizes:\"599px\",src:\"https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png\",srcSet:\"https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NFEKdZAaGkog8W4l2ecOZQk4eI.png 739w\"},className:\"framer-1fo4ckp\",layoutDependency:layoutDependency,layoutId:\"TiJHhaM6n\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nk9dt1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Nh80thy3U-container\",nodeId:\"Nh80thy3U\",rendersWithMotion:true,scopeId:\"ylSvL3M4_\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",arrowGap:11,arrowPadding:20,arrowPaddingBottom:-48,arrowPaddingLeft:0,arrowPaddingRight:-1,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:33,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Nh80thy3U\",intervalControl:1.5,itemAmount:1,layoutId:\"Nh80thy3U\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(58, 181, 158, 0.09)\",dotsBlur:0,dotsFill:\"var(--token-ac227266-e249-4bf1-932c-a1d45c32dabb, rgb(57, 180, 158))\",dotsGap:13,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:1067,sizes:\"550px\",src:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png\",srcSet:\"https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JS76jqmxNGrpJY161ge6L9xHRvE.png 1067w\"},className:\"framer-qcns1a\",layoutDependency:layoutDependency,layoutId:\"f7Ht10Ohc\",style:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l49gI.framer-1uvt1dl, .framer-l49gI .framer-1uvt1dl { display: block; }\",\".framer-l49gI.framer-1eqpnl { align-content: center; align-items: center; display: flex; flex-direction: var(--1iszjqa); flex-wrap: wrap; gap: var(--13hyytb); height: min-content; justify-content: var(--k9ygu4); max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 1216px; }\",\".framer-l49gI .framer-8umtqp { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--cko427); flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--1xcnemj); }\",\".framer-l49gI .framer-1aw9yeh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-l49gI .framer-1pl2ajy { 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: 15px 27px 15px 27px; position: relative; width: min-content; }\",\".framer-l49gI .framer-1lvhthd { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-l49gI .framer-tnw78, .framer-l49gI .framer-10prcc7, .framer-l49gI .framer-1dk6qra { 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-l49gI .framer-5wpjm2 { flex: none; height: 16px; position: relative; width: 9px; }\",\".framer-l49gI .framer-qgfepg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 14px 20px 14px; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-l49gI .framer-zachnz-container, .framer-l49gI .framer-1qeyir7-container, .framer-l49gI .framer-1tsnnjb-container, .framer-l49gI .framer-3j5zw9-container, .framer-l49gI .framer-1sdzy2x-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-l49gI .framer-s1h9hx { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-l49gI .framer-jwervn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-l49gI .framer-1etzhgo { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-l49gI .framer-1rxw1mg { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-l49gI .framer-p8jib2 { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\".framer-l49gI .framer-4lj56i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: min-content; }\",\".framer-l49gI .framer-1pyti3f { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 332px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-l49gI .framer-awqxdv-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-l49gI .framer-jq46l7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 17px; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-l49gI .framer-13ts9jc { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-l49gI .framer-y6bnsd { align-content: center; align-items: center; aspect-ratio: 1.5787965616045845 / 1; display: flex; flex: var(--cko427); flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 385px); justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: var(--1xcnemj); }\",\".framer-l49gI .framer-kkc0qt-container, .framer-l49gI .framer-6m9eiy-container { aspect-ratio: 1.966887417218543 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 102px); position: relative; width: 100%; }\",\".framer-l49gI .framer-vd3j14, .framer-l49gI .framer-15ojlpj, .framer-l49gI .framer-1bilght, .framer-l49gI .framer-qcns1a { height: 351px; overflow: hidden; position: relative; width: 550px; will-change: var(--framer-will-change-override, transform); }\",\".framer-l49gI .framer-1ksn7cb, .framer-l49gI .framer-1a2ju9i, .framer-l49gI .framer-1r65klf, .framer-l49gI .framer-1jld5nx, .framer-l49gI .framer-1wveioc, .framer-l49gI .framer-1fo4ckp { height: 351px; overflow: hidden; position: relative; width: 599px; will-change: var(--framer-will-change-override, transform); }\",\".framer-l49gI .framer-mjmwwo-container { aspect-ratio: 1.8245033112582782 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 333px); position: relative; width: 100%; }\",\".framer-l49gI .framer-1nk9dt1-container { aspect-ratio: 1.8245033112582782 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); position: relative; width: 100%; }\",\".framer-l49gI.framer-v-zy85wx .framer-4lj56i { width: 100%; }\",\".framer-l49gI.framer-v-zy85wx .framer-1pyti3f { max-width: 332px; width: 100%; }\",\".framer-l49gI.framer-v-zy85wx .framer-1nk9dt1-container { height: var(--framer-aspect-ratio-supported, 336px); }\",\".framer-l49gI.framer-v-1250sz6 .framer-8umtqp { display: block; height: 286px; padding: unset; }\",\".framer-l49gI.framer-v-1250sz6 .framer-1aw9yeh { left: 0px; position: absolute; top: 0px; }\",\".framer-l49gI.framer-v-1250sz6 .framer-s1h9hx { left: 50%; position: absolute; top: 75px; width: 608px; }\",\".framer-l49gI.framer-v-1250sz6 .framer-jwervn { bottom: 0px; left: 50%; position: absolute; width: 608px; }\",\".framer-l49gI.framer-v-1250sz6 .framer-1dk6qra { will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-l49gI.framer-v-1g3uwc5 .framer-6m9eiy-container { height: var(--framer-aspect-ratio-supported, 309px); }\",\".framer-l49gI.framer-v-7d4g59 .framer-1pyti3f { width: 360px; }\",\".framer-l49gI.framer-v-7d4g59 .framer-y6bnsd { height: var(--framer-aspect-ratio-supported, 127px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 385\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"XVwtAiBVq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"nE7HYS8G5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"njkoCNEyQ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]},\"wMbD0TKw9\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1216px\",null,null]}}}\n * @framerVariables {\"RKmgUoZwg\":\"cursor\",\"PQaTX2HD5\":\"distribute\",\"cfUVGKJy2\":\"gap\",\"k6aW34lfh\":\"direction\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerylSvL3M4_=withCSS(Component,css,\"framer-l49gI\");export default FramerylSvL3M4_;FramerylSvL3M4_.displayName=\"cidades\";FramerylSvL3M4_.defaultProps={height:385,width:1216};addPropertyControls(FramerylSvL3M4_,{variant:{options:[\"TFGan0shQEC3hBfGnE\",\"XVwtAiBVq\",\"nE7HYS8G5\",\"njkoCNEyQ\",\"wMbD0TKw9\"],optionTitles:[\"CONTAGEM\",\"SANTA\",\"CORA\\xc7\\xc3O\",\"BARREIRO\",\"VENDA\"],title:\"Variant\",type:ControlType.Enum},RKmgUoZwg:{title:\"Cursor\",type:ControlType.CustomCursor},PQaTX2HD5:{defaultValue:\"space-between\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},cfUVGKJy2:{defaultValue:0,min:0,title:\"Gap\",type:ControlType.Number},k6aW34lfh:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum}});addFonts(FramerylSvL3M4_,[{explicitInter:true,fonts:[{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Svxm7rE_s.woff2\",weight:\"400\"},{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Svxm7rE_s.woff2\",weight:\"700\"},{family:\"Cabin\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Svxm7rE_s.woff2\",weight:\"600\"}]},...CidadesFonts,...MaosFonts,...ClipboardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerylSvL3M4_\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"XVwtAiBVq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"nE7HYS8G5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"njkoCNEyQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]},\\\"wMbD0TKw9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1216px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"385\",\"framerVariables\":\"{\\\"RKmgUoZwg\\\":\\\"cursor\\\",\\\"PQaTX2HD5\\\":\\\"distribute\\\",\\\"cfUVGKJy2\\\":\\\"gap\\\",\\\"k6aW34lfh\\\":\\\"direction\\\"}\",\"framerIntrinsicWidth\":\"1216\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ylSvL3M4_.map"],
  "mappings": "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",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "nome", "tap", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eVY8Jwm46", "knhAX18GA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1l5rxou", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "Framerj1T8yhVi6", "withCSS", "j1T8yhVi6_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gk1tWnoru", "WZxGKU0cJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerksdFXtm8p", "withCSS", "ksdFXtm8p_default", "addPropertyControls", "ControlType", "addFonts", "CidadesFonts", "getFonts", "j1T8yhVi6_default", "MotionDivWithFX", "withFX", "motion", "MaosFonts", "ksdFXtm8p_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation6", "transition3", "animation7", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterizu9gt", "overlay", "paginationInfo", "args", "knhAX18GA15jixyw", "knhAX18GA1m4orqg", "knhAX18GA85l6v5", "knhAX18GA15h92eh", "ref1", "pe", "ref2", "ref3", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "l", "RichText2", "SVG", "AnimatePresence", "Floating", "ComponentViewportProvider", "Image2", "css", "FramerrQszDNQHT", "withCSS", "rQszDNQHT_default", "addPropertyControls", "ControlType", "addFonts", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "CidadesFonts", "getFonts", "j1T8yhVi6_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "MotionDivWithFX", "motion", "MaosFonts", "ksdFXtm8p_default", "ClipboardFonts", "Clipboard", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "animation5", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "animation6", "transformTemplate2", "transition3", "animation7", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "cursor", "direction", "distribute", "gap", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "RKmgUoZwg", "PQaTX2HD5", "cfUVGKJy2", "k6aW34lfh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "knhAX18GA1t4ibg9", "knhAX18GAeika62", "knhAX18GA1eea03t", "knhAX18GAik20g", "scopingClassNames", "cx", "ref1", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "l", "RichText2", "SVG", "AnimatePresence", "Floating", "ComponentViewportProvider", "Image2", "css", "FramerylSvL3M4_", "withCSS", "ylSvL3M4_default", "addPropertyControls", "ControlType", "addFonts"]
}
