{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/xT79xxlKpg7uiE2IDe0B/YLUdijbApngEaSfcMQrF/aESzTudK3.js", "ssg:https://framerusercontent.com/modules/8qUgu6Hml7UoyksGICX3/Kb9ya3nF5MOVHO8C03Uc/Ti1ci6Mk3.js", "ssg:https://framerusercontent.com/modules/v8wy2s5ELJXaMUK9X08W/ndWvUuIo5XWgOCTX2x5D/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// 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,playOffscreen}=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 amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>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[{current:null},{current:null}];// when the slots change, generate new array\n},[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     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.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});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* 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?.itemWidth+gap):-startFrom*(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?.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&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-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){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>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,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)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     * */const 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=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,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?.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?.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=`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,maskImage:fadeContent?fadeMask:undefined,opacity: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();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>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,true),\"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,true),\"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,playOffscreen:false},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},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,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.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.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\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...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})})});}));const Dot=/*#__PURE__*/memo(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;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const 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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./aESzTudK3-0.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={xjRYknl3m:{hover:true}};const cycleOrder=[\"xjRYknl3m\"];const serializationHash=\"framer-SaFDY\";const variantClassNames={xjRYknl3m:\"framer-v-bekksi\"};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 valuesByLocaleId={wC9xzQgEI:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:3};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,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xjRYknl3m\",enabledGestures,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:{hash:\":ouzNkRXIQ\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-bekksi\",className,classNames)} framer-920qoj`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xjRYknl3m\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"xjRYknl3m-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}},...addPropertyOverrides({\"xjRYknl3m-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\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtMzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"Ver mais\"})}),className:\"framer-1crwagt\",fonts:[\"GF;Plus Jakarta Sans-300\"],layoutDependency:layoutDependency,layoutId:\"tSszrBgFb\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"xjRYknl3m-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xjRYknl3m-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtMzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Ver mais\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"arrow_downward\"})}),className:\"framer-iawmoq\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"T5jCD0jOk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xjRYknl3m-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"arrow_downward\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SaFDY.framer-920qoj, .framer-SaFDY .framer-920qoj { display: block; }\",\".framer-SaFDY.framer-bekksi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: auto; justify-content: center; overflow: visible; padding: 6px 16px 6px 16px; position: relative; text-decoration: none; width: auto; }\",\".framer-SaFDY .framer-1crwagt, .framer-SaFDY .framer-iawmoq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SaFDY.framer-bekksi { gap: 0px; } .framer-SaFDY.framer-bekksi > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-SaFDY.framer-bekksi > :first-child { margin-left: 0px; } .framer-SaFDY.framer-bekksi > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gxD55xRda\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraESzTudK3=withCSS(Component,css,\"framer-SaFDY\");export default FrameraESzTudK3;FrameraESzTudK3.displayName=\"SeeMore\";FrameraESzTudK3.defaultProps={height:38,width:123};addFonts(FrameraESzTudK3,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NTxXUEKi4Rw.woff2\",weight:\"300\"},{family:\"Material Icons\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraESzTudK3\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"123\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gxD55xRda\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"38\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aESzTudK3.map", "// Generated by Framer (508aa67)\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\";import*as localizedValues from\"./Ti1ci6Mk3-0.js\";const cycleOrder=[\"wq9LOqYen\",\"PsS8wUKCW\"];const serializationHash=\"framer-tqIee\";const variantClassNames={PsS8wUKCW:\"framer-v-1giewme\",wq9LOqYen:\"framer-v-13qjb79\"};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 valuesByLocaleId={wC9xzQgEI:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:.8,stiffness:500,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 humanReadableVariantMap={\"Variant 1\":\"wq9LOqYen\",\"Variant 2\":\"PsS8wUKCW\"};const getProps=({height,id,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,gvPjWxC7E:(_ref=title!==null&&title!==void 0?title:props.gvPjWxC7E)!==null&&_ref!==void 0?_ref:\"Consigo acompanhar em tempo real as filas de atendimento?\",LTxzObt9j:(_ref1=text!==null&&text!==void 0?text:props.LTxzObt9j)!==null&&_ref1!==void 0?_ref1:\"Sim. O gestor pode acompanhar toda a opera\\xe7\\xe3o em tempo real atrav\\xe9s de um Painel de Chamadas e um Painel de Conversas.\\nAssim, \\xe9 poss\\xedvel saber uma s\\xe9rie de informa\\xe7\\xf5es relevantes que permitem adequar melhor as equipes, como:\\nTotal de chamadas ou chats recebidos\\nN\\xfamero de chamadas perdidas\\nHor\\xe1rio de pico das liga\\xe7\\xf5es\\nTempo m\\xe9dio de espera na fila\\nRespostas pendentes no chat\\nEssas e outras informa\\xe7\\xf5es que s\\xe3o disponibilizadas contribuem para a\\xe7\\xf5es estrat\\xe9gicas, focadas no que realmente importa: atender todos os clientes de prontid\\xe3o, encaminhar corretamente as tratativas, cultivar um relacionamento duradouro e consolidar a imagem da marca no mercado.\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"wq9LOqYen\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gvPjWxC7E,LTxzObt9j,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wq9LOqYen\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1o0noup=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"wq9LOqYen\");});const onTap1gnv5m7=activeVariantCallback(async(...args)=>{setVariant(\"PsS8wUKCW\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"PsS8wUKCW\")return false;return true;};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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-13qjb79\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wq9LOqYen\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 1px 2px 0px rgba(215, 218, 222, 1)\",...style},...addPropertyOverrides({PsS8wUKCW:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onTap:onTap1o0noup}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-100ki7j\",\"data-framer-name\":\"Group 1000003831\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RT86cxdzd\",onTap:onTap1gnv5m7,style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(1, 3, 63))\"},children:\"Consigo acompanhar em tempo real as filas de atendimento?\"})}),className:\"framer-lghtc4\",\"data-framer-name\":\"Consigo acompanhar em tempo real as filas de atendimento?\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"mm6VQ3oUF\",style:{\"--extracted-r6o4lv\":\"rgb(1, 3, 63)\"},text:gvPjWxC7E,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h2s7wg\",\"data-framer-name\":\"chevron-down\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"uayoSBXsk\",style:{rotate:0},svg:'<svg width=\"18\" height=\"19\" viewBox=\"0 0 18 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.5 11.75L8.29289 7.95711C8.68342 7.56658 9.31658 7.56658 9.70711 7.95711L13.5 11.75\" stroke=\"#542A94\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{PsS8wUKCW:{rotate:180}},withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(80, 81, 103))\"},children:[\"Sim. O gestor pode acompanhar toda a opera\\xe7\\xe3o em tempo real atrav\\xe9s de um Painel de Chamadas e um Painel de Conversas.\",/*#__PURE__*/_jsx(motion.br,{}),\"Assim, \\xe9 poss\\xedvel saber uma s\\xe9rie de informa\\xe7\\xf5es relevantes que permitem adequar melhor as equipes, como:\",/*#__PURE__*/_jsx(motion.br,{}),\"Total de chamadas ou chats recebidos\",/*#__PURE__*/_jsx(motion.br,{}),\"N\\xfamero de chamadas perdidas\",/*#__PURE__*/_jsx(motion.br,{}),\"Hor\\xe1rio de pico das liga\\xe7\\xf5es\",/*#__PURE__*/_jsx(motion.br,{}),\"Tempo m\\xe9dio de espera na fila\",/*#__PURE__*/_jsx(motion.br,{}),\"Respostas pendentes no chat\",/*#__PURE__*/_jsx(motion.br,{}),\"Essas e outras informa\\xe7\\xf5es que s\\xe3o disponibilizadas contribuem para a\\xe7\\xf5es estrat\\xe9gicas, focadas no que realmente importa: atender todos os clientes de prontid\\xe3o, encaminhar corretamente as tratativas, cultivar um relacionamento duradouro e consolidar a imagem da marca no mercado.\"]})}),className:\"framer-kfarss\",\"data-framer-name\":\"Sim. O gestor pode acompanhar toda a opera\\xe7\\xe3o em tempo real atrav\\xe9s de um Painel de Chamadas e um Painel de Conversas. Assim, \\xe9 poss\\xedvel saber uma s\\xe9rie de informa\\xe7\\xf5es relevantes que permitem adequar melhor as equipes, como: Total de chamadas ou chats recebidos N\\xfamero de chamadas perdidas Hor\\xe1rio de pico das liga\\xe7\\xf5es Tempo m\\xe9dio de espera na fila Respostas pendentes no chat Essas e outras informa\\xe7\\xf5es que s\\xe3o disponibilizadas contribuem para a\\xe7\\xf5es estrat\\xe9gicas, focadas no que realmente importa: atender todos os clientes de prontid\\xe3o, encaminhar corretamente as tratativas, cultivar um relacionamento duradouro e consolidar a imagem da marca no mercado.\",fonts:[\"GF;Jost-regular\"],layoutDependency:layoutDependency,layoutId:\"KtRXQz5R_\",style:{\"--extracted-r6o4lv\":\"rgb(80, 81, 103)\"},text:LTxzObt9j,verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tqIee.framer-1q5rzt8, .framer-tqIee .framer-1q5rzt8 { display: block; }\",\".framer-tqIee.framer-13qjb79 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px 20px 25px 20px; position: relative; width: 1010px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tqIee .framer-100ki7j { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 20px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tqIee .framer-lghtc4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tqIee .framer-h2s7wg { flex: none; height: 19px; position: relative; width: 18px; }\",\".framer-tqIee .framer-kfarss { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tqIee.framer-13qjb79 { gap: 0px; } .framer-tqIee.framer-13qjb79 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-tqIee.framer-13qjb79 > :first-child { margin-top: 0px; } .framer-tqIee.framer-13qjb79 > :last-child { margin-bottom: 0px; } }\",\".framer-tqIee.framer-v-1giewme.framer-13qjb79 { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 1010\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PsS8wUKCW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gvPjWxC7E\":\"title\",\"LTxzObt9j\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTi1ci6Mk3=withCSS(Component,css,\"framer-tqIee\");export default FramerTi1ci6Mk3;FramerTi1ci6Mk3.displayName=\"Accordion\";FramerTi1ci6Mk3.defaultProps={height:280,width:1010};addPropertyControls(FramerTi1ci6Mk3,{variant:{options:[\"wq9LOqYen\",\"PsS8wUKCW\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},gvPjWxC7E:{defaultValue:\"Consigo acompanhar em tempo real as filas de atendimento?\",displayTextArea:false,title:\"Title\",type:ControlType.String},LTxzObt9j:{defaultValue:\"Sim. O gestor pode acompanhar toda a opera\\xe7\\xe3o em tempo real atrav\\xe9s de um Painel de Chamadas e um Painel de Conversas.\\nAssim, \\xe9 poss\\xedvel saber uma s\\xe9rie de informa\\xe7\\xf5es relevantes que permitem adequar melhor as equipes, como:\\nTotal de chamadas ou chats recebidos\\nN\\xfamero de chamadas perdidas\\nHor\\xe1rio de pico das liga\\xe7\\xf5es\\nTempo m\\xe9dio de espera na fila\\nRespostas pendentes no chat\\nEssas e outras informa\\xe7\\xf5es que s\\xe3o disponibilizadas contribuem para a\\xe7\\xf5es estrat\\xe9gicas, focadas no que realmente importa: atender todos os clientes de prontid\\xe3o, encaminhar corretamente as tratativas, cultivar um relacionamento duradouro e consolidar a imagem da marca no mercado.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerTi1ci6Mk3,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Jost\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jost/v15/92zPtBhPNqw79Ij1E865zBUv7myjJQVDPokMmuHL.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTi1ci6Mk3\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"280\",\"framerIntrinsicWidth\":\"1010\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"gvPjWxC7E\\\":\\\"title\\\",\\\"LTxzObt9j\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PsS8wUKCW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ti1ci6Mk3.map", "// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import SeeMore from\"#framer/local/canvasComponent/aESzTudK3/aESzTudK3.js\";import Header from\"#framer/local/canvasComponent/B07p1zA2E/B07p1zA2E.js\";import BotOCTA from\"#framer/local/canvasComponent/btpeVPLdj/btpeVPLdj.js\";import BlogPostCard from\"#framer/local/canvasComponent/EcLSM4IGd/EcLSM4IGd.js\";import CallsIllustration from\"#framer/local/canvasComponent/Em0ZPG2yH/Em0ZPG2yH.js\";import Footer from\"#framer/local/canvasComponent/op4Kj3HcN/op4Kj3HcN.js\";import Accordion from\"#framer/local/canvasComponent/Ti1ci6Mk3/Ti1ci6Mk3.js\";import ChartsIllustration from\"#framer/local/canvasComponent/X30DMXsgq/X30DMXsgq.js\";import ClientIllustration from\"#framer/local/canvasComponent/XBzSwRRaJ/XBzSwRRaJ.js\";import Testimonials from\"#framer/local/canvasComponent/zFFT4rVal/zFFT4rVal.js\";import Blog from\"#framer/local/collection/VdwdtVYep/VdwdtVYep.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const MotionDivWithFX=withFX(motion.div);const BotOCTAFonts=getFonts(BotOCTA);const SeeMoreFonts=getFonts(SeeMore);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const ChartsIllustrationFonts=getFonts(ChartsIllustration);const ChartsIllustrationWithVariantAppearEffect=withVariantAppearEffect(ChartsIllustration);const ClientIllustrationFonts=getFonts(ClientIllustration);const ClientIllustrationWithVariantAppearEffect=withVariantAppearEffect(ClientIllustration);const CallsIllustrationFonts=getFonts(CallsIllustration);const CallsIllustrationWithVariantAppearEffect=withVariantAppearEffect(CallsIllustration);const SlideshowFonts=getFonts(Slideshow);const TestimonialsFonts=getFonts(Testimonials);const BlogPostCardFonts=getFonts(BlogPostCard);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={aUGHtX11d:\"(min-width: 758px) and (max-width: 1077px)\",ipygzAfDz:\"(max-width: 757px)\",WQLkyLRf1:\"(min-width: 1291px)\",Z6zLnDEYM:\"(min-width: 1078px) and (max-width: 1290px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RwgGH\";const variantClassNames={aUGHtX11d:\"framer-v-glkt3g\",ipygzAfDz:\"framer-v-1ofvaal\",WQLkyLRf1:\"framer-v-72rtr7\",Z6zLnDEYM:\"framer-v-5ztarb\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition1={delay:.2,duration:.8,ease:[.79,.17,.32,.95],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:100,y:0};const transition2={delay:0,duration:.8,ease:[.79,.17,.32,.95],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:100,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transition3={delay:0,duration:.8,ease:[.73,.14,.4,.99],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:150,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition4={damping:43,delay:0,mass:2.3,stiffness:304,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:150};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:70};const transition5={damping:33,delay:0,mass:1.9,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:70};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition6};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:-100};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation12={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation14={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition8={delay:0,duration:.8,ease:[.79,.01,.19,.99],type:\"tween\"};const animation15={opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:-150,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition9={delay:0,duration:1,ease:[.89,.03,.11,.99],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:50};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition10={delay:0,duration:.8,ease:[.85,.02,.12,1.01],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition11={delay:0,duration:1.4,ease:[.61,.17,.7,1.03],type:\"tween\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:100};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition6};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Mid desktop\":\"Z6zLnDEYM\",Desktop:\"WQLkyLRf1\",Phone:\"ipygzAfDz\",Tablet:\"aUGHtX11d\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,wnzd4ReUBwDyPoe8cY,oR4mVTbykwDyPoe8cY,mOQlAv_WJwDyPoe8cY,q3aMvRkU2wDyPoe8cY,Y1b9BnOCAwDyPoe8cY,OwSueJ_jiwDyPoe8cY,idwDyPoe8cY,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ipygzAfDz\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"aUGHtX11d\")return false;return true;};const elementId=useRouteElementId(\"ouzNkRXIQ\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Z6zLnDEYM\")return true;return false;};const elementId1=useRouteElementId(\"UZbwDfy2n\");const ref2=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"aUGHtX11d\",\"ipygzAfDz\"].includes(baseVariant))return true;return false;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wabqeu\",\"data-framer-name\":\"Opens 7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cvmyxn-container\",nodeId:\"o6bIaup0t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{variant:\"zmvQjvQVz\"},ipygzAfDz:{variant:\"zmvQjvQVz\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"o6bIaup0t\",layoutId:\"o6bIaup0t\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"LP_uubwwS\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0dd1e\",\"data-framer-name\":\"Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xeufj0 hidden-1ofvaal\",\"data-framer-name\":\"CallCard\",style:{transformPerspective:1200},children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-l9x1v hidden-glkt3g\",\"data-framer-name\":\"CallUser\",fill:\"black\",intrinsicHeight:81,intrinsicWidth:284,svg:'<svg width=\"284\" height=\"81\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><rect width=\"276\" height=\"72\" rx=\"10\" fill=\"#fff\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M257.165 56.54c-1.759-2.134-2.635-1.943-3.599-1.474-.668.324-1.244.605-2.741-.893s-1.217-2.073-.893-2.74c.47-.964.661-1.843-1.474-3.6-.509-.417-1.064-.577-1.641-.465-1.222.228-2.085 1.588-2.084 1.588-.541.758-1.283 3.035 3.495 7.814 3.143 3.143 5.204 3.897 6.454 3.897.652 0 1.082-.204 1.332-.383.014-.008 1.386-.858 1.617-2.104.108-.58-.049-1.13-.466-1.64Z\" fill=\"#19B498\"/><rect x=\"12\" y=\"12\" width=\"45\" height=\"45\" rx=\"8\" fill=\"#E6E1EA\"/><circle cx=\"18\" cy=\"54\" r=\"8\" fill=\"#19B498\"/><path d=\"m15.7 52.023 4.242-.03m0 0 .03 4.242m-.03-4.243-4.914 4.986\" stroke=\"#fff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M33.976 43.288c-1.584 0-2.968-.36-4.152-1.08-1.184-.72-2.104-1.72-2.76-3-.656-1.296-.984-2.8-.984-4.512 0-1.728.336-3.248 1.008-4.56.688-1.328 1.656-2.36 2.904-3.096 1.264-.752 2.76-1.128 4.488-1.128 1.968 0 3.6.472 4.896 1.416 1.296.944 2.136 2.248 2.52 3.912h-3.432c-.256-.784-.72-1.392-1.392-1.824-.672-.448-1.536-.672-2.592-.672-1.68 0-2.976.536-3.888 1.608-.912 1.056-1.368 2.512-1.368 4.368 0 1.856.448 3.296 1.344 4.32.912 1.008 2.144 1.512 3.696 1.512 1.52 0 2.664-.408 3.432-1.224.784-.832 1.256-1.92 1.416-3.264h-4.248V33.76h7.344V43h-2.832l-.24-2.208a5.631 5.631 0 0 1-2.04 1.848c-.816.432-1.856.648-3.12.648Z\" fill=\"#AC21D8\"/><path d=\"M70.24 36.75c.153.267.317.503.49.71.18.2.377.357.59.47.213.107.453.16.72.16.32 0 .58-.087.78-.26.2-.173.3-.397.3-.67 0-.26-.063-.467-.19-.62a1.445 1.445 0 0 0-.53-.4 6.68 6.68 0 0 0-.77-.33 6.042 6.042 0 0 1-.58-.24 3.501 3.501 0 0 1-.61-.39 2.03 2.03 0 0 1-.48-.58 1.737 1.737 0 0 1-.19-.84c0-.373.097-.7.29-.98.193-.287.453-.507.78-.66.333-.16.71-.24 1.13-.24.413 0 .773.073 1.08.22.307.147.563.333.77.56.213.227.38.463.5.71l-.96.54a2.125 2.125 0 0 0-.33-.48 1.453 1.453 0 0 0-.47-.36 1.268 1.268 0 0 0-.61-.14c-.327 0-.567.077-.72.23a.696.696 0 0 0-.23.52c0 .18.053.343.16.49.113.14.287.273.52.4a6.6 6.6 0 0 0 .91.39c.207.073.413.167.62.28.213.113.407.257.58.43.173.167.31.363.41.59.107.227.16.493.16.8 0 .327-.063.62-.19.88s-.3.48-.52.66c-.22.173-.47.307-.75.4-.273.1-.56.15-.86.15-.413 0-.797-.08-1.15-.24a3.096 3.096 0 0 1-.91-.66 3.453 3.453 0 0 1-.62-.89l.88-.61Zm7.241 2.35c-.467 0-.88-.1-1.24-.3-.353-.2-.627-.48-.82-.84-.193-.36-.29-.78-.29-1.26 0-.487.097-.91.29-1.27.2-.36.48-.637.84-.83.36-.2.783-.3 1.27-.3s.9.093 1.24.28c.34.187.6.457.78.81.187.347.28.767.28 1.26 0 .053-.003.11-.01.17 0 .06-.003.103-.01.13h-4.04v-.74h3.12l-.33.46c.02-.04.04-.093.06-.16a.553.553 0 0 0 .04-.18c0-.247-.05-.46-.15-.64a1.013 1.013 0 0 0-.4-.42c-.167-.1-.363-.15-.59-.15-.273 0-.507.06-.7.18a1.13 1.13 0 0 0-.44.52c-.1.227-.153.507-.16.84 0 .333.05.617.15.85.1.227.247.4.44.52.2.12.44.18.72.18.293 0 .55-.06.77-.18.22-.12.403-.303.55-.55l.93.38c-.24.413-.55.723-.93.93-.38.207-.837.31-1.37.31Zm9.96-3.02V39h-1.08v-2.8c0-.347-.063-.603-.19-.77-.12-.173-.313-.26-.58-.26a.95.95 0 0 0-.48.12.86.86 0 0 0-.32.35 1.29 1.29 0 0 0-.11.56V39h-1.08v-2.8c0-.347-.063-.603-.19-.77-.12-.173-.313-.26-.58-.26a.97.97 0 0 0-.49.12.796.796 0 0 0-.31.35 1.29 1.29 0 0 0-.11.56V39h-1.06v-4.6h1.06v.67a1.41 1.41 0 0 1 .52-.57c.22-.133.477-.2.77-.2.34 0 .62.07.84.21.227.14.39.343.49.61.16-.267.36-.47.6-.61.247-.14.527-.21.84-.21.328 0 .598.07.81.21.22.133.384.333.49.6.107.267.16.59.16.97Zm4.028.62c0-.473.107-.89.32-1.25.22-.36.517-.64.89-.84.373-.207.797-.31 1.27-.31s.893.103 1.26.31c.373.2.67.48.89.84.22.36.33.777.33 1.25 0 .467-.11.883-.33 1.25a2.37 2.37 0 0 1-.89.85c-.367.2-.787.3-1.26.3s-.897-.1-1.27-.3a2.37 2.37 0 0 1-.89-.85 2.44 2.44 0 0 1-.32-1.25Zm1.11 0c0 .287.06.54.18.76.12.213.283.383.49.51.207.12.44.18.7.18.253 0 .483-.06.69-.18a1.36 1.36 0 0 0 .5-.51c.12-.22.18-.473.18-.76 0-.287-.06-.54-.18-.76a1.27 1.27 0 0 0-.5-.51 1.35 1.35 0 0 0-.69-.18c-.26 0-.493.06-.7.18-.207.12-.37.29-.49.51-.12.22-.18.473-.18.76Zm5.945-2.3V39h-1.07v-4.6h1.07Zm1.37 1.15c-.1-.08-.194-.14-.28-.18a.79.79 0 0 0-.33-.06.67.67 0 0 0-.44.14.808.808 0 0 0-.25.39c-.047.16-.07.35-.07.57l-.36-.21c0-.367.066-.69.2-.97.14-.287.316-.513.53-.68.22-.167.446-.25.68-.25.166 0 .323.027.47.08.146.047.27.133.37.26l-.52.91Zm.854 3.76h1.07c.007.207.064.393.17.56.114.167.267.297.46.39.194.093.417.14.67.14.227 0 .444-.053.65-.16.207-.107.374-.27.5-.49.134-.22.2-.503.2-.85v-4.5h1.06v4.5c0 .553-.113 1.01-.34 1.37-.22.36-.51.627-.87.8-.36.18-.75.27-1.17.27-.5 0-.926-.087-1.28-.26a1.907 1.907 0 0 1-.82-.71 2.153 2.153 0 0 1-.3-1.06Zm-.09-2.63c0-.513.104-.943.31-1.29.207-.353.48-.623.82-.81.347-.187.717-.28 1.11-.28.387 0 .724.097 1.01.29.294.187.524.457.69.81.174.353.26.78.26 1.28 0 .493-.086.917-.26 1.27a1.941 1.941 0 0 1-.69.82c-.286.187-.623.28-1.01.28-.393 0-.763-.093-1.11-.28a2.128 2.128 0 0 1-.82-.81c-.206-.353-.31-.78-.31-1.28Zm1.12 0c0 .307.064.567.19.78.127.213.294.377.5.49.214.107.444.16.69.16.207 0 .41-.053.61-.16.207-.107.374-.267.5-.48.134-.22.2-.483.2-.79 0-.24-.04-.447-.12-.62a1.26 1.26 0 0 0-.3-.45 1.193 1.193 0 0 0-.43-.28 1.25 1.25 0 0 0-.46-.09c-.246 0-.476.057-.69.17a1.241 1.241 0 0 0-.5.48c-.126.213-.19.477-.19.79Zm5.77.89c0 .153.036.287.11.4a.666.666 0 0 0 .3.24 1.2 1.2 0 0 0 .45.08c.213 0 .406-.043.58-.13.18-.087.323-.213.43-.38.113-.173.17-.373.17-.6l.16.6c0 .293-.087.54-.26.74-.167.193-.38.34-.64.44-.254.093-.514.14-.78.14a1.89 1.89 0 0 1-.8-.17 1.386 1.386 0 0 1-.59-.5 1.407 1.407 0 0 1-.22-.8c0-.447.156-.8.47-1.06.313-.267.756-.4 1.33-.4.306 0 .57.033.79.1.226.067.413.147.56.24a1.2 1.2 0 0 1 .31.24v.55a2.167 2.167 0 0 0-.66-.32c-.234-.067-.48-.1-.74-.1-.227 0-.41.03-.55.09a.685.685 0 0 0-.32.23.65.65 0 0 0-.1.37Zm-.34-1.97-.44-.76c.206-.127.473-.25.8-.37a3.35 3.35 0 0 1 1.14-.18c.38 0 .713.057 1 .17.293.113.523.277.69.49.166.207.25.463.25.77V39h-1.06v-3.07a.723.723 0 0 0-.08-.36.613.613 0 0 0-.2-.23.873.873 0 0 0-.31-.13c-.12-.027-.25-.04-.39-.04a2.28 2.28 0 0 0-.61.08c-.187.047-.35.107-.49.18a2.406 2.406 0 0 0-.3.17Zm7.659.6c0-.34-.07-.597-.21-.77-.14-.173-.357-.26-.65-.26-.2 0-.377.043-.53.13a.845.845 0 0 0-.36.36c-.087.153-.13.333-.13.54V39h-1.08v-4.6h1.08v.71c.146-.273.333-.477.56-.61.233-.133.51-.2.83-.2.52 0 .916.16 1.19.48.273.313.41.747.41 1.3V39h-1.11v-2.8Zm2.449-3.63c0-.187.067-.343.2-.47.14-.127.3-.19.48-.19a.65.65 0 0 1 .48.19c.133.127.2.283.2.47 0 .18-.067.337-.2.47a.652.652 0 0 1-.48.19.695.695 0 0 1-.48-.19.645.645 0 0 1-.2-.47Zm.15 1.83h1.06V39h-1.06v-4.6Zm4.686 1h-2.33v-1h4.2l-2.63 3.6h2.38v1h-4.3l2.68-3.6Zm3.394 2.17c0 .153.036.287.11.4a.666.666 0 0 0 .3.24 1.2 1.2 0 0 0 .45.08c.213 0 .406-.043.58-.13.18-.087.323-.213.43-.38.113-.173.17-.373.17-.6l.16.6c0 .293-.087.54-.26.74-.167.193-.38.34-.64.44-.254.093-.514.14-.78.14a1.89 1.89 0 0 1-.8-.17 1.386 1.386 0 0 1-.59-.5 1.407 1.407 0 0 1-.22-.8c0-.447.156-.8.47-1.06.313-.267.756-.4 1.33-.4.306 0 .57.033.79.1.226.067.413.147.56.24a1.2 1.2 0 0 1 .31.24v.55a2.167 2.167 0 0 0-.66-.32c-.234-.067-.48-.1-.74-.1-.227 0-.41.03-.55.09a.685.685 0 0 0-.32.23.65.65 0 0 0-.1.37Zm-.34-1.97-.44-.76c.206-.127.473-.25.8-.37a3.35 3.35 0 0 1 1.14-.18c.38 0 .713.057 1 .17.293.113.523.277.69.49.166.207.25.463.25.77V39h-1.06v-3.07a.723.723 0 0 0-.08-.36.613.613 0 0 0-.2-.23.873.873 0 0 0-.31-.13c-.12-.027-.25-.04-.39-.04a2.28 2.28 0 0 0-.61.08c-.187.047-.35.107-.49.18a2.406 2.406 0 0 0-.3.17Zm5.419 1.1c0 .293.063.55.19.77.127.213.297.383.51.51.22.127.463.19.73.19.22 0 .43-.033.63-.1s.377-.16.53-.28c.153-.12.267-.253.34-.4v1.19a1.66 1.66 0 0 1-.65.38c-.273.093-.573.14-.9.14-.473 0-.9-.1-1.28-.3a2.372 2.372 0 0 1-.89-.85 2.443 2.443 0 0 1-.32-1.25c0-.473.107-.89.32-1.25.22-.36.517-.64.89-.84.38-.207.807-.31 1.28-.31.327 0 .627.047.9.14.273.093.49.22.65.38v1.19a1.041 1.041 0 0 0-.35-.4 1.746 1.746 0 0 0-.53-.28 1.94 1.94 0 0 0-.62-.1c-.267 0-.51.063-.73.19a1.42 1.42 0 0 0-.51.52c-.127.22-.19.473-.19.76Zm4.804.87c0 .153.036.287.11.4a.666.666 0 0 0 .3.24 1.2 1.2 0 0 0 .45.08c.213 0 .406-.043.58-.13.18-.087.323-.213.43-.38.113-.173.17-.373.17-.6l.16.6c0 .293-.087.54-.26.74-.167.193-.38.34-.64.44-.254.093-.514.14-.78.14a1.89 1.89 0 0 1-.8-.17 1.386 1.386 0 0 1-.59-.5 1.407 1.407 0 0 1-.22-.8c0-.447.156-.8.47-1.06.313-.267.756-.4 1.33-.4.306 0 .57.033.79.1.226.067.413.147.56.24a1.2 1.2 0 0 1 .31.24v.55a2.167 2.167 0 0 0-.66-.32c-.234-.067-.48-.1-.74-.1-.227 0-.41.03-.55.09a.685.685 0 0 0-.32.23.65.65 0 0 0-.1.37Zm-.34-1.97-.44-.76c.206-.127.473-.25.8-.37a3.35 3.35 0 0 1 1.14-.18c.38 0 .713.057 1 .17.293.113.523.277.69.49.166.207.25.463.25.77V39h-1.06v-3.07a.723.723 0 0 0-.08-.36.613.613 0 0 0-.2-.23.873.873 0 0 0-.31-.13c-.12-.027-.25-.04-.39-.04a2.28 2.28 0 0 0-.61.08c-.187.047-.35.107-.49.18a2.406 2.406 0 0 0-.3.17Zm4.349 1.1c0-.473.106-.89.32-1.25.22-.36.516-.64.89-.84.373-.207.796-.31 1.27-.31.473 0 .893.103 1.26.31.373.2.67.48.89.84.22.36.33.777.33 1.25 0 .467-.11.883-.33 1.25-.22.36-.517.643-.89.85-.367.2-.787.3-1.26.3-.474 0-.897-.1-1.27-.3a2.365 2.365 0 0 1-.89-.85 2.433 2.433 0 0 1-.32-1.25Zm1.11 0c0 .287.06.54.18.76.12.213.283.383.49.51.206.12.44.18.7.18.253 0 .483-.06.69-.18.213-.127.38-.297.5-.51.12-.22.18-.473.18-.76 0-.287-.06-.54-.18-.76-.12-.22-.287-.39-.5-.51a1.35 1.35 0 0 0-.69-.18c-.26 0-.494.06-.7.18-.207.12-.37.29-.49.51-.12.22-.18.473-.18.76ZM70.24 49.75c.153.267.317.503.49.71.18.2.377.357.59.47.213.107.453.16.72.16.32 0 .58-.087.78-.26.2-.173.3-.397.3-.67 0-.26-.063-.467-.19-.62a1.445 1.445 0 0 0-.53-.4 6.68 6.68 0 0 0-.77-.33 6.042 6.042 0 0 1-.58-.24 3.501 3.501 0 0 1-.61-.39 2.03 2.03 0 0 1-.48-.58 1.737 1.737 0 0 1-.19-.84c0-.373.097-.7.29-.98.193-.287.453-.507.78-.66.333-.16.71-.24 1.13-.24.413 0 .773.073 1.08.22.307.147.563.333.77.56.213.227.38.463.5.71l-.96.54a2.125 2.125 0 0 0-.33-.48 1.453 1.453 0 0 0-.47-.36 1.268 1.268 0 0 0-.61-.14c-.327 0-.567.077-.72.23a.696.696 0 0 0-.23.52c0 .18.053.343.16.49.113.14.287.273.52.4a6.6 6.6 0 0 0 .91.39c.207.073.413.167.62.28.213.113.407.257.58.43.173.167.31.363.41.59.107.227.16.493.16.8 0 .327-.063.62-.19.88s-.3.48-.52.66c-.22.173-.47.307-.75.4-.273.1-.56.15-.86.15-.413 0-.797-.08-1.15-.24a3.096 3.096 0 0 1-.91-.66 3.453 3.453 0 0 1-.62-.89l.88-.61ZM75.571 45h1.19v7h-1.19v-7Zm2.754 0h1.18v7h-1.18v-7Zm.7 1.04V45h1.41c.507 0 .947.09 1.32.27.38.173.673.423.88.75.207.32.31.703.31 1.15 0 .447-.103.833-.31 1.16-.207.327-.5.58-.88.76-.373.173-.813.26-1.32.26h-1.41v-1.04h1.41c.407 0 .733-.097.98-.29.247-.193.37-.477.37-.85s-.123-.653-.37-.84c-.247-.193-.573-.29-.98-.29h-1.41Zm8.05.6v-1.12l2.79-.63V52h-1.17v-5.81l-1.62.45Zm5.546 1.86c0 .373.036.717.11 1.03.073.313.176.583.31.81.14.227.306.403.5.53.193.12.406.18.64.18.246 0 .463-.06.65-.18a1.57 1.57 0 0 0 .49-.53 2.73 2.73 0 0 0 .32-.81c.073-.313.11-.657.11-1.03s-.037-.717-.11-1.03a2.705 2.705 0 0 0-.32-.81 1.475 1.475 0 0 0-.49-.52 1.13 1.13 0 0 0-.65-.19c-.234 0-.447.063-.64.19-.194.12-.36.293-.5.52a2.894 2.894 0 0 0-.31.81c-.074.313-.11.657-.11 1.03Zm-1.16 0c0-.727.113-1.36.34-1.9.233-.54.553-.96.96-1.26.413-.3.886-.45 1.42-.45.546 0 1.023.15 1.43.45.413.3.733.72.96 1.26.226.54.34 1.173.34 1.9 0 .727-.114 1.36-.34 1.9-.227.54-.547.96-.96 1.26-.407.3-.884.45-1.43.45-.534 0-1.007-.15-1.42-.45-.407-.3-.727-.72-.96-1.26-.227-.54-.34-1.173-.34-1.9Zm11.41 1.22c0 .407-.07.76-.21 1.06-.14.3-.334.55-.58.75-.247.193-.527.34-.84.44-.307.093-.63.14-.97.14-.427 0-.804-.057-1.13-.17a2.942 2.942 0 0 1-.85-.45c-.24-.193-.45-.4-.63-.62l.69-.85c.14.18.303.347.49.5.193.147.4.267.62.36.22.087.44.13.66.13.32 0 .59-.053.81-.16.22-.107.386-.263.5-.47.12-.207.18-.45.18-.73 0-.287-.067-.53-.2-.73a1.308 1.308 0 0 0-.54-.46 1.74 1.74 0 0 0-.75-.16c-.2 0-.4.017-.6.05-.194.027-.394.08-.6.16-.2.08-.42.193-.66.34l.95-3.85h3.59v1.04h-2.7l-.44 1.6a2.24 2.24 0 0 1 .54-.19c.186-.04.376-.06.57-.06.386 0 .74.097 1.06.29.32.193.573.463.76.81.186.347.28.757.28 1.23Zm.597 2.28 3.24-3.41c.166-.18.31-.353.43-.52.12-.167.21-.333.27-.5.06-.167.09-.343.09-.53 0-.133-.027-.263-.08-.39a.962.962 0 0 0-.23-.36 1.04 1.04 0 0 0-.37-.25 1.223 1.223 0 0 0-.51-.1c-.267 0-.497.063-.69.19-.194.12-.344.297-.45.53-.1.233-.15.503-.15.81h-1.17c0-.5.093-.943.28-1.33.193-.393.473-.7.84-.92.373-.227.826-.34 1.36-.34a2.6 2.6 0 0 1 1.06.2 2.137 2.137 0 0 1 1.18 1.18c.1.247.15.487.15.72 0 .367-.09.72-.27 1.06a3.28 3.28 0 0 1-.69.91l-1.99 1.95h3.04V52h-5.34ZM206.75 19.64v-1.12l2.79-.63V25h-1.17v-5.81l-1.62.45Zm4.286-.53V18h5.22l-3.36 7h-1.26l2.87-5.89h-3.47Zm8.571-1.11h1.06l-4.13 8.5h-1.09l4.16-8.5Zm2.767 3.5c0 .373.037.717.11 1.03.074.313.177.583.31.81.14.227.307.403.5.53.194.12.407.18.64.18.247 0 .464-.06.65-.18a1.56 1.56 0 0 0 .49-.53c.14-.227.247-.497.32-.81.074-.313.11-.657.11-1.03s-.036-.717-.11-1.03a2.697 2.697 0 0 0-.32-.81 1.467 1.467 0 0 0-.49-.52 1.127 1.127 0 0 0-.65-.19c-.233 0-.446.063-.64.19-.193.12-.36.293-.5.52a2.922 2.922 0 0 0-.31.81c-.073.313-.11.657-.11 1.03Zm-1.16 0c0-.727.114-1.36.34-1.9.234-.54.554-.96.96-1.26.414-.3.887-.45 1.42-.45.547 0 1.024.15 1.43.45.414.3.734.72.96 1.26.227.54.34 1.173.34 1.9 0 .727-.113 1.36-.34 1.9-.226.54-.546.96-.96 1.26-.406.3-.883.45-1.43.45-.533 0-1.006-.15-1.42-.45-.406-.3-.726-.72-.96-1.26-.226-.54-.34-1.173-.34-1.9Zm6.05 3.5 3.24-3.41c.167-.18.31-.353.43-.52.12-.167.21-.333.27-.5.06-.167.09-.343.09-.53a.984.984 0 0 0-.08-.39.938.938 0 0 0-.23-.36 1.03 1.03 0 0 0-.37-.25 1.217 1.217 0 0 0-.51-.1c-.266 0-.496.063-.69.19-.193.12-.343.297-.45.53-.1.233-.15.503-.15.81h-1.17c0-.5.094-.943.28-1.33.194-.393.474-.7.84-.92.374-.227.827-.34 1.36-.34.407 0 .76.067 1.06.2.3.127.547.293.74.5.2.207.347.433.44.68.1.247.15.487.15.72 0 .367-.09.72-.27 1.06-.173.34-.403.643-.69.91l-1.99 1.95h3.04V25h-5.34Zm10.146-7h1.06l-4.13 8.5h-1.09l4.16-8.5Zm1.407 7 3.24-3.41c.167-.18.31-.353.43-.52.12-.167.21-.333.27-.5.06-.167.09-.343.09-.53a.984.984 0 0 0-.08-.39.938.938 0 0 0-.23-.36 1.03 1.03 0 0 0-.37-.25 1.217 1.217 0 0 0-.51-.1c-.266 0-.496.063-.69.19-.193.12-.343.297-.45.53-.1.233-.15.503-.15.81h-1.17c0-.5.094-.943.28-1.33.194-.393.474-.7.84-.92.374-.227.827-.34 1.36-.34.407 0 .76.067 1.06.2.3.127.547.293.74.5.2.207.347.433.44.68.1.247.15.487.15.72 0 .367-.09.72-.27 1.06-.173.34-.403.643-.69.91l-1.99 1.95h3.04V25h-5.34Zm7.395-3.5c0 .373.037.717.11 1.03.074.313.177.583.31.81.14.227.307.403.5.53.194.12.407.18.64.18.247 0 .464-.06.65-.18a1.56 1.56 0 0 0 .49-.53c.14-.227.247-.497.32-.81.074-.313.11-.657.11-1.03s-.036-.717-.11-1.03a2.697 2.697 0 0 0-.32-.81 1.467 1.467 0 0 0-.49-.52 1.127 1.127 0 0 0-.65-.19c-.233 0-.446.063-.64.19-.193.12-.36.293-.5.52a2.922 2.922 0 0 0-.31.81c-.073.313-.11.657-.11 1.03Zm-1.16 0c0-.727.114-1.36.34-1.9.234-.54.554-.96.96-1.26.414-.3.887-.45 1.42-.45.547 0 1.024.15 1.43.45.414.3.734.72.96 1.26.227.54.34 1.173.34 1.9 0 .727-.113 1.36-.34 1.9-.226.54-.546.96-.96 1.26-.406.3-.883.45-1.43.45-.533 0-1.006-.15-1.42-.45-.406-.3-.726-.72-.96-1.26-.226-.54-.34-1.173-.34-1.9Zm6.05 3.5 3.24-3.41c.167-.18.31-.353.43-.52.12-.167.21-.333.27-.5.06-.167.09-.343.09-.53a.984.984 0 0 0-.08-.39.938.938 0 0 0-.23-.36 1.03 1.03 0 0 0-.37-.25 1.217 1.217 0 0 0-.51-.1c-.266 0-.496.063-.69.19-.193.12-.343.297-.45.53-.1.233-.15.503-.15.81h-1.17c0-.5.094-.943.28-1.33.194-.393.474-.7.84-.92.374-.227.827-.34 1.36-.34.407 0 .76.067 1.06.2.3.127.547.293.74.5.2.207.347.433.44.68.1.247.15.487.15.72 0 .367-.09.72-.27 1.06-.173.34-.403.643-.69.91l-1.99 1.95h3.04V25h-5.34Zm8.456-3.43v-.63c.213 0 .403-.027.57-.08.166-.06.306-.14.42-.24.12-.1.21-.217.27-.35a1 1 0 0 0 .1-.43c0-.187-.037-.35-.11-.49a.792.792 0 0 0-.32-.34c-.14-.08-.314-.12-.52-.12-.307 0-.564.093-.77.28-.2.18-.3.41-.3.69h-1.11c0-.387.09-.727.27-1.02a1.93 1.93 0 0 1 .77-.69c.326-.173.703-.26 1.13-.26.453 0 .84.087 1.16.26.32.173.563.403.73.69.173.28.26.593.26.94 0 .353-.11.667-.33.94-.22.273-.524.483-.91.63-.38.147-.817.22-1.31.22Zm.35 3.55a2.99 2.99 0 0 1-1.01-.16 2.266 2.266 0 0 1-.76-.46 2.168 2.168 0 0 1-.48-.68 2.02 2.02 0 0 1-.17-.82h1.18c0 .227.053.423.16.59.113.16.266.287.46.38.193.087.406.13.64.13.24 0 .446-.043.62-.13a.99.99 0 0 0 .42-.37c.1-.167.15-.367.15-.6 0-.187-.037-.353-.11-.5a1.006 1.006 0 0 0-.32-.37 1.46 1.46 0 0 0-.49-.23 2.41 2.41 0 0 0-.64-.08v-.67c.386 0 .746.04 1.08.12.333.073.623.19.87.35.253.153.45.357.59.61.14.247.21.547.21.9 0 .393-.1.74-.3 1.04-.2.3-.48.533-.84.7-.36.167-.78.25-1.26.25Zm-25.158 7.52v-1.12l2.79-.63V38h-1.17v-5.81l-1.62.45Zm5.636 3c0 .287.06.54.18.76.127.213.297.383.51.51.214.12.457.18.73.18.267 0 .507-.06.72-.18a1.36 1.36 0 0 0 .5-.51c.127-.22.19-.473.19-.76 0-.287-.063-.54-.19-.76a1.25 1.25 0 0 0-.5-.52 1.381 1.381 0 0 0-.72-.19c-.273 0-.516.063-.73.19-.213.12-.383.293-.51.52-.12.22-.18.473-.18.76Zm1.66-4.63h1.5l-2.22 2.75-.17.03a1.1 1.1 0 0 1 .49-.34c.174-.053.38-.08.62-.08.274 0 .537.053.79.16.254.107.477.263.67.47.2.2.357.44.47.72.114.28.17.587.17.92 0 .513-.113.957-.34 1.33a2.28 2.28 0 0 1-.92.86c-.386.193-.82.29-1.3.29-.48 0-.913-.097-1.3-.29a2.364 2.364 0 0 1-.93-.86c-.226-.373-.34-.817-.34-1.33 0-.327.054-.627.16-.9.114-.273.257-.523.43-.75l2.22-2.98Zm3.663 6.48c0-.193.067-.357.2-.49.14-.14.307-.21.5-.21.207 0 .377.07.51.21.133.133.2.297.2.49a.69.69 0 0 1-.2.49.673.673 0 0 1-.51.21.683.683 0 0 1-.5-.21.69.69 0 0 1-.2-.49Zm0-3.78c0-.193.067-.357.2-.49.14-.14.307-.21.5-.21.207 0 .377.07.51.21.133.133.2.297.2.49s-.067.36-.2.5a.69.69 0 0 1-.51.2.7.7 0 0 1-.5-.2.702.702 0 0 1-.2-.5Zm3.806.79c0 .373.037.717.11 1.03.073.313.177.583.31.81.14.227.307.403.5.53.193.12.407.18.64.18.247 0 .463-.06.65-.18a1.57 1.57 0 0 0 .49-.53c.14-.227.247-.497.32-.81.073-.313.11-.657.11-1.03s-.037-.717-.11-1.03a2.697 2.697 0 0 0-.32-.81 1.476 1.476 0 0 0-.49-.52 1.13 1.13 0 0 0-.65-.19 1.14 1.14 0 0 0-.64.19c-.193.12-.36.293-.5.52a2.891 2.891 0 0 0-.31.81c-.073.313-.11.657-.11 1.03Zm-1.16 0c0-.727.113-1.36.34-1.9.233-.54.553-.96.96-1.26.413-.3.887-.45 1.42-.45.547 0 1.023.15 1.43.45.413.3.733.72.96 1.26.227.54.34 1.173.34 1.9 0 .727-.113 1.36-.34 1.9-.227.54-.547.96-.96 1.26-.407.3-.883.45-1.43.45-.533 0-1.007-.15-1.42-.45-.407-.3-.727-.72-.96-1.26-.227-.54-.34-1.173-.34-1.9Zm6.05 3.5 3.24-3.41c.167-.18.31-.353.43-.52.12-.167.21-.333.27-.5.06-.167.09-.343.09-.53 0-.133-.027-.263-.08-.39a.95.95 0 0 0-.23-.36 1.03 1.03 0 0 0-.37-.25 1.223 1.223 0 0 0-.51-.1c-.267 0-.497.063-.69.19-.193.12-.343.297-.45.53-.1.233-.15.503-.15.81h-1.17c0-.5.093-.943.28-1.33.193-.393.473-.7.84-.92.373-.227.827-.34 1.36-.34.407 0 .76.067 1.06.2.3.127.547.293.74.5.2.207.347.433.44.68.1.247.15.487.15.72 0 .367-.09.72-.27 1.06-.173.34-.403.643-.69.91l-1.99 1.95h3.04V38h-5.34Z\" fill=\"#7C838B\"/><path d=\"M74.978 27.168c-.737 0-1.419-.13-2.044-.392a4.857 4.857 0 0 1-1.624-1.134 5.37 5.37 0 0 1-1.078-1.708 5.903 5.903 0 0 1-.378-2.142c0-.784.126-1.503.378-2.156a5.18 5.18 0 0 1 1.064-1.708 4.69 4.69 0 0 1 1.624-1.12 5.09 5.09 0 0 1 2.044-.406c.719 0 1.363.126 1.932.378a4.54 4.54 0 0 1 1.456.98c.401.401.686.83.854 1.288l-1.232.602a3.113 3.113 0 0 0-1.134-1.442c-.513-.355-1.139-.532-1.876-.532-.728 0-1.377.173-1.946.518-.56.345-.999.826-1.316 1.442-.317.616-.476 1.335-.476 2.156 0 .812.159 1.526.476 2.142.327.616.77 1.097 1.33 1.442.57.345 1.218.518 1.946.518.635 0 1.209-.135 1.722-.406.513-.27.92-.644 1.218-1.12.299-.476.448-1.027.448-1.652v-.644l.63.588h-4.032v-1.19h4.788v.924c0 .728-.126 1.386-.378 1.974a4.544 4.544 0 0 1-1.036 1.512c-.439.41-.947.728-1.526.952a5.036 5.036 0 0 1-1.834.336Zm8.685 0c-.494 0-.933-.089-1.316-.266a2.258 2.258 0 0 1-.882-.756 1.993 1.993 0 0 1-.322-1.12c0-.401.084-.76.252-1.078.178-.327.448-.602.812-.826.374-.224.84-.383 1.4-.476l2.8-.462v1.092l-2.506.42c-.485.084-.84.238-1.064.462-.214.224-.322.5-.322.826a.97.97 0 0 0 .364.77c.252.205.565.308.938.308.476 0 .887-.098 1.232-.294.355-.205.63-.48.826-.826.206-.345.308-.728.308-1.148v-1.918c0-.41-.154-.742-.462-.994-.298-.261-.695-.392-1.19-.392-.429 0-.812.112-1.148.336a1.954 1.954 0 0 0-.728.868l-1.134-.588c.14-.345.364-.653.672-.924a3.542 3.542 0 0 1 2.366-.896c.579 0 1.088.112 1.526.336.439.215.78.518 1.022.91.252.383.378.83.378 1.344V27h-1.274v-1.428l.238.084c-.158.299-.373.56-.644.784-.27.224-.588.401-.952.532-.364.13-.76.196-1.19.196Zm9.747 0a3.464 3.464 0 0 1-1.666-.406 2.833 2.833 0 0 1-1.148-1.148l.182-.224V27h-1.274V16.402h1.302v4.676l-.196-.322c.28-.448.663-.803 1.148-1.064.485-.27 1.04-.406 1.666-.406.71 0 1.344.173 1.904.518.57.345 1.017.817 1.344 1.414.327.588.49 1.26.49 2.016 0 .737-.163 1.405-.49 2.002a3.696 3.696 0 0 1-1.344 1.414c-.56.345-1.2.518-1.918.518Zm-.098-1.26c.476 0 .9-.117 1.274-.35.373-.233.663-.55.868-.952a2.91 2.91 0 0 0 .322-1.372c0-.523-.107-.98-.322-1.372a2.375 2.375 0 0 0-.868-.952 2.286 2.286 0 0 0-1.274-.364c-.476 0-.905.117-1.288.35a2.557 2.557 0 0 0-.896.966 2.863 2.863 0 0 0-.322 1.372c0 .504.107.961.322 1.372.224.401.523.719.896.952.383.233.812.35 1.288.35ZM98.87 27v-7.546h1.274v1.386l-.14-.196c.178-.43.448-.747.812-.952.364-.215.808-.322 1.33-.322h.462v1.232h-.658c-.532 0-.961.168-1.288.504-.326.327-.49.793-.49 1.4V27H98.87Zm4.895 0v-7.546h1.302V27h-1.302Zm0-8.75v-1.68h1.302v1.68h-1.302Zm6.794 8.918c-.728 0-1.377-.173-1.946-.518a3.7 3.7 0 0 1-1.344-1.414c-.327-.607-.49-1.283-.49-2.03 0-.756.159-1.428.476-2.016a3.687 3.687 0 0 1 1.316-1.386 3.502 3.502 0 0 1 1.876-.518c.56 0 1.055.103 1.484.308a3.13 3.13 0 0 1 1.106.812c.308.336.541.723.7 1.162.168.43.252.877.252 1.344 0 .103-.009.22-.028.35a3.754 3.754 0 0 1-.042.35h-6.188v-1.12h5.432l-.616.504c.084-.485.037-.92-.14-1.302a2.112 2.112 0 0 0-1.96-1.246c-.439 0-.84.112-1.204.336a2.271 2.271 0 0 0-.854.966c-.196.41-.275.9-.238 1.47-.037.55.047 1.036.252 1.456.215.41.513.733.896.966.392.224.817.336 1.274.336.504 0 .929-.117 1.274-.35a2.76 2.76 0 0 0 .84-.896l1.092.56a2.79 2.79 0 0 1-.7.952c-.308.28-.677.504-1.106.672-.42.168-.891.252-1.414.252Zm5.128-.168V16.402h1.302V27h-1.302Zm5.534.168c-.495 0-.933-.089-1.316-.266a2.264 2.264 0 0 1-.882-.756 1.99 1.99 0 0 1-.322-1.12c0-.401.084-.76.252-1.078.177-.327.448-.602.812-.826.373-.224.84-.383 1.4-.476l2.8-.462v1.092l-2.506.42c-.485.084-.84.238-1.064.462-.215.224-.322.5-.322.826 0 .308.121.565.364.77.252.205.565.308.938.308.476 0 .887-.098 1.232-.294.355-.205.63-.48.826-.826.205-.345.308-.728.308-1.148v-1.918c0-.41-.154-.742-.462-.994-.299-.261-.695-.392-1.19-.392-.429 0-.812.112-1.148.336a1.946 1.946 0 0 0-.728.868l-1.134-.588c.14-.345.364-.653.672-.924a3.544 3.544 0 0 1 2.366-.896c.579 0 1.087.112 1.526.336.439.215.779.518 1.022.91.252.383.378.83.378 1.344V27h-1.274v-1.428l.238.084c-.159.299-.373.56-.644.784a3.148 3.148 0 0 1-.952.532c-.364.13-.761.196-1.19.196Zm8.415-.168V16.57h1.26l3.906 5.558h-.644l3.878-5.558h1.26V27h-1.386v-8.694l.49.154-3.878 5.46h-.112l-3.836-5.46.434-.154V27h-1.372Zm15.406.168a3.907 3.907 0 0 1-1.974-.504 3.844 3.844 0 0 1-1.4-1.414c-.345-.597-.518-1.274-.518-2.03 0-.756.168-1.428.504-2.016a3.877 3.877 0 0 1 1.4-1.4c.588-.345 1.251-.518 1.988-.518.728 0 1.386.173 1.974.518a3.66 3.66 0 0 1 1.386 1.386c.346.588.518 1.265.518 2.03 0 .765-.177 1.447-.532 2.044a3.978 3.978 0 0 1-1.414 1.4 3.774 3.774 0 0 1-1.932.504Zm0-1.26a2.33 2.33 0 0 0 1.26-.35c.383-.233.682-.555.896-.966.224-.41.336-.868.336-1.372 0-.513-.112-.966-.336-1.358a2.436 2.436 0 0 0-.896-.952 2.26 2.26 0 0 0-1.26-.364c-.476 0-.905.121-1.288.364-.373.233-.672.55-.896.952-.224.392-.336.845-.336 1.358 0 .504.112.961.336 1.372.224.41.523.733.896.966.383.233.812.35 1.288.35ZM150.617 27v-7.546h1.274v1.386l-.14-.196c.178-.43.448-.747.812-.952.364-.215.808-.322 1.33-.322h.462v1.232h-.658c-.532 0-.961.168-1.288.504-.326.327-.49.793-.49 1.4V27h-1.302Zm8.367.168c-.728 0-1.377-.173-1.946-.518a3.7 3.7 0 0 1-1.344-1.414c-.327-.607-.49-1.283-.49-2.03 0-.756.159-1.428.476-2.016a3.687 3.687 0 0 1 1.316-1.386 3.502 3.502 0 0 1 1.876-.518c.56 0 1.055.103 1.484.308a3.13 3.13 0 0 1 1.106.812c.308.336.541.723.7 1.162.168.43.252.877.252 1.344 0 .103-.009.22-.028.35a3.754 3.754 0 0 1-.042.35h-6.188v-1.12h5.432l-.616.504c.084-.485.037-.92-.14-1.302a2.112 2.112 0 0 0-1.96-1.246c-.439 0-.84.112-1.204.336a2.271 2.271 0 0 0-.854.966c-.196.41-.275.9-.238 1.47-.037.55.047 1.036.252 1.456.215.41.513.733.896.966.392.224.817.336 1.274.336.504 0 .929-.117 1.274-.35a2.76 2.76 0 0 0 .84-.896l1.092.56a2.79 2.79 0 0 1-.7.952c-.308.28-.677.504-1.106.672-.42.168-.891.252-1.414.252Zm5.128-.168v-7.546h1.302V27h-1.302Zm0-8.75v-1.68h1.302v1.68h-1.302Zm3.322 8.75v-7.546h1.274v1.386l-.14-.196c.177-.43.448-.747.812-.952.364-.215.807-.322 1.33-.322h.462v1.232h-.658c-.532 0-.962.168-1.288.504-.327.327-.49.793-.49 1.4V27h-1.302Zm7.106.168a3.1 3.1 0 0 1-1.316-.266 2.264 2.264 0 0 1-.882-.756 1.999 1.999 0 0 1-.322-1.12c0-.401.084-.76.252-1.078a2.22 2.22 0 0 1 .812-.826c.374-.224.84-.383 1.4-.476l2.8-.462v1.092l-2.506.42c-.485.084-.84.238-1.064.462-.214.224-.322.5-.322.826a.97.97 0 0 0 .364.77c.252.205.565.308.938.308.476 0 .887-.098 1.232-.294.355-.205.63-.48.826-.826.206-.345.308-.728.308-1.148v-1.918c0-.41-.154-.742-.462-.994-.298-.261-.695-.392-1.19-.392-.429 0-.812.112-1.148.336a1.953 1.953 0 0 0-.728.868l-1.134-.588c.14-.345.364-.653.672-.924a3.544 3.544 0 0 1 2.366-.896c.579 0 1.088.112 1.526.336.439.215.78.518 1.022.91.252.383.378.83.378 1.344V27h-1.274v-1.428l.238.084c-.158.299-.373.56-.644.784-.27.224-.588.401-.952.532-.364.13-.76.196-1.19.196Z\" fill=\"#000\"/><defs><filter id=\"a\" x=\"0\" y=\"0\" width=\"284\" height=\"81\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dx=\"8\" dy=\"9\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.701961 0 0 0 0 0.317647 0 0 0 0 0.988235 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_24_15282\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_24_15282\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17j70la hidden-1ofvaal\",\"data-framer-name\":\"CSAT\",style:{transformPerspective:1200},children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wcc7wl hidden-glkt3g\",\"data-framer-name\":\"CSAT\",fill:\"black\",intrinsicHeight:134,intrinsicWidth:284,svg:'<svg width=\"284\" height=\"134\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><rect width=\"276\" height=\"125\" rx=\"10\" fill=\"#fff\"/></g><path d=\"M195 68a53.996 53.996 0 0 0-15.816-38.184A54.015 54.015 0 0 0 141 14a54.004 54.004 0 0 0-49.89 33.335A54.001 54.001 0 0 0 87 68h12.266a41.733 41.733 0 1 1 83.468 0H195Z\" fill=\"#D5D7D9\"/><path d=\"M25.62 26.144c-.848 0-1.576-.18-2.184-.54a3.692 3.692 0 0 1-1.404-1.524c-.328-.656-.492-1.412-.492-2.268 0-.856.164-1.612.492-2.268a3.675 3.675 0 0 1 1.404-1.536c.608-.368 1.336-.552 2.184-.552 1.008 0 1.832.252 2.472.756.648.496 1.052 1.196 1.212 2.1h-1.692c-.104-.456-.328-.812-.672-1.068-.336-.264-.784-.396-1.344-.396-.776 0-1.384.264-1.824.792-.44.528-.66 1.252-.66 2.172 0 .92.22 1.644.66 2.172.44.52 1.048.78 1.824.78.56 0 1.008-.12 1.344-.36.344-.248.568-.588.672-1.02h1.692c-.16.864-.564 1.54-1.212 2.028-.64.488-1.464.732-2.472.732Zm8.312 0c-.616 0-1.16-.104-1.632-.312a2.682 2.682 0 0 1-1.116-.912c-.272-.4-.412-.884-.42-1.452h1.62c.016.392.156.724.42.996.272.264.644.396 1.116.396.408 0 .732-.096.972-.288a.98.98 0 0 0 .36-.792c0-.344-.108-.612-.324-.804-.208-.192-.488-.348-.84-.468l-1.128-.384c-.648-.224-1.144-.512-1.488-.864-.336-.352-.504-.82-.504-1.404-.008-.496.108-.92.348-1.272.248-.36.584-.636 1.008-.828.424-.2.912-.3 1.464-.3.56 0 1.052.1 1.476.3.432.2.768.48 1.008.84.248.36.38.788.396 1.284h-1.644a1.115 1.115 0 0 0-.348-.78c-.216-.232-.52-.348-.912-.348-.336-.008-.62.076-.852.252-.224.168-.336.416-.336.744 0 .28.088.504.264.672.176.16.416.296.72.408.304.112.652.232 1.044.36a7.1 7.1 0 0 1 1.14.504c.344.192.62.448.828.768.208.312.312.716.312 1.212 0 .44-.112.848-.336 1.224-.224.376-.556.68-.996.912-.44.224-.98.336-1.62.336ZM38.084 26l3.072-8.4h1.728l3.072 8.4h-1.632l-.672-1.944h-3.276L39.692 26h-1.608Zm2.712-3.144h2.436l-1.224-3.492-1.212 3.492ZM48.503 26v-7.164h-2.448V17.6H52.5v1.236h-2.46V26h-1.536Z\" fill=\"#000\"/><path d=\"M116.28 94.74 115.8 99h-1.22l.96-7.35 2.87 4.75 2.88-4.75.96 7.35h-1.22l-.49-4.26-2.13 3.61-2.13-3.61Zm9.028 4.36c-.467 0-.88-.1-1.24-.3-.353-.2-.627-.48-.82-.84-.193-.36-.29-.78-.29-1.26 0-.487.097-.91.29-1.27.2-.36.48-.637.84-.83.36-.2.783-.3 1.27-.3s.9.093 1.24.28c.34.187.6.457.78.81.187.347.28.767.28 1.26 0 .053-.003.11-.01.17 0 .06-.003.103-.01.13h-4.04v-.74h3.12l-.33.46c.02-.04.04-.093.06-.16a.545.545 0 0 0 .04-.18c0-.247-.05-.46-.15-.64a1.013 1.013 0 0 0-.4-.42c-.167-.1-.363-.15-.59-.15-.273 0-.507.06-.7.18a1.13 1.13 0 0 0-.44.52c-.1.227-.153.507-.16.84 0 .333.05.617.15.85.1.227.247.4.44.52.2.12.44.18.72.18.293 0 .55-.06.77-.18.22-.12.403-.303.55-.55l.93.38c-.24.413-.55.723-.93.93-.38.207-.837.31-1.37.31Zm2.741-4.7h2.61v.95h-2.61v-.95Zm.77-1.6h1.07V99h-1.07v-6.2Zm3.265 4.77c0 .153.037.287.11.4a.666.666 0 0 0 .3.24 1.2 1.2 0 0 0 .45.08c.213 0 .407-.043.58-.13.18-.087.323-.213.43-.38.113-.173.17-.373.17-.6l.16.6c0 .293-.087.54-.26.74-.167.193-.38.34-.64.44-.253.093-.513.14-.78.14-.287 0-.553-.057-.8-.17a1.392 1.392 0 0 1-.59-.5 1.407 1.407 0 0 1-.22-.8c0-.447.157-.8.47-1.06.313-.267.757-.4 1.33-.4.307 0 .57.033.79.1.227.067.413.147.56.24.147.087.25.167.31.24v.55a2.167 2.167 0 0 0-.66-.32c-.233-.067-.48-.1-.74-.1-.227 0-.41.03-.55.09a.685.685 0 0 0-.32.23.65.65 0 0 0-.1.37Zm-.34-1.97-.44-.76a4.56 4.56 0 0 1 .8-.37 3.35 3.35 0 0 1 1.14-.18c.38 0 .713.057 1 .17.293.113.523.277.69.49.167.207.25.463.25.77V99h-1.06v-3.07a.723.723 0 0 0-.08-.36.605.605 0 0 0-.2-.23.873.873 0 0 0-.31-.13c-.12-.027-.25-.04-.39-.04-.213 0-.417.027-.61.08-.187.047-.35.107-.49.18a2.565 2.565 0 0 0-.3.17Zm4.849 2.89c0-.193.067-.357.2-.49.14-.14.307-.21.5-.21.207 0 .377.07.51.21.133.133.2.297.2.49a.69.69 0 0 1-.2.49.673.673 0 0 1-.51.21.683.683 0 0 1-.5-.21.69.69 0 0 1-.2-.49Zm0-3.78c0-.193.067-.357.2-.49.14-.14.307-.21.5-.21.207 0 .377.07.51.21.133.133.2.297.2.49s-.067.36-.2.5a.69.69 0 0 1-.51.2.7.7 0 0 1-.5-.2.702.702 0 0 1-.2-.5Zm9.344 1.73-3.45-1.48v-1.07l5.1 2.17v.68l-5.1 2.17v-1.07l3.45-1.4Zm6.776-2.08c0-.287-.063-.537-.19-.75-.12-.22-.286-.39-.5-.51a1.381 1.381 0 0 0-.72-.19c-.273 0-.516.063-.73.19-.213.12-.383.29-.51.51-.12.213-.18.463-.18.75s.06.54.18.76c.127.22.297.393.51.52.214.127.457.19.73.19.267 0 .507-.063.72-.19.214-.127.38-.3.5-.52.127-.22.19-.473.19-.76Zm-1.66 4.63h-1.5l2.22-2.75.18-.03c-.16.173-.326.287-.5.34-.173.053-.376.08-.61.08-.28 0-.546-.053-.8-.16a2.12 2.12 0 0 1-.68-.46 2.362 2.362 0 0 1-.46-.73 2.436 2.436 0 0 1-.17-.92c0-.52.114-.963.34-1.33.234-.373.544-.657.93-.85.387-.2.82-.3 1.3-.3.48 0 .914.1 1.3.3.387.193.694.477.92.85.227.367.34.81.34 1.33 0 .327-.056.627-.17.9a3.015 3.015 0 0 1-.42.75l-2.22 2.98Zm4.873-3.49c0 .373.037.717.11 1.03.074.313.177.583.31.81.14.227.307.403.5.53.194.12.407.18.64.18.247 0 .464-.06.65-.18a1.56 1.56 0 0 0 .49-.53c.14-.227.247-.497.32-.81.074-.313.11-.657.11-1.03s-.036-.717-.11-1.03a2.697 2.697 0 0 0-.32-.81 1.467 1.467 0 0 0-.49-.52 1.127 1.127 0 0 0-.65-.19c-.233 0-.446.063-.64.19-.193.12-.36.293-.5.52a2.922 2.922 0 0 0-.31.81c-.073.313-.11.657-.11 1.03Zm-1.16 0c0-.727.114-1.36.34-1.9.234-.54.554-.96.96-1.26.414-.3.887-.45 1.42-.45.547 0 1.024.15 1.43.45.414.3.734.72.96 1.26.227.54.34 1.173.34 1.9 0 .727-.113 1.36-.34 1.9-.226.54-.546.96-.96 1.26-.406.3-.883.45-1.43.45-.533 0-1.006-.15-1.42-.45-.406-.3-.726-.72-.96-1.26-.226-.54-.34-1.173-.34-1.9Zm6.15-1.94c0-.313.07-.597.21-.85.147-.26.35-.467.61-.62.26-.153.554-.23.88-.23.34 0 .637.077.89.23.26.153.46.36.6.62.147.253.22.537.22.85 0 .313-.073.6-.22.86-.14.253-.34.457-.6.61-.253.153-.55.23-.89.23a1.701 1.701 0 0 1-1.49-.84c-.14-.26-.21-.547-.21-.86Zm.92 0a.874.874 0 0 0 .37.73c.12.073.257.11.41.11a.756.756 0 0 0 .42-.11.855.855 0 0 0 .27-.31.923.923 0 0 0 .1-.42.884.884 0 0 0-.1-.42.774.774 0 0 0-.27-.3.756.756 0 0 0-.42-.11.772.772 0 0 0-.41.11.79.79 0 0 0-.27.3.896.896 0 0 0-.1.42Zm3.25 3.88c0-.32.074-.607.22-.86.147-.26.347-.463.6-.61.26-.153.557-.23.89-.23.334 0 .627.077.88.23.26.147.46.35.6.61.147.253.22.54.22.86 0 .307-.073.59-.22.85-.14.26-.34.467-.6.62-.253.147-.546.22-.88.22a1.78 1.78 0 0 1-.89-.22 1.708 1.708 0 0 1-.82-1.47Zm.93-.01c0 .147.03.287.09.42.067.127.157.23.27.31.12.073.26.11.42.11a.74.74 0 0 0 .41-.11c.12-.08.21-.183.27-.31a.884.884 0 0 0 .1-.42.863.863 0 0 0-.1-.41.691.691 0 0 0-.27-.3.692.692 0 0 0-.41-.12c-.16 0-.3.04-.42.12a.79.79 0 0 0-.27.3.946.946 0 0 0-.09.41Zm.58-5.43h1.07l-4.85 7h-1.07l4.85-7Z\" fill=\"#7C838B\"/><path d=\"M129 73.083h4.667V79.5H129v-1.75h-3.5v3.5a.585.585 0 0 1-.996.412.585.585 0 0 1-.171-.412v-10.5a.585.585 0 0 1 .996-.413c.109.11.171.258.171.413v1.166h3.5v1.167Z\" fill=\"#19B498\"/><path d=\"M142.914 81.168c-.887 0-1.652-.21-2.296-.63-.635-.43-1.125-1.022-1.47-1.778-.336-.765-.504-1.652-.504-2.66 0-1.008.168-1.89.504-2.646.345-.765.835-1.358 1.47-1.778.644-.43 1.409-.644 2.296-.644.887 0 1.647.215 2.282.644.635.42 1.12 1.013 1.456 1.778.345.756.518 1.638.518 2.646s-.173 1.895-.518 2.66c-.336.756-.821 1.349-1.456 1.778-.635.42-1.395.63-2.282.63Zm0-1.33c.532 0 1.003-.15 1.414-.448.42-.299.747-.728.98-1.288.233-.56.35-1.227.35-2.002 0-.775-.117-1.442-.35-2.002-.233-.56-.56-.99-.98-1.288a2.342 2.342 0 0 0-1.414-.448 2.37 2.37 0 0 0-1.428.448c-.411.299-.733.728-.966 1.288-.233.56-.35 1.227-.35 2.002 0 .775.117 1.442.35 2.002.233.56.555.99.966 1.288.411.299.887.448 1.428.448Zm7.8-3.962c-.439 0-.835-.098-1.19-.294a2.193 2.193 0 0 1-.826-.826c-.205-.364-.308-.798-.308-1.302 0-.495.103-.92.308-1.274.205-.364.485-.644.84-.84a2.419 2.419 0 0 1 1.19-.294c.429 0 .817.098 1.162.294.355.196.635.476.84.84.205.355.308.78.308 1.274 0 .504-.103.938-.308 1.302a2.16 2.16 0 0 1-.84.826 2.338 2.338 0 0 1-1.176.294Zm-.7 5.124 5.614-9.8h1.456l-5.6 9.8h-1.47Zm.7-6.188c.299 0 .555-.112.77-.336.224-.233.336-.574.336-1.022 0-.448-.107-.784-.322-1.008a1.054 1.054 0 0 0-1.568 0c-.224.224-.336.56-.336 1.008 0 .448.107.789.322 1.022.224.224.49.336.798.336Zm5.754 6.356c-.439 0-.835-.098-1.19-.294a2.193 2.193 0 0 1-.826-.826c-.205-.364-.308-.798-.308-1.302 0-.495.103-.924.308-1.288.205-.364.485-.644.84-.84a2.419 2.419 0 0 1 1.19-.294c.429 0 .817.098 1.162.294.355.196.635.476.84.84.205.364.308.793.308 1.288 0 .504-.103.938-.308 1.302a2.16 2.16 0 0 1-.84.826 2.338 2.338 0 0 1-1.176.294Zm0-1.078c.299 0 .555-.112.77-.336.224-.224.336-.56.336-1.008 0-.448-.107-.784-.322-1.008a1.054 1.054 0 0 0-1.568 0c-.224.224-.336.56-.336 1.008 0 .448.107.784.322 1.008.224.224.49.336.798.336Z\" fill=\"#000\"/><defs><filter id=\"a\" x=\"0\" y=\"0\" width=\"284\" height=\"134\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dx=\"8\" dy=\"9\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.701961 0 0 0 0 0.317647 0 0 0 0 0.988235 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_24_15274\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_24_15274\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(188, 164, 225)\",\"--framer-text-transform\":\"uppercase\"},children:\"Tecnologia opens + ia\"})})},Z6zLnDEYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(188, 164, 225)\",\"--framer-text-transform\":\"uppercase\"},children:\"Tecnologia opens + ia\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(188, 164, 225)\",\"--framer-text-transform\":\"uppercase\"},children:\"Tecnologia opens + ia\"})}),className:\"framer-1xl4e4c\",\"data-framer-name\":\"Solu\\xe7\\xf5es de atendimento em\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Transforme seu Atendimento em receita\"})})},Z6zLnDEYM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Transforme seu Atendimento a \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Clientes em receita\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Transforme seu Atendimento em receita\"})}),className:\"framer-wkejhz\",\"data-framer-name\":\"Attract and retain more customers.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Personalize cada intera\\xe7\\xe3o com o seu cliente e \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"aumente a efici\\xeancia do seu time de atendimento usando IA.\"})]})},ipygzAfDz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Personalize cada intera\\xe7\\xe3o com o seu cliente e \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"aumente a efici\\xeancia do seu time de atendimento usando IA.\"})]})},Z6zLnDEYM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Personalize cada intera\\xe7\\xe3o com o seu cliente e \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"aumente a efici\\xeancia do seu time de atendimento usando IA.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Personalize cada intera\\xe7\\xe3o com o seu cliente e \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"aumente a efici\\xeancia do seu time de atendimento usando IA.\"})]}),className:\"framer-pwp391\",\"data-framer-name\":\"Construa experi\\xeancias personaliz\\xe1veis e impulsione o relacionamento com seus clientes.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-962bt8\",\"data-framer-name\":\"Frame 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9hv9j\",\"data-framer-name\":\"span.jsx-1124218087\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6mflmy-container\",nodeId:\"PYcCG5i1r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BotOCTA,{CCsR2Qxks:\"https://opens.com.br/widget-embed?yuniqueId=402f3981-8482-40cc-89e3-2b005177ca97&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\",height:\"100%\",id:\"PYcCG5i1r\",layoutId:\"PYcCG5i1r\",sgejl1KWR:\"Quero falar com um especialista\",variant:\"SueVjp8bZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1txc2yy-container\",nodeId:\"mXOqIQQxS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SeeMore,{height:\"100%\",id:\"mXOqIQQxS\",layoutId:\"mXOqIQQxS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1289,intrinsicWidth:2048,pixelHeight:1289,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 1.0025)`,src:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg\",srcSet:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg 2048w\"}},ipygzAfDz:{__targetOpacity:.26,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1289,intrinsicWidth:2048,pixelHeight:1289,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"585px\",src:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg\",srcSet:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg 2048w\"}},Z6zLnDEYM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1289,intrinsicWidth:2048,pixelHeight:1289,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 1.0513)`,src:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg\",srcSet:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1289,intrinsicWidth:2048,pixelHeight:1289,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 0.9778)`,src:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg\",srcSet:\"https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hivU6CFOnkAZqbLaI0mb2sCb0.svg 2048w\"},className:\"framer-p0xlki\",\"data-framer-name\":\"Mask group\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jjt64\",\"data-framer-name\":\"Clients\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC03MDA=\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"CLIENTES QUE CONFIAM NA OPENS\"})}),className:\"framer-1vginr8\",\"data-framer-name\":\"TRUSTED BY BUSINESSES\",fonts:[\"GF;Jost-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t39nxs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jdgRBJxw5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.8,id:\"jdgRBJxw5\",layoutId:\"jdgRBJxw5\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:264,pixelWidth:641,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/22bySGtgQXDMNEBXXg6fD8ekc.png\",srcSet:\"https://framerusercontent.com/images/22bySGtgQXDMNEBXXg6fD8ekc.png?scale-down-to=512 512w,https://framerusercontent.com/images/22bySGtgQXDMNEBXXg6fD8ekc.png 641w\"},className:\"framer-1d0luh3\",\"data-framer-name\":\"Ferrasa\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:110,pixelWidth:398,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r7oDS1D09KEZCW4rWLeeZXSDx2k.png\"},className:\"framer-f9nusu\",\"data-framer-name\":\"Superlogica\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:174,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/igmFRRRgsxOQwrj34vCUxYavHY.png\"},className:\"framer-1lwceol\",\"data-framer-name\":\"Havan\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:163,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UaoDXtwka1LAvIUQTvkywoJWpao.png\"},className:\"framer-15edgej\",\"data-framer-name\":\"Ouze\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:265,pixelWidth:941,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/biwaeaCwgxDcEKSreo1fkpoQw1M.png\",srcSet:\"https://framerusercontent.com/images/biwaeaCwgxDcEKSreo1fkpoQw1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/biwaeaCwgxDcEKSreo1fkpoQw1M.png 941w\"},className:\"framer-hg48sk\",\"data-framer-name\":\"StudioZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:571,pixelWidth:1329,positionX:\"center\",positionY:\"center\",sizes:\"167px\",src:\"https://framerusercontent.com/images/TsvKHfFDr7v3UKthG98TBUX10iw.png\",srcSet:\"https://framerusercontent.com/images/TsvKHfFDr7v3UKthG98TBUX10iw.png?scale-down-to=512 512w,https://framerusercontent.com/images/TsvKHfFDr7v3UKthG98TBUX10iw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TsvKHfFDr7v3UKthG98TBUX10iw.png 1329w\"},className:\"framer-1aipt3g\",\"data-framer-name\":\"Eco\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:250,pixelWidth:560,sizes:\"167px\",src:\"https://framerusercontent.com/images/mOZKRCNJ7l1L1mSw7OY7VExbo0.png\",srcSet:\"https://framerusercontent.com/images/mOZKRCNJ7l1L1mSw7OY7VExbo0.png?scale-down-to=512 512w,https://framerusercontent.com/images/mOZKRCNJ7l1L1mSw7OY7VExbo0.png 560w\"},className:\"framer-qnx2zn\",\"data-framer-name\":\"Branco\"})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-83gilz\",\"data-framer-name\":\"pseudo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gnwnq\",\"data-framer-name\":\"PlataformaUnifica\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ss86k\",\"data-framer-name\":\"Group 1000003833\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-96xo7d\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"A solu\\xe7\\xe3o que \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"unifica tudo\"})]}),className:\"framer-asjsjt\",\"data-framer-name\":\"Your All-in-One Connected Service Platform\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:573,intrinsicWidth:1162,pixelHeight:573,pixelWidth:1162,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 28px, 1210px)`,src:\"https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg\",srcSet:\"https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg 1162w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:573,intrinsicWidth:1162,pixelHeight:573,pixelWidth:1162,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 1210px)`,src:\"https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg\",srcSet:\"https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ArCqPcRiyyeVIGGxUo0nE45nw.svg 1162w\"},className:\"framer-1d1iqy6\",\"data-framer-name\":\"Group_37\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdgbil\",\"data-framer-name\":\"Beneficio\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-itdc40\",\"data-framer-name\":\"pseudo\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhLTcwMA==\",\"--framer-font-family\":'\"Helvetica\", \"Helvetica Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"4px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(84, 42, 148)\",\"--framer-text-transform\":\"uppercase\"},children:\"Tecnologia OPENS\"})}),className:\"framer-1ikv8lu\",\"data-framer-name\":\"Plataforma Yunique\",fonts:[\"GF;Helvetica-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Com a Tecnologia Opens voc\\xea vai \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"oferecer um atendimento de excel\\xeancia\"})]})},ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Com a plataforma da Opens voc\\xea vai oferecer um atendimento de excel\\xeancia\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Com a Tecnologia Opens voc\\xea vai \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"oferecer um atendimento de excel\\xeancia\"})]}),className:\"framer-1nbzosb\",\"data-framer-name\":\"Com a plataforma da Opens voc\\xea vai oferecer um atendimento de excel\\xeancia\",fonts:[\"GF;Plus Jakarta Sans-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Maximize productivity with one central workspace that connects your inbox, tickets, and help center.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Maximize a produtividade com um espa\\xe7o de trabalho central, m\\xe9tricas de evolu\\xe7\\xe3o claras e atendimentos 100% personalizados.\"})}),className:\"framer-lp0oqk\",\"data-framer-name\":\"Maximize productivity with one central workspace that connects your inbox, tickets, and help center.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ao4zbv-container\",nodeId:\"wgj_9Ld0x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{CCsR2Qxks:\"https://opens.com.br/widget-embed?yuniqueId=402f3981-8482-40cc-89e3-2b005177ca97&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\"}},children:/*#__PURE__*/_jsx(BotOCTA,{CCsR2Qxks:\"https://yunique-app.opens.com.br/?yuniqueId=76d071fa-7957-432d-8bc4-0f2fd47d0e2a&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\",height:\"100%\",id:\"wgj_9Ld0x\",layoutId:\"wgj_9Ld0x\",sgejl1KWR:\"Quero uma demonstra\\xe7\\xe3o\",variant:\"hZ0nBq4I0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hnnzl8\",\"data-framer-name\":\"Rectangle 10\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1440,pixelHeight:913,pixelWidth:1440,positionX:\"left\",positionY:\"top\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1128px) - 128px) * 0.9)`,src:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg\",srcSet:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg 1440w\"}},ipygzAfDz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1440,pixelHeight:913,pixelWidth:1440,positionX:\"left\",positionY:\"top\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1128px) - 64px) * 0.9)`,src:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg\",srcSet:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg 1440w\"}},Z6zLnDEYM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1440,pixelHeight:913,pixelWidth:1440,positionX:\"left\",positionY:\"top\",sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1128px) - 128px) * 0.7958)`,src:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg\",srcSet:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg 1440w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:913,intrinsicWidth:1440,pixelHeight:913,pixelWidth:1440,positionX:\"left\",positionY:\"top\",sizes:\"772px\",src:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg\",srcSet:\"https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oSU9rDbYDuZXLMvaxLiOj1pItv4.svg 1440w\"},className:\"framer-rowuyt\",\"data-framer-name\":\"Group 37\",style:{transformPerspective:1200}})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lt68lh hidden-72rtr7 hidden-glkt3g hidden-1ofvaal\",\"data-framer-name\":\"pseudo\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6x77vv\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mh7op9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sdxmaq-container\",nodeId:\"PSJ0GIpC_\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation9,children:/*#__PURE__*/_jsx(ChartsIllustrationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"BL26oRoBr\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ilvjRP9Ye\",height:\"100%\",id:\"PSJ0GIpC_\",layoutId:\"PSJ0GIpC_\",style:{height:\"100%\",width:\"100%\"},variant:\"BL26oRoBr\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Para gestores\"})}),className:\"framer-gvsib1\",\"data-framer-name\":\"Ferramentas para gestores\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Controle o que realmente importa com relat\\xf3rios descomplicados, que ajudam a melhorar seus resultados na pr\\xe1tica.\"})}),className:\"framer-1igd3z4\",\"data-framer-name\":\"Controle o que realmente importa com relat\\xf3rios descomplicados, que ajudam a melhorar seus resultados na pr\\xe1tica.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io961o\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0hxnu-container\",nodeId:\"erB_DN92P\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation9,children:/*#__PURE__*/_jsx(ClientIllustrationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"rXbepmI86\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"TMq1_8EP6\",height:\"100%\",id:\"erB_DN92P\",layoutId:\"erB_DN92P\",style:{height:\"100%\",width:\"100%\"},variant:\"rXbepmI86\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Para Sucesso do cliente\"})}),className:\"framer-nnh34m\",\"data-framer-name\":\"Sucesso do cliente\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Nosso time \\xe9 especializado na elabora\\xe7\\xe3o dos melhores fluxos de atendimento para o seu neg\\xf3cios e em garantir toda estabilidade e escala de sua opera\\xe7\\xe3o sem complica\\xe7\\xf5es.\"})}),className:\"framer-1fu1a64\",\"data-framer-name\":\"Nosso time \\xe9 especializado na elabora\\xe7\\xe3o dos melhores fluxos de atendimento para o seu neg\\xf3cios e em garantir toda estabilidade e escala de sua opera\\xe7\\xe3o sem complica\\xe7\\xf5es.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htm45a\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"334px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n02e3t-container\",nodeId:\"LebLDIvkT\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation9,children:/*#__PURE__*/_jsx(CallsIllustrationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"fHRozr9k4\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Mf11hNJbP\",height:\"100%\",id:\"LebLDIvkT\",layoutId:\"LebLDIvkT\",style:{height:\"100%\",width:\"100%\"},variant:\"fHRozr9k4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Para Atendimento personalizado\"})}),className:\"framer-1upshh7\",\"data-framer-name\":\"Atendimento personalizado\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Nossa capacidade de reconhecimento do seu cliente no momento que ele faz contato com sua empresa, nos permite oferecer op\\xe7\\xf5es de atendimento personalizado.\"})}),className:\"framer-y6oa68\",\"data-framer-name\":\"Nossa capacidade de reconhecimento do seu cliente no momento que ele faz contato com sua empresa, nos permite oferecer op\\xe7\\xf5es de atendimento personalizado.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v0v7sf\",\"data-framer-name\":\"Churn\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w87f5v\",id:elementId1,ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ow4iz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s5aegw\",\"data-framer-name\":\"Group 1000003837\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:443,intrinsicWidth:362,svg:'<svg width=\"362\" height=\"443\" viewBox=\"0 0 362 443\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M301 0H60.0005V269H0.867188L181 443L361.134 269H301V0Z\" fill=\"url(#paint0_linear_7097_3593)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_7097_3593\" x1=\"181.001\" y1=\"-1.51273e-08\" x2=\"183.5\" y2=\"455.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EBD1FF\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ula4g2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mr0ony\",\"data-framer-name\":\"Group 1000003838\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:257,intrinsicWidth:209,svg:'<svg width=\"209\" height=\"257\" viewBox=\"0 0 209 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M174.118 0H34.3053V156.056H0L104.502 257L209.003 156.056H174.118V0Z\" fill=\"url(#paint0_linear_7097_3597)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_7097_3597\" x1=\"104.502\" y1=\"-8.77588e-09\" x2=\"105.952\" y2=\"264.252\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EBD1FF\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jkle6k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ggqhmr\",\"data-framer-name\":\"Group 1000003839\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:257,intrinsicWidth:209,svg:'<svg width=\"209\" height=\"257\" viewBox=\"0 0 209 257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M174.118 0H34.3053V156.056H0L104.502 257L209.003 156.056H174.118V0Z\" fill=\"url(#paint0_linear_7097_3601)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_7097_3601\" x1=\"104.502\" y1=\"-8.77588e-09\" x2=\"105.952\" y2=\"264.252\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EBD1FF\"/>\\n<stop offset=\"1\" stop-color=\"white\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(179, 81, 252)\"},children:\"62%\"})}),transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(179, 81, 252)\"},children:\"62%\"})}),className:\"framer-1j7777b\",\"data-framer-name\":\"60%\",fonts:[\"GF;Plus Jakarta Sans-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zg76bk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"Redu\\xe7\\xe3o no churn\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"Redu\\xe7\\xe3o no churn\"})}),className:\"framer-1wz1u3m\",\"data-framer-name\":\"reduction in costs\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Os clientes da Opens observaram uma redu\\xe7\\xe3o m\\xe9dia de 62% nos primeiros meses\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Os clientes da Opens observaram uma redu\\xe7\\xe3o m\\xe9dia de 62% nos primeiros meses\"})}),className:\"framer-r23jdq\",\"data-framer-name\":\"Clients on an average save around 60% in costs going with Opens within 1 month of switching.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l3mwmx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1diza5p-container\",id:\"1diza5p\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pi7JegJqC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{gap:20,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-24c77751-eb95-4fdb-8e3b-017de4f80b7d, rgb(179, 81, 252))\",arrowGap:10,arrowPadding:-21,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:1,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"pi7JegJqC\",intervalControl:3,itemAmount:1,layoutId:\"pi7JegJqC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-24c77751-eb95-4fdb-8e3b-017de4f80b7d, rgb(179, 81, 252))\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cqt08y\",\"data-framer-name\":\"Depoimento Studio Z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/Btz87k8bnmiAeX2qDJNjwjsJQ.png\"},className:\"framer-hyrqja\",\"data-framer-name\":\"image 9\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:'\"A Opens foi essencial para a StudioZ/Ouze e para o nosso Cliente ao unificar toda a comunica\\xe7\\xe3o do SAC.'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:'Eles mostraram muita flexibilidade, integrando-se perfeitamente ao nosso app e, acima de tudo, adquirindo um conhecimento profundo do nosso neg\\xf3cio. Essa combina\\xe7\\xe3o de integra\\xe7\\xe3o t\\xe9cnica e entendimento do cliente resultou em um atendimento muito mais fluido e confi\\xe1vel para todos.\"'})]}),className:\"framer-e7tjv3\",\"data-framer-name\":'\"A equipe de suporte e implanta\\xe7\\xe3o da Opens \\xe9 extremamente prestativa e \\xe1gil; essa facilidade de comunica\\xe7\\xe3o nos ajuda quando precisamos de atendimento. Hoje usamos a plataforma de atendimento da Opens que contribui muito na parte de relat\\xf3rios, tratativas com clientes e controle de liga\\xe7\\xf5es. S\\xe3o recursos com os quais, antes, n\\xe3o cont\\xe1vamos e eram necess\\xe1rios.\"',fonts:[\"GF;Plus Jakarta Sans-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ut6qww\",\"data-framer-name\":\"Group 38\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:533,pixelWidth:533,positionX:\"center\",positionY:\"center\",sizes:\"88px\",src:\"https://framerusercontent.com/images/AYFKBMbv8rmOCwvGfZEfFKiU2M.png\",srcSet:\"https://framerusercontent.com/images/AYFKBMbv8rmOCwvGfZEfFKiU2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/AYFKBMbv8rmOCwvGfZEfFKiU2M.png 533w\"},className:\"framer-egziic\",\"data-border\":true,\"data-framer-name\":\"Campos-Lima_Fabr%C3%ADcio-de-Souza-Campos-1.png\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22.88px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"27.36px\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Waldemar Augusto de Oliveira\"})}),className:\"framer-1wu510a\",\"data-framer-name\":\"Fabr\\xedcio Campos Lima\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Diretor StudioZ\"})}),className:\"framer-11rr80o\",\"data-framer-name\":\"S\\xf3cio, Campos & Lima\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lpxo15\",\"data-framer-name\":\"Depoimento Ferrasa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/OLPJVD7Q7jgrJlokMhz15Ra5w.png\"},className:\"framer-1wtxhjo\",\"data-framer-name\":\"image 9\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:'\"Com outra plataforma, precisava baixar relat\\xf3rios e usar planilhas para cruzar os dados, com a Plataforma Opens isso ficou bem mais pr\\xe1tico. Consigo filtrar o per\\xedodo e tenho um n\\xfamero confi\\xe1veis para apresentar.\"'})}),className:\"framer-lfmweb\",\"data-framer-name\":'\"A equipe de suporte e implanta\\xe7\\xe3o da Opens \\xe9 extremamente prestativa e \\xe1gil; essa facilidade de comunica\\xe7\\xe3o nos ajuda quando precisamos de atendimento. Hoje usamos a plataforma de atendimento da Opens que contribui muito na parte de relat\\xf3rios, tratativas com clientes e controle de liga\\xe7\\xf5es. S\\xe3o recursos com os quais, antes, n\\xe3o cont\\xe1vamos e eram necess\\xe1rios.\"',fonts:[\"GF;Plus Jakarta Sans-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-128lmpr\",\"data-framer-name\":\"Group 38\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"88px\",src:\"https://framerusercontent.com/images/JmrdEtyyvbpOpQ4ujI82PbARRM.png\",srcSet:\"https://framerusercontent.com/images/JmrdEtyyvbpOpQ4ujI82PbARRM.png?scale-down-to=512 512w,https://framerusercontent.com/images/JmrdEtyyvbpOpQ4ujI82PbARRM.png 800w\"},className:\"framer-1wuvf6v\",\"data-border\":true,\"data-framer-name\":\"Campos-Lima_Fabr%C3%ADcio-de-Souza-Campos-1.png\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22.88px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"27.36px\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Elaine Pereira\"})}),className:\"framer-18419wi\",\"data-framer-name\":\"Fabr\\xedcio Campos Lima\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Ferrasa - Hot Beach\"})}),className:\"framer-yq2xls\",\"data-framer-name\":\"S\\xf3cio, Campos & Lima\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5nn07l\",\"data-framer-name\":\"Group 41\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1isyo1c\",\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stnft\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"4px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(219, 183, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Efici\\xeancia Corporativa\"})}),className:\"framer-bnw2rz\",\"data-framer-name\":\"Efici\\xeancia Corporativa\",fonts:[\"GF;Plus Jakarta Sans-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adote uma cultura de \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"crescimento cont\\xednuo\"})]})},ipygzAfDz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adote uma cultura de \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"crescimento cont\\xednuo\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Adote uma cultura de \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"crescimento cont\\xednuo\"})]}),className:\"framer-8sykuc\",\"data-framer-name\":\"Adote uma cultura de crescimento cont\\xednuo\",fonts:[\"GF;Plus Jakarta Sans-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrjep6-container\",nodeId:\"ot724aMrf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{CCsR2Qxks:\"https://opens.com.br/widget-embed?yuniqueId=402f3981-8482-40cc-89e3-2b005177ca97&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\"}},children:/*#__PURE__*/_jsx(BotOCTA,{CCsR2Qxks:\"https://yunique-app.opens.com.br/?yuniqueId=76d071fa-7957-432d-8bc4-0f2fd47d0e2a&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\",height:\"100%\",id:\"ot724aMrf\",layoutId:\"ot724aMrf\",sgejl1KWR:\"Quero falar com um especialista\",variant:\"vQ545AXr1\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-prml6f\",\"data-framer-name\":\"Group 1000003835\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19al37i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px), 460px), 350px) * 0.9492, max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px), 460px), 350px))`},ipygzAfDz:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"} - 32px, 1441px), 460px), 350px) * 0.9492, max(min(min(${componentViewport?.width||\"100vw\"} - 32px, 1441px), 460px), 350px))`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`min(max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px) * 0.3046, 460px), 350px) * 0.9492, max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px) * 0.3046, 460px), 350px))`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1owz6xo-container\",nodeId:\"KHGXV5Z9T\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CallsIllustrationWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"fHRozr9k4\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Mf11hNJbP\",height:\"100%\",id:\"KHGXV5Z9T\",layoutId:\"KHGXV5Z9T\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"fHRozr9k4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Personalizando seu Atendimento\"})}),className:\"framer-13xfe2d\",\"data-framer-name\":\"Atendimento personalizado\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nossa capacidade de reconhecimento do seu cliente no momento que ele faz contato com sua empresa, nos permite oferecer op\\xe7\\xf5es de atendimento personalizado.\"})}),className:\"framer-eh2f6u\",\"data-framer-name\":\"Nossa capacidade de reconhecimento do seu cliente no momento que ele faz contato com sua empresa, nos permite oferecer op\\xe7\\xf5es de atendimento personalizado.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k09dhc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`calc(max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px), 460px), 350px) * 0.9571)`},ipygzAfDz:{width:`calc(max(min(min(${componentViewport?.width||\"100vw\"} - 32px, 1441px), 460px), 350px) * 0.9571)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:`calc(max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1441px) * 0.3, 460px), 350px) * 0.9571)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eerd14-container\",nodeId:\"eJPEtAroq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ChartsIllustrationWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"BL26oRoBr\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ilvjRP9Ye\",height:\"100%\",id:\"eJPEtAroq\",layoutId:\"eJPEtAroq\",style:{height:\"100%\",width:\"100%\"},variant:\"BL26oRoBr\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Melhorando sua Gest\\xe3o\"})}),className:\"framer-9619cm\",\"data-framer-name\":\"Ferramentas para gestores\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Controle o que realmente importa com relat\\xf3rios descomplicados, que ajudam a melhorar seus resultados na pr\\xe1tica.\"})}),className:\"framer-1fcgliv\",\"data-framer-name\":\"Controle o que realmente importa com relat\\xf3rios descomplicados, que ajudam a melhorar seus resultados na pr\\xe1tica.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86na8d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dt4tx2-container\",nodeId:\"jEsaoOFj3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ClientIllustrationWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"rXbepmI86\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"TMq1_8EP6\",height:\"100%\",id:\"jEsaoOFj3\",layoutId:\"jEsaoOFj3\",style:{height:\"100%\",width:\"100%\"},variant:\"rXbepmI86\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entregando Sucesso do cliente\"})}),className:\"framer-1vookin\",\"data-framer-name\":\"Sucesso do cliente\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"25px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nosso time \\xe9 especializado na elabora\\xe7\\xe3o dos melhores fluxos de atendimento para o seu neg\\xf3cios e em garantir toda estabilidade e escala de sua opera\\xe7\\xe3o sem complica\\xe7\\xf5es.\"})}),className:\"framer-1odea5u\",\"data-framer-name\":\"Nosso time \\xe9 especializado na elabora\\xe7\\xe3o dos melhores fluxos de atendimento para o seu neg\\xf3cios e em garantir toda estabilidade e escala de sua opera\\xe7\\xe3o sem complica\\xe7\\xf5es.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1560pwx hidden-72rtr7 hidden-5ztarb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"}, 1024px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"}, 1024px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:415,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r57m8n-container\",nodeId:\"RZRoJcmwd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"RZRoJcmwd\",layoutId:\"RZRoJcmwd\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"hoR5rGS24\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4c9dh2\",\"data-framer-name\":\"Convert\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v0hd8p\",\"data-framer-name\":\"Rectangle 42\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11y4h9x\",\"data-framer-name\":\"Rectangle 43\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lqj4av\",\"data-framer-name\":\"Rectangle 44\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n4w5kk\",\"data-framer-name\":\"Rectangle 45\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tzsdbd\",\"data-framer-name\":\"Rectangle 46\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vn2dxd\",\"data-framer-name\":\"Frame 1000003866\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"74px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(179, 81, 252)\"},children:\"+43%\"})}),transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(179, 81, 252)\"},children:\"+43%\"})}),className:\"framer-1c5bfae\",\"data-framer-name\":\"45%\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10925ju\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"Aumente sua convers\\xe3o\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(28, 13, 53)\"},children:\"Aumente sua convers\\xe3o\"})}),className:\"framer-1edmyvs\",\"data-framer-name\":\"Convert traffic\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"12px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Os clientes da Opens convertem at\\xe9 +43% mais do seu tr\\xe1fego ap\\xf3s usar nosso bot\\xe3o de contato.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Os clientes da Opens convertem at\\xe9 +43% mais do seu tr\\xe1fego ap\\xf3s usar nosso bot\\xe3o de contato.\"})}),className:\"framer-1sl7acd\",\"data-framer-name\":\"Clients on an average save around 60% in costs going with Opens within 1 month of switching.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u21oku\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18czk5q\",\"data-framer-name\":\"Vector 19\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:586,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"586\" viewBox=\"-3 -3 12 586\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3 3V577\" stroke=\"#F0EDF2\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yxr92q\",\"data-framer-name\":\"Vector 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:954,svg:'<svg width=\"954\" height=\"12\" viewBox=\"-3 -3 954 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3 3H945\" stroke=\"#F0EDF2\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ne77x hidden-1ofvaal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ivgnk5\",\"data-framer-name\":\"Rectangle 20\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k5nas6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16ch5ti\",\"data-framer-name\":\"Group 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:107,intrinsicWidth:171,svg:'<svg width=\"171\" height=\"107\" viewBox=\"0 0 171 107\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M58.9346 5.54907L143.426 0.141597C144.898 0.0474003 146.376 0.0893033 147.84 0.266773L149.29 0.442584C161.025 1.86492 169.635 12.1593 168.96 23.9603C168.772 27.2651 167.853 30.487 166.27 33.3943L135.28 90.314C133.3 93.9505 130.448 97.0382 126.98 99.3001L123.724 101.424C118.243 104.998 111.58 106.281 105.164 104.998L99.4986 103.865C97.5711 103.479 95.6957 102.868 93.9115 102.043L22.9848 69.2563C19.5936 67.6887 16.5969 65.381 14.215 62.5028L13.1586 61.2263C5.6566 52.1614 6.13263 38.915 14.2659 30.412C15.6477 28.9675 17.2104 27.7077 18.9152 26.6639L47.4775 9.17675C50.9448 7.05393 54.8774 5.80873 58.9346 5.54907Z\" fill=\"#B351FC\" fill-opacity=\"0.988235\"/>\\n<path d=\"M148.631 64.4259C146.032 64.4259 143.733 63.8077 141.736 62.5713C139.77 61.3348 138.375 59.6387 137.551 57.4828L142.164 55.105C142.861 56.5 143.781 57.5938 144.922 58.3864C146.095 59.1473 147.379 59.5277 148.774 59.5277C149.979 59.5277 150.914 59.2899 151.58 58.8144C152.277 58.3071 152.626 57.6255 152.626 56.7695C152.626 56.0403 152.341 55.4379 151.77 54.9624C151.199 54.4551 150.454 54.1222 149.535 53.9637L145.302 53.2504C143.115 52.6797 141.419 51.7127 140.214 50.3495C139.041 48.9545 138.454 47.3218 138.454 45.4512C138.454 43.8978 138.866 42.5187 139.691 41.3139C140.515 40.0775 141.656 39.1264 143.115 38.4606C144.605 37.7948 146.285 37.4619 148.156 37.4619C150.533 37.4619 152.626 38.0326 154.433 39.1739C156.24 40.2835 157.556 41.837 158.38 43.8344L153.767 46.2121C153.26 45.1025 152.483 44.2148 151.437 43.549C150.391 42.8832 149.234 42.5504 147.965 42.5504C146.919 42.5504 146.079 42.7881 145.445 43.2637C144.843 43.7392 144.541 44.3575 144.541 45.1184C144.541 46.5133 145.588 47.4486 147.68 47.9241L151.817 48.685C154.005 49.2874 155.701 50.2702 156.906 51.6335C156.038 52.757 156.038 52.0139 155.295 54.2431C154.433 55.7292 153.065 58.7014 152.322 60.1875C151.579 61.6736 151.817 61.0863 150.836 63.1597C149.314 63.8255 150.629 64.4259 148.631 64.4259Z\" fill=\"white\"/>\\n<path d=\"M112.645 38.0326H118.494V41.2188C119.16 40.0141 120.127 39.0947 121.395 38.4606C122.695 37.7948 124.169 37.4619 125.817 37.4619C127.688 37.4619 129.368 37.8741 130.858 38.6984C132.348 39.5227 133.506 40.6798 134.33 42.1699C135.154 43.66 135.566 45.3561 135.566 47.2584V63.9028H129.337V48.7326C129.337 47.0523 128.845 45.7049 127.862 44.6904C126.911 43.6758 125.659 43.1686 124.105 43.1686C122.552 43.1686 121.284 43.6758 120.301 44.6904C119.35 45.7049 118.874 47.0523 118.874 48.7326V63.9028H112.645V38.0326Z\" fill=\"white\"/>\\n<path d=\"M97.6984 64.4735C95.0987 64.4735 92.7843 63.8711 90.7553 62.6664C88.7579 61.4616 87.1886 59.8289 86.0473 57.7681C84.9376 55.7074 84.3828 53.4247 84.3828 50.9201C84.3828 48.3838 84.9376 46.1012 86.0473 44.0721C87.1886 42.0114 88.7262 40.3945 90.6601 39.2215C92.6258 38.0484 94.8133 37.4619 97.2228 37.4619C99.8225 37.4619 102.073 38.0326 103.976 39.1739C105.878 40.2835 107.32 41.8053 108.303 43.7392C109.318 45.6732 109.825 47.7973 109.825 50.1117C109.825 51.1896 109.714 52.0615 109.492 52.7273H90.8504C91.0406 54.6295 91.7698 56.1513 93.0379 57.2926C94.3061 58.4339 95.8754 59.0046 97.7459 59.0046C99.1409 59.0046 100.33 58.7193 101.313 58.1486C102.327 57.5462 103.136 56.7219 103.738 55.6757L108.779 58.1486C107.986 60.0508 106.591 61.5884 104.594 62.7615C102.597 63.9028 100.298 64.4735 97.6984 64.4735ZM103.167 47.9717C103.009 46.3865 102.391 45.1025 101.313 44.1197C100.235 43.1052 98.8714 42.5979 97.2228 42.5979C95.6376 42.5979 94.2902 43.0735 93.1806 44.0246C92.071 44.944 91.3418 46.2597 90.993 47.9717H103.167Z\" fill=\"white\"/>\\n<path d=\"M55.3789 38.0326H61.2282V41.0761C62.1794 39.9348 63.3524 39.0471 64.7473 38.413C66.174 37.779 67.7751 37.4619 69.5505 37.4619C71.9599 37.4619 74.1634 38.0643 76.1607 39.269C78.158 40.4421 79.7274 42.059 80.8687 44.1197C82.01 46.1804 82.5807 48.4631 82.5807 50.9677C82.5807 53.4723 82.01 55.755 80.8687 57.8157C79.7274 59.8764 78.158 61.5092 76.1607 62.7139C74.1951 63.887 71.9758 64.4735 69.5029 64.4735C67.9177 64.4735 66.4435 64.2198 65.0802 63.7126C63.717 63.1736 62.5598 62.4127 61.6087 61.4299V73.4139H55.3789V38.0326ZM61.6087 50.9677C61.6087 52.4578 61.9099 53.8052 62.5122 55.0099C63.1463 56.183 64.0023 57.1024 65.0802 57.7681C66.1899 58.4339 67.4263 58.7668 68.7896 58.7668C70.9137 58.7668 72.6574 58.0376 74.0207 56.5792C75.4156 55.0892 76.1131 53.2187 76.1131 50.9677C76.1131 49.5093 75.7961 48.1936 75.162 47.0206C74.5279 45.8158 73.6561 44.8806 72.5465 44.2148C71.4368 43.5173 70.1845 43.1686 68.7896 43.1686C67.4263 43.1686 66.1899 43.5015 65.0802 44.1672C64.0023 44.833 63.1463 45.7683 62.5122 46.973C61.9099 48.1461 61.6087 49.4776 61.6087 50.9677Z\" fill=\"white\"/>\\n<path d=\"M33.5069 64.4735C30.0512 64.4735 26.9126 63.681 24.0909 62.0958C21.2693 60.4789 19.05 58.2755 17.4331 55.4855C15.8163 52.6956 15.0078 49.5887 15.0078 46.1647C15.0078 42.7407 15.8163 39.6337 17.4331 36.8438C19.05 34.0538 21.2693 31.8663 24.0909 30.2811C26.9126 28.6959 30.0512 27.9033 33.5069 27.9033C36.9626 27.9033 40.1013 28.6959 42.9229 30.2811C45.7446 31.8663 47.9638 34.0538 49.5807 36.8438C51.2293 39.6337 52.0536 42.7407 52.0536 46.1647C52.0536 49.5887 51.2293 52.6956 49.5807 55.4855C47.9638 58.2755 45.7446 60.4789 42.9229 62.0958C40.1013 63.681 36.9626 64.4735 33.5069 64.4735ZM21.4754 46.1647C21.4754 48.5107 21.9985 50.6349 23.0447 52.5371C24.0909 54.4393 25.5176 55.9294 27.3247 57.0073C29.1635 58.0535 31.2243 58.5767 33.5069 58.5767C35.7896 58.5767 37.8345 58.0535 39.6416 57.0073C41.4804 55.9294 42.9229 54.4393 43.9691 52.5371C45.0154 50.6349 45.5385 48.5107 45.5385 46.1647C45.5385 43.8186 45.0154 41.7103 43.9691 39.8398C42.9229 37.9375 41.4804 36.4633 39.6416 35.4171C37.8345 34.3392 35.7896 33.8002 33.5069 33.8002C31.2243 33.8002 29.1635 34.3392 27.3247 35.4171C25.5176 36.4633 24.0909 37.9375 23.0447 39.8398C21.9985 41.7103 21.4754 43.8186 21.4754 46.1647Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Somos a Opens\"})}),className:\"framer-1q6axcs\",\"data-framer-name\":\"Somos a Opens\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"N\\xf3s sabemos como \\xe9 estar sobrecarregado com o volume de demandas que o setor de atendimento precisa resolver e com as dificuldades de gerir o time de atendimento. Oferecer um atendimento de excel\\xeancia envolve diversos fatores que s\\xe3o dif\\xedceis de controlar e que sem ferramentas adequadas e uma equipe preparada \\xe9 imposs\\xedvel lidar com a imprevisibilidade do dia a dia do atendimento. Mas n\\xe3o precisa ser assim!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Sm9zdC1yZWd1bGFy\",\"--framer-font-family\":'\"Jost\", \"Jost Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"30.6px\",\"--framer-text-color\":\"rgb(63, 76, 90)\"},children:\"Ao longo dos \\xfaltimos 20 anos participamos do desenvolvimento de ferramentas inovadoras para o atendimento ao cliente. Durante esse mesmo tempo criamos estrat\\xe9gias de desenvolvimento e gest\\xe3o de equipes de atendimento, sabendo que o centro daexperi\\xeancia do cliente s\\xe3o as pessoas, clientes e equipe. Tudo isso nos fez entender, na pr\\xe1tica, o que realmente funciona para criar uma experi\\xeancia que conquiste e fidelize clientes.\"})]}),className:\"framer-10b75rd\",\"data-framer-name\":\"N\\xf3s sabemos como \\xe9 estar sobrecarregado com o volume de demandas que o setor de atendimento precisa resolver e com as dificuldades de gerir o time de atendimento. Oferecer um atendimento de excel\\xeancia envolve diversos fatores que s\\xe3o dif\\xedceis de controlar e que sem ferramentas adequadas e uma equipe preparada \\xe9 imposs\\xedvel lidar com a imprevisibilidade do dia a dia do atendimento. Mas n\\xe3o precisa ser assim! Ao longo dos \\xfaltimos 20 anos participamos do desenvolvimento de ferramentas inovadoras para o atendimento ao cliente. Durante esse mesmo tempo criamos estrat\\xe9gias de desenvolvimento e gest\\xe3o de equipes de atendimento, sabendo que o centro daexperi\\xeancia do cliente s\\xe3o as pessoas, clientes e equipe. Tudo isso nos fez entender, na pr\\xe1tica, o que realmente funciona para criar uma experi\\xeancia que conquiste e fidelize clientes.\",fonts:[\"GF;Jost-regular\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1erenur\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"4px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(84, 42, 148)\",\"--framer-text-transform\":\"uppercase\"},children:\"Destaques recentes\"})}),className:\"framer-186r2in\",\"data-framer-name\":\"Destaques recentes\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Conte\\xfado e recursos dispon\\xedveis para te ajudar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"Conte\\xfado e recursos \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(4, 21, 39)\"},children:\"dispon\\xedveis para te ajudar\"})]}),className:\"framer-ue8ioj\",\"data-framer-name\":\"Conte\\xfado e recursos dispon\\xedveis para te ajudar\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11z8jg0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6zLnDEYM:{query:{from:{alias:\"wDyPoe8cY\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"wDyPoe8cY\",name:\"wnzd4ReUB\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"oR4mVTbyk\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"mOQlAv_WJ\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"q3aMvRkU2\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"Y1b9BnOCA\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"OwSueJ_ji\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wDyPoe8cY\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:9},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"wDyPoe8cY\",name:\"wnzd4ReUB\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"oR4mVTbyk\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"mOQlAv_WJ\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"q3aMvRkU2\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"Y1b9BnOCA\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"OwSueJ_ji\",type:\"Identifier\"},{collection:\"wDyPoe8cY\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idwDyPoe8cY,mOQlAv_WJ:mOQlAv_WJwDyPoe8cY,oR4mVTbyk:oR4mVTbykwDyPoe8cY,OwSueJ_ji:OwSueJ_jiwDyPoe8cY,q3aMvRkU2:q3aMvRkU2wDyPoe8cY,wnzd4ReUB:wnzd4ReUBwDyPoe8cY,Y1b9BnOCA:Y1b9BnOCAwDyPoe8cY},index)=>{wnzd4ReUBwDyPoe8cY??=\"\";oR4mVTbykwDyPoe8cY??=\"\";mOQlAv_WJwDyPoe8cY??=\"\";q3aMvRkU2wDyPoe8cY??=\"\";Y1b9BnOCAwDyPoe8cY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wDyPoe8cY-${idwDyPoe8cY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wnzd4ReUB:wnzd4ReUBwDyPoe8cY},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{wnzd4ReUB:wnzd4ReUBwDyPoe8cY},webPageId:\"FVFFVa36B\"},implicitPathVariables:undefined},{href:{pathVariables:{wnzd4ReUB:wnzd4ReUBwDyPoe8cY},webPageId:\"FVFFVa36B\"},implicitPathVariables:undefined},{href:{pathVariables:{wnzd4ReUB:wnzd4ReUBwDyPoe8cY},webPageId:\"FVFFVa36B\"},implicitPathVariables:undefined},{href:{pathVariables:{wnzd4ReUB:wnzd4ReUBwDyPoe8cY},webPageId:\"FVFFVa36B\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 64px, 1320px), 450px), 330px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:`max(min(min(${componentViewport?.width||\"100vw\"} - 128px, 1320px), 450px), 330px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3auds4-container\",id:`${wnzd4ReUBwDyPoe8cY}-3auds4`,nodeId:\"G5wqXvnpi\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation22,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{zGJ6QC_66:resolvedLinks[2]},ipygzAfDz:{zGJ6QC_66:resolvedLinks[3]},Z6zLnDEYM:{zGJ6QC_66:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BlogPostCard,{ab0juvcIk:oR4mVTbykwDyPoe8cY,height:\"100%\",id:\"G5wqXvnpi\",layoutId:\"G5wqXvnpi\",M_MGr7F7G:\"text\",Mv8EkU2uo:Y1b9BnOCAwDyPoe8cY,nb__78mEl:mOQlAv_WJwDyPoe8cY,style:{maxWidth:\"100%\",width:\"100%\"},TkqpF6UsB:toResponsiveImage(OwSueJ_jiwDyPoe8cY),width:\"100%\",YHgiYgVzv:q3aMvRkU2wDyPoe8cY,zGJ6QC_66:resolvedLinks[0]})})})})})})})},idwDyPoe8cY);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvh85n\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1sgt7x4 hidden-1ofvaal\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1003,intrinsicWidth:1591,svg:'<svg width=\"1591\" height=\"1003\" viewBox=\"-1 -1 1591 1003\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M554.477 52.0961L1339.34 1.82449C1353.1 0.943382 1366.9 1.33534 1380.59 2.99535L1393.94 4.61514C1503.62 17.9204 1584.1 114.143 1577.8 224.448C1576.04 255.322 1567.46 285.422 1552.68 312.586L1265.26 840.925C1245.48 877.294 1216.97 908.18 1182.3 930.809L1161.07 944.665C1106.24 980.452 1039.56 993.301 975.357 980.451L931.084 971.589C911.797 967.728 893.033 961.605 875.181 953.346L214.772 647.817C183.017 633.126 154.958 611.503 132.661 584.539L122.856 572.682C52.7992 487.961 57.2458 364.215 133.203 284.742C146.117 271.23 160.724 259.445 176.661 249.68L439.842 88.4187C474.529 67.1646 513.879 54.6964 554.477 52.0961Z\" fill=\"#B351FC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhf4ev\",\"data-framer-name\":\"Group 43\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atraia e mantenha  \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-line-height\":\"72px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mais clientes\"})]})},ipygzAfDz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atraia e mantenha  \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mais clientes\"})]})},Z6zLnDEYM:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"87.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atraia e mantenha  \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"87.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mais clientes\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"97.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atraia e mantenha  \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-line-height\":\"97.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"mais clientes\"})]}),className:\"framer-1dfcdah\",\"data-framer-name\":\"Attract and retain more customers.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-puvrgg\",\"data-framer-name\":\"Frame 43\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zhb65\",\"data-framer-name\":\"span.jsx-1124218087\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ai5i9m-container\",nodeId:\"xO4BpttX3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{CCsR2Qxks:\"https://opens.com.br/widget-embed?yuniqueId=402f3981-8482-40cc-89e3-2b005177ca97&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\"}},children:/*#__PURE__*/_jsx(BotOCTA,{CCsR2Qxks:\"https://yunique-app.opens.com.br/?yuniqueId=76d071fa-7957-432d-8bc4-0f2fd47d0e2a&openYuniqueWidget=true&fullscreen=true&goToChat=true&hideHeader=true&hidePoweredByOpens=true\",height:\"100%\",id:\"xO4BpttX3\",layoutId:\"xO4BpttX3\",sgejl1KWR:\"Quero uma demonstra\\xe7\\xe3o\",variant:\"hZ0nBq4I0\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-109wb9h\",\"data-framer-name\":\"Frame 1000003818\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fgj1ec\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(179, 81, 252)\"},children:\"OPENS\"})}),className:\"framer-nmkgay\",\"data-framer-name\":\"Heading 2 \u2192 Ai PDF - Frequently Asked Questions\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ipygzAfDz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(1, 3, 63)\"},children:\"Perguntas frequentes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(1, 3, 63)\"},children:\"Perguntas frequentes\"})}),className:\"framer-vfimov\",\"data-framer-name\":\"Heading 2 \u2192 Ai PDF - Frequently Asked Questions\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdssr1\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jeqo2g-container\",nodeId:\"Q8oBIQsof\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"Consigo acompanhar em tempo real as filas de atendimento?\",height:\"100%\",id:\"Q8oBIQsof\",layoutId:\"Q8oBIQsof\",LTxzObt9j:\"Sim. O gestor pode acompanhar toda a opera\\xe7\\xe3o em tempo real atrav\\xe9s de um Painel de Chamadas e um Painel de Conversas.\\nAssim, \\xe9 poss\\xedvel saber uma s\\xe9rie de informa\\xe7\\xf5es relevantes que permitem adequar melhor as equipes, como:\\nTotal de chamadas ou chats recebidos\\nN\\xfamero de chamadas perdidas\\nHor\\xe1rio de pico das liga\\xe7\\xf5es\\nTempo m\\xe9dio de espera na fila\\nRespostas pendentes no chat\\nEssas e outras informa\\xe7\\xf5es que s\\xe3o disponibilizadas contribuem para a\\xe7\\xf5es estrat\\xe9gicas, focadas no que realmente importa: atender todos os clientes de prontid\\xe3o, encaminhar corretamente as tratativas, cultivar um relacionamento duradouro e consolidar a imagem da marca no mercado.\",style:{width:\"100%\"},variant:\"wq9LOqYen\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q1dcn5-container\",nodeId:\"BKTGbNvzU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"\\xc9 poss\\xedvel acompanhar m\\xe9tricas de CSAT?\",height:\"100%\",id:\"BKTGbNvzU\",layoutId:\"BKTGbNvzU\",LTxzObt9j:\"Sim, no Yunique voc\\xea pode configurar um percentual m\\xednimo de pesquisas que voc\\xea quer enviar para o cliente e ainda acompanhar em tempo real a performance deste indicador. Exemplo, a cada 100 atendimentos a meta \\xe9 enviar 70% para o Csat e atingir 90% de satisfa\\xe7\\xe3o.\",style:{width:\"100%\"},variant:\"PsS8wUKCW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13qc00t-container\",nodeId:\"HEU2mzEO1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"Consigo ter identifica\\xe7\\xe3o de clientes em espera?\",height:\"100%\",id:\"HEU2mzEO1\",layoutId:\"HEU2mzEO1\",LTxzObt9j:\"Sim. O Yunique oferece uma s\\xe9rie de possibilidades para a identifica\\xe7\\xe3o do cliente e cria\\xe7\\xe3o de contextos personalizados, tornando o atendimento ao seu cliente \\xfanico.\\n\\nPelo n\\xfamero do telefone, sem nenhuma outra integra\\xe7\\xe3o, a plataforma j\\xe1 consegue identificar se este cliente j\\xe1 ligou nas \\xfaltimas 24 horas e direcion\\xe1-lo para o \\xfaltimo atendente ou ainda gerar uma atividade de retorno caso a liga\\xe7\\xe3o tenha sido abandonada em uma fila. \\n\\nIntegrado com outras bases de dados o Yunique vai muito al\\xe9m, sendo capaz de construir Uras personalizadas para o cliente de acordo com o seu perfil.\\n\\nExemplo: Um cliente novo est\\xe1 ligando para a sua empresa pela primeira vez,  n\\xe3o \\xe9 preciso oferecer para ele menus de suporte, financeiro ou pagamento e sim coloc\\xe1-lo diante de um vendedor imediatamente.\",style:{width:\"100%\"},variant:\"PsS8wUKCW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxsddx-container\",nodeId:\"RmSq3MY9K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"Consigo gravar todas as liga\\xe7\\xf5es?\",height:\"100%\",id:\"RmSq3MY9K\",layoutId:\"RmSq3MY9K\",LTxzObt9j:\"Sim, as liga\\xe7\\xf5es s\\xe3o configuradas por operador e habilitadas para serem gravadas ou n\\xe3o de acordo com a necessidade. O armazenamento estar\\xe1 de acordo com a necessidade de cada neg\\xf3cio sempre seguindo as normas da LGPD.\",style:{width:\"100%\"},variant:\"PsS8wUKCW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zstw10-container\",nodeId:\"rcLCzXosw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"\\xc9 poss\\xedvel integrar com meu CRM ou ERP?\",height:\"100%\",id:\"rcLCzXosw\",layoutId:\"rcLCzXosw\",LTxzObt9j:\"Todas nossas API's de integra\\xe7\\xe3o est\\xe3o abertas e s\\xe3o de f\\xe1cil configura\\xe7\\xe3o. J\\xe1 possu\\xedmos diversas integra\\xe7\\xf5es como com: RD Station, Movidesk, Superl\\xf3gica, Rbx Soft, Ubots, Jira Software, Iso Crm, Piperun, Segware, Zapier, IXC soft, Zendesk, Integromat, Slack, entre outras.\\n\\nEm caso de d\\xfavida, converse com nossos especialistas e eles podem te ajudar a validar os requisitos e possibilidades das integra\\xe7\\xf5es.\",style:{width:\"100%\"},variant:\"PsS8wUKCW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`},ipygzAfDz:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1180px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1180px) - 128px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9vd4ri-container\",nodeId:\"TAb5mrE2f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{gvPjWxC7E:\"Como s\\xe3o gerados os n\\xfameros de protocolo?\",height:\"100%\",id:\"TAb5mrE2f\",layoutId:\"TAb5mrE2f\",LTxzObt9j:\"Os n\\xfameros de protocolo \\xe9 um recurso que pode ser configurado na plataforma, feito isso, haver\\xe1 um protocolo gerado automaticamente a cada atendimento.\",style:{width:\"100%\"},variant:\"PsS8wUKCW\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx5k2h\",\"data-framer-name\":\"Rectangle 14\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:821,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvstkk-container\",nodeId:\"uqwvbV_L8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aUGHtX11d:{variant:\"YPOV29UdN\"},ipygzAfDz:{variant:\"YPOV29UdN\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"uqwvbV_L8\",layoutId:\"uqwvbV_L8\",style:{width:\"100%\"},variant:\"MC1YwLd7f\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RwgGH.framer-lux5qc, .framer-RwgGH .framer-lux5qc { display: block; }\",\".framer-RwgGH.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1291px; }\",\".framer-RwgGH .framer-1wabqeu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-1cvmyxn-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 2; }\",\".framer-RwgGH .framer-1u0dd1e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 775px; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 128px 64px 0px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-xeufj0 { bottom: 91px; flex: none; height: 99px; left: calc(50.426026336173535% - 284px / 2); overflow: hidden; position: absolute; width: 284px; z-index: 2; }\",\".framer-RwgGH .framer-l9x1v { aspect-ratio: 3.506172839506173 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 81px); left: 0px; position: absolute; right: 0px; }\",\".framer-RwgGH .framer-17j70la { bottom: 178px; flex: none; height: 151px; left: calc(50.50348567002326% - 284px / 2); overflow: hidden; position: absolute; width: 284px; z-index: 2; }\",\".framer-RwgGH .framer-wcc7wl { aspect-ratio: 2.1194029850746268 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 134px); left: 0px; position: absolute; right: 0px; }\",\".framer-RwgGH .framer-1xl4e4c, .framer-RwgGH .framer-pwp391, .framer-RwgGH .framer-1vginr8, .framer-RwgGH .framer-1ikv8lu, .framer-RwgGH .framer-1wz1u3m, .framer-RwgGH .framer-186r2in, .framer-RwgGH .framer-ue8ioj, .framer-RwgGH .framer-1dfcdah, .framer-RwgGH .framer-nmkgay, .framer-RwgGH .framer-vfimov { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RwgGH .framer-wkejhz { flex: none; height: auto; max-width: 770px; min-width: 7%; position: relative; text-shadow: 30px 1px 40px #1C0D35; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-RwgGH .framer-962bt8, .framer-RwgGH .framer-puvrgg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RwgGH .framer-k9hv9j, .framer-RwgGH .framer-16zhb65 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RwgGH .framer-6mflmy-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-RwgGH .framer-1txc2yy-container, .framer-RwgGH .framer-ao4zbv-container, .framer-RwgGH .framer-1ai5i9m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RwgGH .framer-p0xlki { bottom: -226px; flex: none; height: 959px; position: absolute; right: -615px; width: 98%; z-index: 1; }\",\".framer-RwgGH .framer-16jjt64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 378px; justify-content: flex-start; overflow: visible; padding: 144px 0px 0px 0px; position: relative; width: 1323px; z-index: 1; }\",\".framer-RwgGH .framer-1t39nxs-container { flex: none; height: 108px; opacity: 0.5; position: relative; width: 1245px; }\",\".framer-RwgGH .framer-1d0luh3, .framer-RwgGH .framer-f9nusu, .framer-RwgGH .framer-15edgej, .framer-RwgGH .framer-hg48sk, .framer-RwgGH .framer-1aipt3g, .framer-RwgGH .framer-qnx2zn { -webkit-filter: brightness(0) grayscale(1) invert(1); aspect-ratio: 3.036363636363636 / 1; filter: brightness(0) grayscale(1) invert(1); gap: 10px; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 167px; }\",\".framer-RwgGH .framer-1lwceol { -webkit-filter: brightness(0) grayscale(1) invert(1); aspect-ratio: 3.036363636363636 / 1; filter: brightness(0) grayscale(1) invert(1); gap: 10px; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 185px; }\",\".framer-RwgGH .framer-83gilz { background: linear-gradient(0deg, rgba(0, 0, 0, 0) 89.99999761581421%, rgba(255, 255, 255, 0.05) 100%); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; flex: none; height: 1139px; left: calc(50.17349063150592% - 1000px / 2); position: absolute; top: 845px; width: 1000px; z-index: 1; }\",\".framer-RwgGH .framer-3gnwnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 135px 64px 135px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-9ss86k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-96xo7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-asjsjt { flex: none; height: auto; max-width: 544px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-RwgGH .framer-1d1iqy6 { aspect-ratio: 2.2562724014336917 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 515px); max-width: 1210px; overflow: visible; position: relative; width: 100%; }\",\".framer-RwgGH .framer-1mdgbil { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 1119px; justify-content: flex-end; max-width: 1128px; overflow: visible; padding: 82px 64px 64px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-itdc40 { background: linear-gradient(0deg, rgba(152, 116, 255, 0) 89.99999761581421%, rgba(69, 39, 155, 0.05) 100%); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -2812px; flex: none; left: calc(50.00000000000002% - 1000px / 2); opacity: 0.19; pointer-events: none; position: absolute; top: 24px; width: 1000px; z-index: 0; }\",\".framer-RwgGH .framer-1nbzosb, .framer-RwgGH .framer-lp0oqk, .framer-RwgGH .framer-gvsib1, .framer-RwgGH .framer-nnh34m, .framer-RwgGH .framer-1fu1a64, .framer-RwgGH .framer-1upshh7, .framer-RwgGH .framer-y6oa68, .framer-RwgGH .framer-r23jdq, .framer-RwgGH .framer-13xfe2d, .framer-RwgGH .framer-eh2f6u, .framer-RwgGH .framer-9619cm, .framer-RwgGH .framer-1vookin, .framer-RwgGH .framer-1odea5u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RwgGH .framer-hnnzl8 { align-content: flex-end; align-items: flex-end; background-color: #dbb7ff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 602px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RwgGH .framer-rowuyt { border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 482px; overflow: visible; position: relative; width: 772px; }\",\".framer-RwgGH .framer-1lt68lh { background: linear-gradient(0deg, rgba(152, 116, 255, 0) 89.99999761581421%, rgba(69, 39, 155, 0.05) 100%); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -2757px; flex: none; height: 1136px; left: calc(50.00000000000002% - 1000px / 2); position: absolute; width: 1000px; z-index: 1; }\",\".framer-RwgGH .framer-6x77vv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-evenly; max-width: 1440px; overflow: visible; padding: 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-mh7op9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 385px; justify-content: flex-start; max-width: 390px; min-width: 350px; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-RwgGH .framer-1sdxmaq-container { flex: none; height: 200px; position: relative; width: 336px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RwgGH .framer-1igd3z4, .framer-RwgGH .framer-1fcgliv { flex: none; height: auto; min-width: 310px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RwgGH .framer-1io961o, .framer-RwgGH .framer-htm45a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 410px; justify-content: flex-start; max-width: 390px; min-width: 350px; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-RwgGH .framer-1n0hxnu-container { flex: none; height: 200px; position: relative; width: 379px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RwgGH .framer-n02e3t-container { flex: none; height: 200px; position: relative; width: 334px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RwgGH .framer-1v0v7sf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 13px 64px 0px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-w87f5v { flex: none; height: 478px; overflow: hidden; position: relative; width: 720px; }\",\".framer-RwgGH .framer-9ow4iz { flex: none; height: 347px; left: calc(49.861111111111136% - 284px / 2); overflow: hidden; position: absolute; top: calc(52.719665271966555% - 347px / 2); width: 284px; }\",\".framer-RwgGH .framer-s5aegw { flex: none; height: 346px; left: calc(50.00000000000002% - 282.5px / 2); position: absolute; top: calc(49.85590778097985% - 346px / 2); width: 283px; }\",\".framer-RwgGH .framer-1ula4g2 { flex: none; height: 200px; left: 478px; overflow: hidden; position: absolute; top: 53px; width: 163px; }\",\".framer-RwgGH .framer-mr0ony, .framer-RwgGH .framer-1ggqhmr, .framer-RwgGH .framer-18czk5q { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-RwgGH .framer-jkle6k { flex: none; height: 201px; left: 79px; overflow: hidden; position: absolute; top: 53px; width: 163px; }\",\".framer-RwgGH .framer-1j7777b { flex: none; height: auto; left: 50%; position: absolute; top: 46%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-RwgGH .framer-zg76bk { align-content: center; align-items: center; bottom: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 576px; }\",\".framer-RwgGH .framer-1l3mwmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 124px 0px 124px 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-1diza5p-container { flex: none; height: 631px; position: relative; width: 1077px; }\",\".framer-RwgGH .framer-1cqt08y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1024px; }\",\".framer-RwgGH .framer-hyrqja, .framer-RwgGH .framer-1wtxhjo { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 87px); position: relative; width: 87px; }\",\".framer-RwgGH .framer-e7tjv3, .framer-RwgGH .framer-lfmweb { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RwgGH .framer-ut6qww, .framer-RwgGH .framer-128lmpr { flex: none; height: 88px; overflow: visible; position: relative; width: 370px; }\",\".framer-RwgGH .framer-egziic { --border-bottom-width: 1px; --border-color: #e6e6e6; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: var(--framer-aspect-ratio-supported, 88px); left: 0px; position: absolute; top: 0px; width: 88px; }\",\".framer-RwgGH .framer-1wu510a { flex: none; height: auto; left: 118px; position: absolute; top: 15px; white-space: pre; width: auto; }\",\".framer-RwgGH .framer-11rr80o, .framer-RwgGH .framer-yq2xls { flex: none; height: auto; left: 118px; position: absolute; top: 43px; white-space: pre; width: auto; }\",\".framer-RwgGH .framer-lpxo15 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1024px; }\",\".framer-RwgGH .framer-1wuvf6v { --border-bottom-width: 1px; --border-color: var(--token-24c77751-eb95-4fdb-8e3b-017de4f80b7d, #b351fc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: var(--framer-aspect-ratio-supported, 88px); left: 0px; position: absolute; top: 0px; width: 88px; }\",\".framer-RwgGH .framer-18419wi { flex: none; height: 27px; left: 118px; position: absolute; top: 15px; white-space: pre-wrap; width: 252px; word-break: break-word; word-wrap: break-word; }\",\".framer-RwgGH .framer-5nn07l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 64px 80px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-1isyo1c { background-color: #1c0d35; bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-RwgGH .framer-1stnft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 265px; justify-content: center; max-width: 1441px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-bnw2rz, .framer-RwgGH .framer-8sykuc, .framer-RwgGH .framer-1q6axcs { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-RwgGH .framer-1rrjep6-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-RwgGH .framer-prml6f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-evenly; max-width: 1441px; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-19al37i, .framer-RwgGH .framer-86na8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 410px; justify-content: flex-start; max-width: 460px; min-width: 350px; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-RwgGH .framer-1owz6xo-container { flex: none; height: 202px; max-width: 100%; position: relative; width: 95%; }\",\".framer-RwgGH .framer-1k09dhc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 385px; justify-content: flex-start; max-width: 460px; min-width: 350px; overflow: visible; padding: 0px; position: relative; width: 30%; }\",\".framer-RwgGH .framer-eerd14-container { flex: none; height: 204px; position: relative; width: 96%; }\",\".framer-RwgGH .framer-1dt4tx2-container { flex: none; height: 202px; position: relative; width: 104%; }\",\".framer-RwgGH .framer-1560pwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 755px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-r57m8n-container { flex: none; height: auto; max-width: 1024px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-4c9dh2 { flex: none; height: 582px; overflow: visible; position: relative; width: 764px; }\",\".framer-RwgGH .framer-v0hd8p { background: linear-gradient(179.7442661928692deg, #ebd1ff 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 25px; flex: none; height: 26px; left: 66px; position: absolute; width: 111px; }\",\".framer-RwgGH .framer-11y4h9x { background: linear-gradient(179.7442661928692deg, #ebd1ff 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 25px; flex: none; height: 51px; left: 205px; position: absolute; width: 111px; }\",\".framer-RwgGH .framer-1lqj4av { background: linear-gradient(179.7442661928692deg, #ebd1ff 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 25px; flex: none; height: 75px; left: calc(52.3560209424084% - 110.6603773584905px / 2); position: absolute; width: 111px; }\",\".framer-RwgGH .framer-n4w5kk { background: linear-gradient(179.7442661928692deg, #ebd1ff 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 25px; flex: none; height: 247px; left: 484px; position: absolute; width: 111px; }\",\".framer-RwgGH .framer-1tzsdbd { background: linear-gradient(180deg, #a228fd 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 25px; flex: none; height: 430px; left: 624px; position: absolute; width: 111px; }\",\".framer-RwgGH .framer-vn2dxd { flex: none; gap: 12px; height: 245px; left: 13px; overflow: visible; position: absolute; top: calc(53.092783505154664% - 245px / 2); width: 515px; }\",\".framer-RwgGH .framer-1c5bfae, .framer-RwgGH .framer-1edmyvs { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-RwgGH .framer-10925ju { bottom: 0px; flex: none; height: 123px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-RwgGH .framer-1sl7acd { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 64px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-RwgGH .framer-u21oku { bottom: -17px; flex: none; height: 470px; left: 747px; overflow: hidden; position: absolute; width: 9px; }\",\".framer-RwgGH .framer-1yxr92q { bottom: 9px; flex: none; height: 9px; position: absolute; right: -15px; width: 765px; }\",\".framer-RwgGH .framer-3ne77x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: 1439px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1346px; z-index: 1; }\",\".framer-RwgGH .framer-ivgnk5 { align-content: center; align-items: center; background-color: rgba(178, 81, 252, 0.1); border-bottom-left-radius: 135px; border-bottom-right-radius: 135px; border-top-left-radius: 135px; border-top-right-radius: 135px; box-shadow: 0px 0px 2px 48px rgba(178, 81, 252, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 48px; position: relative; width: min-content; }\",\".framer-RwgGH .framer-k5nas6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 778px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-RwgGH .framer-16ch5ti { flex: none; height: 107px; position: relative; width: 171px; z-index: 1; }\",\".framer-RwgGH .framer-10b75rd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-RwgGH .framer-1erenur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-11z8jg0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; max-width: 1320px; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-3auds4-container { flex: 1 0 0px; height: auto; max-width: 450px; min-width: 330px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RwgGH .framer-1dvh85n { flex: none; height: 1162px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-1sgt7x4 { flex: none; height: 1003px; left: 0px; position: absolute; right: 0px; top: calc(49.3975903614458% - 1003px / 2); }\",\".framer-RwgGH .framer-qhf4ev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 293px; justify-content: center; left: calc(49.96530187369884% - 799px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(46.98795180722894% - 293px / 2); width: 799px; }\",\".framer-RwgGH .framer-109wb9h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RwgGH .framer-fgj1ec { align-content: flex-start; align-items: flex-start; background-color: rgba(179, 81, 252, 0.05); border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 48px 64px 64px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-RwgGH .framer-1xdssr1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RwgGH .framer-1jeqo2g-container, .framer-RwgGH .framer-q1dcn5-container, .framer-RwgGH .framer-13qc00t-container, .framer-RwgGH .framer-rxsddx-container, .framer-RwgGH .framer-zstw10-container, .framer-RwgGH .framer-9vd4ri-container, .framer-RwgGH .framer-pvstkk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RwgGH .framer-jx5k2h { background-color: #1a0630; flex: none; height: 1280px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",'.framer-RwgGH[data-border=\"true\"]::after, .framer-RwgGH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1078px) and (max-width: 1290px) { .framer-RwgGH.framer-72rtr7 { width: 1078px; } .framer-RwgGH .framer-1u0dd1e { height: 573px; justify-content: flex-end; padding: 29px 64px 62px 64px; } .framer-RwgGH .framer-xeufj0 { height: unset; left: 674px; order: 7; top: 205px; } .framer-RwgGH .framer-17j70la { height: unset; left: 675px; order: 5; top: 66px; } .framer-RwgGH .framer-1xl4e4c { order: 0; } .framer-RwgGH .framer-wkejhz { order: 1; text-shadow: 30px 1px 40px #1c0d35; width: 771px; } .framer-RwgGH .framer-pwp391 { order: 2; } .framer-RwgGH .framer-962bt8 { order: 3; } .framer-RwgGH .framer-1txc2yy-container { order: 6; } .framer-RwgGH .framer-p0xlki { bottom: unset; height: 940px; order: 4; right: -757px; top: calc(26.527050610820268% - 940px / 2); width: 105%; } .framer-RwgGH .framer-83gilz { height: 973px; left: calc(50.19531250000002% - 1000px / 2); top: 699px; } .framer-RwgGH .framer-3gnwnq { padding: 68px 64px 64px 64px; } .framer-RwgGH .framer-1d1iqy6 { height: var(--framer-aspect-ratio-supported, 421px); } .framer-RwgGH .framer-1mdgbil { height: min-content; } .framer-RwgGH .framer-itdc40 { bottom: -2799px; top: 11px; } .framer-RwgGH .framer-hnnzl8 { aspect-ratio: 1.4883720930232558 / 1; height: var(--framer-aspect-ratio-supported, 639px); } .framer-RwgGH .framer-rowuyt { width: 80%; } .framer-RwgGH .framer-1diza5p-container { height: 669px; width: 954px; } .framer-RwgGH .framer-3ne77x { padding: 64px; width: 100%; } .framer-RwgGH .framer-ivgnk5, .framer-RwgGH .framer-k5nas6 { width: 100%; } .framer-RwgGH .framer-1sgt7x4 { aspect-ratio: 1.4356929212362912 / 1; height: var(--framer-aspect-ratio-supported, 1003px); right: unset; top: 49%; transform: translateY(-50%); width: 100%; } .framer-RwgGH .framer-jx5k2h { height: 1055px; }}\",\"@media (min-width: 758px) and (max-width: 1077px) { .framer-RwgGH.framer-72rtr7 { width: 758px; } .framer-RwgGH .framer-1u0dd1e { height: 716px; justify-content: flex-end; padding: 29px 64px 62px 64px; } .framer-RwgGH .framer-xeufj0 { order: 7; } .framer-RwgGH .framer-17j70la { order: 5; } .framer-RwgGH .framer-1xl4e4c { order: 0; text-shadow: 30px 1px 40px #1c0d36; z-index: 3; } .framer-RwgGH .framer-wkejhz { order: 1; text-shadow: 30px 1px 40px #1c0d35; } .framer-RwgGH .framer-pwp391 { order: 2; } .framer-RwgGH .framer-962bt8 { order: 3; } .framer-RwgGH .framer-1txc2yy-container { order: 6; } .framer-RwgGH .framer-p0xlki { bottom: unset; height: 896px; order: 4; right: -343px; top: calc(16.480446927374324% - 896px / 2); width: 100%; } .framer-RwgGH .framer-16jjt64 { height: 307px; width: 100%; } .framer-RwgGH .framer-1t39nxs-container, .framer-RwgGH .framer-ivgnk5, .framer-RwgGH .framer-k5nas6 { width: 100%; } .framer-RwgGH .framer-83gilz { left: -108px; right: -82px; top: 856px; width: unset; } .framer-RwgGH .framer-3gnwnq { padding: 135px 64px 82px 64px; } .framer-RwgGH .framer-1d1iqy6 { height: var(--framer-aspect-ratio-supported, 279px); } .framer-RwgGH .framer-1mdgbil { height: 1039px; } .framer-RwgGH .framer-itdc40 { bottom: -2859px; top: 71px; } .framer-RwgGH .framer-hnnzl8 { aspect-ratio: 1.4149377593360997 / 1; height: var(--framer-aspect-ratio-supported, 445px); } .framer-RwgGH .framer-rowuyt { height: 90%; overflow: hidden; width: 90%; will-change: var(--framer-will-change-override, transform); } .framer-RwgGH .framer-mh7op9, .framer-RwgGH .framer-1io961o, .framer-RwgGH .framer-htm45a { height: min-content; padding: 0px 0px 32px 0px; width: 80%; } .framer-RwgGH .framer-1diza5p-container { height: 812px; width: 677px; } .framer-RwgGH .framer-1stnft { align-content: center; align-items: center; } .framer-RwgGH .framer-19al37i, .framer-RwgGH .framer-1k09dhc, .framer-RwgGH .framer-86na8d { flex: 1 0 0px; height: min-content; padding: 0px 0px 32px 0px; width: 1px; } .framer-RwgGH .framer-v0hd8p { bottom: 75px; height: 21px; left: 114px; width: 90px; } .framer-RwgGH .framer-11y4h9x { bottom: 75px; height: 41px; left: 226px; width: 90px; } .framer-RwgGH .framer-1lqj4av { bottom: 75px; height: 61px; left: calc(50.26178010471206% - 89.81568627450974px / 2); width: 90px; } .framer-RwgGH .framer-n4w5kk { bottom: 75px; height: 200px; left: 452px; width: 90px; } .framer-RwgGH .framer-1tzsdbd { bottom: 75px; height: 348px; left: 566px; width: 90px; } .framer-RwgGH .framer-vn2dxd { left: 81px; top: calc(50.00000000000002% - 245px / 2); } .framer-RwgGH .framer-u21oku { bottom: 41px; height: 380px; left: 665px; width: 7px; } .framer-RwgGH .framer-1yxr92q { bottom: 62px; height: 7px; left: calc(49.869109947644006% - 619px / 2); right: unset; width: 619px; } .framer-RwgGH .framer-3ne77x { padding: 64px; width: 100%; } .framer-RwgGH .framer-1sgt7x4 { aspect-ratio: 1.4356929212362912 / 1; bottom: var(--framer-aspect-ratio-supported, -126px); height: unset; left: 47%; right: unset; top: -77px; transform: translateX(-50%); width: 136%; } .framer-RwgGH .framer-qhf4ev { left: calc(50.00000000000002% - 799px / 2); top: calc(50.43029259896732% - 293px / 2); } .framer-RwgGH .framer-109wb9h { background-color: #fbf7ff; } .framer-RwgGH .framer-fgj1ec { background-color: unset; padding: 48px 0px 64px 0px; width: 90%; } .framer-RwgGH .framer-jx5k2h { height: 250.63025210084032vh; }}\",\"@media (max-width: 757px) { .framer-RwgGH.framer-72rtr7 { width: 390px; } .framer-RwgGH .framer-1cvmyxn-container { order: 0; } .framer-RwgGH .framer-1u0dd1e { align-content: center; align-items: center; gap: 12px; height: 736px; justify-content: center; order: 1; padding: 29px 20px 62px 20px; } .framer-RwgGH .framer-1xl4e4c { order: 0; text-shadow: 30px 1px 40px #1c0d36; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; } .framer-RwgGH .framer-wkejhz { order: 1; text-shadow: 30px 1px 40px #1c0d35; } .framer-RwgGH .framer-pwp391 { order: 2; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-RwgGH .framer-962bt8 { align-content: center; align-items: center; flex-direction: column; gap: 16px; order: 3; padding: 24px; width: 100%; } .framer-RwgGH .framer-k9hv9j { max-width: 350px; } .framer-RwgGH .framer-1txc2yy-container { order: 6; } .framer-RwgGH .framer-p0xlki { bottom: unset; height: 455px; opacity: 0.26; order: 4; right: -380px; top: calc(9.918478260869588% - 455px / 2); width: 585px; } .framer-RwgGH .framer-16jjt64 { height: 222px; justify-content: center; order: 2; padding: 32px 0px 0px 0px; width: 100%; } .framer-RwgGH .framer-1t39nxs-container { width: 100%; } .framer-RwgGH .framer-83gilz { height: 990px; left: 0px; order: 4; right: -8px; top: 762px; width: unset; } .framer-RwgGH .framer-3gnwnq { gap: 38px; order: 5; padding: 95px 14px 95px 14px; } .framer-RwgGH .framer-9ss86k { order: 3; } .framer-RwgGH .framer-1d1iqy6 { height: var(--framer-aspect-ratio-supported, 160px); order: 4; } .framer-RwgGH .framer-1mdgbil { gap: 26px; height: min-content; order: 6; padding: 21px 32px 32px 32px; } .framer-RwgGH .framer-hnnzl8 { aspect-ratio: 1.4149377593360997 / 1; height: var(--framer-aspect-ratio-supported, 230px); } .framer-RwgGH .framer-rowuyt { height: 90%; overflow: hidden; width: 90%; will-change: var(--framer-will-change-override, transform); } .framer-RwgGH .framer-6x77vv { gap: 16px; justify-content: flex-start; order: 7; padding: 64px 16px 64px 16px; } .framer-RwgGH .framer-mh7op9, .framer-RwgGH .framer-19al37i, .framer-RwgGH .framer-1k09dhc, .framer-RwgGH .framer-86na8d { flex: 1 0 0px; height: min-content; padding: 0px 0px 32px 0px; width: 1px; } .framer-RwgGH .framer-1io961o, .framer-RwgGH .framer-htm45a { height: min-content; padding: 0px 0px 32px 0px; width: 80%; } .framer-RwgGH .framer-1v0v7sf { order: 8; padding: 0px; } .framer-RwgGH .framer-w87f5v { height: 357px; width: 100%; } .framer-RwgGH .framer-9ow4iz { height: 195px; left: calc(49.743589743589766% - 161px / 2); top: calc(48.45938375350142% - 195px / 2); width: 161px; } .framer-RwgGH .framer-s5aegw { bottom: 0px; height: unset; left: 0px; top: 0px; width: 99%; } .framer-RwgGH .framer-1ula4g2 { height: 113px; left: 260px; top: 60px; width: 92px; } .framer-RwgGH .framer-mr0ony { bottom: -1px; left: calc(50.00000000000002% - 100% / 2); right: unset; width: 100%; } .framer-RwgGH .framer-jkle6k { height: 113px; left: 36px; top: 61px; width: 92px; } .framer-RwgGH .framer-1ggqhmr { left: calc(50.00000000000002% - 100% / 2); right: unset; width: 100%; } .framer-RwgGH .framer-1j7777b { top: 116px; transform: translateX(-50%); } .framer-RwgGH .framer-zg76bk { bottom: 68px; left: 51%; width: 360px; } .framer-RwgGH .framer-1l3mwmx { order: 9; } .framer-RwgGH .framer-1diza5p-container { height: 1197px; max-width: 101%; min-width: 100px; width: 344px; z-index: 1; } .framer-RwgGH .framer-5nn07l { order: 10; padding: 80px 16px 80px 16px; } .framer-RwgGH .framer-1stnft { align-content: center; align-items: center; } .framer-RwgGH .framer-1560pwx { order: 11; } .framer-RwgGH .framer-4c9dh2 { height: 469px; order: 12; } .framer-RwgGH .framer-v0hd8p { bottom: 137px; height: 10px; left: 252px; width: 43px; } .framer-RwgGH .framer-11y4h9x { bottom: 137px; height: 19px; left: 306px; width: 43px; } .framer-RwgGH .framer-1lqj4av { bottom: 137px; height: 29px; left: calc(50.00000000000002% - 43px / 2); width: 43px; } .framer-RwgGH .framer-n4w5kk { bottom: 137px; height: 96px; left: 415px; width: 43px; } .framer-RwgGH .framer-1tzsdbd { bottom: unset; height: 167px; left: 471px; top: calc(52.87846481876335% - 167px / 2); width: 43px; } .framer-RwgGH .framer-vn2dxd { left: 81px; top: 82px; } .framer-RwgGH .framer-1c5bfae { left: 45%; top: 65px; transform: translateX(-50%); } .framer-RwgGH .framer-10925ju { bottom: 35px; height: 59px; left: 149px; right: unset; width: 315px; } .framer-RwgGH .framer-u21oku { bottom: unset; height: 183px; left: 518px; top: calc(54.58422174840087% - 183px / 2); width: 3px; } .framer-RwgGH .framer-1yxr92q { bottom: 131px; height: 3px; left: calc(50.00000000000002% - 298px / 2); right: unset; width: 298px; } .framer-RwgGH .framer-1erenur { order: 14; padding: 32px; } .framer-RwgGH .framer-ue8ioj, .framer-RwgGH .framer-vfimov { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-RwgGH .framer-1dvh85n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 287px; justify-content: center; order: 15; padding: 0px; } .framer-RwgGH .framer-qhf4ev { gap: 38px; height: 228px; left: unset; position: relative; top: unset; width: 391px; } .framer-RwgGH .framer-puvrgg { flex-direction: column; gap: 6px; } .framer-RwgGH .framer-109wb9h { background-color: #fbf7ff; order: 16; } .framer-RwgGH .framer-fgj1ec { background-color: unset; padding: 48px 0px 64px 0px; width: 90%; } .framer-RwgGH .framer-jx5k2h { height: 1063px; order: 17; } .framer-RwgGH .framer-pvstkk-container { order: 18; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13146\n * @framerIntrinsicWidth 1291\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Z6zLnDEYM\":{\"layout\":[\"fixed\",\"auto\"]},\"aUGHtX11d\":{\"layout\":[\"fixed\",\"auto\"]},\"ipygzAfDz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ouzNkRXIQ\":{\"pattern\":\":ouzNkRXIQ\",\"name\":\"ver-mais\"},\"UZbwDfy2n\":{\"pattern\":\":UZbwDfy2n\",\"name\":\"churn\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-RwgGH\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:13146,width:1291};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Jost\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jost/v19/92zPtBhPNqw79Ij1E865zBUv7myjJQVDPokMmuHL.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Jost\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/jost/v19/92zPtBhPNqw79Ij1E865zBUv7mxEIgVDPokMmuHL.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v11/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]},...HeaderFonts,...BotOCTAFonts,...SeeMoreFonts,...TickerFonts,...ChartsIllustrationFonts,...ClientIllustrationFonts,...CallsIllustrationFonts,...SlideshowFonts,...TestimonialsFonts,...BlogPostCardFonts,...AccordionFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1291\",\"framerScrollSections\":\"{\\\"ouzNkRXIQ\\\":{\\\"pattern\\\":\\\":ouzNkRXIQ\\\",\\\"name\\\":\\\"ver-mais\\\"},\\\"UZbwDfy2n\\\":{\\\"pattern\\\":\\\":UZbwDfy2n\\\",\\\"name\\\":\\\"churn\\\"}}\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z6zLnDEYM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aUGHtX11d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ipygzAfDz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"13146\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "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", "playOffscreen", "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", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "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", "item", "setDelta", "delta", "transition", "setPage", "index", "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", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "RichTextWithFX", "withFX", "RichText", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText", "RichTextWithFX", "css", "FrameraESzTudK3", "withCSS", "aESzTudK3_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gvPjWxC7E", "LTxzObt9j", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1o0noup", "args", "onTap1gnv5m7", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText", "SVG", "css", "FramerTi1ci6Mk3", "withCSS", "Ti1ci6Mk3_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "B07p1zA2E_default", "MotionDivWithFX", "withFX", "motion", "BotOCTAFonts", "btpeVPLdj_default", "SeeMoreFonts", "aESzTudK3_default", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "RichTextWithFX", "RichText", "ChartsIllustrationFonts", "X30DMXsgq_default", "ChartsIllustrationWithVariantAppearEffect", "withVariantAppearEffect", "ClientIllustrationFonts", "XBzSwRRaJ_default", "ClientIllustrationWithVariantAppearEffect", "CallsIllustrationFonts", "Em0ZPG2yH_default", "CallsIllustrationWithVariantAppearEffect", "SlideshowFonts", "Slideshow", "TestimonialsFonts", "zFFT4rVal_default", "BlogPostCardFonts", "EcLSM4IGd_default", "AccordionFonts", "Ti1ci6Mk3_default", "FooterFonts", "op4Kj3HcN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "animation10", "animation11", "transformTemplate1", "_", "t", "transformTemplate2", "animation12", "transition7", "animation13", "animation14", "transition8", "animation15", "animation16", "transition9", "animation17", "animation18", "transition10", "animation19", "animation20", "transition11", "animation21", "animation22", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "wnzd4ReUBwDyPoe8cY", "oR4mVTbykwDyPoe8cY", "mOQlAv_WJwDyPoe8cY", "q3aMvRkU2wDyPoe8cY", "Y1b9BnOCAwDyPoe8cY", "OwSueJ_jiwDyPoe8cY", "idwDyPoe8cY", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "isDisplayed2", "elementId1", "ref2", "isDisplayed3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SVG", "x", "ChildrenCanSuspend", "VdwdtVYep_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
