{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.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/r2T2PJMgYpLTvK20OkfW/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", "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 (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}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-I47qu\";const variantClassNames={a_RCqa6J9:\"framer-v-163qek8\",AtXWGcLdc:\"framer-v-ugs9zf\",i5JgPgaha:\"framer-v-1nex1yg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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,visiblePaisagem,visibleQuadrado,width,...props})=>{return{...props,bJBrdag90:corDoBot_o??props.bJBrdag90??\"rgb(99, 148, 243)\",BlCbxBbGY:padding??props.BlCbxBbGY??\"81px\",cqWqLD_Al:heading??props.cqWqLD_Al??\"Letramento e pensamento cr\\xedtico\",Ixts7CgTF:corDoTexto??props.Ixts7CgTF??\"rgb(49, 91, 193)\",LfRHqzDE_:visiblePaisagem??props.LfRHqzDE_??true,mZ0yq1epP:corDeFundo??props.mZ0yq1epP??\"rgb(231, 238, 253)\",Q35wzmGYC:imagem??props.Q35wzmGYC??{pixelHeight:1600,pixelWidth:1600,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:fundo??props.QfNs43Nm5??\"rgb(99, 148, 243)\",sGvbNwsOK:descri_o??props.sGvbNwsOK??\"Alunos desenvolvendo o h\\xe1bito leitor com livros e conte\\xfados de atualidades.\",ULYlO2sw0:visibleQuadrado??props.ULYlO2sw0??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"a_RCqa6J9\",vd9geULdt:linkParaSolu_o??props.vd9geULdt,YOd276C7Y:fontSize??props.YOd276C7Y??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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cqWqLD_Al,sGvbNwsOK,Ixts7CgTF,bJBrdag90,mZ0yq1epP,QfNs43Nm5,BlCbxBbGY,Q35wzmGYC,vd9geULdt,YOd276C7Y,ULYlO2sw0,LfRHqzDE_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a_RCqa6J9\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vd9geULdt,motionChild:true,nodeId:\"a_RCqa6J9\",scopeId:\"noBNcWnwl\",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(scopingClassNames,\"framer-163qek8\",className,classNames)} framer-1c8q3jo`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a_RCqa6J9\",ref:refBinding,style:{backgroundColor:mZ0yq1epP,borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px -10px 66px 0px rgba(240, 255, 253, 0.26)\",...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?.y||0)+12+(((componentViewport?.height||737.5)-24-691)/2+470+0)+46+104},\"i5JgPgaha-hover\":{y:(componentViewport?.y||0)+7+(((componentViewport?.height||200)-14-504.0957)/2+311.6957+0)+32+87.4},AtXWGcLdc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||755.5)-0-733)/2+470+0)+67+104},i5JgPgaha:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-519.0957)/2+311.6957+0)+38+87.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7qnuae-container\",layoutDependency:layoutDependency,layoutId:\"G3nr1HB_J-container\",nodeId:\"G3nr1HB_J\",rendersWithMotion:true,scopeId:\"noBNcWnwl\",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__*/_jsxs(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:[ULYlO2sw0&&/*#__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:\"fit\",sizes:`max((571.25px - ${BlCbxBbGY*2}px) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-pzopof\",\"data-framer-name\":\"Quadrado\",layoutDependency:layoutDependency,layoutId:\"sNFqg7ITX\",...addPropertyOverrides({\"a_RCqa6J9-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(9+((componentViewport?.height||490)-18-((componentViewport?.height||490)-18)*1)/2)+(73+(((componentViewport?.height||490)-18)*1-146-400)/2)),sizes:\"Infinitypx\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"AtXWGcLdc-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+(((componentViewport?.height||737.5)-24-691)/2+0+0)+34),sizes:\"402px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"i5JgPgaha-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7+(((componentViewport?.height||200)-14-504.0957)/2+0+0)+21),sizes:\"269.6957px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},AtXWGcLdc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||755.5)-0-733)/2+0+0)+34),sizes:\"402px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},i5JgPgaha:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-519.0957)/2+0+0)+21),sizes:\"269.6957px\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),LfRHqzDE_&&/*#__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) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1nq3ukb\",\"data-framer-name\":\"Paisagem\",layoutDependency:layoutDependency,layoutId:\"ZAOgHo8iC\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({\"a_RCqa6J9-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(9+((componentViewport?.height||490)-18-((componentViewport?.height||490)-18)*1)/2)+(73+(((componentViewport?.height||490)-18)*1-146-380)/2)),sizes:\"Infinitypx\",...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"AtXWGcLdc-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+12+(((componentViewport?.height||737.5)-24-691)/2+0+0)+234.5),sizes:`max((${componentViewport?.width||\"100vw\"} - 92px) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},\"i5JgPgaha-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+7+(((componentViewport?.height||200)-14-504.0957)/2+0+0)+155.3479),sizes:`max((${componentViewport?.width||\"100vw\"} - 56px) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},AtXWGcLdc:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||755.5)-0-733)/2+0+0)+234.5),sizes:`max((${componentViewport?.width||\"100vw\"} - 68px) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}},i5JgPgaha:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-519.0957)/2+0+0)+155.3479),sizes:`max((${componentViewport?.width||\"100vw\"} - 42px) / 0, 1px)`,...toResponsiveImage(Q35wzmGYC),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I47qu.framer-1c8q3jo, .framer-I47qu .framer-1c8q3jo { display: block; }\",\".framer-I47qu.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-I47qu .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-I47qu .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-I47qu .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-I47qu .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-I47qu .framer-7qnuae-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-I47qu .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-I47qu .framer-pzopof { aspect-ratio: 1 / 1; flex: 1 0 0px; gap: 0px; height: var(--framer-aspect-ratio-supported, 205px); overflow: hidden; position: relative; width: 1px; }\",\".framer-I47qu .framer-1nq3ukb { aspect-ratio: 2.3684210526315788 / 1; flex: 1 0 0px; gap: 0px; height: var(--framer-aspect-ratio-supported, 86px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I47qu.framer-v-ugs9zf.framer-163qek8 { flex-direction: column; height: min-content; width: 670px; }\",\".framer-I47qu.framer-v-ugs9zf .framer-191fnz3 { flex: none; height: min-content; order: 1; padding: 67px 65px 67px 65px; width: 100%; }\",\".framer-I47qu.framer-v-ugs9zf .framer-sb6mf0 { height: 470px; order: 0; padding: 34px; width: 100%; }\",\".framer-I47qu.framer-v-ugs9zf .framer-pzopof { flex: none; height: 100%; width: var(--framer-aspect-ratio-supported, 402px); }\",\".framer-I47qu.framer-v-ugs9zf .framer-1nq3ukb, .framer-I47qu.framer-v-1nex1yg .framer-1nq3ukb { height: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-I47qu.framer-v-1nex1yg.framer-163qek8 { flex-direction: column; height: min-content; width: 410px; }\",\".framer-I47qu.framer-v-1nex1yg .framer-191fnz3 { flex: none; gap: 23px; height: min-content; order: 1; padding: 38px 38px 57px 38px; width: 100%; }\",\".framer-I47qu.framer-v-1nex1yg .framer-1k6ob06 { gap: 14px; }\",\".framer-I47qu.framer-v-1nex1yg .framer-sb6mf0 { height: 312px; order: 0; padding: 21px; width: 100%; }\",\".framer-I47qu.framer-v-1nex1yg .framer-pzopof { flex: none; height: 100%; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-I47qu.framer-v-163qek8.hover.framer-163qek8 { padding: 9px; }\",\".framer-I47qu.framer-v-163qek8.hover .framer-191fnz3 { padding: 56px; }\",\".framer-I47qu.framer-v-163qek8.hover .framer-sb6mf0 { padding: 73px; }\",\".framer-I47qu.framer-v-163qek8.hover .framer-pzopof { height: var(--framer-aspect-ratio-supported, 213px); }\",\".framer-I47qu.framer-v-163qek8.hover .framer-1nq3ukb { height: var(--framer-aspect-ratio-supported, 90px); }\",\".framer-I47qu.framer-v-ugs9zf.hover.framer-163qek8 { padding: 12px; }\",\".framer-I47qu.framer-v-ugs9zf.hover .framer-191fnz3 { padding: 46px; }\",\".framer-I47qu.framer-v-ugs9zf.hover .framer-1nq3ukb { height: var(--framer-aspect-ratio-supported, 74px); }\",\".framer-I47qu.framer-v-1nex1yg.hover.framer-163qek8 { padding: 7px; }\",\".framer-I47qu.framer-v-1nex1yg.hover .framer-191fnz3 { padding: 32px 32px 48px 32px; }\",\".framer-I47qu.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\",\"ULYlO2sw0\":\"visibleQuadrado\",\"LfRHqzDE_\":\"visiblePaisagem\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramernoBNcWnwl=withCSS(Component,css,\"framer-I47qu\");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},ULYlO2sw0:{defaultValue:true,title:\"Visible Quadrado\",type:ControlType.Boolean},LfRHqzDE_:{defaultValue:true,title:\"Visible Paisagem\",type:ControlType.Boolean}});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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernoBNcWnwl\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"490\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"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\\\",\\\"ULYlO2sw0\\\":\\\"visibleQuadrado\\\",\\\"LfRHqzDE_\\\":\\\"visiblePaisagem\\\"}\",\"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\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__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", "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", "InvisibleEventHandler", "props", "dragStartX", "setDragStartX", "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", "_", "t", "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", "visiblePaisagem", "visibleQuadrado", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cqWqLD_Al", "sGvbNwsOK", "Ixts7CgTF", "bJBrdag90", "mZ0yq1epP", "QfNs43Nm5", "BlCbxBbGY", "Q35wzmGYC", "vd9geULdt", "YOd276C7Y", "ULYlO2sw0", "LfRHqzDE_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "css", "FramernoBNcWnwl", "withCSS", "noBNcWnwl_default", "addPropertyControls", "ControlType", "addFonts"]
}
