{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/sGf1oene1OH7ysEJcKG9/2JGgjxIPNebA7gi88004/Fa9luwJrq.js", "ssg:https://framerusercontent.com/modules/nMPE9NdivuA17J12JvwD/cT5xHSGNUWbk7eJoD3dG/DragHandler.js", "ssg:https://framerusercontent.com/modules/xZDpxuhLuRJCXuRyCb6m/IY44nfIVbGwhlqFqjdYm/PrnL9pY5W.js", "ssg:https://framerusercontent.com/modules/tXHFRpucxjgP4Dkq1Bbf/nH6YKhvdR1ruRGo6Uq49/C3sMlcjUK.js", "ssg:https://framerusercontent.com/modules/0xWQyBguc0NVhYvHivJ6/idGIjirmi5ouiQk8x5PM/k9W27MCmS.js", "ssg:https://framerusercontent.com/modules/1dz5I0VYI2dHcymbd6ss/55c7YiWD7D6QVR9ud2wM/n04yuT8rI.js", "ssg:https://framerusercontent.com/modules/g09XmOFawrWeeKRH2udB/lBBNjxTDnGNlm7MWmXbB/noBNcWnwl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/xEMzXUqSyKkb7XJ9GHcV/5gmwmX2L6xVYy2GtpdCD/AYL2ND8Dv.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/u4msWjnJUNrdCAK6yyNM/B2BbLIQDMbkS5HPT4TI6/b4grGdCUJ.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/plBjvwFTcy26lcUjPCZ3/jkdCGWpzeZcZKB5ZuumB/bhHMGZ4jb.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/y1tT1VmSMhilmhSXkr6k/ZOm4EMT983OyQu31bVB2/DIvVk5uYa.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/l0pXduQ6ygJWi9YixedS/8Er3F27mYzRyZSU4TB3t/E0bGjbk6u.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/tLBY6Fwfw3Z1wNxtMsrF/WMOZxtZkgTJM1zR8D292/hZ87cEqP7.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kyu2CjctiM2mEAHYisM7/U0gV6moLq5mC71fSFNT0/jqPkUEcYx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ov43Kd2Q7g9eNqPy88l4/FeY8npRNZvbugmA9MoMK/PLNbpB6Li.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/5d0MVmqrHzkBzWi8lTEO/NccFvvli91GY2gX9LyLe/RIXp80KW0.js\";const cycleOrder=[\"zhgbMMjur\",\"mMvU1BZRa\"];const serializationHash=\"framer-eol7Z\";const variantClassNames={mMvU1BZRa:\"framer-v-1gg41od\",zhgbMMjur:\"framer-v-12zlnkc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"zhgbMMjur\",\"Variant 2\":\"mMvU1BZRa\"};const getProps=({borda,corDeFundo,corDeFundo1,corDeFundo2,corDoHeading,fontSize,height,id,text,text3,width,...props})=>{return{...props,MpkQekcdw:corDeFundo1??props.MpkQekcdw??\"rgb(76, 157, 157)\",os4Bcm6pl:text3??props.os4Bcm6pl??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"A implementa\\xe7\\xe3o da \\xc1rvore pode variar dependendo do tipo de parceria firmada. \"}),/*#__PURE__*/_jsx(motion.p,{children:\"Em escolas privadas, o processo \\xe9 feito diretamente com o time da \\xc1rvore: a escola envia os dados de cadastro, nossa equipe ativa os acessos e disponibiliza forma\\xe7\\xf5es iniciais com os educadores. \"}),/*#__PURE__*/_jsx(motion.p,{children:\"J\\xe1 nas redes p\\xfablicas, a implementa\\xe7\\xe3o \\xe9 coordenada pelo \\xf3rg\\xe3o respons\\xe1vel, como Secretarias de Educa\\xe7\\xe3o, com o apoio da \\xc1rvore em todas as etapas.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"Ap\\xf3s a ativa\\xe7\\xe3o, cada escola ou rede conta com o acompanhamento cont\\xednuo do nosso time, que oferece suporte, forma\\xe7\\xf5es complementares e materiais de apoio para garantir uma experi\\xeancia completa com a plataforma.\"})]}),RoxZiPPzg:fontSize??props.RoxZiPPzg??18,tk2GyVQR3:text??props.tk2GyVQR3??\"Como \\xe9 feita a implementa\\xe7\\xe3o da plataforma nas escolas?\",U_4NVJkNW:borda??props.U_4NVJkNW??{borderBottomWidth:3,borderColor:\"rgba(209, 223, 216, 0.30000001192092896)\",borderLeftWidth:2,borderRightWidth:2,borderStyle:\"solid\",borderTopWidth:1},variant:humanReadableVariantMap[props.variant]??props.variant??\"zhgbMMjur\",WkK0iFHvt:corDeFundo2??props.WkK0iFHvt??\"rgb(93, 199, 199)\",wVy8xbxPY:corDoHeading??props.wVy8xbxPY??\"rgb(6, 59, 75)\",x4O76F3Sh:corDeFundo??props.x4O76F3Sh??\"rgb(247, 255, 251)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,tk2GyVQR3,RoxZiPPzg,x4O76F3Sh,wVy8xbxPY,MpkQekcdw,WkK0iFHvt,U_4NVJkNW,os4Bcm6pl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zhgbMMjur\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1d3fofp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mMvU1BZRa\");});const onTapbbmae7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"zhgbMMjur\");});const onTapnvreib=activeVariantCallback(async(...args)=>{setVariant(\"mMvU1BZRa\");});const onTap132a3hd=activeVariantCallback(async(...args)=>{setVariant(\"zhgbMMjur\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"mMvU1BZRa\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-12zlnkc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zhgbMMjur\",onTap:onTap1d3fofp,ref:refBinding,style:{\"--border-bottom-width\":(U_4NVJkNW.borderBottomWidth??U_4NVJkNW.borderWidth)+\"px\",\"--border-color\":U_4NVJkNW.borderColor,\"--border-left-width\":(U_4NVJkNW.borderLeftWidth??U_4NVJkNW.borderWidth)+\"px\",\"--border-right-width\":(U_4NVJkNW.borderRightWidth??U_4NVJkNW.borderWidth)+\"px\",\"--border-style\":U_4NVJkNW.borderStyle,\"--border-top-width\":(U_4NVJkNW.borderTopWidth??U_4NVJkNW.borderWidth)+\"px\",backgroundColor:x4O76F3Sh,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({mMvU1BZRa:{\"data-framer-name\":\"Variant 2\",onTap:onTapbbmae7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1syould\",layoutDependency:layoutDependency,layoutId:\"aEaM91XM8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-RoxZiPPzg-Fa9luwJrq) * 1px)\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wVy8xbxPY-Fa9luwJrq))\"},children:\"Como \\xe9 feita a implementa\\xe7\\xe3oda plataforma nas escolas?\"})}),className:\"framer-1s432jd\",\"data-framer-name\":\"Como \\xe9 feita a implementa\\xe7\\xe3o da plataforma nas escolas?\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"tyjQQ1FgC\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-wVy8xbxPY-Fa9luwJrq)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-RoxZiPPzg-Fa9luwJrq\":RoxZiPPzg,\"--variable-reference-wVy8xbxPY-Fa9luwJrq\":wVy8xbxPY},text:tk2GyVQR3,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hzbnyv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MhAp54OrW\",onTap:onTapnvreib,style:{backgroundColor:MpkQekcdw,borderBottomLeftRadius:293,borderBottomRightRadius:293,borderTopLeftRadius:293,borderTopRightRadius:293,rotate:0},variants:{mMvU1BZRa:{backgroundColor:WkK0iFHvt,rotate:90}},...addPropertyOverrides({mMvU1BZRa:{onTap:onTap132a3hd}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xa3wj9\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fje0IexWz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 39\"><g transform=\"translate(11.37 11.765)\" id=\"ss9345380430_1\"><g id=\"ss9345380430_2\"><g transform=\"translate(0 0)\" id=\"ss9345380430_3\"><path d=\"M 7.88 0 C 8.433 0 8.88 0.448 8.88 1 L 8.88 14.76 C 8.88 15.313 8.433 15.76 7.88 15.76 C 7.328 15.76 6.88 15.313 6.88 14.76 L 6.88 1 C 6.88 0.448 7.328 0 7.88 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 15.76 7.88 C 15.76 8.432 15.313 8.88 14.76 8.88 L 1 8.88 C 0.448 8.88 0 8.432 0 7.88 C 0 7.328 0.448 6.88 1 6.88 L 14.76 6.88 C 15.313 6.88 15.76 7.328 15.76 7.88 Z\" fill=\"rgb(255,255,255)\"></path></g></g></g></svg>',svgContentId:9345380430,withExternalLayout:true,...addPropertyOverrides({mMvU1BZRa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 39\"><g transform=\"translate(11.37 11.765)\" id=\"ss10971294667_1\"><g id=\"ss10971294667_2\"><g transform=\"translate(0 0)\" id=\"ss10971294667_3\"><path d=\"M 7.88 0 C 8.433 0 8.88 0.448 8.88 1 L 8.88 14.76 C 8.88 15.313 8.433 15.76 7.88 15.76 C 7.328 15.76 6.88 15.313 6.88 14.76 L 6.88 1 C 6.88 0.448 7.328 0 7.88 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></g></g></g></svg>',svgContentId:10971294667}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:os4Bcm6pl,className:\"framer-8blt4b\",\"data-framer-name\":\"Consigo acompanhar o desempenho dos alunos?\",fonts:[\"CUSTOM;Arvore Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"WieruJxSB\",style:{\"--extracted-r6o4lv\":\"rgb(6, 59, 75)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},stylesPresetsClassNames:{a:\"framer-styles-preset-2xauuk\",blockquote:\"framer-styles-preset-ifgr3m\",h1:\"framer-styles-preset-1dhpj5o\",h2:\"framer-styles-preset-gfucdk\",h3:\"framer-styles-preset-13cww30\",h4:\"framer-styles-preset-1ylkb0k\",h5:\"framer-styles-preset-c63jrr\",img:\"framer-styles-preset-1gt2kd0\",p:\"framer-styles-preset-1hyj31x\"},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eol7Z.framer-1l7rf3, .framer-eol7Z .framer-1l7rf3 { display: block; }\",\".framer-eol7Z.framer-12zlnkc { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px 26px 29px 26px; position: relative; width: 589px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eol7Z .framer-1syould { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eol7Z .framer-1s432jd { --framer-text-wrap: balance; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eol7Z .framer-1hzbnyv { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eol7Z .framer-xa3wj9 { flex: none; height: 39px; position: relative; width: 39px; }\",\".framer-eol7Z .framer-8blt4b { 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-eol7Z.framer-12zlnkc, .framer-eol7Z .framer-1syould, .framer-eol7Z .framer-1hzbnyv { gap: 0px; } .framer-eol7Z.framer-12zlnkc > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-eol7Z.framer-12zlnkc > :first-child { margin-top: 0px; } .framer-eol7Z.framer-12zlnkc > :last-child { margin-bottom: 0px; } .framer-eol7Z .framer-1syould > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-eol7Z .framer-1syould > :first-child, .framer-eol7Z .framer-1hzbnyv > :first-child { margin-left: 0px; } .framer-eol7Z .framer-1syould > :last-child, .framer-eol7Z .framer-1hzbnyv > :last-child { margin-right: 0px; } .framer-eol7Z .framer-1hzbnyv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-eol7Z[data-border=\"true\"]::after, .framer-eol7Z [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 589\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mMvU1BZRa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tk2GyVQR3\":\"text\",\"RoxZiPPzg\":\"fontSize\",\"x4O76F3Sh\":\"corDeFundo\",\"wVy8xbxPY\":\"corDoHeading\",\"MpkQekcdw\":\"corDeFundo1\",\"WkK0iFHvt\":\"corDeFundo2\",\"U_4NVJkNW\":\"borda\",\"os4Bcm6pl\":\"text3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFa9luwJrq=withCSS(Component,css,\"framer-eol7Z\");export default FramerFa9luwJrq;FramerFa9luwJrq.displayName=\"FAQ\";FramerFa9luwJrq.defaultProps={height:101,width:589};addPropertyControls(FramerFa9luwJrq,{variant:{options:[\"zhgbMMjur\",\"mMvU1BZRa\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},tk2GyVQR3:{defaultValue:\"Como \\xe9 feita a implementa\\xe7\\xe3o da plataforma nas escolas?\",displayTextArea:false,title:\"Text\",type:ControlType.String},RoxZiPPzg:{defaultValue:18,title:\"Font Size\",type:ControlType.Number},x4O76F3Sh:{defaultValue:\"rgb(247, 255, 251)\",title:\"Cor de fundo\",type:ControlType.Color},wVy8xbxPY:{defaultValue:\"rgb(6, 59, 75)\",title:\"Cor do Heading\",type:ControlType.Color},MpkQekcdw:{defaultValue:\"rgb(76, 157, 157)\",title:\"Cor de fundo +\",type:ControlType.Color},WkK0iFHvt:{defaultValue:\"rgb(93, 199, 199)\",title:\"Cor de fundo -\",type:ControlType.Color},U_4NVJkNW:{defaultValue:{borderBottomWidth:3,borderColor:\"rgba(209, 223, 216, 0.30000001192092896)\",borderLeftWidth:2,borderRightWidth:2,borderStyle:\"solid\",borderTopWidth:1},title:\"Borda\",type:ControlType.Border},os4Bcm6pl:{defaultValue:\"<p>A implementa\\xe7\\xe3o da \\xc1rvore pode variar dependendo do tipo de parceria firmada. </p><p>Em escolas privadas, o processo \\xe9 feito diretamente com o time da \\xc1rvore: a escola envia os dados de cadastro, nossa equipe ativa os acessos e disponibiliza forma\\xe7\\xf5es iniciais com os educadores. </p><p>J\\xe1 nas redes p\\xfablicas, a implementa\\xe7\\xe3o \\xe9 coordenada pelo \\xf3rg\\xe3o respons\\xe1vel, como Secretarias de Educa\\xe7\\xe3o, com o apoio da \\xc1rvore em todas as etapas.</p><p>Ap\\xf3s a ativa\\xe7\\xe3o, cada escola ou rede conta com o acompanhamento cont\\xednuo do nosso time, que oferece suporte, forma\\xe7\\xf5es complementares e materiais de apoio para garantir uma experi\\xeancia completa com a plataforma.</p>\",title:\"Text 3\",type:ControlType.RichText}});addFonts(FramerFa9luwJrq,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"},{family:\"Arvore Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bIrsJtrweolMoRdb6mEicc5Cg.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFa9luwJrq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"101\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mMvU1BZRa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"tk2GyVQR3\\\":\\\"text\\\",\\\"RoxZiPPzg\\\":\\\"fontSize\\\",\\\"x4O76F3Sh\\\":\\\"corDeFundo\\\",\\\"wVy8xbxPY\\\":\\\"corDoHeading\\\",\\\"MpkQekcdw\\\":\\\"corDeFundo1\\\",\\\"WkK0iFHvt\\\":\\\"corDeFundo2\\\",\\\"U_4NVJkNW\\\":\\\"borda\\\",\\\"os4Bcm6pl\\\":\\\"text3\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"589\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fa9luwJrq.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n */export function InvisibleEventHandler(props){const[dragStartX,setDragStartX]=useState(null);const[dragging,setDragging]=useState(false);const[variant,setVariant]=useState(\"idle\")// Vari\u00E1vel para definir a variante\n;const inputRef=useRef(null)// Usado para a valida\u00E7\u00E3o nativa do navegador\n;const handleMouseDown=e=>{setDragStartX(e.clientX)// Captura a posi\u00E7\u00E3o inicial do clique\n;setDragging(true)// Define que o arraste est\u00E1 em andamento\n;};const handleMouseUp=e=>{if(dragging&&dragStartX!==null){const dragDistance=e.clientX-dragStartX;// Detecta a dire\u00E7\u00E3o do arraste com um limite para evitar misturas\nif(dragDistance>50){setVariant(props.dragRightVariant||\"dragRight\")// Usa a variante personalizada ou o padr\u00E3o\n;if(props.onDragRight){props.onDragRight()// Chama o evento de sucesso ao arrastar para a direita\n;}}else if(dragDistance<-50){setVariant(props.dragLeftVariant||\"dragLeft\")// Usa a variante personalizada ou o padr\u00E3o\n;if(props.onDragLeft){props.onDragLeft()// Chama o evento de erro ao arrastar para a esquerda\n;}}else{setVariant(\"idle\")// Nenhum arraste significativo\n;}// Reset do in\u00EDcio do arraste e finaliza o arraste\nsetDragStartX(null);setDragging(false);}};useEffect(()=>{const handleMouseMove=e=>{if(dragging&&dragStartX!==null){const dragDistance=e.clientX-dragStartX;// Limite de dist\u00E2ncia m\u00EDnima para evitar lag ou misturas\nif(Math.abs(dragDistance)<10){return;// Se o arraste for menor que 10px, n\u00E3o faz nada\n}}};window.addEventListener(\"mousemove\",handleMouseMove);return()=>{window.removeEventListener(\"mousemove\",handleMouseMove);};},[dragging,dragStartX]);return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"100%\",background:\"transparent\",position:\"absolute\",top:\"0\",left:\"0\",zIndex:\"9999\",cursor:dragging?\"grabbing\":\"grab\"},onMouseDown:handleMouseDown,onMouseUp:handleMouseUp,children:[/*#__PURE__*/_jsx(\"input\",{ref:inputRef,type:\"text\",name:\"captcha\"// Campo associado ao \"Captcha\"\n,style:{position:\"relative\",opacity:0,zIndex:-1},required:true}),variant===props.dragRightVariant&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"green\",position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",fontWeight:\"bold\"},children:\"Arraste para a direita!\"}),variant===props.dragLeftVariant&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"red\",position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",fontWeight:\"bold\"},children:\"Arraste para a esquerda!\"}),variant===\"idle\"&&/*#__PURE__*/_jsx(\"div\",{style:{color:\"gray\",position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",fontWeight:\"bold\"},children:\"Arraste o elemento.\"})]});}InvisibleEventHandler.displayName=\"UncodeDragHandler\";addPropertyControls(InvisibleEventHandler,{dragRightVariant:{type:ControlType.String,title:\"Drag Right Variant\",defaultValue:\"dragRight\",description:\"A variante ao arrastar para a direita\"},dragLeftVariant:{type:ControlType.String,title:\"Drag Left Variant\",defaultValue:\"dragLeft\",description:\"A variante ao arrastar para a esquerda\"},onDragRight:{type:ControlType.EventHandler,title:\"On Drag Right\",description:\"Handler para o sucesso ao arrastar para a direita\"},onDragLeft:{type:ControlType.EventHandler,title:\"On Drag Left\",description:\"Handler para o erro ao arrastar para a esquerda\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"InvisibleEventHandler\":{\"type\":\"reactComponent\",\"name\":\"InvisibleEventHandler\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DragHandler.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={LouAUkgj2:{hover:true}};const serializationHash=\"framer-2jkJ7\";const variantClassNames={LouAUkgj2:\"framer-v-gixp9v\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({cargo,foto,height,id,nome,padding,texto,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,EXvyXrtG_:(_ref=cargo!==null&&cargo!==void 0?cargo:props.EXvyXrtG_)!==null&&_ref!==void 0?_ref:\"Diretora do EFAI da Escola Concept\",gedtFANXt:(_ref1=padding!==null&&padding!==void 0?padding:props.gedtFANXt)!==null&&_ref1!==void 0?_ref1:\"37px 32px 37px 32px\",IshkMoMnU:(_ref2=texto!==null&&texto!==void 0?texto:props.IshkMoMnU)!==null&&_ref2!==void 0?_ref2:'\"A \\xc1rvore se adequa muito ao prop\\xf3sito de uma escola inovadora,que est\\xe1 atualizada e conectada com o mundo que n\\xe3o \\xe9 s\\xf3 f\\xedsico,mas tamb\\xe9m \\xe9 digital.\"',TJERDRPuW:(_ref3=nome!==null&&nome!==void 0?nome:props.TJERDRPuW)!==null&&_ref3!==void 0?_ref3:\"Ana Carolina Erlacher\",Xh5zqKW4K:(_ref4=foto!==null&&foto!==void 0?foto:props.Xh5zqKW4K)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/c1OReJnZILgMFmzsFI2qGe1Z8k.webp\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Xh5zqKW4K,TJERDRPuW,EXvyXrtG_,IshkMoMnU,gedtFANXt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LouAUkgj2\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gixp9v\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LouAUkgj2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1rff9zs\":numberToPixelString(gedtFANXt),backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"-0.2154982915279106px 0.7052671359095256px 0.7374559286123298px -0.5357142857142857px rgba(33, 133, 133, 0.05922), -0.5279030855183373px 1.72768282533274px 1.8065352508737549px -1.0714285714285714px rgba(33, 133, 133, 0.05808), -1.0003000587740098px 3.273709283260396px 3.423123234545987px -1.607142857142857px rgba(33, 133, 133, 0.05636), -1.7462623240859827px 5.715040333372307px 5.975878020558521px -2.142857142857143px rgba(33, 133, 133, 0.05365), -3.039264406761212px 9.946683513036694px 10.40065579868508px -2.678571428571429px rgba(33, 133, 133, 0.04895), -5.566773286469106px 18.218530755717072px 19.050034848260907px -3.214285714285714px rgba(33, 133, 133, 0.03976), -11px 36px 37.64306044943742px -3.75px rgba(33, 133, 133, 0.02)\",...style},variants:{\"LouAUkgj2-hover\":{backgroundColor:\"rgb(237, 255, 255)\"}},...addPropertyOverrides({\"LouAUkgj2-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"100px\",...toResponsiveImage(Xh5zqKW4K),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9hofso\",\"data-border\":true,\"data-framer-name\":\"6712d6cb79b6b0c14fa1d033_foto_depoimento_ana.webp\",layoutDependency:layoutDependency,layoutId:\"lLG4JC4Ad\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"LouAUkgj2-hover\":{\"--border-color\":\"rgb(39, 136, 136)\"}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Arvore Sans Bold\", \"Arvore Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 133, 133))\"},children:\"Ana Carolina Erlacher\"})}),className:\"framer-kk2n7q\",\"data-framer-name\":\"Ana Carolina Erlacher\",fonts:[\"CUSTOM;Arvore Sans Bold\"],layoutDependency:layoutDependency,layoutId:\"ch2yCqNbX\",style:{\"--extracted-r6o4lv\":\"rgb(33, 133, 133)\",\"--framer-paragraph-spacing\":\"0px\"},text:TJERDRPuW,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 59, 75))\"},children:\"Diretora do EFAI da Escola Concept\"})}),className:\"framer-1bvjx22\",\"data-framer-name\":\"Diretora do EFAI da Escola Concept\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"S175293jH\",style:{\"--extracted-r6o4lv\":\"rgb(6, 59, 75)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},text:EXvyXrtG_,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 39, 51))\"},children:'\"A \\xc1rvore se adequa muito ao prop\\xf3sito de uma escola inovadora,que est\\xe1 atualizada e conectada com o mundo que n\\xe3o \\xe9 s\\xf3 f\\xedsico,mas tamb\\xe9m \\xe9 digital.\"'})}),className:\"framer-13xeeo4\",\"data-framer-name\":'\"A \\xc1rvore se adequa muito ao prop\\xf3sito de uma escola inovadora, que est\\xe1 atualizada e conectada com o mundo que n\\xe3o \\xe9 s\\xf3 f\\xedsico, mas tamb\\xe9m \\xe9 digital.\"',fonts:[\"CUSTOM;Arvore Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"FrdEXd3m7\",style:{\"--extracted-r6o4lv\":\"rgb(0, 39, 51)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:IshkMoMnU,verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2jkJ7.framer-169yqti, .framer-2jkJ7 .framer-169yqti { display: block; }\",\".framer-2jkJ7.framer-gixp9v { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: var(--1rff9zs); position: relative; width: 554px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2jkJ7 .framer-9hofso { flex: none; height: 100px; overflow: hidden; position: relative; width: 100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2jkJ7 .framer-kk2n7q, .framer-2jkJ7 .framer-1bvjx22, .framer-2jkJ7 .framer-13xeeo4 { 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-2jkJ7.framer-gixp9v { gap: 0px; } .framer-2jkJ7.framer-gixp9v > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-2jkJ7.framer-gixp9v > :first-child { margin-top: 0px; } .framer-2jkJ7.framer-gixp9v > :last-child { margin-bottom: 0px; } }\",'.framer-2jkJ7[data-border=\"true\"]::after, .framer-2jkJ7 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 346\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mZ90GiGrI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Xh5zqKW4K\":\"foto\",\"TJERDRPuW\":\"nome\",\"EXvyXrtG_\":\"cargo\",\"IshkMoMnU\":\"texto\",\"gedtFANXt\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPrnL9pY5W=withCSS(Component,css,\"framer-2jkJ7\");export default FramerPrnL9pY5W;FramerPrnL9pY5W.displayName=\"Card 1\";FramerPrnL9pY5W.defaultProps={height:346,width:554};addPropertyControls(FramerPrnL9pY5W,{Xh5zqKW4K:{__defaultAssetReference:\"data:framer/asset-reference,c1OReJnZILgMFmzsFI2qGe1Z8k.webp?originalFilename=6712d6cb79b6b0c14fa1d033_foto_depoimento_ana.webp&preferredSize=auto\",title:\"Foto\",type:ControlType.ResponsiveImage},TJERDRPuW:{defaultValue:\"Ana Carolina Erlacher\",displayTextArea:false,title:\"Nome\",type:ControlType.String},EXvyXrtG_:{defaultValue:\"Diretora do EFAI da Escola Concept\",displayTextArea:false,title:\"Cargo\",type:ControlType.String},IshkMoMnU:{defaultValue:'\"A \\xc1rvore se adequa muito ao prop\\xf3sito de uma escola inovadora,que est\\xe1 atualizada e conectada com o mundo que n\\xe3o \\xe9 s\\xf3 f\\xedsico,mas tamb\\xe9m \\xe9 digital.\"',displayTextArea:false,title:\"Texto\",type:ControlType.String},gedtFANXt:{defaultValue:\"37px 32px 37px 32px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerPrnL9pY5W,[{explicitInter:true,fonts:[{family:\"Arvore Sans Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/6iDK8Eri9vCEnT2o7qUBU3oo4GA.woff2\"},{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"},{family:\"Arvore Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bIrsJtrweolMoRdb6mEicc5Cg.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPrnL9pY5W\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"346\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"554\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mZ90GiGrI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Xh5zqKW4K\\\":\\\"foto\\\",\\\"TJERDRPuW\\\":\\\"nome\\\",\\\"EXvyXrtG_\\\":\\\"cargo\\\",\\\"IshkMoMnU\\\":\\\"texto\\\",\\\"gedtFANXt\\\":\\\"padding\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PrnL9pY5W.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{InvisibleEventHandler as UncodeDragHandler}from\"https://framerusercontent.com/modules/nMPE9NdivuA17J12JvwD/cT5xHSGNUWbk7eJoD3dG/DragHandler.js\";import Card1 from\"https://framerusercontent.com/modules/xZDpxuhLuRJCXuRyCb6m/IY44nfIVbGwhlqFqjdYm/PrnL9pY5W.js\";const UncodeDragHandlerFonts=getFonts(UncodeDragHandler);const Card1Fonts=getFonts(Card1);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"zp5WNhDcB\",\"vLkePTFGr\",\"uJJ2DiGVD\"];const serializationHash=\"framer-fAR17\";const variantClassNames={uJJ2DiGVD:\"framer-v-ul6m4e\",vLkePTFGr:\"framer-v-12lu37w\",zp5WNhDcB:\"framer-v-1mccoji\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition2={bounce:.4,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:5,y:45};const animation2={opacity:1,rotate:-1,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"zp5WNhDcB\",\"Variant 2\":\"vLkePTFGr\",\"Variant 3\":\"uJJ2DiGVD\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Lh__0nazh:(_ref=padding!==null&&padding!==void 0?padding:props.Lh__0nazh)!==null&&_ref!==void 0?_ref:\"37px 32px 37px 32px\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"zp5WNhDcB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Lh__0nazh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zp5WNhDcB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onDragRight1m7xjyb=activeVariantCallback(async(...args)=>{setVariant(\"vLkePTFGr\");});const onDragLeft1l9o24a=activeVariantCallback(async(...args)=>{setVariant(\"uJJ2DiGVD\");});const onDragRight1l9o24a=activeVariantCallback(async(...args)=>{setVariant(\"uJJ2DiGVD\");});const onDragLeft6g63au=activeVariantCallback(async(...args)=>{setVariant(\"zp5WNhDcB\");});const onDragRight6g63au=activeVariantCallback(async(...args)=>{setVariant(\"zp5WNhDcB\");});const onDragLeft1m7xjyb=activeVariantCallback(async(...args)=>{setVariant(\"vLkePTFGr\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mccoji\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zp5WNhDcB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({uJJ2DiGVD:{\"data-framer-name\":\"Variant 3\"},vLkePTFGr:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dtotf1-container\",layoutDependency:layoutDependency,layoutId:\"hhiuDaC7t-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(UncodeDragHandler,{dragLeftVariant:\"23\",dragRightVariant:\"22\",height:\"100%\",id:\"hhiuDaC7t\",layoutId:\"hhiuDaC7t\",onDragLeft:onDragLeft1l9o24a,onDragRight:onDragRight1m7xjyb,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({uJJ2DiGVD:{onDragLeft:onDragLeft1m7xjyb,onDragRight:onDragRight6g63au},vLkePTFGr:{onDragLeft:onDragLeft6g63au,onDragRight:onDragRight1l9o24a}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)*.5771428571428574-173),...addPropertyOverrides({uJJ2DiGVD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-1},vLkePTFGr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)*.5085714285714288-173)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-3fhcuf-container\",\"data-framer-appear-id\":\"3fhcuf\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"fkEQ30a5h-container\",name:\"3\",style:{opacity:.2,rotate:-3},transformTemplate:transformTemplate1,variants:{uJJ2DiGVD:{opacity:1,rotate:2}},...addPropertyOverrides({uJJ2DiGVD:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true,transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Card1,{EXvyXrtG_:\"Gestora do Col\\xe9gio Salesiano Santa Rosa\",gedtFANXt:numberToPixelString(Lh__0nazh),height:\"100%\",id:\"fkEQ30a5h\",IshkMoMnU:'\"Por meio da \\xc1rvore a gente consegue acompanhar os alunos e tamb\\xe9m as fam\\xedlias conseguem perceber o n\\xedvel de seguran\\xe7a que a plataforma oferece.\"',layoutId:\"fkEQ30a5h\",name:\"3\",style:{width:\"100%\"},TJERDRPuW:\"Simone Ara\\xfajo\",width:\"100%\",Xh5zqKW4K:addImageAlt({src:\"https://framerusercontent.com/images/vaKRNMmT2iJ0F9Sy6NpW2uwtwI.webp\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)*.5514285714285716-173),...addPropertyOverrides({uJJ2DiGVD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||350)*.5742857142857145-173)},vLkePTFGr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-1rjapf-container\",\"data-framer-appear-id\":\"1rjapf\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"lA6sls0es-container\",name:\"2\",style:{opacity:.3,rotate:-1},transformTemplate:transformTemplate1,variants:{uJJ2DiGVD:{opacity:.1},vLkePTFGr:{opacity:1}},...addPropertyOverrides({vLkePTFGr:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,initial:animation1,optimized:true,transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Card1,{EXvyXrtG_:\"Diretor do Col\\xe9gio Santa Maria Minas\",gedtFANXt:numberToPixelString(Lh__0nazh),height:\"100%\",id:\"lA6sls0es\",IshkMoMnU:'\"Uma parceria como a \\xc1rvore, com certeza, nos auxilia na prepara\\xe7\\xe3o deste estudante para viver, conviver e transformar um mundo que ainda n\\xe3o existe.\"',layoutId:\"lA6sls0es\",name:\"2\",style:{width:\"100%\"},TJERDRPuW:\"Haroldo Costa\",width:\"100%\",Xh5zqKW4K:addImageAlt({src:\"https://framerusercontent.com/images/dqbq8ycplsa0OS86xU8EqlaOM80.webp\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-47lloz-container\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"EzYq8jX7Z-container\",name:\"1\",style:{opacity:1},transformTemplate:transformTemplate2,variants:{uJJ2DiGVD:{opacity:.4},vLkePTFGr:{opacity:.1}},children:/*#__PURE__*/_jsx(Card1,{EXvyXrtG_:\"Diretora do EFAI da Escola Concept\",gedtFANXt:numberToPixelString(Lh__0nazh),height:\"100%\",id:\"EzYq8jX7Z\",IshkMoMnU:'\"A \\xc1rvore se adequa muito ao prop\\xf3sito de uma escola inovadora,que est\\xe1 atualizada e conectada com o mundo que n\\xe3o \\xe9 s\\xf3 f\\xedsico,mas tamb\\xe9m \\xe9 digital.\"',layoutId:\"EzYq8jX7Z\",name:\"1\",style:{width:\"100%\"},TJERDRPuW:\"Ana Carolina Erlacher\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fAR17.framer-9zme3e, .framer-fAR17 .framer-9zme3e { display: block; }\",\".framer-fAR17.framer-1mccoji { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: min-content; justify-content: center; min-height: 350px; overflow: visible; padding: 0px; position: relative; width: 554px; }\",\".framer-fAR17 .framer-dtotf1-container { cursor: grab; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 7; }\",\".framer-fAR17 .framer-3fhcuf-container { flex: none; height: auto; left: 45%; position: absolute; top: 58%; width: 100%; z-index: 1; }\",\".framer-fAR17 .framer-1rjapf-container { flex: none; height: auto; left: 47%; position: absolute; top: 55%; width: 100%; z-index: 1; }\",\".framer-fAR17 .framer-47lloz-container { flex: none; height: auto; left: 50%; position: absolute; top: 2px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fAR17.framer-1mccoji { gap: 0px; } .framer-fAR17.framer-1mccoji > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-fAR17.framer-1mccoji > :first-child { margin-top: 0px; } .framer-fAR17.framer-1mccoji > :last-child { margin-bottom: 0px; } }\",\".framer-fAR17.framer-v-12lu37w .framer-3fhcuf-container { left: 49%; top: 51%; z-index: 2; }\",\".framer-fAR17.framer-v-12lu37w .framer-1rjapf-container { left: 52%; top: 0px; z-index: 4; }\",\".framer-fAR17.framer-v-12lu37w .framer-47lloz-container { left: 50%; }\",\".framer-fAR17.framer-v-ul6m4e .framer-3fhcuf-container { left: 50%; top: -1px; z-index: 6; }\",\".framer-fAR17.framer-v-ul6m4e .framer-1rjapf-container { left: 47%; top: 57%; z-index: 3; }\",\".framer-fAR17.framer-v-ul6m4e .framer-47lloz-container { left: 50%; z-index: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vLkePTFGr\":{\"layout\":[\"fixed\",\"auto\"]},\"uJJ2DiGVD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Lh__0nazh\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC3sMlcjUK=withCSS(Component,css,\"framer-fAR17\");export default FramerC3sMlcjUK;FramerC3sMlcjUK.displayName=\"Cards\";FramerC3sMlcjUK.defaultProps={height:350,width:554};addPropertyControls(FramerC3sMlcjUK,{variant:{options:[\"zp5WNhDcB\",\"vLkePTFGr\",\"uJJ2DiGVD\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},Lh__0nazh:{defaultValue:\"37px 32px 37px 32px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerC3sMlcjUK,[{explicitInter:true,fonts:[]},...UncodeDragHandlerFonts,...Card1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC3sMlcjUK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vLkePTFGr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uJJ2DiGVD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"554\",\"framerVariables\":\"{\\\"Lh__0nazh\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"350\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C3sMlcjUK.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={viZLM27as:{hover:true}};const serializationHash=\"framer-qvXKM\";const variantClassNames={viZLM27as:\"framer-v-rao27i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,emTanKmze:click!==null&&click!==void 0?click:props.emTanKmze};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,emTanKmze,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"viZLM27as\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdueld9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(emTanKmze){const res=await emTanKmze(...args);if(res===false)return false;}});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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rao27i\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"viZLM27as\",onTap:onTapdueld9,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(69, 208, 193)\",borderBottomLeftRadius:476,borderBottomRightRadius:476,borderTopLeftRadius:476,borderTopRightRadius:476,rotate:0,...style},variants:{\"viZLM27as-hover\":{backgroundColor:\"rgb(255, 255, 255)\",rotate:360}},...addPropertyOverrides({\"viZLM27as-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r5wq1b\",\"data-framer-name\":\"Button - Previous slide\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YGgKeFeis\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 22\"><path d=\"M 24.957 11.188 L 1.542 11.188\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.121 1.61 L 1.543 11.189 L 11.121 20.767\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11371685837,withExternalLayout:true,...addPropertyOverrides({\"viZLM27as-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 22\"><path d=\"M 24.957 11.188 L 1.542 11.188\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"rgb(13, 77, 70)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 11.121 1.61 L 1.543 11.189 L 11.121 20.767\" fill=\"transparent\" stroke-width=\"2.25\" stroke=\"rgb(13, 77, 70)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10785988098}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qvXKM.framer-wi8j3m, .framer-qvXKM .framer-wi8j3m { display: block; }\",\".framer-qvXKM.framer-rao27i { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 57px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 57px; }\",\".framer-qvXKM .framer-1r5wq1b { flex: none; height: 22px; position: relative; width: 27px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qvXKM.framer-rao27i { gap: 0px; } .framer-qvXKM.framer-rao27i > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qvXKM.framer-rao27i > :first-child { margin-left: 0px; } .framer-qvXKM.framer-rao27i > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 57\n * @framerIntrinsicWidth 57\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xXYMu98UA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"emTanKmze\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk9W27MCmS=withCSS(Component,css,\"framer-qvXKM\");export default Framerk9W27MCmS;Framerk9W27MCmS.displayName=\"Setas\";Framerk9W27MCmS.defaultProps={height:57,width:57};addPropertyControls(Framerk9W27MCmS,{emTanKmze:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerk9W27MCmS,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk9W27MCmS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"57\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xXYMu98UA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"57\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"emTanKmze\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k9W27MCmS.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Cards from\"https://framerusercontent.com/modules/tXHFRpucxjgP4Dkq1Bbf/nH6YKhvdR1ruRGo6Uq49/C3sMlcjUK.js\";import Setas from\"https://framerusercontent.com/modules/0xWQyBguc0NVhYvHivJ6/idGIjirmi5ouiQk8x5PM/k9W27MCmS.js\";const SetasFonts=getFonts(Setas);const CardsFonts=getFonts(Cards);const cycleOrder=[\"YipAQMkLL\",\"iSzTpFdTG\",\"lG3N4FIaf\"];const serializationHash=\"framer-rcbjQ\";const variantClassNames={iSzTpFdTG:\"framer-v-19nrdt2\",lG3N4FIaf:\"framer-v-195p46a\",YipAQMkLL:\"framer-v-55dk9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableEnumMap2={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Variant 1\":\"YipAQMkLL\",\"Variant 2\":\"lG3N4FIaf\"};const getProps=({align,direction,distribute,fontSize,gap,gap2,height,id,padding,width,...props})=>{var _ref,_humanReadableEnumMap_direction,_ref1,_ref2,_ref3,_ref4,_humanReadableEnumMap2_distribute,_ref5,_ref6,_humanReadableEnumMap1_align,_ref7,_ref8,_humanReadableVariantMap_props_variant,_ref9,_ref10;return{...props,a01GzEugx:(_ref=fontSize!==null&&fontSize!==void 0?fontSize:props.a01GzEugx)!==null&&_ref!==void 0?_ref:32,dEf1lWLv_:(_ref2=(_ref1=(_humanReadableEnumMap_direction=humanReadableEnumMap[direction])!==null&&_humanReadableEnumMap_direction!==void 0?_humanReadableEnumMap_direction:direction)!==null&&_ref1!==void 0?_ref1:props.dEf1lWLv_)!==null&&_ref2!==void 0?_ref2:\"row\",dYr0SHvVY:(_ref3=gap!==null&&gap!==void 0?gap:props.dYr0SHvVY)!==null&&_ref3!==void 0?_ref3:167,RnlaAsaA2:(_ref4=padding!==null&&padding!==void 0?padding:props.RnlaAsaA2)!==null&&_ref4!==void 0?_ref4:\"37px 32px 37px 32px\",ufh0En2p_:(_ref6=(_ref5=(_humanReadableEnumMap2_distribute=humanReadableEnumMap2[distribute])!==null&&_humanReadableEnumMap2_distribute!==void 0?_humanReadableEnumMap2_distribute:distribute)!==null&&_ref5!==void 0?_ref5:props.ufh0En2p_)!==null&&_ref6!==void 0?_ref6:\"flex-start\",UZKT1SoDq:(_ref8=(_ref7=(_humanReadableEnumMap1_align=humanReadableEnumMap1[align])!==null&&_humanReadableEnumMap1_align!==void 0?_humanReadableEnumMap1_align:align)!==null&&_ref7!==void 0?_ref7:props.UZKT1SoDq)!==null&&_ref8!==void 0?_ref8:\"center\",variant:(_ref9=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref9!==void 0?_ref9:\"YipAQMkLL\",W_GH7fSId:(_ref10=gap2!==null&&gap2!==void 0?gap2:props.W_GH7fSId)!==null&&_ref10!==void 0?_ref10:111};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dYr0SHvVY,dEf1lWLv_,UZKT1SoDq,ufh0En2p_,W_GH7fSId,a01GzEugx,RnlaAsaA2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YipAQMkLL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const emTanKmze1imuzaf=activeVariantCallback(async(...args)=>{setVariant(\"lG3N4FIaf\");});const emTanKmze1ynh31h=activeVariantCallback(async(...args)=>{setVariant(\"YipAQMkLL\");});const emTanKmze16vksy4=activeVariantCallback(async(...args)=>{setVariant(\"iSzTpFdTG\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-55dk9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YipAQMkLL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--10jcxym\":dYr0SHvVY,\"--18th232\":UZKT1SoDq,\"--7k21wa\":ufh0En2p_,\"--douztf\":dEf1lWLv_===\"row\"?0:\"calc(calc(max(0, var(--10jcxym)) * 1px) / 2)\",\"--ko731b\":dEf1lWLv_===\"column\"?0:\"calc(calc(max(0, var(--10jcxym)) * 1px) / 2)\",\"--lhdv2m\":dEf1lWLv_===\"column\"?\"100%\":\"1px\",\"--qho2h4\":dEf1lWLv_===\"column\"?undefined:\"1 0 0px\",\"--ujvd8r\":dEf1lWLv_,...style},...addPropertyOverrides({iSzTpFdTG:{\"data-framer-name\":\"Variant 2\"},lG3N4FIaf:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5cik9\",layoutDependency:layoutDependency,layoutId:\"S1UuatlM4\",style:{\"--r5ynkz\":W_GH7fSId},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ex7v5y\",\"data-framer-name\":\"Heading 3\",layoutDependency:layoutDependency,layoutId:\"ZECEB_4us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-a01GzEugx-n04yuT8rI) * 1px)\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Cultivamos parcerias e resultados de sucesso.\"})}),className:\"framer-1x7arqa\",\"data-framer-name\":\"Cultivamos parcerias e resultados de sucesso.\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"SBVU7FnCk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-a01GzEugx-n04yuT8rI\":a01GzEugx},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 255, 251))\"},children:\"Veja alguns dos depoimentos dos nossos parceiros.\"})}),className:\"framer-sfw92t\",\"data-framer-name\":\"Veja alguns dos depoimentos dos nossos parceiros.\",fonts:[\"CUSTOM;Arvore Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"TP1umwKUg\",style:{\"--extracted-r6o4lv\":\"rgb(247, 255, 251)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.93},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e6d62y\",layoutDependency:layoutDependency,layoutId:\"PUuF0Twp0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"65px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8bsfbw-container\",layoutDependency:layoutDependency,layoutId:\"S0SicW8bc-container\",style:{opacity:.3},variants:{iSzTpFdTG:{opacity:1},lG3N4FIaf:{opacity:1}},children:/*#__PURE__*/_jsx(Setas,{emTanKmze:emTanKmze1imuzaf,height:\"100%\",id:\"S0SicW8bc\",layoutId:\"S0SicW8bc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({iSzTpFdTG:{emTanKmze:emTanKmze1ynh31h},lG3N4FIaf:{emTanKmze:emTanKmze16vksy4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"65px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tv5m3u-container\",layoutDependency:layoutDependency,layoutId:\"RgyE9wncu-container\",style:{opacity:1,rotate:180},variants:{lG3N4FIaf:{opacity:.3}},children:/*#__PURE__*/_jsx(Setas,{emTanKmze:emTanKmze16vksy4,height:\"100%\",id:\"RgyE9wncu\",layoutId:\"RgyE9wncu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({iSzTpFdTG:{emTanKmze:emTanKmze1imuzaf},lG3N4FIaf:{emTanKmze:emTanKmze1ynh31h}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,width:dEf1lWLv_===\"row\"?`min(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - ${dYr0SHvVY*1}px) / 2, 1px), 555px)`:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 555px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yie5qj-container\",layoutDependency:layoutDependency,layoutId:\"trOBXBiZl-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"trOBXBiZl\",layoutId:\"trOBXBiZl\",Lh__0nazh:numberToPixelString(RnlaAsaA2),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"zp5WNhDcB\",width:\"100%\",...addPropertyOverrides({iSzTpFdTG:{variant:\"vLkePTFGr\"},lG3N4FIaf:{variant:\"uJJ2DiGVD\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rcbjQ.framer-1tdndtn, .framer-rcbjQ .framer-1tdndtn { display: block; }\",\".framer-rcbjQ.framer-55dk9 { align-content: var(--18th232); align-items: var(--18th232); display: flex; flex-direction: var(--ujvd8r); flex-wrap: nowrap; gap: calc(max(0, var(--10jcxym)) * 1px); height: min-content; justify-content: var(--7k21wa); max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-rcbjQ .framer-1g5cik9 { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--qho2h4); flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--r5ynkz)) * 1px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--lhdv2m); }\",\".framer-rcbjQ .framer-ex7v5y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rcbjQ .framer-1x7arqa, .framer-rcbjQ .framer-sfw92t { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rcbjQ .framer-e6d62y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rcbjQ .framer-8bsfbw-container, .framer-rcbjQ .framer-tv5m3u-container { flex: none; height: 65px; position: relative; width: 65px; }\",\".framer-rcbjQ .framer-1yie5qj-container { flex: var(--qho2h4); height: auto; max-width: 555px; position: relative; width: var(--lhdv2m); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rcbjQ.framer-55dk9, .framer-rcbjQ .framer-1g5cik9, .framer-rcbjQ .framer-ex7v5y, .framer-rcbjQ .framer-e6d62y { gap: 0px; } .framer-rcbjQ.framer-55dk9 > * { margin-bottom: var(--douztf); margin-left: var(--ko731b); margin-right: var(--ko731b); margin-top: var(--douztf); } .framer-rcbjQ.framer-55dk9 > :first-child { margin-left: 0px; margin-top: 0px; } .framer-rcbjQ.framer-55dk9 > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-rcbjQ .framer-1g5cik9 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--r5ynkz)) * 1px) / 2); margin-top: calc(calc(max(0, var(--r5ynkz)) * 1px) / 2); } .framer-rcbjQ .framer-1g5cik9 > :first-child, .framer-rcbjQ .framer-ex7v5y > :first-child { margin-top: 0px; } .framer-rcbjQ .framer-1g5cik9 > :last-child, .framer-rcbjQ .framer-ex7v5y > :last-child { margin-bottom: 0px; } .framer-rcbjQ .framer-ex7v5y > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-rcbjQ .framer-e6d62y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rcbjQ .framer-e6d62y > :first-child { margin-left: 0px; } .framer-rcbjQ .framer-e6d62y > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"iSzTpFdTG\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"lG3N4FIaf\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"dYr0SHvVY\":\"gap\",\"dEf1lWLv_\":\"direction\",\"UZKT1SoDq\":\"align\",\"ufh0En2p_\":\"distribute\",\"W_GH7fSId\":\"gap2\",\"a01GzEugx\":\"fontSize\",\"RnlaAsaA2\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern04yuT8rI=withCSS(Component,css,\"framer-rcbjQ\");export default Framern04yuT8rI;Framern04yuT8rI.displayName=\"card\";Framern04yuT8rI.defaultProps={height:350,width:1200};addPropertyControls(Framern04yuT8rI,{variant:{options:[\"YipAQMkLL\",\"iSzTpFdTG\",\"lG3N4FIaf\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},dYr0SHvVY:{defaultValue:167,min:0,title:\"Gap\",type:ControlType.Number},dEf1lWLv_:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},UZKT1SoDq:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum},ufh0En2p_:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},W_GH7fSId:{defaultValue:111,min:0,title:\"Gap 2\",type:ControlType.Number},a01GzEugx:{defaultValue:32,title:\"Font Size\",type:ControlType.Number},RnlaAsaA2:{defaultValue:\"37px 32px 37px 32px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framern04yuT8rI,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"},{family:\"Arvore Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bIrsJtrweolMoRdb6mEicc5Cg.woff2\"}]},...SetasFonts,...CardsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern04yuT8rI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"iSzTpFdTG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"lG3N4FIaf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerVariables\":\"{\\\"dYr0SHvVY\\\":\\\"gap\\\",\\\"dEf1lWLv_\\\":\\\"direction\\\",\\\"UZKT1SoDq\\\":\\\"align\\\",\\\"ufh0En2p_\\\":\\\"distribute\\\",\\\"W_GH7fSId\\\":\\\"gap2\\\",\\\"a01GzEugx\\\":\\\"fontSize\\\",\\\"RnlaAsaA2\\\":\\\"padding\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BotO from\"https://framerusercontent.com/modules/3hN2a4TKjrSMKQCM6udJ/bUcG7VHspiKnSct92K4V/VOkw44s5a.js\";const BotOFonts=getFonts(BotO);const ImageWithFX=withFX(Image);const MotionAWithFX=withFX(motion.a);const enabledGestures={a_RCqa6J9:{hover:true},AtXWGcLdc:{hover:true},i5JgPgaha:{hover:true}};const cycleOrder=[\"a_RCqa6J9\",\"AtXWGcLdc\",\"i5JgPgaha\"];const serializationHash=\"framer-cm2KX\";const variantClassNames={a_RCqa6J9:\"framer-v-163qek8\",AtXWGcLdc:\"framer-v-ugs9zf\",i5JgPgaha:\"framer-v-1nex1yg\"};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 animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:67};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:67};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"a_RCqa6J9\",\"Variant 3\":\"i5JgPgaha\",Variant:\"AtXWGcLdc\"};const getProps=({corDeFundo,corDoBot_o,corDoTexto,descri_o,fontSize,fundo,heading,height,id,imagem,linkParaSolu_o,padding,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9;return{...props,bJBrdag90:(_ref=corDoBot_o!==null&&corDoBot_o!==void 0?corDoBot_o:props.bJBrdag90)!==null&&_ref!==void 0?_ref:\"rgb(99, 148, 243)\",BlCbxBbGY:(_ref1=padding!==null&&padding!==void 0?padding:props.BlCbxBbGY)!==null&&_ref1!==void 0?_ref1:\"81px\",cqWqLD_Al:(_ref2=heading!==null&&heading!==void 0?heading:props.cqWqLD_Al)!==null&&_ref2!==void 0?_ref2:\"Letramento e pensamento cr\\xedtico\",Ixts7CgTF:(_ref3=corDoTexto!==null&&corDoTexto!==void 0?corDoTexto:props.Ixts7CgTF)!==null&&_ref3!==void 0?_ref3:\"rgb(49, 91, 193)\",mZ0yq1epP:(_ref4=corDeFundo!==null&&corDeFundo!==void 0?corDeFundo:props.mZ0yq1epP)!==null&&_ref4!==void 0?_ref4:\"rgb(231, 238, 253)\",Q35wzmGYC:(_ref5=imagem!==null&&imagem!==void 0?imagem:props.Q35wzmGYC)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/4PQPW7EzniVo8VNA22VeShjvRQ.webp\",srcSet:\"https://framerusercontent.com/images/4PQPW7EzniVo8VNA22VeShjvRQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4PQPW7EzniVo8VNA22VeShjvRQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4PQPW7EzniVo8VNA22VeShjvRQ.webp 1600w\"},QfNs43Nm5:(_ref6=fundo!==null&&fundo!==void 0?fundo:props.QfNs43Nm5)!==null&&_ref6!==void 0?_ref6:\"rgb(99, 148, 243)\",sGvbNwsOK:(_ref7=descri_o!==null&&descri_o!==void 0?descri_o:props.sGvbNwsOK)!==null&&_ref7!==void 0?_ref7:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\",variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"a_RCqa6J9\",vd9geULdt:linkParaSolu_o!==null&&linkParaSolu_o!==void 0?linkParaSolu_o:props.vd9geULdt,YOd276C7Y:(_ref9=fontSize!==null&&fontSize!==void 0?fontSize:props.YOd276C7Y)!==null&&_ref9!==void 0?_ref9:36};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cqWqLD_Al,sGvbNwsOK,Ixts7CgTF,bJBrdag90,mZ0yq1epP,QfNs43Nm5,BlCbxBbGY,Q35wzmGYC,vd9geULdt,YOd276C7Y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a_RCqa6J9\",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:vd9geULdt,nodeId:\"a_RCqa6J9\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-163qek8\",className,classNames)} framer-1c8q3jo`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a_RCqa6J9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:mZ0yq1epP,borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px -10px 66px 0px rgba(240, 255, 253, 0.25999999046325684)\",...style},variants:{\"a_RCqa6J9-hover\":{backgroundColor:QfNs43Nm5},\"AtXWGcLdc-hover\":{backgroundColor:QfNs43Nm5},\"i5JgPgaha-hover\":{backgroundColor:QfNs43Nm5}},...addPropertyOverrides({\"a_RCqa6J9-hover\":{\"data-framer-name\":undefined},\"AtXWGcLdc-hover\":{\"data-framer-name\":undefined},\"i5JgPgaha-hover\":{\"data-framer-name\":undefined},AtXWGcLdc:{\"data-framer-name\":undefined},i5JgPgaha:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-191fnz3\",layoutDependency:layoutDependency,layoutId:\"OkjrJYHgm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k6ob06\",layoutDependency:layoutDependency,layoutId:\"jqCTQwlLA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YOd276C7Y-noBNcWnwl) * 1px)\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Ixts7CgTF-noBNcWnwl))\"},children:\"Letramento e pensamento cr\\xedtico\"})}),className:\"framer-1okti9s\",\"data-framer-name\":\"Letramento e pensamento cr\\xedtico\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"iB3855Ljj\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-Ixts7CgTF-noBNcWnwl)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Ixts7CgTF-noBNcWnwl\":Ixts7CgTF,\"--variable-reference-YOd276C7Y-noBNcWnwl\":YOd276C7Y},text:cqWqLD_Al,variants:{\"a_RCqa6J9-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},\"AtXWGcLdc-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},\"i5JgPgaha-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"a_RCqa6J9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-YOd276C7Y-noBNcWnwl) * 1px)\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Letramento e pensamento cr\\xedtico\"})})},\"AtXWGcLdc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Letramento e pensamento cr\\xedtico\"})})},\"i5JgPgaha-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Letramento e pensamento cr\\xedtico\"})})},AtXWGcLdc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Ixts7CgTF-noBNcWnwl))\"},children:\"Letramento e pensamento cr\\xedtico\"})})},i5JgPgaha:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Ixts7CgTF-noBNcWnwl))\"},children:\"Letramento e pensamento cr\\xedtico\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Ixts7CgTF-noBNcWnwl))\"},children:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\"})}),className:\"framer-19pqfca\",\"data-framer-name\":\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\",fonts:[\"CUSTOM;Arvore Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"iAdOv6Lz9\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-Ixts7CgTF-noBNcWnwl)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-Ixts7CgTF-noBNcWnwl\":Ixts7CgTF},text:sGvbNwsOK,variants:{\"a_RCqa6J9-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},\"AtXWGcLdc-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"},\"i5JgPgaha-hover\":{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"a_RCqa6J9-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\"})})},\"AtXWGcLdc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\"})})},\"i5JgPgaha-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Arvore Sans Regular\", \"Arvore Sans Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,...addPropertyOverrides({\"AtXWGcLdc-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-691)/2+470+0)+46+104},\"i5JgPgaha-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+7+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-14-504.095652173913)/2+311.695652173913+0)+32+87.4},AtXWGcLdc:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||756)-0-733)/2+470+0)+67+104},i5JgPgaha:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-519.0956521739131)/2+311.69565217391306+0)+38+87.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qnuae-container\",layoutDependency:layoutDependency,layoutId:\"G3nr1HB_J-container\",children:/*#__PURE__*/_jsx(BotO,{e65JTwdPB:false,height:\"100%\",id:\"G3nr1HB_J\",layoutId:\"G3nr1HB_J\",QEW1m6hTp:bJBrdag90,rYJMGRCiS:false,width:\"100%\",Wmqr4T1Tq:\"Saiba mais\",...addPropertyOverrides({\"a_RCqa6J9-hover\":{QEW1m6hTp:\"rgb(255, 255, 255)\"},\"AtXWGcLdc-hover\":{QEW1m6hTp:\"rgb(255, 255, 255)\"},\"i5JgPgaha-hover\":{QEW1m6hTp:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sb6mf0\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"YqqgrsCwz\",style:{\"--3p0fr4\":numberToPixelString(BlCbxBbGY),backgroundColor:QfNs43Nm5,borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"a_RCqa6J9-hover\":{backgroundColor:mZ0yq1epP,borderBottomLeftRadius:19,borderBottomRightRadius:19,borderTopLeftRadius:19,borderTopRightRadius:19},\"AtXWGcLdc-hover\":{backgroundColor:mZ0yq1epP,borderBottomLeftRadius:21,borderBottomRightRadius:21,borderTopLeftRadius:21,borderTopRightRadius:21},\"i5JgPgaha-hover\":{backgroundColor:mZ0yq1epP,borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",sizes:`max(571.25px - ${BlCbxBbGY*2}px, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-pzopof\",\"data-framer-name\":\"66e2f8823e04ace2d0077aaf_Solucao_Ler.webp\",layoutDependency:layoutDependency,layoutId:\"sNFqg7ITX\",...addPropertyOverrides({\"a_RCqa6J9-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(9+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-18-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-18)*1)/2)+(73+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||490)-18)*1-146-400)/2)),sizes:\"425.25px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"AtXWGcLdc-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-691)/2+0+0)+34),sizes:\"402px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"i5JgPgaha-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+7+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-14-504.095652173913)/2+0+0)+21),sizes:\"269.6957px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},AtXWGcLdc:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||756)-0-733)/2+0+0)+34),sizes:\"402px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},i5JgPgaha:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-519.0956521739131)/2+0+0)+21),sizes:\"269.6957px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cm2KX.framer-1c8q3jo, .framer-cm2KX .framer-1c8q3jo { display: block; }\",\".framer-cm2KX.framer-163qek8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 490px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cm2KX .framer-191fnz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 100%; justify-content: center; overflow: hidden; padding: 65px; position: relative; width: 1px; }\",\".framer-cm2KX .framer-1k6ob06 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cm2KX .framer-1okti9s { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cm2KX .framer-19pqfca { --framer-text-wrap: balance; flex: none; height: auto; max-width: 401px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cm2KX .framer-7qnuae-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cm2KX .framer-sb6mf0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: var(--3p0fr4); position: relative; width: 571px; }\",\".framer-cm2KX .framer-pzopof { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 410px); overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cm2KX.framer-163qek8, .framer-cm2KX .framer-191fnz3, .framer-cm2KX .framer-1k6ob06, .framer-cm2KX .framer-sb6mf0 { gap: 0px; } .framer-cm2KX.framer-163qek8 > *, .framer-cm2KX .framer-sb6mf0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cm2KX.framer-163qek8 > :first-child, .framer-cm2KX .framer-sb6mf0 > :first-child { margin-left: 0px; } .framer-cm2KX.framer-163qek8 > :last-child, .framer-cm2KX .framer-sb6mf0 > :last-child { margin-right: 0px; } .framer-cm2KX .framer-191fnz3 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-cm2KX .framer-191fnz3 > :first-child, .framer-cm2KX .framer-1k6ob06 > :first-child { margin-top: 0px; } .framer-cm2KX .framer-191fnz3 > :last-child, .framer-cm2KX .framer-1k6ob06 > :last-child { margin-bottom: 0px; } .framer-cm2KX .framer-1k6ob06 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-cm2KX.framer-v-ugs9zf.framer-163qek8 { flex-direction: column; height: min-content; width: 670px; }\",\".framer-cm2KX.framer-v-ugs9zf .framer-191fnz3 { flex: none; height: min-content; order: 1; padding: 67px 65px 67px 65px; width: 100%; }\",\".framer-cm2KX.framer-v-ugs9zf .framer-sb6mf0 { height: 470px; order: 0; padding: 34px; width: 100%; }\",\".framer-cm2KX.framer-v-ugs9zf .framer-pzopof { flex: none; height: 100%; width: var(--framer-aspect-ratio-supported, 402px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cm2KX.framer-v-ugs9zf.framer-163qek8 { gap: 0px; } .framer-cm2KX.framer-v-ugs9zf.framer-163qek8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cm2KX.framer-v-ugs9zf.framer-163qek8 > :first-child { margin-top: 0px; } .framer-cm2KX.framer-v-ugs9zf.framer-163qek8 > :last-child { margin-bottom: 0px; } }\",\".framer-cm2KX.framer-v-1nex1yg.framer-163qek8 { flex-direction: column; height: min-content; width: 410px; }\",\".framer-cm2KX.framer-v-1nex1yg .framer-191fnz3 { flex: none; gap: 23px; height: min-content; order: 1; padding: 38px 38px 57px 38px; width: 100%; }\",\".framer-cm2KX.framer-v-1nex1yg .framer-1k6ob06 { gap: 14px; }\",\".framer-cm2KX.framer-v-1nex1yg .framer-sb6mf0 { height: 312px; order: 0; padding: 21px; width: 100%; }\",\".framer-cm2KX.framer-v-1nex1yg .framer-pzopof { flex: none; height: 100%; width: var(--framer-aspect-ratio-supported, 200px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cm2KX.framer-v-1nex1yg.framer-163qek8, .framer-cm2KX.framer-v-1nex1yg .framer-191fnz3, .framer-cm2KX.framer-v-1nex1yg .framer-1k6ob06 { gap: 0px; } .framer-cm2KX.framer-v-1nex1yg.framer-163qek8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cm2KX.framer-v-1nex1yg.framer-163qek8 > :first-child, .framer-cm2KX.framer-v-1nex1yg .framer-191fnz3 > :first-child, .framer-cm2KX.framer-v-1nex1yg .framer-1k6ob06 > :first-child { margin-top: 0px; } .framer-cm2KX.framer-v-1nex1yg.framer-163qek8 > :last-child, .framer-cm2KX.framer-v-1nex1yg .framer-191fnz3 > :last-child, .framer-cm2KX.framer-v-1nex1yg .framer-1k6ob06 > :last-child { margin-bottom: 0px; } .framer-cm2KX.framer-v-1nex1yg .framer-191fnz3 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-cm2KX.framer-v-1nex1yg .framer-1k6ob06 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-cm2KX.framer-v-163qek8.hover.framer-163qek8 { padding: 9px; }\",\".framer-cm2KX.framer-v-163qek8.hover .framer-191fnz3 { padding: 56px; }\",\".framer-cm2KX.framer-v-163qek8.hover .framer-sb6mf0 { padding: 73px; }\",\".framer-cm2KX.framer-v-163qek8.hover .framer-pzopof { height: var(--framer-aspect-ratio-supported, 426px); }\",\".framer-cm2KX.framer-v-ugs9zf.hover.framer-163qek8 { padding: 12px; }\",\".framer-cm2KX.framer-v-ugs9zf.hover .framer-191fnz3 { padding: 46px; }\",\".framer-cm2KX.framer-v-ugs9zf.hover .framer-pzopof { width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-cm2KX.framer-v-1nex1yg.hover.framer-163qek8 { padding: 7px; }\",\".framer-cm2KX.framer-v-1nex1yg.hover .framer-191fnz3 { padding: 32px 32px 48px 32px; }\",\".framer-cm2KX.framer-v-1nex1yg.hover .framer-sb6mf0 { height: 312px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 490\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AtXWGcLdc\":{\"layout\":[\"fixed\",\"auto\"]},\"i5JgPgaha\":{\"layout\":[\"fixed\",\"auto\"]},\"gKLfqcqHK\":{\"layout\":[\"fixed\",\"fixed\"]},\"e2RbyvcLo\":{\"layout\":[\"fixed\",\"auto\"]},\"PvwQtd8Oo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cqWqLD_Al\":\"heading\",\"sGvbNwsOK\":\"descri_o\",\"Ixts7CgTF\":\"corDoTexto\",\"bJBrdag90\":\"corDoBot_o\",\"mZ0yq1epP\":\"corDeFundo\",\"QfNs43Nm5\":\"fundo\",\"BlCbxBbGY\":\"padding\",\"Q35wzmGYC\":\"imagem\",\"vd9geULdt\":\"linkParaSolu_o\",\"YOd276C7Y\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernoBNcWnwl=withCSS(Component,css,\"framer-cm2KX\");export default FramernoBNcWnwl;FramernoBNcWnwl.displayName=\"Banner\";FramernoBNcWnwl.defaultProps={height:490,width:1200};addPropertyControls(FramernoBNcWnwl,{variant:{options:[\"a_RCqa6J9\",\"AtXWGcLdc\",\"i5JgPgaha\"],optionTitles:[\"Variant 1\",\"Variant\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},cqWqLD_Al:{defaultValue:\"Letramento e pensamento cr\\xedtico\",displayTextArea:false,title:\"Heading\",type:ControlType.String},sGvbNwsOK:{defaultValue:\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\",displayTextArea:false,title:\"Descri\\xe7\\xe3o\",type:ControlType.String},Ixts7CgTF:{defaultValue:\"rgb(49, 91, 193)\",title:\"Cor do texto\",type:ControlType.Color},bJBrdag90:{defaultValue:\"rgb(99, 148, 243)\",title:\"Cor do bot\\xe3o\",type:ControlType.Color},mZ0yq1epP:{defaultValue:\"rgb(231, 238, 253)\",title:\"Cor de fundo\",type:ControlType.Color},QfNs43Nm5:{defaultValue:\"rgb(99, 148, 243)\",title:\"Fundo\",type:ControlType.Color},BlCbxBbGY:{defaultValue:\"81px\",title:\"Padding\",type:ControlType.Padding},Q35wzmGYC:{__defaultAssetReference:\"data:framer/asset-reference,4PQPW7EzniVo8VNA22VeShjvRQ.webp?originalFilename=66e2f8823e04ace2d0077aaf_Solucao_Ler.webp&preferredSize=auto\",title:\"Imagem\",type:ControlType.ResponsiveImage},vd9geULdt:{title:\"Link para solu\\xe7\\xe3o\",type:ControlType.Link},YOd276C7Y:{defaultValue:36,title:\"Font Size\",type:ControlType.Number}});addFonts(FramernoBNcWnwl,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"},{family:\"Arvore Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/bIrsJtrweolMoRdb6mEicc5Cg.woff2\"}]},...BotOFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernoBNcWnwl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"cqWqLD_Al\\\":\\\"heading\\\",\\\"sGvbNwsOK\\\":\\\"descri_o\\\",\\\"Ixts7CgTF\\\":\\\"corDoTexto\\\",\\\"bJBrdag90\\\":\\\"corDoBot_o\\\",\\\"mZ0yq1epP\\\":\\\"corDeFundo\\\",\\\"QfNs43Nm5\\\":\\\"fundo\\\",\\\"BlCbxBbGY\\\":\\\"padding\\\",\\\"Q35wzmGYC\\\":\\\"imagem\\\",\\\"vd9geULdt\\\":\\\"linkParaSolu_o\\\",\\\"YOd276C7Y\\\":\\\"fontSize\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"490\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AtXWGcLdc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i5JgPgaha\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gKLfqcqHK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e2RbyvcLo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PvwQtd8Oo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./noBNcWnwl.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "borda", "corDeFundo", "corDeFundo1", "corDeFundo2", "corDoHeading", "fontSize", "height", "id", "text", "text3", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "tk2GyVQR3", "RoxZiPPzg", "x4O76F3Sh", "wVy8xbxPY", "MpkQekcdw", "WkK0iFHvt", "U_4NVJkNW", "os4Bcm6pl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1d3fofp", "args", "onTapbbmae7", "onTapnvreib", "onTap132a3hd", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "RichText2", "SVG", "css", "FramerFa9luwJrq", "withCSS", "Fa9luwJrq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "InvisibleEventHandler", "props", "dragStartX", "setDragStartX", "ye", "dragging", "setDragging", "variant", "setVariant", "inputRef", "pe", "handleMouseDown", "e", "handleMouseUp", "dragDistance", "ue", "handleMouseMove", "window", "u", "p", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cargo", "foto", "height", "id", "nome", "padding", "texto", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Xh5zqKW4K", "TJERDRPuW", "EXvyXrtG_", "IshkMoMnU", "gedtFANXt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "FramerPrnL9pY5W", "withCSS", "PrnL9pY5W_default", "addPropertyControls", "ControlType", "addFonts", "UncodeDragHandlerFonts", "getFonts", "InvisibleEventHandler", "Card1Fonts", "PrnL9pY5W_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "addImageAlt", "image", "alt", "numberToPixelString", "value", "transformTemplate2", "transition2", "animation", "animation1", "animation2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Lh__0nazh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onDragRight1m7xjyb", "args", "onDragLeft1l9o24a", "onDragRight1l9o24a", "onDragLeft6g63au", "onDragRight6g63au", "onDragLeft1m7xjyb", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerC3sMlcjUK", "withCSS", "C3sMlcjUK_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "emTanKmze", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdueld9", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "SVG", "css", "Framerk9W27MCmS", "withCSS", "k9W27MCmS_default", "addPropertyControls", "ControlType", "addFonts", "SetasFonts", "getFonts", "k9W27MCmS_default", "CardsFonts", "C3sMlcjUK_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableEnumMap2", "humanReadableVariantMap", "getProps", "align", "direction", "distribute", "fontSize", "gap", "gap2", "height", "id", "padding", "width", "props", "_ref", "_humanReadableEnumMap_direction", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableEnumMap2_distribute", "_ref5", "_ref6", "_humanReadableEnumMap1_align", "_ref7", "_ref8", "_humanReadableVariantMap_props_variant", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dYr0SHvVY", "dEf1lWLv_", "UZKT1SoDq", "ufh0En2p_", "W_GH7fSId", "a01GzEugx", "RnlaAsaA2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "emTanKmze1imuzaf", "args", "emTanKmze1ynh31h", "emTanKmze16vksy4", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framern04yuT8rI", "withCSS", "n04yuT8rI_default", "addPropertyControls", "ControlType", "addFonts", "BotOFonts", "getFonts", "VOkw44s5a_default", "ImageWithFX", "withFX", "Image2", "MotionAWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "numberToPixelString", "value", "toResponsiveImage", "animation2", "animation3", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "corDeFundo", "corDoBot_o", "corDoTexto", "descri_o", "fontSize", "fundo", "heading", "height", "id", "imagem", "linkParaSolu_o", "padding", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cqWqLD_Al", "sGvbNwsOK", "Ixts7CgTF", "bJBrdag90", "mZ0yq1epP", "QfNs43Nm5", "BlCbxBbGY", "Q35wzmGYC", "vd9geULdt", "YOd276C7Y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramernoBNcWnwl", "withCSS", "noBNcWnwl_default", "addPropertyControls", "ControlType", "addFonts"]
}
