{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/6NOqhIQKMODubuEGGVmR/FpDn9RJmRpCC5x28ozTW/cxKIKJV53.js", "ssg:https://framerusercontent.com/modules/tkogCeDIk0f2q03BGHL4/6RKbnU26fLyWH2E5mwnT/Hv_4e0ePo.js", "ssg:https://framerusercontent.com/modules/w7Hd6bL8edf8uz2TyOOf/rIHWqbxCWHD3dORN2Z3R/qcTZ3Xgkp.js", "ssg:https://framerusercontent.com/modules/tfVPeTHlZWRBimWafLA7/OYZ8QnBTY9jXEUhcMzd9/Rvywd0klM.js", "ssg:https://framerusercontent.com/modules/nKkRTgYiVl2Zht9df4J8/MsnKdLIKcrRshIHXrKcl/Z3OhBCluA.js", "ssg:https://framerusercontent.com/modules/kKhnSmlD7nQTuE1nnaCF/J8VgmOP8xADmjSyqG1M3/b_PYmLUDb.js", "ssg:https://framerusercontent.com/modules/aMt9HJFcK0Z2I4oOGrcS/hwRiATnnZpl9jfOVZ0LM/luSrNs9J4.js", "ssg:https://framerusercontent.com/modules/wQQEAmrgVxnXrcqqJLaQ/UCDho5FVwFlFdfqNw5Lg/NnQ2pknWm.js", "ssg:https://framerusercontent.com/modules/p8Bf82QZlZumPcZQ2z48/CMcql7egnmhAdQXTYU3u/evynN0x7l.js", "ssg:https://framerusercontent.com/modules/oaciOwv9Ca7Bhqpt77nY/K1XcxaJubu0s2r9AGQwA/HqI0iLz1b.js", "ssg:https://framerusercontent.com/modules/v6PL2wb7mEUGSEheuY44/ATHKuA0Ff8MbiG2GdlWU/jfXqkjS5t.js", "ssg:https://framerusercontent.com/modules/mOCc6oe0DSQ8nhMHjs1h/uHhW8dH7yVsJAJIur2kT/OAxo8PzrV.js", "ssg:https://framerusercontent.com/modules/cGk2ao45z5e5ld7l7wb1/wtsjFyMSff0w4H4Ju7Ek/UmtDb1b31.js", "ssg:https://framerusercontent.com/modules/98ufDpXjLtKI95LkQNr4/dwRuR93Nkx3MJdtlxqr5/SZJbqd1pW.js", "ssg:https://framerusercontent.com/modules/9Gkih2IhMeZ7RAhRVqee/9AP9o9jvI3sYqLF85DM0/VX1lUZInj.js", "ssg:https://framerusercontent.com/modules/xknx0Qe2QUXFnNv1dozM/yHbdrioYhHq48yiuiBeK/w1g4pjtGT.js", "ssg:https://framerusercontent.com/modules/iF53o8Cq6Su2G4xo5ILP/bmfyZcOl1k5LGi3NkT6W/Y693iy0_Z.js", "ssg:https://framerusercontent.com/modules/6brNFRWu3gP9NVx2sgQk/EzlabaBly0stjMeRKwPG/aoUbO5SJb.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"SJsU16r48\",\"xoO29jy0v\",\"pSqSxUw0Z\",\"RiGvbaWk_\",\"V97uaOE6h\",\"bXX_4vZeZ\"];const serializationHash=\"framer-uu0Xa\";const variantClassNames={bXX_4vZeZ:\"framer-v-ottjtb\",pSqSxUw0Z:\"framer-v-1mlr56n\",RiGvbaWk_:\"framer-v-198qx9b\",SJsU16r48:\"framer-v-1fndmiy\",V97uaOE6h:\"framer-v-6kzg7b\",xoO29jy0v:\"framer-v-115pn1k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:4.2,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - EN\":\"SJsU16r48\",\"Desktop - ES\":\"pSqSxUw0Z\",\"Desktop - PT\":\"V97uaOE6h\",\"mobile - EN\":\"xoO29jy0v\",\"Mobile - ES\":\"RiGvbaWk_\",\"Mobile - PT\":\"bXX_4vZeZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SJsU16r48\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SJsU16r48\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fndmiy\",className,classNames),\"data-framer-name\":\"Desktop - EN\",\"data-highlight\":true,id:`${layoutId}-1fndmiy`,layoutDependency:layoutDependency,layoutId:\"SJsU16r48\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:refBinding,style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({bXX_4vZeZ:{\"data-framer-name\":\"Mobile - PT\"},pSqSxUw0Z:{\"data-framer-name\":\"Desktop - ES\"},RiGvbaWk_:{\"data-framer-name\":\"Mobile - ES\"},V97uaOE6h:{\"data-framer-name\":\"Desktop - PT\"},xoO29jy0v:{\"data-framer-name\":\"mobile - EN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-198msua\",\"data-framer-name\":\"Temperatura-alta\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"K1ERhmqC8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 29.942 60 L 27.369 60 C 12.442 58.577 7.795 39.206 20.448 31.15 L 20.492 24.059 C 21.078 22.817 22.647 23.095 22.806 24.502 C 23.073 26.853 22.653 29.759 22.752 32.166 C 22.531 32.898 21.795 33.061 21.25 33.47 C 7.183 44.038 21.02 63.869 35.167 55.925 C 43.036 51.506 44.142 40.475 37.366 34.505 C 36.692 33.913 34.625 32.819 34.509 32.097 L 34.509 8.123 C 34.222 2.736 27.486 0.38 24.033 4.677 C 21.93 7.294 23.109 11.738 22.811 14.916 C 22.672 16.403 21.187 16.78 20.492 15.47 C 20.712 10.519 19.137 4.991 23.82 1.656 C 29.214 -2.186 36.491 1.523 36.847 8.006 L 36.864 31.147 C 43.112 35.352 45.861 42.895 43.13 50.089 C 41.092 55.459 35.703 59.545 29.941 60 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 25.127 34.133 L 25.172 9.089 C 25.263 8.684 25.758 8.372 26.148 8.311 C 26.934 8.189 30.377 8.192 31.142 8.331 C 31.781 8.447 32.173 8.998 32.169 9.644 L 32.18 34.077 L 32.281 34.209 C 38.652 36.448 41.405 43.898 38.073 49.825 C 34.211 56.697 24.372 57.205 19.788 50.797 C 15.519 44.831 18.273 36.489 25.128 34.131 Z M 29.825 10.644 L 27.486 10.644 L 27.486 35.264 C 27.486 35.378 27.1 35.911 26.944 36.009 C 26.548 36.261 25.78 36.375 25.3 36.589 C 16.334 40.592 19.866 53.698 29.295 52.983 C 38.025 52.32 40.189 40.2 32.008 36.589 C 31.538 36.381 29.823 36.023 29.823 35.383 L 29.823 10.644 Z M 41.139 8.331 C 41.808 8.209 45.234 8.2 45.88 8.331 C 47.141 8.586 47.145 10.441 45.778 10.633 C 45.081 10.731 41.63 10.758 41.019 10.619 C 39.877 10.361 39.816 8.572 41.139 8.331 Z M 41.139 14.881 C 41.808 14.759 45.234 14.75 45.88 14.881 C 47.141 15.136 47.145 16.991 45.778 17.183 C 45.081 17.281 41.63 17.308 41.019 17.169 C 39.877 16.911 39.816 15.122 41.139 14.881 Z M 41.139 21.431 C 41.808 21.309 45.234 21.3 45.88 21.431 C 47.141 21.686 47.145 23.541 45.778 23.733 C 45.081 23.831 41.63 23.858 41.019 23.719 C 39.877 23.461 39.816 21.672 41.139 21.431 Z M 41.139 27.981 C 41.808 27.859 45.234 27.85 45.88 27.981 C 47.141 28.236 47.145 30.091 45.778 30.283 C 45.081 30.381 41.63 30.408 41.019 30.269 C 39.877 30.011 39.816 28.222 41.139 27.981 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 21.373 18.622 C 22.911 18.323 23.289 20.606 21.903 20.914 C 20.336 21.261 19.844 18.92 21.373 18.622 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 33.42 43.3 C 34.4 43.108 34.887 43.959 34.842 44.836 C 34.619 49.187 29.719 51.981 25.844 50.005 C 24.944 49.545 24.216 48.52 25.256 47.77 C 26.087 47.172 26.681 47.9 27.486 48.128 C 29.42 48.678 31.511 47.748 32.222 45.845 C 32.575 44.902 32.253 43.528 33.422 43.298 Z M 23.362 43.3 C 25.192 42.998 25.17 45.817 23.461 45.611 C 22.133 45.45 22.077 43.513 23.362 43.3 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:11646889245,withExternalLayout:true,...addPropertyOverrides({bXX_4vZeZ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 19.961 40 L 18.246 40 C 8.295 39.051 5.197 26.137 13.632 20.767 L 13.661 16.04 C 14.052 15.211 15.098 15.397 15.204 16.334 C 15.382 17.902 15.102 19.84 15.168 21.444 C 15.021 21.932 14.53 22.041 14.167 22.314 C 4.789 29.358 14.014 42.579 23.445 37.283 C 28.691 34.337 29.428 26.983 24.91 23.003 C 24.461 22.608 23.083 21.879 23.006 21.398 L 23.006 5.416 C 22.815 1.824 18.324 0.253 16.022 3.118 C 14.62 4.862 15.406 7.825 15.207 9.944 C 15.115 10.935 14.125 11.186 13.661 10.314 C 13.808 7.012 12.758 3.327 15.88 1.104 C 19.476 -1.457 24.327 1.016 24.565 5.337 L 24.576 20.765 C 28.742 23.568 30.574 28.597 28.753 33.393 C 27.395 36.973 23.802 39.697 19.96 40 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 16.751 22.755 L 16.781 6.059 C 16.842 5.79 17.172 5.581 17.432 5.541 C 17.956 5.459 20.251 5.461 20.761 5.554 C 21.188 5.631 21.449 5.999 21.446 6.429 L 21.453 22.718 L 21.521 22.806 C 25.768 24.299 27.603 29.266 25.382 33.217 C 22.807 37.798 16.248 38.136 13.192 33.865 C 10.346 29.888 12.182 24.326 16.752 22.754 Z M 19.883 7.096 L 18.324 7.096 L 18.324 23.509 C 18.324 23.585 18.067 23.941 17.962 24.006 C 17.699 24.174 17.186 24.25 16.867 24.393 C 10.89 27.061 13.244 35.799 19.53 35.322 C 25.35 34.88 26.793 26.8 21.339 24.393 C 21.025 24.254 19.882 24.016 19.882 23.589 L 19.882 7.096 Z M 27.426 5.554 C 27.872 5.473 30.156 5.467 30.586 5.554 C 31.427 5.724 31.43 6.96 30.519 7.089 C 30.054 7.154 27.753 7.172 27.346 7.079 C 26.584 6.907 26.544 5.715 27.426 5.554 Z M 27.426 9.921 C 27.872 9.84 30.156 9.833 30.586 9.921 C 31.427 10.091 31.43 11.327 30.519 11.455 C 30.054 11.521 27.753 11.539 27.346 11.446 C 26.584 11.274 26.544 10.081 27.426 9.921 Z M 27.426 14.288 C 27.872 14.206 30.156 14.2 30.586 14.288 C 31.427 14.457 31.43 15.694 30.519 15.822 C 30.054 15.888 27.753 15.905 27.346 15.813 C 26.584 15.641 26.544 14.448 27.426 14.288 Z M 27.426 18.654 C 27.872 18.573 30.156 18.567 30.586 18.654 C 31.427 18.824 31.43 20.06 30.519 20.189 C 30.054 20.254 27.753 20.272 27.346 20.179 C 26.584 20.007 26.544 18.815 27.426 18.654 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.249 12.415 C 15.274 12.216 15.526 13.738 14.602 13.943 C 13.557 14.174 13.229 12.614 14.249 12.415 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 22.28 28.867 C 22.933 28.739 23.258 29.306 23.228 29.891 C 23.079 32.792 19.812 34.654 17.229 33.336 C 16.629 33.03 16.144 32.347 16.837 31.847 C 17.392 31.448 17.787 31.933 18.324 32.085 C 19.614 32.452 21.007 31.832 21.481 30.564 C 21.717 29.934 21.502 29.019 22.281 28.866 Z M 15.575 28.867 C 16.795 28.666 16.78 30.545 15.641 30.407 C 14.755 30.3 14.718 29.008 15.575 28.867 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:12311531363},pSqSxUw0Z:{svgContentId:10932056014},RiGvbaWk_:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 19.961 40 L 18.246 40 C 8.295 39.051 5.197 26.137 13.632 20.767 L 13.661 16.04 C 14.052 15.211 15.098 15.397 15.204 16.334 C 15.382 17.902 15.102 19.84 15.168 21.444 C 15.021 21.932 14.53 22.041 14.167 22.314 C 4.789 29.358 14.014 42.579 23.445 37.283 C 28.691 34.337 29.428 26.983 24.91 23.003 C 24.461 22.608 23.083 21.879 23.006 21.398 L 23.006 5.416 C 22.815 1.824 18.324 0.253 16.022 3.118 C 14.62 4.862 15.406 7.825 15.207 9.944 C 15.115 10.935 14.125 11.186 13.661 10.314 C 13.808 7.012 12.758 3.327 15.88 1.104 C 19.476 -1.457 24.327 1.016 24.565 5.337 L 24.576 20.765 C 28.742 23.568 30.574 28.597 28.753 33.393 C 27.395 36.973 23.802 39.697 19.96 40 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 16.751 22.755 L 16.781 6.059 C 16.842 5.79 17.172 5.581 17.432 5.541 C 17.956 5.459 20.251 5.461 20.761 5.554 C 21.188 5.631 21.449 5.999 21.446 6.429 L 21.453 22.718 L 21.521 22.806 C 25.768 24.299 27.603 29.266 25.382 33.217 C 22.807 37.798 16.248 38.136 13.192 33.865 C 10.346 29.888 12.182 24.326 16.752 22.754 Z M 19.883 7.096 L 18.324 7.096 L 18.324 23.509 C 18.324 23.585 18.067 23.941 17.962 24.006 C 17.699 24.174 17.186 24.25 16.867 24.393 C 10.89 27.061 13.244 35.799 19.53 35.322 C 25.35 34.88 26.793 26.8 21.339 24.393 C 21.025 24.254 19.882 24.016 19.882 23.589 L 19.882 7.096 Z M 27.426 5.554 C 27.872 5.473 30.156 5.467 30.586 5.554 C 31.427 5.724 31.43 6.96 30.519 7.089 C 30.054 7.154 27.753 7.172 27.346 7.079 C 26.584 6.907 26.544 5.715 27.426 5.554 Z M 27.426 9.921 C 27.872 9.84 30.156 9.833 30.586 9.921 C 31.427 10.091 31.43 11.327 30.519 11.455 C 30.054 11.521 27.753 11.539 27.346 11.446 C 26.584 11.274 26.544 10.081 27.426 9.921 Z M 27.426 14.288 C 27.872 14.206 30.156 14.2 30.586 14.288 C 31.427 14.457 31.43 15.694 30.519 15.822 C 30.054 15.888 27.753 15.905 27.346 15.813 C 26.584 15.641 26.544 14.448 27.426 14.288 Z M 27.426 18.654 C 27.872 18.573 30.156 18.567 30.586 18.654 C 31.427 18.824 31.43 20.06 30.519 20.189 C 30.054 20.254 27.753 20.272 27.346 20.179 C 26.584 20.007 26.544 18.815 27.426 18.654 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.249 12.415 C 15.274 12.216 15.526 13.738 14.602 13.943 C 13.557 14.174 13.229 12.614 14.249 12.415 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 22.28 28.867 C 22.933 28.739 23.258 29.306 23.228 29.891 C 23.079 32.792 19.812 34.654 17.229 33.336 C 16.629 33.03 16.144 32.347 16.837 31.847 C 17.392 31.448 17.787 31.933 18.324 32.085 C 19.614 32.452 21.007 31.832 21.481 30.564 C 21.717 29.934 21.502 29.019 22.281 28.866 Z M 15.575 28.867 C 16.795 28.666 16.78 30.545 15.641 30.407 C 14.755 30.3 14.718 29.008 15.575 28.867 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:12311531363},V97uaOE6h:{svgContentId:10932056014},xoO29jy0v:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 19.961 40 L 18.246 40 C 8.295 39.051 5.197 26.137 13.632 20.767 L 13.661 16.04 C 14.052 15.211 15.098 15.397 15.204 16.334 C 15.382 17.902 15.102 19.84 15.168 21.444 C 15.021 21.932 14.53 22.041 14.167 22.314 C 4.789 29.358 14.014 42.579 23.445 37.283 C 28.691 34.337 29.428 26.983 24.91 23.003 C 24.461 22.608 23.083 21.879 23.006 21.398 L 23.006 5.416 C 22.815 1.824 18.324 0.253 16.022 3.118 C 14.62 4.862 15.406 7.825 15.207 9.944 C 15.115 10.935 14.125 11.186 13.661 10.314 C 13.808 7.012 12.758 3.327 15.88 1.104 C 19.476 -1.457 24.327 1.016 24.565 5.337 L 24.576 20.765 C 28.742 23.568 30.574 28.597 28.753 33.393 C 27.395 36.973 23.802 39.697 19.96 40 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 16.751 22.755 L 16.781 6.059 C 16.842 5.79 17.172 5.581 17.432 5.541 C 17.956 5.459 20.251 5.461 20.761 5.554 C 21.188 5.631 21.449 5.999 21.446 6.429 L 21.453 22.718 L 21.521 22.806 C 25.768 24.299 27.603 29.266 25.382 33.217 C 22.807 37.798 16.248 38.136 13.192 33.865 C 10.346 29.888 12.182 24.326 16.752 22.754 Z M 19.883 7.096 L 18.324 7.096 L 18.324 23.509 C 18.324 23.585 18.067 23.941 17.962 24.006 C 17.699 24.174 17.186 24.25 16.867 24.393 C 10.89 27.061 13.244 35.799 19.53 35.322 C 25.35 34.88 26.793 26.8 21.339 24.393 C 21.025 24.254 19.882 24.016 19.882 23.589 L 19.882 7.096 Z M 27.426 5.554 C 27.872 5.473 30.156 5.467 30.586 5.554 C 31.427 5.724 31.43 6.96 30.519 7.089 C 30.054 7.154 27.753 7.172 27.346 7.079 C 26.584 6.907 26.544 5.715 27.426 5.554 Z M 27.426 9.921 C 27.872 9.84 30.156 9.833 30.586 9.921 C 31.427 10.091 31.43 11.327 30.519 11.455 C 30.054 11.521 27.753 11.539 27.346 11.446 C 26.584 11.274 26.544 10.081 27.426 9.921 Z M 27.426 14.288 C 27.872 14.206 30.156 14.2 30.586 14.288 C 31.427 14.457 31.43 15.694 30.519 15.822 C 30.054 15.888 27.753 15.905 27.346 15.813 C 26.584 15.641 26.544 14.448 27.426 14.288 Z M 27.426 18.654 C 27.872 18.573 30.156 18.567 30.586 18.654 C 31.427 18.824 31.43 20.06 30.519 20.189 C 30.054 20.254 27.753 20.272 27.346 20.179 C 26.584 20.007 26.544 18.815 27.426 18.654 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.249 12.415 C 15.274 12.216 15.526 13.738 14.602 13.943 C 13.557 14.174 13.229 12.614 14.249 12.415 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 22.28 28.867 C 22.933 28.739 23.258 29.306 23.228 29.891 C 23.079 32.792 19.812 34.654 17.229 33.336 C 16.629 33.03 16.144 32.347 16.837 31.847 C 17.392 31.448 17.787 31.933 18.324 32.085 C 19.614 32.452 21.007 31.832 21.481 30.564 C 21.717 29.934 21.502 29.019 22.281 28.866 Z M 15.575 28.867 C 16.795 28.666 16.78 30.545 15.641 30.407 C 14.755 30.3 14.718 29.008 15.575 28.867 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:12311531363}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1fndmiy`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({bXX_4vZeZ:{safeArea:false},RiGvbaWk_:{safeArea:false},xoO29jy0v:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-j84lfo\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"dV_76DV5c\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Wheater\"})}),className:\"framer-1ykwcsm\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"Akp3zcQf7\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bXX_4vZeZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},pSqSxUw0Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},RiGvbaWk_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},V97uaOE6h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},xoO29jy0v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Wheater\"})})}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uu0Xa.framer-atp0ie, .framer-uu0Xa .framer-atp0ie { display: block; }\",\".framer-uu0Xa.framer-1fndmiy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-uu0Xa .framer-198msua { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-uu0Xa .framer-j84lfo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-uu0Xa .framer-1ykwcsm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uu0Xa.framer-1fndmiy, .framer-uu0Xa .framer-j84lfo { gap: 0px; } .framer-uu0Xa.framer-1fndmiy > *, .framer-uu0Xa .framer-j84lfo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uu0Xa.framer-1fndmiy > :first-child, .framer-uu0Xa .framer-j84lfo > :first-child { margin-left: 0px; } .framer-uu0Xa.framer-1fndmiy > :last-child, .framer-uu0Xa .framer-j84lfo > :last-child { margin-right: 0px; } }\",\".framer-uu0Xa.framer-v-115pn1k .framer-198msua, .framer-uu0Xa.framer-v-198qx9b .framer-198msua, .framer-uu0Xa.framer-v-ottjtb .framer-198msua { height: 40px; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xoO29jy0v\":{\"layout\":[\"auto\",\"auto\"]},\"pSqSxUw0Z\":{\"layout\":[\"auto\",\"auto\"]},\"RiGvbaWk_\":{\"layout\":[\"auto\",\"auto\"]},\"V97uaOE6h\":{\"layout\":[\"auto\",\"auto\"]},\"bXX_4vZeZ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercxKIKJV53=withCSS(Component,css,\"framer-uu0Xa\");export default FramercxKIKJV53;FramercxKIKJV53.displayName=\"rectangulo\";FramercxKIKJV53.defaultProps={height:76,width:76};addPropertyControls(FramercxKIKJV53,{variant:{options:[\"SJsU16r48\",\"xoO29jy0v\",\"pSqSxUw0Z\",\"RiGvbaWk_\",\"V97uaOE6h\",\"bXX_4vZeZ\"],optionTitles:[\"Desktop - EN\",\"mobile - EN\",\"Desktop - ES\",\"Mobile - ES\",\"Desktop - PT\",\"Mobile - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercxKIKJV53,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercxKIKJV53\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"76\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"76\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xoO29jy0v\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pSqSxUw0Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RiGvbaWk_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"V97uaOE6h\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bXX_4vZeZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cxKIKJV53.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"QXucfFLDW\",\"IBg8LuUCZ\",\"vgXmrkN3x\",\"wT4dzfCT9\",\"B3uuQJDVR\",\"WS_79lPXW\"];const serializationHash=\"framer-cZqUO\";const variantClassNames={B3uuQJDVR:\"framer-v-1qea1b8\",IBg8LuUCZ:\"framer-v-1us0210\",QXucfFLDW:\"framer-v-76ko1j\",vgXmrkN3x:\"framer-v-a1rfq4\",WS_79lPXW:\"framer-v-1v9s12s\",wT4dzfCT9:\"framer-v-1cu9f3n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:4.2,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - EN\":\"QXucfFLDW\",\"Desktop - ES\":\"vgXmrkN3x\",\"Desktop - PT\":\"B3uuQJDVR\",\"mobile - EN\":\"IBg8LuUCZ\",\"mobile - ES\":\"wT4dzfCT9\",\"mobile - PT\":\"WS_79lPXW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QXucfFLDW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QXucfFLDW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-76ko1j\",className,classNames),\"data-framer-name\":\"Desktop - EN\",\"data-highlight\":true,id:`${layoutId}-76ko1j`,layoutDependency:layoutDependency,layoutId:\"QXucfFLDW\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:refBinding,style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({B3uuQJDVR:{\"data-framer-name\":\"Desktop - PT\"},IBg8LuUCZ:{\"data-framer-name\":\"mobile - EN\"},vgXmrkN3x:{\"data-framer-name\":\"Desktop - ES\"},WS_79lPXW:{\"data-framer-name\":\"mobile - PT\"},wT4dzfCT9:{\"data-framer-name\":\"mobile - ES\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-153ud3y\",\"data-framer-name\":\"tractor\",fill:'var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {\"name\":\"Verde oscuro\"} */',intrinsicHeight:256,intrinsicWidth:256,layoutDependency:layoutDependency,layoutId:\"sVJrqaLZb\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><path fill=\"currentColor\" d=\"M240 165.41V134a15.89 15.89 0 0 0-11.4-15.32l-.21-.06-36.39-9.91V72a8 8 0 0 0-16 0v32.38l-24-6.5V56h8a8 8 0 0 0 0-16H40a8 8 0 0 0 0 16h8v32h-8a8 8 0 0 0 0 16h28a68.07 68.07 0 0 1 68 68v12a8 8 0 0 0 8 8h32.23A36 36 0 1 0 240 165.41M68 88h-4V56h72v66.77A83.92 83.92 0 0 0 68 88m84 26.45L224 134v20.1a36 36 0 0 0-45.94 21.9H152ZM212 208a20 20 0 1 1 20-20 20 20 0 0 1-20 20M68 120a52 52 0 1 0 52 52 52.06 52.06 0 0 0-52-52m0 88a36 36 0 1 1 36-36 36 36 0 0 1-36 36m12-36a12 12 0 1 1-12-12 12 12 0 0 1 12 12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-76ko1j`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({IBg8LuUCZ:{safeArea:false},WS_79lPXW:{safeArea:false},wT4dzfCT9:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-u7lgrl\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"gW8m9IIcG\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Management\"})}),className:\"framer-nlipm7\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"juEV4RYn9\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({B3uuQJDVR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Manejo\"})})},IBg8LuUCZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Management\"})})},vgXmrkN3x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Manejo\"})})},WS_79lPXW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Manejo\"})})},wT4dzfCT9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Manejo\"})})}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cZqUO.framer-1nhw1rv, .framer-cZqUO .framer-1nhw1rv { display: block; }\",\".framer-cZqUO.framer-76ko1j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-cZqUO .framer-153ud3y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-cZqUO .framer-u7lgrl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cZqUO .framer-nlipm7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cZqUO.framer-76ko1j, .framer-cZqUO .framer-u7lgrl { gap: 0px; } .framer-cZqUO.framer-76ko1j > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cZqUO.framer-76ko1j > :first-child { margin-left: 0px; } .framer-cZqUO.framer-76ko1j > :last-child { margin-right: 0px; } .framer-cZqUO .framer-u7lgrl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cZqUO .framer-u7lgrl > :first-child { margin-top: 0px; } .framer-cZqUO .framer-u7lgrl > :last-child { margin-bottom: 0px; } }\",\".framer-cZqUO.framer-v-1us0210 .framer-153ud3y, .framer-cZqUO.framer-v-1cu9f3n .framer-153ud3y, .framer-cZqUO.framer-v-1v9s12s .framer-153ud3y { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IBg8LuUCZ\":{\"layout\":[\"auto\",\"auto\"]},\"vgXmrkN3x\":{\"layout\":[\"auto\",\"auto\"]},\"wT4dzfCT9\":{\"layout\":[\"auto\",\"auto\"]},\"B3uuQJDVR\":{\"layout\":[\"auto\",\"auto\"]},\"WS_79lPXW\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHv_4e0ePo=withCSS(Component,css,\"framer-cZqUO\");export default FramerHv_4e0ePo;FramerHv_4e0ePo.displayName=\"lluvia\";FramerHv_4e0ePo.defaultProps={height:76,width:76};addPropertyControls(FramerHv_4e0ePo,{variant:{options:[\"QXucfFLDW\",\"IBg8LuUCZ\",\"vgXmrkN3x\",\"wT4dzfCT9\",\"B3uuQJDVR\",\"WS_79lPXW\"],optionTitles:[\"Desktop - EN\",\"mobile - EN\",\"Desktop - ES\",\"mobile - ES\",\"Desktop - PT\",\"mobile - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHv_4e0ePo,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHv_4e0ePo\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"76\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"76\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IBg8LuUCZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vgXmrkN3x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wT4dzfCT9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B3uuQJDVR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WS_79lPXW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hv_4e0ePo.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"YFpTfJlog\",\"WyEoPeZp1\",\"KTXWmrMfV\",\"GUsdKloHp\",\"os4sYcgtK\",\"JOmoTWbFe\"];const serializationHash=\"framer-gJdwc\";const variantClassNames={GUsdKloHp:\"framer-v-gj1nu\",JOmoTWbFe:\"framer-v-1pcbztq\",KTXWmrMfV:\"framer-v-1de9eiw\",os4sYcgtK:\"framer-v-1aef5x2\",WyEoPeZp1:\"framer-v-10d3oy7\",YFpTfJlog:\"framer-v-6bo0oy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:4.2,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:2.9,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - EN\":\"YFpTfJlog\",\"Desktop - ES\":\"KTXWmrMfV\",\"Desktop - PT\":\"os4sYcgtK\",\"mobile - EN\":\"WyEoPeZp1\",\"mobile - ES\":\"GUsdKloHp\",\"mobile - PT\":\"JOmoTWbFe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YFpTfJlog\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YFpTfJlog\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6bo0oy\",className,classNames),\"data-framer-name\":\"Desktop - EN\",layoutDependency:layoutDependency,layoutId:\"YFpTfJlog\",ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({GUsdKloHp:{\"data-framer-name\":\"mobile - ES\"},JOmoTWbFe:{\"data-framer-name\":\"mobile - PT\"},KTXWmrMfV:{\"data-framer-name\":\"Desktop - ES\"},os4sYcgtK:{\"data-framer-name\":\"Desktop - PT\"},WyEoPeZp1:{\"data-framer-name\":\"mobile - EN\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11b9qun\",\"data-highlight\":true,id:`${layoutId}-11b9qun`,layoutDependency:layoutDependency,layoutId:\"D1t3WXvLQ\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},whileHover:animation,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14dw20g\",\"data-framer-name\":\"Suelo (1)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RgZxtUmSR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 60 0 L 60 60 L 0 60 L 0 0 Z M 23.158 15.672 L 1.228 15.672 C 0.456 15.672 -0.031 17.05 0.82 17.483 L 58.662 17.55 C 60.058 17.414 59.509 15.672 58.655 15.672 L 36.842 15.672 C 37.403 14.414 38.497 13.237 39.531 12.337 C 39.995 11.934 41.333 11.227 41.402 10.691 C 41.592 9.178 39.623 9.587 38.694 9.745 C 37.98 9.866 37.305 10.111 36.609 10.292 C 37.148 9.383 38.123 8.661 38.981 8.045 C 39.487 7.681 41.308 6.734 41.402 6.256 C 41.489 5.811 41.402 5.378 40.98 5.164 C 40.558 4.95 38.219 4.981 37.605 5.033 C 37.106 5.075 36.514 5.256 36.025 5.381 C 35.942 5.298 36.567 4.556 36.666 4.444 C 37.502 3.489 38.542 2.727 39.391 1.784 C 39.816 -0.244 37.283 0.669 36.195 1.05 C 34.062 1.797 32 3.161 30.573 4.909 C 28.361 3.153 25.987 1.939 23.181 1.442 C 22.492 1.32 21.055 1.072 20.417 1.178 C 19.7 1.298 19.417 2.1 19.828 2.689 C 20.058 3.017 21.645 4.003 22.108 4.386 C 22.816 4.97 23.503 5.612 24.094 6.316 C 22.822 5.994 17.567 4 18.661 6.895 C 20.483 7.974 22.119 9.339 23.508 10.937 C 22.38 10.936 18.297 9.741 18.716 11.87 C 18.802 12.308 21.208 13.741 21.755 14.211 C 22.259 14.644 22.714 15.18 23.156 15.675 Z M 59.261 19.92 C 59.073 19.748 58.684 19.645 58.427 19.642 L 1.456 19.642 C 0.327 19.625 -0.119 20.927 0.93 21.467 L 59.034 21.431 C 59.598 21.155 59.719 20.339 59.261 19.919 Z M 3.358 22.364 C 2.409 22.577 2.419 23.989 3.478 24.183 C 4.244 24.323 5.313 24.22 5.272 23.219 C 5.231 22.217 4.078 22.202 3.358 22.364 Z M 6.983 22.364 C 6.717 22.441 6.366 22.956 6.35 23.234 C 6.275 24.609 9.153 24.587 9.005 23.111 C 8.919 22.256 7.605 22.184 6.983 22.364 Z M 12.48 22.606 C 12.005 22.042 9.697 22.142 10.106 23.513 C 10.544 24.977 13.695 24.048 12.48 22.606 Z M 14.469 22.364 C 13.939 22.483 13.712 23.038 13.823 23.541 C 14.053 24.575 16.845 24.547 16.35 22.889 C 16.164 22.267 14.986 22.248 14.469 22.364 Z M 18.094 22.363 C 17.3 22.594 17.32 24.044 18.309 24.203 C 19.128 24.334 20.245 24.15 20.113 23.109 C 20.003 22.253 18.731 22.177 18.092 22.363 Z M 21.838 22.364 C 21.295 22.484 21.069 23.169 21.314 23.656 C 21.806 24.638 23.922 24.33 23.858 23.225 C 23.8 22.236 22.564 22.202 21.838 22.364 Z M 25.18 23.944 C 25.608 24.372 27.25 24.369 27.461 23.661 C 27.984 21.911 25.022 21.934 24.912 23.111 C 24.892 23.333 25.031 23.797 25.18 23.944 Z M 29.323 22.364 C 28.437 22.563 28.352 23.983 29.442 24.183 C 30.208 24.323 31.277 24.22 31.236 23.219 C 31.195 22.217 30.044 22.203 29.323 22.364 Z M 34.705 23.944 C 34.853 23.795 34.992 23.333 34.972 23.111 C 34.863 21.934 31.902 21.911 32.423 23.661 C 32.636 24.37 34.277 24.372 34.705 23.944 Z M 36.692 22.364 C 36.205 22.473 35.917 23.142 36.111 23.594 C 36.544 24.6 38.728 24.423 38.7 23.213 C 38.678 22.239 37.394 22.206 36.691 22.363 Z M 40.434 22.364 C 39.569 22.556 39.477 23.898 40.464 24.155 C 41.084 24.316 42.134 24.317 42.313 23.542 C 42.592 22.323 41.356 22.158 40.433 22.364 Z M 44.177 22.364 C 43.228 22.577 43.236 23.988 44.297 24.183 C 45.041 24.319 46.131 24.189 46.091 23.219 C 46.05 22.248 44.898 22.202 44.178 22.364 Z M 47.403 22.606 C 46.187 24.048 49.339 24.975 49.777 23.512 C 50.186 22.144 47.878 22.042 47.403 22.606 Z M 51.545 22.364 C 50.992 22.488 50.745 23.083 50.966 23.595 C 51.428 24.667 53.816 24.373 53.489 23.063 C 53.283 22.231 52.23 22.213 51.545 22.364 Z M 55.288 22.364 C 54.402 22.563 54.316 23.983 55.406 24.183 C 56.133 24.316 57.138 24.245 57.198 23.333 C 57.267 22.295 56.091 22.186 55.288 22.366 Z M 34.82 25.055 C 33.928 25.253 33.931 26.728 35.156 26.891 C 37.098 27.147 37.281 25.236 36.075 25.037 C 35.789 24.991 35.1 24.994 34.82 25.056 Z M 49.675 25.055 C 49.311 25.134 49.073 25.466 49.028 25.822 C 48.848 27.216 51.68 27.328 51.68 25.908 C 51.68 24.916 50.377 24.9 49.675 25.056 Z M 10.606 26.864 C 11.881 25.466 8.689 24.481 8.236 25.961 C 7.872 27.148 10.017 27.509 10.606 26.864 Z M 16.341 25.287 C 15.427 25.492 15.42 26.955 16.439 27.127 C 17.231 27.259 18.295 27.156 18.253 26.142 C 18.213 25.187 17.061 25.127 16.341 25.287 Z M 31.194 25.288 C 30.302 25.488 30.258 26.825 31.105 27.083 C 31.675 27.256 32.828 27.242 33.047 26.556 C 33.438 25.333 32.117 25.081 31.194 25.288 Z M 52.613 27.35 L 48.152 27.345 C 47.444 26.945 46.438 25.584 45.675 25.495 C 43.948 25.292 41.834 25.647 40.064 25.503 C 38.997 25.883 37.472 27.513 36.439 27.609 C 34.405 27.798 32.073 27.463 30.006 27.597 L 26.816 25.877 C 25.175 25.972 23.173 25.655 21.577 25.847 C 20.714 25.952 19.713 27.153 18.88 27.488 L 12.82 26.906 L 8.847 28.755 C 8.095 28.291 6.338 25.913 5.647 25.756 C 5.059 25.623 1.903 25.65 1.238 25.742 C 0.028 25.911 0.113 27.375 1.017 27.578 C 2.145 27.83 3.836 27.394 5.025 27.664 C 6.013 28.428 7.102 29.902 8.063 30.591 C 8.642 31.006 8.813 30.856 9.395 30.627 C 10.581 30.163 11.775 29.336 12.966 28.836 L 19.347 29.348 L 22.038 27.713 L 26.366 27.723 L 29.536 29.466 C 31.941 29.309 34.653 29.7 37.019 29.478 C 38.208 29.367 39.678 27.472 40.867 27.361 C 42.259 27.231 43.877 27.448 45.294 27.391 C 45.905 27.778 46.989 29.123 47.664 29.231 C 48.569 29.377 52.209 29.358 53.144 29.227 C 53.984 29.109 54.181 28.288 54.517 27.619 C 54.817 27.431 58.102 27.745 58.859 27.575 C 59.786 27.367 59.817 25.916 58.642 25.736 C 57.828 25.611 54.806 25.62 53.98 25.736 C 53.153 25.852 52.95 26.727 52.608 27.347 Z M 24.875 28.925 C 24.416 28.423 23.716 28.636 23.341 29.128 C 22.881 29.731 20.652 33.553 20.442 34.181 C 20.081 35.266 20.825 35.925 21.8 35.422 L 25.097 29.823 C 25.216 29.57 25.052 29.116 24.877 28.923 Z M 39.375 34.93 L 41.847 30.556 C 42.055 29.508 40.952 28.941 40.184 29.833 C 39.886 30.18 37.877 33.656 37.803 34.002 C 37.581 35.052 38.678 35.598 39.373 34.93 Z M 57.745 29.614 C 57.353 29.7 57.231 30.017 57.027 30.303 C 56.066 31.645 55.334 33.442 54.434 34.855 C 54.309 35.802 55.367 36.433 56.075 35.667 L 58.895 30.761 C 59.025 30.028 58.519 29.445 57.744 29.614 Z M 17.395 30.078 C 17.133 30.133 16.888 30.384 16.744 30.603 L 12.519 38.077 C 12.528 39.123 13.755 39.466 14.319 38.587 L 18.506 31.311 C 18.816 30.648 18.059 29.941 17.395 30.078 Z M 28.858 30.08 C 28.462 30.161 28.295 30.545 28.092 30.842 C 25.864 34.112 24.194 38.123 21.962 41.436 C 21.472 42.58 22.756 43.455 23.559 42.45 L 29.969 31.312 C 30.277 30.647 29.522 29.944 28.858 30.08 Z M 11.545 30.2 C 11.295 30.256 11.155 30.403 11.011 30.602 C 9.256 33.036 7.969 36.405 6.23 38.92 C 5.748 39.911 6.961 40.681 7.77 39.994 L 12.619 31.625 C 13.039 30.78 12.487 29.984 11.544 30.2 Z M 46.158 30.209 C 45.648 30.238 45.412 30.708 45.169 31.075 C 43.133 34.15 41.553 37.756 39.512 40.856 C 38.88 42.028 40.433 43.019 41.15 41.792 C 42.811 38.555 45.131 35.405 46.728 32.166 C 46.928 31.759 47.253 31.314 47.112 30.844 C 47.023 30.548 46.473 30.192 46.159 30.209 Z M 51.781 30.195 C 51.366 30.281 51.116 30.752 50.9 31.075 C 48.642 34.448 46.903 38.486 44.653 41.903 C 44.177 42.967 45.497 43.806 46.253 42.919 L 52.802 31.573 C 53.12 30.836 52.594 30.028 51.783 30.195 Z M 6.512 30.798 C 5.933 30.267 5.316 30.658 4.931 31.189 C 3.586 33.045 2.619 35.666 1.259 37.575 C 0.748 38.802 2.148 39.555 2.905 38.519 C 4.302 36.603 5.342 33.902 6.692 31.898 C 6.878 31.556 6.794 31.056 6.514 30.798 Z M 34.234 30.552 C 34.041 30.609 33.83 30.909 33.705 31.073 C 31.98 33.353 30.736 36.769 29.037 39.153 C 28.497 40.117 29.839 41.131 30.577 40.227 L 35.466 31.781 C 35.786 30.942 35.078 30.3 34.234 30.55 Z M 19.381 36.517 C 18.672 36.678 17.838 38.441 18.788 38.931 C 20.317 39.722 21.55 36.025 19.381 36.517 Z M 36.802 36.527 C 36.448 36.545 36.181 36.83 35.973 37.084 C 35.444 37.738 33.605 40.952 33.275 41.756 C 32.817 42.87 34.055 43.669 34.855 42.75 C 35.227 42.323 37.502 38.397 37.688 37.864 C 37.911 37.223 37.492 36.489 36.8 36.527 Z M 53.65 36.633 C 53.392 36.692 53.334 36.806 53.186 36.987 C 52.867 37.378 51.214 40.223 51.102 40.642 C 50.828 41.658 52.03 42.334 52.748 41.462 C 53.002 41.155 54.709 38.209 54.797 37.898 C 55.033 37.056 54.522 36.43 53.648 36.633 Z M 21.678 46.275 C 22.187 46.731 22.922 46.509 23.566 46.552 C 26.98 46.778 30.425 46.811 33.862 46.903 C 34.911 46.777 36.495 44.83 37.37 44.787 L 46.494 46.547 L 52.545 45.819 L 56.025 42.867 C 56.934 42.572 58.87 43.272 59.398 42.266 C 60.405 40.355 56.419 41.027 55.52 40.959 L 51.805 44.028 L 46.952 44.681 L 36.911 42.808 L 33.6 45.003 L 22.889 44.653 C 22.511 44.545 19.82 40.841 19.241 40.231 C 19.008 39.986 18.644 39.556 18.298 39.534 L 11.258 40.436 L 8.597 43.622 L 5.766 40.958 C 4.348 41.064 2.478 40.728 1.119 40.941 C -0.005 41.116 0.155 42.667 1.344 42.808 C 2.533 42.948 3.881 42.681 5.066 42.83 C 5.509 42.961 7.377 45.291 8.014 45.73 C 8.78 46.259 9.117 45.942 9.653 45.38 C 10.064 44.948 12.045 42.186 12.244 42.122 L 17.817 41.541 L 21.681 46.273 Z M 28.497 43.819 C 28.594 43.727 29.206 42.689 29.264 42.541 C 29.617 41.631 28.859 40.877 27.981 41.258 C 27.608 41.42 26.875 42.789 26.891 43.213 C 26.923 44.044 27.903 44.389 28.495 43.819 Z M 15.873 42.598 C 14.959 42.803 14.953 44.266 15.972 44.438 C 16.764 44.57 17.828 44.467 17.786 43.453 C 17.745 42.498 16.594 42.438 15.873 42.598 Z M 56.178 44.014 C 54.902 45.412 58.097 46.397 58.548 44.917 C 58.944 43.619 56.734 43.405 56.178 44.014 Z M 13.066 44.469 C 12.423 44.664 9.486 49.102 8.67 49.781 C 8.486 50.088 8.502 50.43 8.594 50.766 C 8.677 51.064 10.323 53.827 10.534 53.97 L 16.227 56.114 C 17.008 56.334 17.758 55.481 18.308 54.975 C 18.888 54.441 19.855 53.713 19.597 52.861 C 19.45 52.375 18.27 50.722 18.253 50.355 C 18.222 49.663 19.041 48.678 18.775 47.716 C 18.688 47.402 17.895 46.13 17.628 45.939 C 17.263 45.678 14.313 44.594 13.808 44.497 C 13.558 44.448 13.32 44.389 13.066 44.467 Z M 4.417 44.698 C 4.248 44.72 4.061 44.817 3.917 44.911 C 3.539 45.159 1.977 46.711 1.573 47.128 C 1.134 47.586 1.103 47.802 1.222 48.425 C 1.341 49.048 2.155 51.647 2.431 52.128 C 2.794 52.759 3.331 52.691 3.897 52.375 C 4.872 51.83 6.489 50.628 7.405 49.919 C 8.048 49.42 8.77 49.106 8.309 48.122 C 7.588 47.633 5.331 44.809 4.708 44.697 C 4.602 44.678 4.52 44.686 4.416 44.7 Z M 37.042 45.405 C 36.15 45.606 36.108 46.942 36.953 47.198 C 37.523 47.372 38.677 47.358 38.895 46.672 C 39.28 45.469 37.952 45.198 37.042 45.405 Z M 41.136 46.341 C 40.173 46.559 39.997 48.044 41.227 48.189 C 41.966 48.277 42.961 48.28 42.986 47.311 C 43.011 46.355 41.88 46.17 41.137 46.339 Z M 52.481 46.341 C 51.567 46.545 51.561 48.008 52.58 48.18 C 53.372 48.313 54.436 48.209 54.394 47.195 C 54.353 46.241 53.202 46.18 52.481 46.341 Z M 51.928 57.544 C 52.02 58.305 51.945 59.345 52.831 59.623 C 54.662 59.511 56.872 59.859 58.658 59.65 C 59.227 59.583 59.544 59.242 59.537 58.659 C 59.289 55.23 59.848 51.384 59.537 48.005 C 59.505 47.641 59.445 47.356 59.125 47.131 C 58.755 46.87 55.966 46.442 55.52 46.573 C 54.697 46.814 54.675 49.428 54.319 50.166 C 53.853 50.866 51.47 52.836 51.281 53.442 C 50.983 54.392 51.847 56.361 51.812 57.425 C 51.633 57.433 51.68 57.206 51.508 57.087 C 50.606 56.466 48.734 56.895 49.302 58.242 C 49.591 58.928 51.464 58.931 51.752 58.242 C 51.858 57.989 51.706 57.602 51.928 57.544 Z M 49.912 46.694 C 49.434 46.725 46.537 47.389 46.112 47.575 C 45.766 47.728 44.937 49.063 44.912 49.423 C 44.897 49.641 44.984 49.767 45.092 49.936 C 45.322 50.294 47.947 52.617 48.361 52.864 C 48.808 53.13 48.991 53.144 49.459 52.911 C 49.762 52.759 52.164 50.917 52.284 50.708 C 52.478 50.372 52.425 50.094 52.305 49.738 C 52.203 49.434 51.028 47.406 50.808 47.141 C 50.567 46.85 50.308 46.667 49.909 46.692 Z M 25.347 47.159 C 25.139 47.206 24.998 47.342 24.85 47.481 C 24.653 47.667 23.175 49.542 23.105 49.713 C 22.563 51.044 24.331 51.244 24.916 51.869 C 25.234 52.211 25.375 53.025 25.805 53.32 C 25.958 53.427 28.139 54.194 28.391 54.242 C 28.709 54.305 29.022 54.306 29.328 54.181 C 29.558 54.088 31.147 52.564 31.205 52.316 C 31.138 50.806 31.133 49.188 30.811 47.73 C 30.38 47.019 28.994 47.292 28.248 47.252 C 27.417 47.206 26.164 46.978 25.348 47.161 Z M 20.67 48.097 C 19.581 48.32 19.664 49.773 20.53 49.939 C 21.109 50.05 22.316 50.044 22.456 49.294 C 22.662 48.194 21.553 47.916 20.67 48.097 Z M 32.483 48.098 C 31.33 48.308 31.269 49.823 32.567 49.947 C 35.103 50.186 34.609 47.712 32.483 48.098 Z M 39.152 48.095 C 38.73 48.159 35.705 49.292 35.314 49.523 C 34.873 49.786 34.041 51.234 34.025 51.752 C 34.005 52.414 34.659 53.655 34.589 54.075 C 34.513 54.533 33.436 55.948 33.272 56.484 C 33.155 56.867 33.18 57.106 33.373 57.447 C 33.461 57.602 34.933 59.009 35.152 59.178 C 35.37 59.347 35.686 59.595 35.973 59.642 C 39.288 59.428 42.998 59.948 46.266 59.655 C 47.738 59.522 47.184 58.117 47.139 57.133 C 47.098 56.236 47.159 53.472 46.727 52.867 L 39.584 48.072 C 39.439 48.045 39.298 48.073 39.156 48.095 Z M 26.395 54.773 C 26.131 54.461 23.639 52.342 23.317 52.18 C 22.855 51.947 22.57 51.995 22.164 52.28 C 21.511 52.736 20.317 53.902 19.705 54.498 C 19.028 55.159 18.159 55.719 18.987 56.684 L 21.514 59.011 C 21.937 59.142 25.364 59.139 25.9 59.056 C 26.397 58.98 26.592 58.641 26.656 58.175 C 26.745 57.541 26.769 55.214 26.395 54.772 Z M 6.52 52.302 C 6.203 52.364 3.278 53.955 2.931 54.217 C 2.342 54.664 2.25 55.197 2.745 55.791 C 3.997 56.744 5.227 58.459 6.43 59.358 C 7.012 59.792 7.317 59.756 7.841 59.244 C 8.092 58.997 10.262 55.906 10.345 55.667 C 10.445 55.378 10.467 55.022 10.348 54.739 C 10.253 54.514 7.337 52.417 7.02 52.333 C 6.827 52.281 6.725 52.261 6.52 52.302 Z M 31.78 52.423 C 31.053 52.586 30.925 53.659 31.584 54.089 C 32.244 54.519 33.831 54.294 33.797 53.287 C 33.763 52.281 32.52 52.258 31.78 52.423 Z M 47.92 53.592 C 47.077 53.787 47.039 55.255 48.256 55.427 C 50.2 55.702 50.406 53.766 49.175 53.573 C 48.886 53.528 48.2 53.527 47.92 53.592 Z M 27.686 55.112 C 27.198 55.222 26.911 55.891 27.105 56.342 C 27.552 57.381 29.772 57.116 29.705 55.973 C 29.647 54.984 28.411 54.95 27.684 55.112 Z M 11.545 55.931 C 11.255 55.995 10.958 56.284 10.897 56.577 C 10.583 58.109 13.586 58.214 13.553 56.78 C 13.531 55.806 12.247 55.773 11.544 55.93 Z M 16.464 56.872 C 15.125 57.047 15.109 58.6 16.308 58.72 C 18.928 58.983 18.503 56.606 16.464 56.872 Z M 31.081 56.869 C 29.861 57.056 29.878 58.558 30.825 58.706 C 31.448 58.803 32.464 58.855 32.695 58.136 C 33.025 57.111 31.905 56.744 31.081 56.87 Z\" fill=\"transparent\"></path><path d=\"M 23.158 15.672 C 22.716 15.178 22.259 14.641 21.756 14.208 C 21.209 13.737 18.803 12.305 18.717 11.867 C 18.298 9.737 22.381 10.933 23.509 10.934 C 22.121 9.336 20.484 7.971 18.662 6.892 C 17.569 3.997 22.823 5.991 24.095 6.312 C 23.503 5.609 22.816 4.967 22.109 4.383 C 21.647 4 20.059 3.016 19.83 2.686 C 19.419 2.097 19.702 1.297 20.419 1.175 C 21.056 1.067 22.492 1.317 23.183 1.439 C 25.991 1.936 28.364 3.15 30.575 4.906 C 32.002 3.159 34.064 1.794 36.197 1.047 C 37.284 0.667 39.816 -0.247 39.392 1.781 C 38.545 2.723 37.503 3.486 36.667 4.441 C 36.569 4.553 35.944 5.295 36.027 5.378 C 36.516 5.252 37.108 5.072 37.606 5.03 C 38.22 4.978 40.55 4.942 40.981 5.161 C 41.412 5.38 41.491 5.809 41.403 6.253 C 41.309 6.731 39.489 7.68 38.983 8.042 C 38.125 8.659 37.15 9.38 36.611 10.289 C 37.306 10.109 37.981 9.862 38.695 9.742 C 39.627 9.586 41.594 9.175 41.403 10.688 C 41.336 11.223 39.997 11.931 39.533 12.334 C 38.498 13.234 37.406 14.412 36.844 15.669 L 58.656 15.669 C 59.511 15.669 60.058 17.413 58.664 17.547 L 0.822 17.48 C -0.03 17.047 0.458 15.669 1.23 15.669 L 23.159 15.669 Z M 29.823 10.759 L 31.205 8.478 C 29.478 6.175 26.966 4.213 24.094 3.627 C 25.278 4.822 26.423 6.017 27.394 7.4 C 28.089 8.391 28.731 9.822 29.539 10.634 C 29.636 10.731 29.644 10.802 29.822 10.758 Z M 34.737 3.861 C 34.623 3.752 33.331 4.769 33.162 4.916 C 32.977 5.077 32.042 5.961 31.986 6.086 C 31.794 6.506 32.337 6.877 32.575 7.134 Z M 37.192 7.019 C 35.539 7.261 33.833 8.281 32.752 9.536 C 32.288 10.075 31.119 11.842 31.014 12.487 C 30.9 13.184 32.255 14.605 32.283 15.439 C 32.463 15.623 32.489 15.422 32.513 15.262 C 32.872 12.833 33.541 10.903 35.145 9.005 Z M 30.409 15.672 C 28.928 12.581 26.816 9.487 23.509 8.189 C 25.222 9.877 26.595 11.814 27.812 13.884 C 28.052 14.291 28.542 15.597 28.947 15.675 C 29.352 15.753 29.964 15.617 30.409 15.673 Z M 36.725 12.398 C 36.567 12.266 34.973 13.336 34.797 13.569 C 34.397 14.102 34.495 15.059 34.269 15.67 L 34.717 15.652 C 35.166 14.434 36.002 13.447 36.723 12.398 Z M 26.667 15.672 C 26.247 15.177 25.978 14.148 25.494 13.747 C 24.973 13.317 23.723 12.964 23.042 12.867 L 24.155 13.917 L 25.38 15.617 L 26.669 15.672 Z M 21.678 46.275 L 17.814 41.542 L 12.241 42.123 C 12.042 42.187 10.061 44.95 9.65 45.381 C 9.114 45.944 8.777 46.259 8.011 45.731 C 7.375 45.292 5.506 42.962 5.062 42.831 C 3.878 42.683 2.5 42.947 1.341 42.809 C 0.181 42.672 -0.006 41.117 1.116 40.942 C 2.475 40.73 4.347 41.066 5.762 40.959 L 8.594 43.623 L 11.255 40.437 L 18.295 39.536 C 18.642 39.556 19.005 39.987 19.237 40.233 C 19.817 40.842 22.508 44.548 22.886 44.655 L 33.597 45.005 L 36.908 42.809 L 46.948 44.683 L 51.802 44.03 L 55.517 40.961 C 56.416 41.028 60.402 40.356 59.395 42.267 C 58.866 43.273 56.931 42.573 56.022 42.869 L 52.542 45.82 L 46.491 46.548 L 37.367 44.789 C 36.494 44.831 34.908 46.778 33.859 46.905 C 30.422 46.812 26.977 46.78 23.562 46.553 C 22.919 46.511 22.184 46.733 21.675 46.277 Z M 52.612 27.35 C 52.955 26.73 53.194 25.85 53.984 25.739 C 54.775 25.628 57.833 25.614 58.647 25.739 C 59.822 25.919 59.791 27.37 58.864 27.578 C 58.105 27.748 54.822 27.434 54.522 27.622 C 54.184 28.291 53.989 29.112 53.148 29.23 C 52.214 29.359 48.573 29.38 47.669 29.234 C 46.994 29.127 45.911 27.781 45.298 27.394 C 43.881 27.452 42.264 27.234 40.872 27.364 C 39.683 27.475 38.212 29.37 37.023 29.481 C 34.658 29.702 31.944 29.311 29.541 29.469 L 26.37 27.727 L 22.042 27.716 L 19.352 29.352 L 12.97 28.839 C 11.78 29.337 10.586 30.164 9.4 30.63 C 8.816 30.858 8.647 31.009 8.067 30.594 C 7.106 29.905 6.017 28.431 5.03 27.667 C 3.841 27.397 2.15 27.833 1.022 27.581 C 0.116 27.38 0.033 25.914 1.242 25.745 C 1.908 25.653 5.064 25.627 5.652 25.759 C 6.341 25.914 8.1 28.294 8.852 28.758 L 12.825 26.909 L 18.884 27.491 C 19.716 27.155 20.717 25.953 21.581 25.85 C 23.178 25.658 25.18 25.977 26.82 25.88 L 30.011 27.6 C 32.078 27.464 34.409 27.802 36.444 27.612 C 37.477 27.516 39.003 25.886 40.069 25.506 C 41.839 25.65 43.953 25.294 45.68 25.498 C 46.442 25.589 47.448 26.948 48.156 27.348 L 52.617 27.353 Z M 59.261 19.92 C 59.717 20.339 59.598 21.156 59.034 21.433 L 0.93 21.469 C -0.119 20.928 0.327 19.627 1.456 19.644 L 58.427 19.644 C 58.684 19.647 59.073 19.75 59.261 19.922 Z M 39.152 48.095 C 39.295 48.073 39.434 48.044 39.58 48.072 L 46.722 52.867 C 47.155 53.472 47.092 56.238 47.134 57.133 C 47.18 58.117 47.733 59.522 46.261 59.655 C 42.995 59.948 39.283 59.428 35.969 59.642 C 35.681 59.594 35.377 59.353 35.147 59.178 C 34.917 59.003 33.456 57.602 33.369 57.447 C 33.175 57.106 33.15 56.867 33.267 56.484 C 33.433 55.948 34.508 54.534 34.584 54.075 C 34.655 53.656 34 52.416 34.02 51.752 C 34.036 51.234 34.869 49.784 35.309 49.523 C 35.7 49.291 38.725 48.158 39.147 48.095 Z M 45.38 57.778 L 45.037 53.969 L 39.244 50.067 C 39.098 50.061 36.712 50.958 36.523 51.084 C 35.286 51.906 36.698 53.286 36.487 54.439 C 36.414 54.845 35.269 56.511 35.331 56.773 L 36.433 57.78 L 45.38 57.78 Z M 51.928 57.544 C 51.706 57.603 51.856 57.989 51.752 58.242 C 51.464 58.931 49.591 58.928 49.302 58.242 C 48.734 56.895 50.606 56.466 51.508 57.088 C 51.678 57.206 51.631 57.433 51.813 57.425 C 51.847 56.361 50.983 54.392 51.281 53.442 C 51.472 52.836 53.853 50.866 54.319 50.166 C 54.675 49.428 54.698 46.814 55.52 46.573 C 55.966 46.444 58.755 46.87 59.125 47.131 C 59.445 47.358 59.505 47.641 59.538 48.005 C 59.848 51.383 59.289 55.23 59.538 58.659 C 59.544 59.242 59.227 59.584 58.658 59.65 C 56.872 59.859 54.664 59.509 52.831 59.623 C 51.945 59.345 52.02 58.305 51.928 57.544 Z M 57.661 48.655 L 56.622 48.55 L 56.008 51.036 L 53.164 54.145 L 53.802 57.777 L 57.661 57.777 L 57.661 48.653 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 13.066 44.469 C 13.32 44.391 13.558 44.45 13.808 44.498 C 14.312 44.595 17.262 45.68 17.628 45.941 C 17.895 46.131 18.689 47.402 18.775 47.717 C 19.041 48.68 18.222 49.664 18.253 50.356 C 18.27 50.722 19.448 52.377 19.597 52.863 C 19.855 53.713 18.887 54.442 18.308 54.977 C 17.758 55.483 17.008 56.336 16.227 56.116 L 10.534 53.972 C 10.323 53.827 8.677 51.066 8.594 50.767 C 8.502 50.433 8.486 50.089 8.67 49.783 C 9.486 49.103 12.423 44.666 13.066 44.47 Z M 13.694 46.436 L 10.548 50.466 L 11.822 52.445 L 16.416 54.128 L 17.511 53.042 C 17.13 52.003 16.23 51.178 16.402 50.027 C 16.459 49.642 16.959 48.43 16.902 48.175 C 16.666 47.128 14.525 46.894 13.692 46.436 Z M 25.347 47.159 C 26.162 46.977 27.416 47.205 28.247 47.25 C 28.992 47.291 30.38 47.017 30.809 47.728 C 31.131 49.187 31.136 50.806 31.203 52.314 C 31.147 52.562 29.556 54.086 29.327 54.18 C 29.02 54.305 28.708 54.303 28.389 54.241 C 28.137 54.192 25.958 53.423 25.803 53.319 C 25.373 53.023 25.234 52.209 24.914 51.867 C 24.331 51.242 22.561 51.042 23.103 49.711 C 23.172 49.541 24.652 47.666 24.848 47.48 C 24.995 47.341 25.137 47.205 25.345 47.158 Z M 29.122 49.123 C 28.417 49.253 26.398 48.723 25.909 49.123 C 25.859 49.164 25.383 49.837 25.387 49.883 C 25.698 50.162 26.102 50.312 26.38 50.637 C 26.658 50.962 26.786 51.544 27.023 51.748 C 27.203 51.905 28.475 52.32 28.689 52.261 C 28.855 52.216 29.342 51.694 29.359 51.516 L 29.123 49.12 Z M 26.395 54.773 C 26.769 55.216 26.744 57.542 26.656 58.177 C 26.591 58.642 26.397 58.981 25.9 59.058 C 25.364 59.141 21.939 59.144 21.514 59.012 L 18.988 56.686 C 18.159 55.722 19.028 55.162 19.705 54.5 C 20.317 53.902 21.511 52.736 22.164 52.281 C 22.572 51.997 22.855 51.948 23.317 52.181 C 23.639 52.344 26.131 54.461 26.395 54.775 Z M 22.281 57.194 L 24.795 57.194 L 24.77 55.814 L 22.845 54.286 L 20.938 55.966 L 22.28 57.194 Z M 6.52 52.302 C 6.725 52.261 6.827 52.281 7.02 52.333 C 7.337 52.417 10.253 54.513 10.348 54.739 C 10.469 55.022 10.445 55.378 10.345 55.667 C 10.262 55.906 8.092 58.997 7.841 59.244 C 7.317 59.756 7.012 59.794 6.43 59.358 C 5.227 58.459 3.998 56.744 2.745 55.791 C 2.248 55.197 2.342 54.663 2.931 54.217 C 3.278 53.955 6.203 52.364 6.52 52.302 Z M 8.178 55.334 L 6.722 54.383 L 4.914 55.206 L 6.859 57.184 C 7.084 57.225 8.258 55.448 8.18 55.334 Z M 4.417 44.698 C 4.522 44.684 4.603 44.677 4.709 44.695 C 5.331 44.808 7.588 47.631 8.311 48.12 C 8.77 49.105 8.05 49.419 7.406 49.917 C 6.491 50.627 4.873 51.828 3.898 52.373 C 3.333 52.689 2.797 52.759 2.433 52.127 C 2.156 51.645 1.339 49.028 1.223 48.423 C 1.108 47.819 1.136 47.583 1.575 47.127 C 1.977 46.708 3.539 45.158 3.919 44.909 C 4.063 44.816 4.25 44.719 4.419 44.697 Z M 3.744 50.175 L 6.08 48.48 L 4.603 47.036 C 4.275 46.972 3.416 48.003 3.175 48.27 L 3.744 50.177 Z M 49.912 46.694 C 50.311 46.669 50.572 46.852 50.811 47.142 C 51.03 47.408 52.206 49.436 52.308 49.739 C 52.427 50.095 52.48 50.373 52.287 50.709 C 52.167 50.917 49.766 52.761 49.462 52.913 C 48.994 53.145 48.811 53.133 48.364 52.866 C 47.95 52.619 45.325 50.295 45.095 49.938 C 44.986 49.769 44.9 49.642 44.916 49.425 C 44.941 49.064 45.769 47.73 46.116 47.577 C 46.541 47.391 49.436 46.725 49.916 46.695 Z M 47.134 49.241 L 48.969 50.858 C 50.138 50.256 50.58 49.87 49.511 48.786 Z M 51.781 30.195 C 52.591 30.028 53.119 30.834 52.8 31.573 L 46.252 42.919 C 45.495 43.806 44.175 42.967 44.652 41.903 C 46.903 38.486 48.641 34.448 50.898 31.075 C 51.114 30.752 51.364 30.281 51.78 30.195 Z M 28.858 30.08 C 29.522 29.944 30.277 30.645 29.969 31.313 L 23.559 42.45 C 22.756 43.455 21.472 42.581 21.963 41.436 C 24.195 38.123 25.864 34.113 28.092 30.842 C 28.295 30.545 28.463 30.161 28.858 30.08 Z M 46.158 30.209 C 46.472 30.192 47.023 30.548 47.111 30.844 C 47.252 31.314 46.927 31.759 46.727 32.166 C 45.13 35.405 42.808 38.555 41.148 41.792 C 40.431 43.019 38.878 42.028 39.511 40.856 C 41.553 37.756 43.133 34.15 45.167 31.075 C 45.411 30.708 45.647 30.237 46.156 30.209 Z M 11.545 30.2 C 12.488 29.984 13.041 30.78 12.62 31.625 L 7.772 39.994 C 6.963 40.681 5.748 39.911 6.231 38.92 C 7.97 36.406 9.258 33.036 11.013 30.602 C 11.156 30.403 11.297 30.256 11.547 30.2 Z M 34.234 30.552 C 35.078 30.3 35.787 30.942 35.466 31.783 L 30.577 40.228 C 29.837 41.133 28.495 40.12 29.037 39.155 C 30.736 36.77 31.98 33.353 33.705 31.075 C 33.83 30.911 34.041 30.609 34.234 30.553 Z M 17.395 30.078 C 18.059 29.941 18.816 30.647 18.506 31.311 L 14.319 38.587 C 13.753 39.466 12.527 39.123 12.519 38.077 L 16.744 30.603 C 16.888 30.384 17.133 30.133 17.395 30.078 Z M 6.512 30.798 C 6.794 31.056 6.878 31.556 6.691 31.898 C 5.341 33.902 4.3 36.603 2.903 38.519 C 2.148 39.555 0.748 38.802 1.258 37.575 C 2.617 35.667 3.584 33.045 4.93 31.189 C 5.314 30.658 5.931 30.266 6.511 30.798 Z M 24.875 28.925 C 25.05 29.117 25.214 29.572 25.095 29.825 L 21.798 35.423 C 20.823 35.927 20.08 35.267 20.441 34.183 C 20.65 33.553 22.88 29.733 23.339 29.13 C 23.716 28.636 24.416 28.425 24.873 28.927 Z M 36.802 36.527 C 37.494 36.489 37.911 37.223 37.689 37.864 C 37.503 38.397 35.228 42.323 34.856 42.75 C 34.056 43.667 32.819 42.87 33.277 41.756 C 33.606 40.952 35.445 37.739 35.975 37.084 C 36.183 36.828 36.45 36.545 36.803 36.527 Z M 57.745 29.614 C 58.52 29.445 59.025 30.03 58.897 30.761 L 56.077 35.667 C 55.367 36.433 54.311 35.802 54.436 34.855 C 55.336 33.442 56.067 31.645 57.028 30.303 C 57.233 30.017 57.355 29.698 57.747 29.614 Z M 39.375 34.93 C 38.68 35.598 37.583 35.052 37.805 34.002 C 37.878 33.656 39.888 30.18 40.186 29.833 C 40.953 28.941 42.056 29.506 41.848 30.556 L 39.377 34.93 Z M 53.65 36.633 C 54.523 36.43 55.033 37.058 54.798 37.898 C 54.711 38.209 53.003 41.156 52.75 41.462 C 52.031 42.334 50.83 41.658 51.103 40.642 C 51.216 40.223 52.869 37.378 53.188 36.987 C 53.336 36.806 53.394 36.692 53.652 36.633 Z M 28.497 43.819 C 27.905 44.389 26.923 44.044 26.892 43.213 C 26.875 42.788 27.609 41.419 27.983 41.258 C 28.861 40.877 29.619 41.631 29.266 42.541 C 29.208 42.689 28.594 43.727 28.498 43.819 Z M 19.381 36.517 C 21.55 36.025 20.317 39.723 18.787 38.931 C 17.839 38.441 18.672 36.678 19.381 36.517 Z M 31.78 52.423 C 32.519 52.259 33.763 52.288 33.797 53.288 C 33.831 54.288 32.267 54.534 31.584 54.089 C 30.902 53.644 31.055 52.584 31.78 52.423 Z M 27.686 55.113 C 28.411 54.952 29.648 54.984 29.706 55.973 C 29.773 57.116 27.552 57.381 27.106 56.342 C 26.913 55.891 27.2 55.22 27.688 55.113 Z M 31.194 25.288 C 32.117 25.08 33.438 25.331 33.047 26.556 C 32.828 27.242 31.675 27.256 31.105 27.083 C 30.259 26.827 30.302 25.488 31.194 25.288 Z M 49.675 25.055 C 50.377 24.9 51.681 24.914 51.68 25.906 C 51.68 27.328 48.848 27.214 49.028 25.82 C 49.073 25.464 49.312 25.134 49.675 25.053 Z M 16.464 56.872 C 18.503 56.606 18.928 58.984 16.308 58.72 C 15.109 58.6 15.125 57.047 16.464 56.872 Z M 37.042 45.405 C 37.952 45.2 39.28 45.469 38.895 46.672 C 38.677 47.358 37.523 47.372 36.953 47.198 C 36.108 46.942 36.15 45.606 37.042 45.405 Z M 11.545 55.931 C 12.248 55.775 13.531 55.806 13.555 56.781 C 13.587 58.216 10.584 58.109 10.898 56.578 C 10.958 56.284 11.256 55.997 11.547 55.933 Z M 36.692 22.364 C 37.395 22.208 38.678 22.239 38.702 23.214 C 38.73 24.423 36.545 24.602 36.113 23.595 C 35.919 23.144 36.206 22.473 36.694 22.366 Z M 56.178 44.014 C 56.736 43.403 58.945 43.619 58.548 44.917 C 58.097 46.397 54.902 45.412 56.178 44.014 Z M 21.838 22.364 C 22.563 22.203 23.8 22.236 23.858 23.225 C 23.922 24.33 21.806 24.638 21.314 23.656 C 21.07 23.169 21.295 22.484 21.838 22.364 Z M 6.983 22.364 C 7.605 22.184 8.919 22.256 9.005 23.111 C 9.153 24.587 6.275 24.611 6.35 23.234 C 6.366 22.956 6.717 22.441 6.983 22.364 Z M 16.341 25.287 C 17.061 25.127 18.214 25.187 18.253 26.142 C 18.295 27.156 17.231 27.261 16.439 27.127 C 15.419 26.955 15.427 25.491 16.341 25.287 Z M 47.403 22.606 C 47.878 22.042 50.186 22.142 49.777 23.513 C 49.339 24.977 46.188 24.048 47.403 22.606 Z M 15.873 42.598 C 16.594 42.438 17.747 42.498 17.786 43.453 C 17.828 44.467 16.764 44.572 15.972 44.438 C 14.952 44.266 14.959 42.802 15.873 42.598 Z M 47.92 53.592 C 48.2 53.528 48.886 53.53 49.175 53.573 C 50.406 53.766 50.2 55.702 48.256 55.427 C 47.041 55.255 47.077 53.786 47.92 53.592 Z M 40.434 22.364 C 41.356 22.159 42.594 22.323 42.314 23.542 C 42.136 24.317 41.086 24.317 40.466 24.155 C 39.478 23.897 39.57 22.556 40.436 22.364 Z M 41.136 46.341 C 41.878 46.172 43.009 46.356 42.984 47.312 C 42.959 48.281 41.964 48.278 41.225 48.191 C 39.997 48.045 40.173 46.561 41.134 46.342 Z M 52.481 46.341 C 53.202 46.18 54.355 46.241 54.394 47.195 C 54.436 48.209 53.372 48.314 52.58 48.18 C 51.559 48.008 51.567 46.544 52.481 46.341 Z M 32.483 48.098 C 34.609 47.711 35.102 50.186 32.567 49.947 C 31.269 49.823 31.33 48.308 32.483 48.098 Z M 20.67 48.097 C 21.553 47.916 22.663 48.194 22.456 49.294 C 22.316 50.044 21.109 50.048 20.53 49.939 C 19.664 49.775 19.581 48.322 20.67 48.097 Z M 34.82 25.055 C 35.1 24.992 35.789 24.989 36.075 25.036 C 37.281 25.234 37.098 27.145 35.156 26.889 C 33.931 26.728 33.928 25.252 34.82 25.053 Z M 18.094 22.363 C 18.733 22.177 20.005 22.253 20.114 23.109 C 20.247 24.15 19.128 24.333 18.311 24.203 C 17.322 24.045 17.3 22.594 18.095 22.363 Z M 12.48 22.606 C 13.695 24.048 10.544 24.975 10.106 23.513 C 9.697 22.144 12.005 22.042 12.48 22.606 Z M 55.287 22.364 C 56.092 22.184 57.269 22.294 57.198 23.331 C 57.137 24.244 56.133 24.314 55.406 24.181 C 54.316 23.981 54.4 22.561 55.287 22.363 Z M 51.545 22.364 C 52.23 22.212 53.283 22.231 53.489 23.062 C 53.816 24.373 51.428 24.667 50.966 23.595 C 50.745 23.083 50.992 22.487 51.545 22.364 Z M 3.358 22.364 C 4.077 22.203 5.231 22.266 5.272 23.219 C 5.314 24.22 4.244 24.322 3.478 24.183 C 2.419 23.989 2.409 22.577 3.358 22.364 Z M 25.18 23.944 C 25.031 23.795 24.892 23.333 24.912 23.111 C 25.022 21.934 27.983 21.911 27.461 23.661 C 27.248 24.37 25.608 24.372 25.18 23.944 Z M 34.705 23.944 C 34.277 24.372 32.634 24.369 32.423 23.661 C 31.9 21.911 34.863 21.934 34.972 23.111 C 34.992 23.333 34.853 23.797 34.705 23.944 Z M 44.177 22.364 C 44.897 22.203 46.048 22.266 46.089 23.219 C 46.13 24.172 45.039 24.319 44.295 24.183 C 43.236 23.988 43.227 22.577 44.175 22.364 Z M 14.469 22.364 C 14.984 22.248 16.162 22.269 16.35 22.889 C 16.847 24.547 14.053 24.575 13.823 23.541 C 13.712 23.037 13.939 22.483 14.469 22.364 Z M 10.606 26.864 C 10.017 27.509 7.872 27.148 8.236 25.961 C 8.689 24.48 11.883 25.466 10.606 26.864 Z M 29.323 22.364 C 30.044 22.203 31.197 22.264 31.236 23.219 C 31.278 24.22 30.208 24.322 29.442 24.183 C 28.352 23.983 28.436 22.563 29.323 22.364 Z M 31.081 56.869 C 31.905 56.742 33.025 57.109 32.695 58.134 C 32.464 58.853 31.448 58.803 30.825 58.705 C 29.878 58.556 29.861 57.055 31.081 56.867 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 29.823 10.759 C 29.644 10.802 29.636 10.733 29.541 10.636 C 28.733 9.823 28.091 8.392 27.395 7.402 C 26.423 6.017 25.28 4.823 24.095 3.628 C 26.967 4.214 29.481 6.177 31.206 8.48 L 29.825 10.761 Z M 37.192 7.019 L 35.145 9.005 C 33.541 10.903 32.872 12.833 32.512 15.262 C 32.489 15.42 32.464 15.622 32.283 15.439 C 32.256 14.605 30.9 13.186 31.014 12.487 C 31.12 11.842 32.287 10.075 32.752 9.536 C 33.831 8.283 35.539 7.262 37.192 7.019 Z M 30.409 15.672 C 29.963 15.617 29.366 15.753 28.947 15.673 C 28.528 15.594 28.052 14.289 27.813 13.883 C 26.594 11.812 25.222 9.875 23.509 8.187 C 26.816 9.486 28.928 12.58 30.409 15.67 Z M 26.667 15.672 L 25.378 15.617 L 24.153 13.917 L 23.041 12.867 C 23.722 12.964 24.972 13.319 25.492 13.747 C 25.978 14.147 26.245 15.175 26.666 15.672 Z M 34.738 3.861 L 32.575 7.134 C 32.336 6.878 31.794 6.508 31.986 6.086 C 32.042 5.961 32.977 5.077 33.163 4.916 C 33.331 4.769 34.623 3.752 34.738 3.861 Z M 36.725 12.398 C 36.003 13.448 35.167 14.436 34.719 15.652 L 34.27 15.67 C 34.497 15.059 34.398 14.102 34.798 13.569 C 34.973 13.334 36.569 12.266 36.727 12.398 Z M 45.38 57.778 L 36.433 57.778 L 35.331 56.772 C 35.269 56.511 36.413 54.845 36.488 54.437 C 36.697 53.284 35.286 51.905 36.523 51.083 C 36.714 50.956 39.1 50.059 39.244 50.066 L 45.038 53.967 L 45.38 57.777 Z M 57.661 48.655 L 57.661 57.778 L 53.802 57.778 L 53.164 54.145 L 56.008 51.038 L 56.622 48.552 Z M 13.694 46.436 C 14.527 46.894 16.667 47.128 16.903 48.175 C 16.961 48.43 16.461 49.642 16.403 50.027 C 16.23 51.178 17.131 52.002 17.512 53.042 L 16.417 54.128 L 11.823 52.445 L 10.55 50.466 L 13.695 46.436 Z M 29.122 49.123 L 29.358 51.519 C 29.341 51.697 28.853 52.219 28.688 52.264 C 28.472 52.322 27.202 51.906 27.022 51.752 C 26.786 51.547 26.65 50.958 26.378 50.641 C 26.106 50.323 25.697 50.166 25.386 49.886 C 25.381 49.841 25.858 49.167 25.908 49.127 C 26.397 48.727 28.416 49.255 29.12 49.127 Z M 22.281 57.194 L 20.938 55.966 L 22.845 54.286 L 24.77 55.814 L 24.795 57.194 Z M 8.178 55.334 C 8.258 55.45 7.083 57.225 6.858 57.184 L 4.912 55.206 L 6.72 54.383 L 8.177 55.334 Z M 3.744 50.175 L 3.175 48.269 C 3.416 48.003 4.275 46.972 4.603 47.034 L 6.08 48.478 L 3.744 50.173 Z M 47.134 49.241 L 49.511 48.786 C 50.58 49.87 50.137 50.256 48.969 50.858 Z\" fill=\"transparent\"></path></svg>',svgContentId:12299289621,withExternalLayout:true,...addPropertyOverrides({GUsdKloHp:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 40 0 L 40 40 L 0 40 L 0 0 Z M 15.439 10.448 L 0.819 10.448 C 0.304 10.448 -0.021 11.367 0.547 11.655 L 39.108 11.7 C 40.039 11.609 39.673 10.448 39.103 10.448 L 24.561 10.448 C 24.935 9.609 25.665 8.825 26.354 8.225 C 26.664 7.956 27.555 7.484 27.601 7.127 C 27.728 6.119 26.416 6.392 25.796 6.497 C 25.32 6.577 24.87 6.741 24.406 6.861 C 24.766 6.255 25.416 5.774 25.987 5.364 C 26.325 5.121 27.539 4.49 27.601 4.171 C 27.659 3.874 27.601 3.585 27.32 3.443 C 27.039 3.3 25.479 3.321 25.07 3.355 C 24.737 3.383 24.343 3.504 24.017 3.587 C 23.961 3.532 24.378 3.037 24.444 2.962 C 25.001 2.326 25.695 1.818 26.26 1.19 C 26.544 -0.163 24.855 0.446 24.13 0.7 C 22.708 1.198 21.333 2.107 20.382 3.273 C 18.907 2.102 17.325 1.293 15.454 0.961 C 14.995 0.88 14.036 0.715 13.611 0.785 C 13.133 0.866 12.945 1.4 13.219 1.793 C 13.372 2.011 14.43 2.669 14.739 2.924 C 15.21 3.314 15.669 3.742 16.062 4.21 C 15.215 3.996 11.711 2.667 12.441 4.597 C 13.655 5.316 14.746 6.226 15.672 7.292 C 14.92 7.291 12.198 6.494 12.477 7.914 C 12.534 8.205 14.139 9.16 14.503 9.474 C 14.84 9.762 15.143 10.12 15.437 10.45 Z M 39.507 13.28 C 39.382 13.166 39.123 13.097 38.951 13.095 L 0.971 13.095 C 0.218 13.083 -0.079 13.951 0.62 14.311 L 39.356 14.287 C 39.732 14.103 39.813 13.559 39.507 13.279 Z M 2.239 14.909 C 1.606 15.051 1.613 15.993 2.319 16.122 C 2.829 16.216 3.542 16.147 3.515 15.479 C 3.488 14.811 2.719 14.801 2.239 14.909 Z M 4.655 14.909 C 4.478 14.96 4.244 15.304 4.233 15.49 C 4.183 16.406 6.102 16.392 6.003 15.407 C 5.946 14.837 5.07 14.79 4.655 14.909 Z M 8.32 15.071 C 8.003 14.695 6.465 14.761 6.738 15.675 C 7.029 16.651 9.13 16.032 8.32 15.071 Z M 9.646 14.909 C 9.293 14.989 9.142 15.358 9.216 15.694 C 9.369 16.383 11.23 16.365 10.9 15.259 C 10.776 14.845 9.991 14.832 9.646 14.909 Z M 12.063 14.908 C 11.533 15.062 11.547 16.029 12.206 16.135 C 12.752 16.223 13.497 16.1 13.408 15.406 C 13.335 14.835 12.488 14.784 12.061 14.908 Z M 14.558 14.909 C 14.197 14.99 14.046 15.446 14.209 15.771 C 14.538 16.425 15.948 16.22 15.905 15.483 C 15.867 14.824 15.043 14.801 14.558 14.909 Z M 16.786 15.963 C 17.072 16.248 18.167 16.246 18.307 15.774 C 18.656 14.607 16.681 14.623 16.608 15.407 C 16.595 15.555 16.688 15.865 16.786 15.963 Z M 19.549 14.909 C 18.958 15.042 18.901 15.989 19.628 16.122 C 20.139 16.216 20.851 16.147 20.824 15.479 C 20.797 14.811 20.029 14.802 19.549 14.909 Z M 23.136 15.963 C 23.235 15.864 23.328 15.555 23.315 15.407 C 23.242 14.623 21.268 14.607 21.616 15.774 C 21.757 16.247 22.851 16.248 23.136 15.963 Z M 24.461 14.909 C 24.136 14.982 23.945 15.428 24.074 15.729 C 24.362 16.4 25.819 16.282 25.8 15.475 C 25.785 14.826 24.929 14.804 24.46 14.908 Z M 26.956 14.909 C 26.379 15.038 26.318 15.932 26.976 16.103 C 27.39 16.21 28.09 16.211 28.208 15.695 C 28.395 14.882 27.571 14.772 26.955 14.909 Z M 29.451 14.909 C 28.819 15.051 28.824 15.992 29.531 16.122 C 30.027 16.212 30.754 16.126 30.727 15.479 C 30.7 14.832 29.932 14.801 29.452 14.909 Z M 31.602 15.071 C 30.792 16.032 32.893 16.65 33.184 15.675 C 33.457 14.762 31.919 14.695 31.602 15.071 Z M 34.364 14.909 C 33.995 14.992 33.83 15.389 33.977 15.73 C 34.285 16.445 35.877 16.249 35.659 15.375 C 35.522 14.821 34.82 14.808 34.364 14.909 Z M 36.858 14.909 C 36.268 15.042 36.21 15.989 36.937 16.122 C 37.422 16.21 38.092 16.164 38.132 15.555 C 38.178 14.864 37.394 14.791 36.858 14.91 Z M 23.214 16.703 C 22.619 16.835 22.621 17.819 23.438 17.927 C 24.732 18.098 24.854 16.824 24.05 16.692 C 23.859 16.66 23.4 16.662 23.214 16.704 Z M 33.117 16.703 C 32.874 16.756 32.716 16.977 32.685 17.215 C 32.566 18.144 34.453 18.219 34.453 17.272 C 34.453 16.61 33.584 16.6 33.117 16.704 Z M 7.071 17.909 C 7.921 16.977 5.793 16.321 5.491 17.307 C 5.248 18.099 6.678 18.34 7.071 17.909 Z M 10.894 16.858 C 10.284 16.995 10.28 17.97 10.959 18.084 C 11.487 18.173 12.197 18.104 12.169 17.428 C 12.142 16.792 11.374 16.751 10.894 16.858 Z M 20.796 16.858 C 20.201 16.992 20.172 17.883 20.736 18.055 C 21.117 18.171 21.885 18.161 22.031 17.704 C 22.292 16.889 21.411 16.721 20.796 16.858 Z M 35.075 18.233 L 32.101 18.23 C 31.629 17.964 30.958 17.056 30.45 16.997 C 29.299 16.861 27.89 17.098 26.709 17.002 C 25.998 17.255 24.981 18.342 24.293 18.406 C 22.936 18.532 21.382 18.308 20.004 18.398 L 17.877 17.251 C 16.783 17.315 15.449 17.103 14.384 17.231 C 13.809 17.301 13.142 18.102 12.586 18.325 L 8.547 17.938 L 5.898 19.17 C 5.397 18.86 4.225 17.275 3.765 17.171 C 3.373 17.082 1.269 17.1 0.825 17.161 C 0.019 17.274 0.075 18.25 0.678 18.385 C 1.43 18.553 2.557 18.263 3.35 18.443 C 4.008 18.952 4.734 19.934 5.375 20.394 C 5.761 20.671 5.875 20.571 6.264 20.418 C 7.054 20.108 7.85 19.557 8.644 19.224 L 12.898 19.566 L 14.692 18.475 L 17.577 18.482 L 19.691 19.644 C 21.294 19.54 23.102 19.8 24.679 19.652 C 25.472 19.578 26.452 18.315 27.245 18.241 C 28.173 18.154 29.251 18.299 30.196 18.26 C 30.603 18.519 31.326 19.416 31.776 19.488 C 32.379 19.584 34.806 19.572 35.429 19.484 C 35.99 19.406 36.121 18.858 36.345 18.413 C 36.545 18.288 38.734 18.497 39.24 18.383 C 39.857 18.245 39.878 17.277 39.095 17.157 C 38.552 17.074 36.538 17.08 35.986 17.157 C 35.435 17.234 35.3 17.818 35.072 18.231 Z M 16.583 19.283 C 16.277 18.949 15.81 19.091 15.56 19.419 C 15.254 19.821 13.768 22.369 13.628 22.788 C 13.387 23.51 13.883 23.95 14.533 23.615 L 16.731 19.882 C 16.81 19.714 16.701 19.41 16.584 19.282 Z M 26.25 23.286 L 27.898 20.371 C 28.036 19.672 27.301 19.294 26.79 19.889 C 26.591 20.12 25.251 22.437 25.202 22.668 C 25.054 23.368 25.785 23.732 26.249 23.286 Z M 38.497 19.743 C 38.235 19.8 38.154 20.011 38.018 20.202 C 37.377 21.097 36.89 22.295 36.29 23.236 C 36.206 23.868 36.911 24.289 37.383 23.778 L 39.264 20.507 C 39.35 20.019 39.012 19.63 38.496 19.743 Z M 11.597 20.052 C 11.422 20.089 11.258 20.256 11.163 20.402 L 8.346 25.384 C 8.352 26.082 9.17 26.31 9.546 25.725 L 12.338 20.874 C 12.544 20.432 12.04 19.96 11.597 20.052 Z M 19.239 20.053 C 18.975 20.107 18.864 20.364 18.728 20.561 C 17.243 22.742 16.129 25.416 14.642 27.624 C 14.315 28.386 15.171 28.97 15.706 28.3 L 19.979 20.875 C 20.184 20.431 19.681 19.963 19.239 20.053 Z M 7.697 20.133 C 7.53 20.171 7.436 20.269 7.341 20.401 C 6.171 22.024 5.312 24.27 4.153 25.947 C 3.832 26.607 4.641 27.121 5.18 26.662 L 8.412 21.083 C 8.693 20.52 8.325 19.99 7.696 20.133 Z M 30.772 20.14 C 30.432 20.158 30.275 20.472 30.112 20.717 C 28.755 22.767 27.702 25.171 26.342 27.237 C 25.92 28.019 26.955 28.679 27.433 27.861 C 28.541 25.703 30.087 23.603 31.152 21.444 C 31.285 21.173 31.502 20.876 31.408 20.562 C 31.349 20.366 30.982 20.128 30.773 20.14 Z M 34.521 20.13 C 34.244 20.187 34.077 20.501 33.933 20.717 C 32.428 22.966 31.269 25.657 29.769 27.935 C 29.451 28.645 30.331 29.204 30.835 28.612 L 35.201 21.049 C 35.414 20.557 35.063 20.019 34.522 20.13 Z M 4.342 20.532 C 3.955 20.178 3.544 20.439 3.287 20.793 C 2.391 22.03 1.746 23.777 0.84 25.05 C 0.499 25.868 1.432 26.37 1.936 25.679 C 2.868 24.402 3.561 22.601 4.461 21.266 C 4.585 21.038 4.529 20.704 4.343 20.532 Z M 22.823 20.368 C 22.694 20.406 22.553 20.606 22.47 20.716 C 21.32 22.235 20.491 24.512 19.358 26.102 C 18.998 26.745 19.893 27.421 20.384 26.818 L 23.644 21.187 C 23.857 20.628 23.385 20.2 22.823 20.367 Z M 12.921 24.345 C 12.448 24.452 11.892 25.627 12.525 25.954 C 13.545 26.481 14.367 24.017 12.921 24.345 Z M 24.534 24.351 C 24.299 24.364 24.121 24.553 23.982 24.723 C 23.629 25.158 22.403 27.301 22.183 27.838 C 21.878 28.58 22.703 29.113 23.236 28.5 C 23.484 28.216 25.001 25.598 25.125 25.243 C 25.274 24.816 24.995 24.326 24.533 24.351 Z M 35.767 24.422 C 35.595 24.461 35.556 24.537 35.457 24.658 C 35.245 24.919 34.143 26.816 34.068 27.095 C 33.885 27.772 34.686 28.223 35.166 27.642 C 35.334 27.436 36.473 25.473 36.531 25.266 C 36.689 24.704 36.348 24.286 35.766 24.422 Z M 14.452 30.85 C 14.792 31.154 15.281 31.006 15.71 31.034 C 17.986 31.185 20.283 31.207 22.575 31.269 C 23.274 31.184 24.33 29.886 24.914 29.858 L 30.996 31.031 L 35.03 30.546 L 37.35 28.578 C 37.956 28.381 39.247 28.848 39.599 28.177 C 40.27 26.903 37.612 27.351 37.014 27.306 L 34.536 29.352 L 31.301 29.787 L 24.607 28.539 L 22.4 30.002 L 15.259 29.769 C 15.007 29.697 13.214 27.227 12.827 26.821 C 12.672 26.657 12.429 26.371 12.199 26.356 L 7.505 26.957 L 5.731 29.081 L 3.844 27.305 C 2.899 27.376 1.652 27.152 0.746 27.294 C -0.003 27.41 0.103 28.445 0.896 28.539 C 1.689 28.632 2.587 28.454 3.377 28.553 C 3.673 28.641 4.918 30.194 5.343 30.486 C 5.853 30.84 6.078 30.628 6.435 30.253 C 6.709 29.966 8.03 28.124 8.162 28.081 L 11.878 27.694 L 14.454 30.849 Z M 18.998 29.213 C 19.062 29.151 19.471 28.459 19.509 28.36 C 19.745 27.754 19.24 27.251 18.654 27.505 C 18.405 27.614 17.917 28.526 17.927 28.808 C 17.949 29.363 18.602 29.593 18.997 29.213 Z M 10.582 28.399 C 9.973 28.535 9.969 29.51 10.648 29.625 C 11.176 29.714 11.885 29.645 11.857 28.969 C 11.83 28.332 11.063 28.292 10.582 28.399 Z M 37.452 29.343 C 36.601 30.275 38.731 30.931 39.032 29.945 C 39.296 29.079 37.823 28.936 37.452 29.343 Z M 8.71 29.646 C 8.282 29.776 6.324 32.734 5.78 33.187 C 5.657 33.392 5.668 33.62 5.729 33.844 C 5.784 34.043 6.882 35.884 7.023 35.98 L 10.818 37.409 C 11.339 37.556 11.839 36.987 12.205 36.65 C 12.592 36.294 13.236 35.808 13.065 35.241 C 12.967 34.917 12.18 33.815 12.169 33.57 C 12.148 33.108 12.694 32.452 12.517 31.81 C 12.458 31.601 11.93 30.753 11.752 30.626 C 11.508 30.452 9.542 29.729 9.205 29.665 C 9.039 29.632 8.88 29.593 8.71 29.645 Z M 2.945 29.799 C 2.832 29.814 2.707 29.878 2.611 29.941 C 2.359 30.106 1.318 31.141 1.049 31.419 C 0.756 31.724 0.735 31.868 0.815 32.283 C 0.894 32.699 1.436 34.431 1.621 34.752 C 1.863 35.173 2.221 35.127 2.598 34.917 C 3.248 34.553 4.326 33.752 4.936 33.279 C 5.366 32.947 5.847 32.738 5.54 32.081 C 5.058 31.755 3.554 29.873 3.139 29.798 C 3.068 29.785 3.014 29.791 2.944 29.8 Z M 24.695 30.27 C 24.1 30.404 24.072 31.295 24.635 31.466 C 25.016 31.581 25.784 31.572 25.93 31.115 C 26.186 30.312 25.301 30.132 24.695 30.27 Z M 27.424 30.894 C 26.782 31.04 26.665 32.029 27.484 32.126 C 27.977 32.184 28.641 32.186 28.657 31.541 C 28.674 30.903 27.92 30.78 27.425 30.893 Z M 34.988 30.894 C 34.378 31.03 34.374 32.005 35.053 32.12 C 35.581 32.208 36.291 32.14 36.263 31.464 C 36.235 30.827 35.468 30.786 34.988 30.894 Z M 34.619 38.362 C 34.68 38.87 34.63 39.564 35.221 39.749 C 36.442 39.674 37.915 39.906 39.105 39.767 C 39.484 39.722 39.696 39.495 39.692 39.106 C 39.526 36.82 39.899 34.256 39.692 32.003 C 39.67 31.76 39.63 31.571 39.417 31.421 C 39.17 31.247 37.31 30.961 37.014 31.049 C 36.465 31.209 36.45 32.952 36.212 33.444 C 35.902 33.91 34.314 35.224 34.187 35.628 C 33.989 36.261 34.565 37.574 34.542 38.283 C 34.422 38.289 34.453 38.137 34.339 38.058 C 33.737 37.644 32.49 37.93 32.868 38.828 C 33.06 39.285 34.309 39.287 34.501 38.828 C 34.572 38.659 34.471 38.401 34.619 38.362 Z M 33.275 31.129 C 32.956 31.15 31.025 31.593 30.742 31.717 C 30.51 31.819 29.958 32.708 29.942 32.949 C 29.931 33.094 29.99 33.178 30.061 33.291 C 30.215 33.529 31.965 35.078 32.241 35.243 C 32.539 35.42 32.66 35.429 32.973 35.274 C 33.175 35.173 34.776 33.945 34.856 33.805 C 34.985 33.581 34.95 33.396 34.87 33.158 C 34.802 32.956 34.019 31.604 33.872 31.427 C 33.711 31.233 33.539 31.111 33.273 31.128 Z M 16.898 31.44 C 16.759 31.471 16.666 31.561 16.567 31.654 C 16.435 31.778 15.45 33.028 15.403 33.142 C 15.042 34.029 16.221 34.162 16.61 34.579 C 16.823 34.807 16.917 35.35 17.203 35.547 C 17.305 35.618 18.759 36.129 18.927 36.161 C 19.14 36.203 19.348 36.204 19.552 36.121 C 19.705 36.058 20.765 35.043 20.803 34.877 C 20.758 33.871 20.755 32.792 20.541 31.82 C 20.253 31.346 19.329 31.528 18.832 31.501 C 18.278 31.471 17.443 31.319 16.899 31.441 Z M 13.78 32.065 C 13.054 32.214 13.109 33.182 13.686 33.293 C 14.073 33.367 14.877 33.363 14.971 32.863 C 15.108 32.129 14.369 31.944 13.78 32.065 Z M 21.655 32.066 C 20.886 32.205 20.846 33.216 21.711 33.298 C 23.402 33.457 23.073 31.808 21.655 32.066 Z M 26.101 32.064 C 25.82 32.106 23.803 32.861 23.543 33.016 C 23.249 33.191 22.694 34.156 22.683 34.501 C 22.67 34.943 23.106 35.77 23.059 36.05 C 23.008 36.355 22.291 37.299 22.181 37.656 C 22.103 37.911 22.12 38.071 22.249 38.298 C 22.307 38.401 23.289 39.34 23.434 39.452 C 23.58 39.565 23.791 39.73 23.982 39.761 C 26.192 39.619 28.666 39.966 30.844 39.77 C 31.825 39.681 31.456 38.745 31.426 38.089 C 31.399 37.491 31.44 35.648 31.151 35.245 L 26.39 32.048 C 26.293 32.03 26.199 32.049 26.104 32.064 Z M 17.597 36.516 C 17.421 36.307 15.759 34.895 15.545 34.786 C 15.236 34.631 15.047 34.664 14.776 34.853 C 14.341 35.157 13.545 35.934 13.136 36.332 C 12.685 36.773 12.106 37.146 12.658 37.79 L 14.343 39.341 C 14.625 39.428 16.909 39.426 17.267 39.371 C 17.598 39.32 17.728 39.094 17.771 38.783 C 17.83 38.36 17.846 36.809 17.597 36.515 Z M 4.347 34.868 C 4.135 34.909 2.185 35.97 1.954 36.145 C 1.561 36.443 1.5 36.798 1.83 37.194 C 2.665 37.829 3.484 38.973 4.286 39.572 C 4.675 39.861 4.878 39.837 5.227 39.496 C 5.395 39.331 6.842 37.271 6.897 37.111 C 6.964 36.919 6.978 36.681 6.899 36.493 C 6.835 36.343 4.892 34.945 4.68 34.889 C 4.551 34.854 4.483 34.841 4.347 34.868 Z M 21.186 34.949 C 20.702 35.057 20.617 35.773 21.056 36.059 C 21.496 36.346 22.554 36.196 22.531 35.525 C 22.508 34.854 21.68 34.839 21.186 34.949 Z M 31.947 35.728 C 31.384 35.858 31.359 36.836 32.171 36.951 C 33.467 37.134 33.604 35.844 32.783 35.716 C 32.591 35.685 32.133 35.684 31.947 35.728 Z M 18.457 36.742 C 18.132 36.815 17.941 37.26 18.07 37.561 C 18.368 38.254 19.848 38.077 19.803 37.316 C 19.765 36.656 18.941 36.633 18.456 36.742 Z M 7.697 37.287 C 7.503 37.33 7.305 37.523 7.265 37.718 C 7.055 38.74 9.057 38.809 9.035 37.853 C 9.021 37.204 8.165 37.182 7.696 37.286 Z M 10.976 37.915 C 10.083 38.031 10.073 39.067 10.872 39.147 C 12.619 39.322 12.335 37.737 10.976 37.915 Z M 20.721 37.913 C 19.907 38.038 19.919 39.039 20.55 39.138 C 20.966 39.202 21.643 39.236 21.797 38.757 C 22.017 38.074 21.27 37.829 20.721 37.914 Z\" fill=\"transparent\"></path><path d=\"M 15.439 10.448 C 15.144 10.119 14.84 9.76 14.504 9.472 C 14.14 9.158 12.535 8.203 12.478 7.911 C 12.199 6.492 14.921 7.289 15.673 7.29 C 14.747 6.224 13.656 5.314 12.442 4.595 C 11.712 2.665 15.216 3.994 16.064 4.208 C 15.669 3.74 15.21 3.311 14.74 2.922 C 14.431 2.667 13.373 2.01 13.22 1.791 C 12.946 1.398 13.134 0.865 13.612 0.783 C 14.037 0.711 14.995 0.878 15.455 0.959 C 17.327 1.291 18.909 2.1 20.383 3.271 C 21.334 2.106 22.709 1.196 24.131 0.698 C 24.856 0.445 26.544 -0.165 26.261 1.188 C 25.697 1.816 25.002 2.324 24.445 2.96 C 24.379 3.035 23.962 3.53 24.018 3.585 C 24.344 3.501 24.739 3.381 25.071 3.353 C 25.48 3.319 27.033 3.295 27.321 3.441 C 27.608 3.586 27.66 3.873 27.602 4.169 C 27.54 4.488 26.326 5.12 25.989 5.361 C 25.417 5.773 24.767 6.253 24.407 6.859 C 24.871 6.74 25.321 6.575 25.797 6.495 C 26.418 6.391 27.729 6.117 27.602 7.125 C 27.557 7.482 26.665 7.954 26.355 8.223 C 25.666 8.823 24.937 9.608 24.562 10.446 L 39.104 10.446 C 39.674 10.446 40.039 11.608 39.109 11.698 L 0.548 11.653 C -0.02 11.365 0.305 10.446 0.82 10.446 L 15.44 10.446 Z M 19.882 7.173 L 20.803 5.652 C 19.652 4.117 17.977 2.808 16.062 2.418 C 16.852 3.215 17.616 4.011 18.262 4.933 C 18.726 5.594 19.154 6.548 19.693 7.09 C 19.757 7.154 19.762 7.201 19.881 7.172 Z M 23.158 2.574 C 23.082 2.501 22.221 3.179 22.108 3.277 C 21.984 3.384 21.361 3.974 21.324 4.057 C 21.196 4.338 21.558 4.584 21.717 4.756 Z M 24.795 4.679 C 23.693 4.841 22.555 5.521 21.834 6.357 C 21.525 6.717 20.746 7.895 20.676 8.325 C 20.6 8.79 21.503 9.736 21.522 10.293 C 21.642 10.416 21.659 10.281 21.675 10.175 C 21.915 8.555 22.36 7.269 23.43 6.003 Z M 20.273 10.448 C 19.285 8.387 17.877 6.325 15.673 5.459 C 16.815 6.584 17.73 7.876 18.542 9.256 C 18.701 9.527 19.028 10.398 19.298 10.45 C 19.568 10.502 19.976 10.411 20.273 10.449 Z M 24.483 8.266 C 24.378 8.177 23.316 8.891 23.198 9.046 C 22.931 9.401 22.997 10.04 22.846 10.447 L 23.145 10.434 C 23.444 9.623 24.001 8.965 24.482 8.266 Z M 17.778 10.448 C 17.498 10.118 17.319 9.432 16.996 9.165 C 16.649 8.878 15.816 8.643 15.361 8.578 L 16.103 9.278 L 16.92 10.411 L 17.779 10.448 Z M 14.452 30.85 L 11.876 27.695 L 8.16 28.082 C 8.028 28.125 6.707 29.967 6.433 30.254 C 6.076 30.629 5.851 30.84 5.341 30.487 C 4.917 30.195 3.671 28.642 3.375 28.554 C 2.585 28.455 1.667 28.631 0.894 28.54 C 0.121 28.448 -0.004 27.411 0.744 27.295 C 1.65 27.153 2.898 27.377 3.842 27.306 L 5.729 29.082 L 7.503 26.958 L 12.197 26.357 C 12.428 26.371 12.67 26.658 12.825 26.822 C 13.211 27.228 15.005 29.699 15.257 29.77 L 22.398 30.003 L 24.605 28.54 L 31.299 29.789 L 34.534 29.353 L 37.011 27.307 C 37.61 27.352 40.268 26.904 39.597 28.178 C 39.244 28.849 37.954 28.382 37.348 28.579 L 35.028 30.547 L 30.994 31.032 L 24.911 29.859 C 24.329 29.887 23.272 31.185 22.573 31.27 C 20.281 31.208 17.984 31.186 15.708 31.035 C 15.279 31.007 14.79 31.155 14.45 30.851 Z M 35.075 18.233 C 35.303 17.82 35.463 17.233 35.99 17.159 C 36.517 17.085 38.555 17.076 39.098 17.159 C 39.881 17.279 39.86 18.247 39.243 18.385 C 38.736 18.499 36.548 18.29 36.348 18.415 C 36.123 18.86 35.993 19.408 35.432 19.486 C 34.809 19.573 32.382 19.586 31.779 19.49 C 31.329 19.418 30.607 18.521 30.199 18.262 C 29.254 18.301 28.176 18.156 27.248 18.243 C 26.455 18.317 25.475 19.58 24.682 19.654 C 23.105 19.801 21.296 19.541 19.694 19.646 L 17.58 18.484 L 14.695 18.477 L 12.901 19.568 L 8.647 19.226 C 7.853 19.558 7.057 20.109 6.267 20.42 C 5.877 20.572 5.765 20.673 5.378 20.396 C 4.738 19.936 4.011 18.954 3.353 18.445 C 2.56 18.265 1.433 18.555 0.681 18.387 C 0.077 18.253 0.022 17.276 0.828 17.164 C 1.272 17.102 3.376 17.084 3.768 17.173 C 4.227 17.276 5.4 18.862 5.901 19.172 L 8.55 17.94 L 12.59 18.327 C 13.144 18.103 13.811 17.302 14.388 17.233 C 15.452 17.105 16.786 17.318 17.88 17.253 L 20.007 18.4 C 21.385 18.309 22.94 18.534 24.296 18.408 C 24.984 18.344 26.002 17.257 26.713 17.004 C 27.893 17.1 29.302 16.862 30.453 16.999 C 30.961 17.059 31.632 17.966 32.104 18.232 L 35.078 18.235 Z M 39.507 13.28 C 39.811 13.559 39.732 14.104 39.356 14.289 L 0.62 14.312 C -0.079 13.952 0.218 13.084 0.971 13.096 L 38.951 13.096 C 39.123 13.098 39.382 13.167 39.507 13.281 Z M 26.101 32.064 C 26.197 32.049 26.29 32.029 26.386 32.048 L 31.148 35.245 C 31.436 35.648 31.395 37.492 31.423 38.089 C 31.453 38.745 31.822 39.681 30.841 39.77 C 28.664 39.966 26.189 39.619 23.979 39.761 C 23.787 39.729 23.584 39.569 23.431 39.452 C 23.278 39.335 22.304 38.401 22.246 38.298 C 22.117 38.071 22.1 37.911 22.178 37.656 C 22.289 37.299 23.005 36.356 23.056 36.05 C 23.103 35.771 22.667 34.944 22.68 34.501 C 22.691 34.156 23.246 33.19 23.54 33.016 C 23.8 32.86 25.817 32.105 26.098 32.064 Z M 30.253 38.519 L 30.025 35.979 L 26.162 33.378 C 26.066 33.374 24.475 33.972 24.349 34.056 C 23.524 34.604 24.466 35.524 24.325 36.293 C 24.276 36.564 23.512 37.674 23.554 37.849 L 24.289 38.52 L 30.253 38.52 Z M 34.619 38.363 C 34.471 38.402 34.571 38.659 34.501 38.828 C 34.309 39.288 33.06 39.285 32.868 38.828 C 32.49 37.93 33.737 37.644 34.339 38.058 C 34.452 38.138 34.421 38.289 34.542 38.283 C 34.565 37.574 33.989 36.261 34.187 35.628 C 34.315 35.224 35.902 33.91 36.212 33.444 C 36.45 32.952 36.466 31.209 37.014 31.049 C 37.31 30.963 39.17 31.247 39.417 31.421 C 39.63 31.572 39.67 31.76 39.692 32.003 C 39.899 34.255 39.526 36.82 39.692 39.106 C 39.696 39.495 39.484 39.723 39.105 39.767 C 37.915 39.906 36.443 39.673 35.221 39.749 C 34.63 39.564 34.68 38.87 34.619 38.363 Z M 38.441 32.436 L 37.748 32.367 L 37.339 34.024 L 35.443 36.097 L 35.868 38.518 L 38.441 38.518 L 38.441 32.435 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 8.71 29.646 C 8.88 29.594 9.039 29.633 9.205 29.666 C 9.542 29.73 11.508 30.453 11.752 30.627 C 11.93 30.754 12.459 31.601 12.517 31.811 C 12.694 32.453 12.148 33.109 12.169 33.571 C 12.18 33.815 12.966 34.918 13.065 35.242 C 13.236 35.808 12.592 36.295 12.205 36.651 C 11.839 36.989 11.339 37.557 10.818 37.41 L 7.023 35.981 C 6.882 35.884 5.784 34.044 5.729 33.845 C 5.668 33.622 5.657 33.393 5.78 33.189 C 6.324 32.735 8.282 29.777 8.71 29.647 Z M 9.129 30.957 L 7.032 33.644 L 7.881 34.964 L 10.944 36.085 L 11.674 35.361 C 11.42 34.669 10.82 34.119 10.934 33.351 C 10.973 33.095 11.306 32.286 11.268 32.117 C 11.11 31.419 9.683 31.263 9.128 30.957 Z M 16.898 31.44 C 17.442 31.318 18.277 31.47 18.831 31.5 C 19.328 31.527 20.253 31.345 20.54 31.819 C 20.754 32.792 20.757 33.871 20.802 34.876 C 20.765 35.042 19.704 36.057 19.551 36.12 C 19.347 36.203 19.139 36.202 18.926 36.16 C 18.758 36.128 17.305 35.616 17.202 35.546 C 16.916 35.349 16.823 34.806 16.609 34.578 C 16.221 34.161 15.041 34.028 15.402 33.141 C 15.448 33.027 16.434 31.777 16.566 31.653 C 16.664 31.56 16.758 31.47 16.897 31.439 Z M 19.415 32.749 C 18.945 32.835 17.599 32.482 17.273 32.749 C 17.24 32.776 16.922 33.225 16.925 33.255 C 17.132 33.442 17.401 33.542 17.586 33.758 C 17.772 33.975 17.857 34.362 18.016 34.499 C 18.135 34.603 18.983 34.88 19.126 34.841 C 19.236 34.81 19.561 34.462 19.573 34.344 L 19.416 32.747 Z M 17.597 36.516 C 17.846 36.81 17.829 38.361 17.771 38.784 C 17.727 39.095 17.598 39.321 17.267 39.372 C 16.909 39.427 14.626 39.429 14.343 39.342 L 12.658 37.791 C 12.106 37.148 12.685 36.775 13.136 36.333 C 13.545 35.934 14.341 35.157 14.776 34.854 C 15.048 34.665 15.236 34.632 15.545 34.788 C 15.759 34.896 17.421 36.307 17.597 36.517 Z M 14.854 38.129 L 16.53 38.129 L 16.514 37.209 L 15.23 36.191 L 13.958 37.31 L 14.853 38.129 Z M 4.347 34.868 C 4.483 34.841 4.551 34.854 4.68 34.889 C 4.892 34.945 6.835 36.342 6.899 36.493 C 6.979 36.681 6.964 36.919 6.897 37.111 C 6.842 37.271 5.395 39.331 5.227 39.496 C 4.878 39.838 4.675 39.863 4.286 39.572 C 3.484 38.973 2.666 37.829 1.83 37.194 C 1.499 36.798 1.561 36.442 1.954 36.145 C 2.185 35.97 4.135 34.909 4.347 34.868 Z M 5.452 36.89 L 4.481 36.255 L 3.276 36.804 L 4.573 38.123 C 4.723 38.15 5.505 36.966 5.453 36.89 Z M 2.945 29.799 C 3.015 29.79 3.069 29.784 3.14 29.797 C 3.554 29.872 5.058 31.754 5.541 32.08 C 5.847 32.736 5.367 32.946 4.937 33.278 C 4.327 33.751 3.249 34.552 2.599 34.916 C 2.222 35.126 1.865 35.173 1.622 34.751 C 1.437 34.43 0.893 32.685 0.816 32.282 C 0.739 31.879 0.757 31.722 1.05 31.418 C 1.318 31.139 2.359 30.105 2.612 29.94 C 2.708 29.877 2.833 29.813 2.946 29.798 Z M 2.496 33.45 L 4.053 32.32 L 3.069 31.357 C 2.85 31.315 2.277 32.002 2.117 32.18 L 2.496 33.451 Z M 33.275 31.129 C 33.541 31.112 33.715 31.234 33.874 31.428 C 34.02 31.605 34.804 32.957 34.872 33.159 C 34.951 33.397 34.986 33.582 34.858 33.806 C 34.778 33.945 33.177 35.174 32.975 35.275 C 32.662 35.43 32.541 35.422 32.243 35.244 C 31.967 35.079 30.217 33.53 30.064 33.292 C 29.991 33.179 29.933 33.095 29.944 32.95 C 29.96 32.709 30.512 31.82 30.744 31.718 C 31.027 31.594 32.957 31.15 33.277 31.13 Z M 31.423 32.827 L 32.646 33.905 C 33.425 33.504 33.72 33.247 33.007 32.524 Z M 34.521 20.13 C 35.06 20.019 35.412 20.556 35.2 21.049 L 30.834 28.613 C 30.33 29.204 29.45 28.645 29.768 27.935 C 31.269 25.657 32.427 22.966 33.932 20.717 C 34.076 20.501 34.243 20.188 34.52 20.13 Z M 19.239 20.053 C 19.681 19.963 20.184 20.43 19.979 20.875 L 15.706 28.3 C 15.171 28.97 14.315 28.388 14.642 27.624 C 16.13 25.416 17.243 22.742 18.728 20.561 C 18.864 20.364 18.975 20.107 19.239 20.053 Z M 30.772 20.14 C 30.981 20.128 31.349 20.366 31.407 20.562 C 31.501 20.876 31.284 21.173 31.151 21.444 C 30.086 23.603 28.539 25.703 27.432 27.861 C 26.954 28.679 25.919 28.019 26.341 27.237 C 27.702 25.171 28.755 22.767 30.111 20.717 C 30.274 20.472 30.431 20.158 30.771 20.14 Z M 7.697 20.133 C 8.325 19.99 8.694 20.52 8.414 21.083 L 5.181 26.663 C 4.642 27.121 3.832 26.607 4.154 25.947 C 5.314 24.271 6.172 22.024 7.342 20.401 C 7.437 20.269 7.531 20.171 7.698 20.133 Z M 22.823 20.368 C 23.385 20.2 23.858 20.628 23.644 21.189 L 20.384 26.819 C 19.892 27.422 18.997 26.747 19.358 26.103 C 20.491 24.514 21.32 22.235 22.47 20.717 C 22.553 20.607 22.694 20.406 22.823 20.369 Z M 11.597 20.052 C 12.04 19.96 12.544 20.431 12.337 20.874 L 9.546 25.725 C 9.169 26.31 8.351 26.082 8.346 25.384 L 11.162 20.402 C 11.258 20.256 11.422 20.089 11.597 20.052 Z M 4.342 20.532 C 4.529 20.704 4.585 21.038 4.46 21.266 C 3.56 22.601 2.867 24.402 1.935 25.679 C 1.432 26.37 0.499 25.868 0.839 25.05 C 1.745 23.778 2.39 22.03 3.286 20.793 C 3.543 20.439 3.954 20.177 4.341 20.532 Z M 16.583 19.283 C 16.7 19.411 16.809 19.715 16.73 19.883 L 14.532 23.616 C 13.882 23.951 13.386 23.511 13.627 22.789 C 13.767 22.369 15.253 19.822 15.559 19.42 C 15.81 19.091 16.277 18.95 16.582 19.284 Z M 24.534 24.351 C 24.996 24.326 25.274 24.816 25.126 25.243 C 25.002 25.598 23.485 28.216 23.238 28.5 C 22.704 29.111 21.879 28.58 22.184 27.838 C 22.404 27.301 23.63 25.159 23.983 24.723 C 24.122 24.552 24.3 24.364 24.535 24.351 Z M 38.497 19.743 C 39.014 19.63 39.35 20.02 39.265 20.507 L 37.384 23.778 C 36.911 24.289 36.207 23.868 36.291 23.236 C 36.891 22.295 37.378 21.097 38.019 20.202 C 38.155 20.011 38.236 19.799 38.498 19.743 Z M 26.25 23.286 C 25.786 23.732 25.055 23.368 25.203 22.668 C 25.252 22.438 26.592 20.12 26.791 19.889 C 27.302 19.294 28.038 19.671 27.899 20.371 L 26.251 23.286 Z M 35.767 24.422 C 36.349 24.286 36.689 24.705 36.532 25.266 C 36.474 25.473 35.335 27.437 35.167 27.642 C 34.687 28.223 33.886 27.772 34.069 27.095 C 34.144 26.816 35.246 24.919 35.458 24.658 C 35.557 24.537 35.596 24.461 35.768 24.422 Z M 18.998 29.213 C 18.603 29.593 17.949 29.363 17.928 28.808 C 17.917 28.525 18.406 27.613 18.655 27.505 C 19.241 27.251 19.746 27.754 19.51 28.36 C 19.472 28.459 19.062 29.151 18.999 29.213 Z M 12.921 24.345 C 14.367 24.017 13.545 26.482 12.525 25.954 C 11.893 25.627 12.448 24.452 12.921 24.345 Z M 21.186 34.949 C 21.679 34.84 22.508 34.858 22.531 35.525 C 22.554 36.192 21.511 36.356 21.056 36.059 C 20.601 35.762 20.703 35.056 21.186 34.949 Z M 18.457 36.742 C 18.941 36.634 19.766 36.656 19.804 37.316 C 19.849 38.077 18.368 38.254 18.071 37.561 C 17.942 37.26 18.133 36.814 18.458 36.742 Z M 20.796 16.858 C 21.411 16.72 22.292 16.888 22.031 17.704 C 21.885 18.161 21.117 18.171 20.736 18.055 C 20.173 17.884 20.201 16.992 20.796 16.858 Z M 33.117 16.703 C 33.584 16.6 34.454 16.609 34.453 17.271 C 34.453 18.219 32.566 18.143 32.685 17.214 C 32.716 16.976 32.875 16.756 33.117 16.702 Z M 10.976 37.915 C 12.335 37.738 12.619 39.323 10.872 39.147 C 10.073 39.067 10.083 38.031 10.976 37.915 Z M 24.695 30.27 C 25.301 30.133 26.186 30.312 25.93 31.115 C 25.784 31.572 25.016 31.581 24.635 31.466 C 24.072 31.295 24.1 30.404 24.695 30.27 Z M 7.697 37.288 C 8.166 37.183 9.021 37.204 9.036 37.854 C 9.058 38.81 7.056 38.74 7.266 37.719 C 7.305 37.523 7.504 37.331 7.698 37.289 Z M 24.461 14.909 C 24.93 14.805 25.785 14.826 25.801 15.476 C 25.82 16.282 24.364 16.401 24.075 15.73 C 23.946 15.429 24.138 14.982 24.463 14.91 Z M 37.452 29.343 C 37.824 28.935 39.297 29.079 39.032 29.945 C 38.731 30.931 36.601 30.275 37.452 29.343 Z M 14.558 14.909 C 15.042 14.802 15.867 14.824 15.905 15.483 C 15.948 16.22 14.538 16.425 14.209 15.771 C 14.047 15.446 14.197 14.99 14.558 14.909 Z M 4.655 14.909 C 5.07 14.79 5.946 14.838 6.003 15.407 C 6.102 16.392 4.183 16.407 4.233 15.49 C 4.244 15.304 4.478 14.96 4.655 14.909 Z M 10.894 16.858 C 11.374 16.751 12.143 16.792 12.169 17.428 C 12.197 18.104 11.487 18.174 10.959 18.084 C 10.279 17.97 10.284 16.994 10.894 16.858 Z M 31.602 15.071 C 31.919 14.695 33.457 14.761 33.184 15.675 C 32.893 16.651 30.792 16.032 31.602 15.071 Z M 10.582 28.399 C 11.062 28.292 11.831 28.332 11.857 28.969 C 11.885 29.645 11.176 29.715 10.648 29.625 C 9.968 29.51 9.973 28.534 10.582 28.399 Z M 31.947 35.728 C 32.133 35.685 32.591 35.686 32.783 35.716 C 33.604 35.844 33.467 37.134 32.171 36.951 C 31.36 36.836 31.384 35.857 31.947 35.728 Z M 26.956 14.909 C 27.571 14.773 28.396 14.882 28.209 15.695 C 28.091 16.211 27.391 16.211 26.977 16.103 C 26.319 15.931 26.38 15.038 26.957 14.909 Z M 27.424 30.894 C 27.919 30.781 28.673 30.904 28.656 31.542 C 28.64 32.188 27.976 32.185 27.483 32.127 C 26.665 32.03 26.782 31.041 27.423 30.895 Z M 34.988 30.894 C 35.468 30.786 36.236 30.827 36.263 31.464 C 36.291 32.14 35.581 32.209 35.053 32.12 C 34.373 32.005 34.378 31.029 34.988 30.894 Z M 21.655 32.066 C 23.073 31.807 23.401 33.457 21.711 33.298 C 20.846 33.216 20.886 32.205 21.655 32.066 Z M 13.78 32.065 C 14.369 31.944 15.108 32.129 14.971 32.863 C 14.877 33.363 14.073 33.366 13.686 33.293 C 13.109 33.183 13.054 32.215 13.78 32.065 Z M 23.214 16.703 C 23.4 16.661 23.859 16.659 24.05 16.691 C 24.854 16.823 24.732 18.097 23.437 17.926 C 22.621 17.819 22.619 16.834 23.214 16.702 Z M 12.062 14.908 C 12.489 14.784 13.336 14.835 13.409 15.406 C 13.498 16.1 12.752 16.222 12.207 16.135 C 11.548 16.03 11.533 15.063 12.064 14.908 Z M 8.32 15.071 C 9.13 16.032 7.029 16.65 6.737 15.675 C 6.465 14.763 8.003 14.695 8.32 15.071 Z M 36.858 14.909 C 37.395 14.79 38.179 14.863 38.132 15.554 C 38.092 16.163 37.422 16.209 36.938 16.121 C 36.21 15.988 36.267 15.041 36.858 14.908 Z M 34.364 14.909 C 34.82 14.808 35.522 14.821 35.659 15.375 C 35.877 16.249 34.285 16.445 33.977 15.73 C 33.83 15.389 33.995 14.992 34.364 14.909 Z M 2.239 14.909 C 2.718 14.802 3.487 14.844 3.515 15.479 C 3.543 16.147 2.829 16.215 2.319 16.122 C 1.612 15.993 1.606 15.051 2.239 14.909 Z M 16.786 15.963 C 16.688 15.864 16.595 15.555 16.608 15.407 C 16.681 14.623 18.655 14.607 18.307 15.774 C 18.166 16.247 17.072 16.248 16.786 15.963 Z M 23.136 15.963 C 22.851 16.248 21.756 16.246 21.616 15.774 C 21.267 14.607 23.242 14.623 23.315 15.407 C 23.328 15.555 23.235 15.865 23.136 15.963 Z M 29.451 14.909 C 29.931 14.802 30.699 14.844 30.726 15.479 C 30.753 16.115 30.026 16.213 29.53 16.122 C 28.824 15.992 28.818 15.051 29.45 14.909 Z M 9.646 14.909 C 9.99 14.832 10.775 14.846 10.9 15.259 C 11.231 16.365 9.369 16.383 9.216 15.694 C 9.142 15.358 9.293 14.989 9.646 14.909 Z M 7.071 17.909 C 6.678 18.34 5.248 18.099 5.491 17.307 C 5.793 16.32 7.922 16.977 7.071 17.909 Z M 19.549 14.909 C 20.029 14.802 20.798 14.843 20.824 15.479 C 20.852 16.147 20.139 16.215 19.628 16.122 C 18.901 15.989 18.957 15.042 19.549 14.909 Z M 20.721 37.913 C 21.27 37.828 22.017 38.073 21.797 38.756 C 21.643 39.235 20.966 39.202 20.55 39.136 C 19.919 39.038 19.907 38.036 20.721 37.911 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 19.882 7.173 C 19.763 7.201 19.757 7.155 19.694 7.091 C 19.155 6.549 18.727 5.595 18.264 4.934 C 17.616 4.011 16.853 3.216 16.064 2.419 C 17.978 2.809 19.654 4.118 20.804 5.653 L 19.883 7.174 Z M 24.795 4.679 L 23.43 6.003 C 22.36 7.269 21.915 8.555 21.675 10.175 C 21.659 10.28 21.643 10.415 21.522 10.293 C 21.504 9.736 20.6 8.791 20.676 8.325 C 20.747 7.895 21.525 6.717 21.834 6.357 C 22.554 5.522 23.693 4.842 24.795 4.679 Z M 20.273 10.448 C 19.975 10.411 19.577 10.502 19.298 10.449 C 19.019 10.396 18.701 9.526 18.542 9.255 C 17.729 7.875 16.815 6.583 15.673 5.458 C 17.877 6.324 19.285 8.386 20.273 10.447 Z M 17.778 10.448 L 16.919 10.411 L 16.102 9.278 L 15.36 8.578 C 15.815 8.643 16.648 8.879 16.995 9.165 C 17.319 9.431 17.497 10.117 17.777 10.448 Z M 23.158 2.574 L 21.717 4.756 C 21.557 4.585 21.196 4.339 21.324 4.057 C 21.361 3.974 21.984 3.384 22.108 3.277 C 22.221 3.179 23.082 2.501 23.158 2.574 Z M 24.483 8.266 C 24.002 8.966 23.445 9.624 23.146 10.434 L 22.847 10.447 C 22.998 10.04 22.932 9.401 23.199 9.046 C 23.316 8.89 24.379 8.177 24.484 8.266 Z M 30.253 38.519 L 24.289 38.519 L 23.554 37.848 C 23.513 37.674 24.275 36.564 24.325 36.292 C 24.465 35.523 23.524 34.603 24.349 34.055 C 24.476 33.971 26.067 33.373 26.163 33.377 L 30.025 35.978 L 30.253 38.518 Z M 38.441 32.436 L 38.441 38.519 L 35.868 38.519 L 35.443 36.097 L 37.339 34.025 L 37.748 32.368 Z M 9.129 30.957 C 9.684 31.262 11.111 31.419 11.269 32.117 C 11.307 32.286 10.974 33.095 10.935 33.351 C 10.82 34.119 11.421 34.668 11.675 35.361 L 10.945 36.085 L 7.882 34.964 L 7.033 33.644 L 9.13 30.957 Z M 19.415 32.749 L 19.572 34.346 C 19.56 34.465 19.235 34.812 19.125 34.843 C 18.981 34.881 18.134 34.604 18.015 34.501 C 17.857 34.365 17.767 33.972 17.585 33.76 C 17.404 33.549 17.131 33.444 16.924 33.257 C 16.921 33.227 17.239 32.778 17.272 32.751 C 17.598 32.484 18.944 32.836 19.414 32.751 Z M 14.854 38.129 L 13.958 37.31 L 15.23 36.191 L 16.514 37.209 L 16.53 38.129 Z M 5.452 36.89 C 5.505 36.967 4.722 38.15 4.572 38.123 L 3.275 36.804 L 4.48 36.255 L 5.451 36.89 Z M 2.496 33.45 L 2.117 32.179 C 2.277 32.002 2.85 31.315 3.069 31.356 L 4.053 32.319 L 2.496 33.449 Z M 31.423 32.827 L 33.007 32.524 C 33.72 33.247 33.425 33.504 32.646 33.905 Z\" fill=\"transparent\"></path></svg>',svgContentId:11089800350},JOmoTWbFe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 40 0 L 40 40 L 0 40 L 0 0 Z M 15.439 10.448 L 0.819 10.448 C 0.304 10.448 -0.021 11.367 0.547 11.655 L 39.108 11.7 C 40.039 11.609 39.673 10.448 39.103 10.448 L 24.561 10.448 C 24.935 9.609 25.665 8.825 26.354 8.225 C 26.664 7.956 27.555 7.484 27.601 7.127 C 27.728 6.119 26.416 6.392 25.796 6.497 C 25.32 6.577 24.87 6.741 24.406 6.861 C 24.766 6.255 25.416 5.774 25.987 5.364 C 26.325 5.121 27.539 4.49 27.601 4.171 C 27.659 3.874 27.601 3.585 27.32 3.443 C 27.039 3.3 25.479 3.321 25.07 3.355 C 24.737 3.383 24.343 3.504 24.017 3.587 C 23.961 3.532 24.378 3.037 24.444 2.962 C 25.001 2.326 25.695 1.818 26.26 1.19 C 26.544 -0.163 24.855 0.446 24.13 0.7 C 22.708 1.198 21.333 2.107 20.382 3.273 C 18.907 2.102 17.325 1.293 15.454 0.961 C 14.995 0.88 14.036 0.715 13.611 0.785 C 13.133 0.866 12.945 1.4 13.219 1.793 C 13.372 2.011 14.43 2.669 14.739 2.924 C 15.21 3.314 15.669 3.742 16.062 4.21 C 15.215 3.996 11.711 2.667 12.441 4.597 C 13.655 5.316 14.746 6.226 15.672 7.292 C 14.92 7.291 12.198 6.494 12.477 7.914 C 12.534 8.205 14.139 9.16 14.503 9.474 C 14.84 9.762 15.143 10.12 15.437 10.45 Z M 39.507 13.28 C 39.382 13.166 39.123 13.097 38.951 13.095 L 0.971 13.095 C 0.218 13.083 -0.079 13.951 0.62 14.311 L 39.356 14.287 C 39.732 14.103 39.813 13.559 39.507 13.279 Z M 2.239 14.909 C 1.606 15.051 1.613 15.993 2.319 16.122 C 2.829 16.216 3.542 16.147 3.515 15.479 C 3.488 14.811 2.719 14.801 2.239 14.909 Z M 4.655 14.909 C 4.478 14.96 4.244 15.304 4.233 15.49 C 4.183 16.406 6.102 16.392 6.003 15.407 C 5.946 14.837 5.07 14.79 4.655 14.909 Z M 8.32 15.071 C 8.003 14.695 6.465 14.761 6.738 15.675 C 7.029 16.651 9.13 16.032 8.32 15.071 Z M 9.646 14.909 C 9.293 14.989 9.142 15.358 9.216 15.694 C 9.369 16.383 11.23 16.365 10.9 15.259 C 10.776 14.845 9.991 14.832 9.646 14.909 Z M 12.063 14.908 C 11.533 15.062 11.547 16.029 12.206 16.135 C 12.752 16.223 13.497 16.1 13.408 15.406 C 13.335 14.835 12.488 14.784 12.061 14.908 Z M 14.558 14.909 C 14.197 14.99 14.046 15.446 14.209 15.771 C 14.538 16.425 15.948 16.22 15.905 15.483 C 15.867 14.824 15.043 14.801 14.558 14.909 Z M 16.786 15.963 C 17.072 16.248 18.167 16.246 18.307 15.774 C 18.656 14.607 16.681 14.623 16.608 15.407 C 16.595 15.555 16.688 15.865 16.786 15.963 Z M 19.549 14.909 C 18.958 15.042 18.901 15.989 19.628 16.122 C 20.139 16.216 20.851 16.147 20.824 15.479 C 20.797 14.811 20.029 14.802 19.549 14.909 Z M 23.136 15.963 C 23.235 15.864 23.328 15.555 23.315 15.407 C 23.242 14.623 21.268 14.607 21.616 15.774 C 21.757 16.247 22.851 16.248 23.136 15.963 Z M 24.461 14.909 C 24.136 14.982 23.945 15.428 24.074 15.729 C 24.362 16.4 25.819 16.282 25.8 15.475 C 25.785 14.826 24.929 14.804 24.46 14.908 Z M 26.956 14.909 C 26.379 15.038 26.318 15.932 26.976 16.103 C 27.39 16.21 28.09 16.211 28.208 15.695 C 28.395 14.882 27.571 14.772 26.955 14.909 Z M 29.451 14.909 C 28.819 15.051 28.824 15.992 29.531 16.122 C 30.027 16.212 30.754 16.126 30.727 15.479 C 30.7 14.832 29.932 14.801 29.452 14.909 Z M 31.602 15.071 C 30.792 16.032 32.893 16.65 33.184 15.675 C 33.457 14.762 31.919 14.695 31.602 15.071 Z M 34.364 14.909 C 33.995 14.992 33.83 15.389 33.977 15.73 C 34.285 16.445 35.877 16.249 35.659 15.375 C 35.522 14.821 34.82 14.808 34.364 14.909 Z M 36.858 14.909 C 36.268 15.042 36.21 15.989 36.937 16.122 C 37.422 16.21 38.092 16.164 38.132 15.555 C 38.178 14.864 37.394 14.791 36.858 14.91 Z M 23.214 16.703 C 22.619 16.835 22.621 17.819 23.438 17.927 C 24.732 18.098 24.854 16.824 24.05 16.692 C 23.859 16.66 23.4 16.662 23.214 16.704 Z M 33.117 16.703 C 32.874 16.756 32.716 16.977 32.685 17.215 C 32.566 18.144 34.453 18.219 34.453 17.272 C 34.453 16.61 33.584 16.6 33.117 16.704 Z M 7.071 17.909 C 7.921 16.977 5.793 16.321 5.491 17.307 C 5.248 18.099 6.678 18.34 7.071 17.909 Z M 10.894 16.858 C 10.284 16.995 10.28 17.97 10.959 18.084 C 11.487 18.173 12.197 18.104 12.169 17.428 C 12.142 16.792 11.374 16.751 10.894 16.858 Z M 20.796 16.858 C 20.201 16.992 20.172 17.883 20.736 18.055 C 21.117 18.171 21.885 18.161 22.031 17.704 C 22.292 16.889 21.411 16.721 20.796 16.858 Z M 35.075 18.233 L 32.101 18.23 C 31.629 17.964 30.958 17.056 30.45 16.997 C 29.299 16.861 27.89 17.098 26.709 17.002 C 25.998 17.255 24.981 18.342 24.293 18.406 C 22.936 18.532 21.382 18.308 20.004 18.398 L 17.877 17.251 C 16.783 17.315 15.449 17.103 14.384 17.231 C 13.809 17.301 13.142 18.102 12.586 18.325 L 8.547 17.938 L 5.898 19.17 C 5.397 18.86 4.225 17.275 3.765 17.171 C 3.373 17.082 1.269 17.1 0.825 17.161 C 0.019 17.274 0.075 18.25 0.678 18.385 C 1.43 18.553 2.557 18.263 3.35 18.443 C 4.008 18.952 4.734 19.934 5.375 20.394 C 5.761 20.671 5.875 20.571 6.264 20.418 C 7.054 20.108 7.85 19.557 8.644 19.224 L 12.898 19.566 L 14.692 18.475 L 17.577 18.482 L 19.691 19.644 C 21.294 19.54 23.102 19.8 24.679 19.652 C 25.472 19.578 26.452 18.315 27.245 18.241 C 28.173 18.154 29.251 18.299 30.196 18.26 C 30.603 18.519 31.326 19.416 31.776 19.488 C 32.379 19.584 34.806 19.572 35.429 19.484 C 35.99 19.406 36.121 18.858 36.345 18.413 C 36.545 18.288 38.734 18.497 39.24 18.383 C 39.857 18.245 39.878 17.277 39.095 17.157 C 38.552 17.074 36.538 17.08 35.986 17.157 C 35.435 17.234 35.3 17.818 35.072 18.231 Z M 16.583 19.283 C 16.277 18.949 15.81 19.091 15.56 19.419 C 15.254 19.821 13.768 22.369 13.628 22.788 C 13.387 23.51 13.883 23.95 14.533 23.615 L 16.731 19.882 C 16.81 19.714 16.701 19.41 16.584 19.282 Z M 26.25 23.286 L 27.898 20.371 C 28.036 19.672 27.301 19.294 26.79 19.889 C 26.591 20.12 25.251 22.437 25.202 22.668 C 25.054 23.368 25.785 23.732 26.249 23.286 Z M 38.497 19.743 C 38.235 19.8 38.154 20.011 38.018 20.202 C 37.377 21.097 36.89 22.295 36.29 23.236 C 36.206 23.868 36.911 24.289 37.383 23.778 L 39.264 20.507 C 39.35 20.019 39.012 19.63 38.496 19.743 Z M 11.597 20.052 C 11.422 20.089 11.258 20.256 11.163 20.402 L 8.346 25.384 C 8.352 26.082 9.17 26.31 9.546 25.725 L 12.338 20.874 C 12.544 20.432 12.04 19.96 11.597 20.052 Z M 19.239 20.053 C 18.975 20.107 18.864 20.364 18.728 20.561 C 17.243 22.742 16.129 25.416 14.642 27.624 C 14.315 28.386 15.171 28.97 15.706 28.3 L 19.979 20.875 C 20.184 20.431 19.681 19.963 19.239 20.053 Z M 7.697 20.133 C 7.53 20.171 7.436 20.269 7.341 20.401 C 6.171 22.024 5.312 24.27 4.153 25.947 C 3.832 26.607 4.641 27.121 5.18 26.662 L 8.412 21.083 C 8.693 20.52 8.325 19.99 7.696 20.133 Z M 30.772 20.14 C 30.432 20.158 30.275 20.472 30.112 20.717 C 28.755 22.767 27.702 25.171 26.342 27.237 C 25.92 28.019 26.955 28.679 27.433 27.861 C 28.541 25.703 30.087 23.603 31.152 21.444 C 31.285 21.173 31.502 20.876 31.408 20.562 C 31.349 20.366 30.982 20.128 30.773 20.14 Z M 34.521 20.13 C 34.244 20.187 34.077 20.501 33.933 20.717 C 32.428 22.966 31.269 25.657 29.769 27.935 C 29.451 28.645 30.331 29.204 30.835 28.612 L 35.201 21.049 C 35.414 20.557 35.063 20.019 34.522 20.13 Z M 4.342 20.532 C 3.955 20.178 3.544 20.439 3.287 20.793 C 2.391 22.03 1.746 23.777 0.84 25.05 C 0.499 25.868 1.432 26.37 1.936 25.679 C 2.868 24.402 3.561 22.601 4.461 21.266 C 4.585 21.038 4.529 20.704 4.343 20.532 Z M 22.823 20.368 C 22.694 20.406 22.553 20.606 22.47 20.716 C 21.32 22.235 20.491 24.512 19.358 26.102 C 18.998 26.745 19.893 27.421 20.384 26.818 L 23.644 21.187 C 23.857 20.628 23.385 20.2 22.823 20.367 Z M 12.921 24.345 C 12.448 24.452 11.892 25.627 12.525 25.954 C 13.545 26.481 14.367 24.017 12.921 24.345 Z M 24.534 24.351 C 24.299 24.364 24.121 24.553 23.982 24.723 C 23.629 25.158 22.403 27.301 22.183 27.838 C 21.878 28.58 22.703 29.113 23.236 28.5 C 23.484 28.216 25.001 25.598 25.125 25.243 C 25.274 24.816 24.995 24.326 24.533 24.351 Z M 35.767 24.422 C 35.595 24.461 35.556 24.537 35.457 24.658 C 35.245 24.919 34.143 26.816 34.068 27.095 C 33.885 27.772 34.686 28.223 35.166 27.642 C 35.334 27.436 36.473 25.473 36.531 25.266 C 36.689 24.704 36.348 24.286 35.766 24.422 Z M 14.452 30.85 C 14.792 31.154 15.281 31.006 15.71 31.034 C 17.986 31.185 20.283 31.207 22.575 31.269 C 23.274 31.184 24.33 29.886 24.914 29.858 L 30.996 31.031 L 35.03 30.546 L 37.35 28.578 C 37.956 28.381 39.247 28.848 39.599 28.177 C 40.27 26.903 37.612 27.351 37.014 27.306 L 34.536 29.352 L 31.301 29.787 L 24.607 28.539 L 22.4 30.002 L 15.259 29.769 C 15.007 29.697 13.214 27.227 12.827 26.821 C 12.672 26.657 12.429 26.371 12.199 26.356 L 7.505 26.957 L 5.731 29.081 L 3.844 27.305 C 2.899 27.376 1.652 27.152 0.746 27.294 C -0.003 27.41 0.103 28.445 0.896 28.539 C 1.689 28.632 2.587 28.454 3.377 28.553 C 3.673 28.641 4.918 30.194 5.343 30.486 C 5.853 30.84 6.078 30.628 6.435 30.253 C 6.709 29.966 8.03 28.124 8.162 28.081 L 11.878 27.694 L 14.454 30.849 Z M 18.998 29.213 C 19.062 29.151 19.471 28.459 19.509 28.36 C 19.745 27.754 19.24 27.251 18.654 27.505 C 18.405 27.614 17.917 28.526 17.927 28.808 C 17.949 29.363 18.602 29.593 18.997 29.213 Z M 10.582 28.399 C 9.973 28.535 9.969 29.51 10.648 29.625 C 11.176 29.714 11.885 29.645 11.857 28.969 C 11.83 28.332 11.063 28.292 10.582 28.399 Z M 37.452 29.343 C 36.601 30.275 38.731 30.931 39.032 29.945 C 39.296 29.079 37.823 28.936 37.452 29.343 Z M 8.71 29.646 C 8.282 29.776 6.324 32.734 5.78 33.187 C 5.657 33.392 5.668 33.62 5.729 33.844 C 5.784 34.043 6.882 35.884 7.023 35.98 L 10.818 37.409 C 11.339 37.556 11.839 36.987 12.205 36.65 C 12.592 36.294 13.236 35.808 13.065 35.241 C 12.967 34.917 12.18 33.815 12.169 33.57 C 12.148 33.108 12.694 32.452 12.517 31.81 C 12.458 31.601 11.93 30.753 11.752 30.626 C 11.508 30.452 9.542 29.729 9.205 29.665 C 9.039 29.632 8.88 29.593 8.71 29.645 Z M 2.945 29.799 C 2.832 29.814 2.707 29.878 2.611 29.941 C 2.359 30.106 1.318 31.141 1.049 31.419 C 0.756 31.724 0.735 31.868 0.815 32.283 C 0.894 32.699 1.436 34.431 1.621 34.752 C 1.863 35.173 2.221 35.127 2.598 34.917 C 3.248 34.553 4.326 33.752 4.936 33.279 C 5.366 32.947 5.847 32.738 5.54 32.081 C 5.058 31.755 3.554 29.873 3.139 29.798 C 3.068 29.785 3.014 29.791 2.944 29.8 Z M 24.695 30.27 C 24.1 30.404 24.072 31.295 24.635 31.466 C 25.016 31.581 25.784 31.572 25.93 31.115 C 26.186 30.312 25.301 30.132 24.695 30.27 Z M 27.424 30.894 C 26.782 31.04 26.665 32.029 27.484 32.126 C 27.977 32.184 28.641 32.186 28.657 31.541 C 28.674 30.903 27.92 30.78 27.425 30.893 Z M 34.988 30.894 C 34.378 31.03 34.374 32.005 35.053 32.12 C 35.581 32.208 36.291 32.14 36.263 31.464 C 36.235 30.827 35.468 30.786 34.988 30.894 Z M 34.619 38.362 C 34.68 38.87 34.63 39.564 35.221 39.749 C 36.442 39.674 37.915 39.906 39.105 39.767 C 39.484 39.722 39.696 39.495 39.692 39.106 C 39.526 36.82 39.899 34.256 39.692 32.003 C 39.67 31.76 39.63 31.571 39.417 31.421 C 39.17 31.247 37.31 30.961 37.014 31.049 C 36.465 31.209 36.45 32.952 36.212 33.444 C 35.902 33.91 34.314 35.224 34.187 35.628 C 33.989 36.261 34.565 37.574 34.542 38.283 C 34.422 38.289 34.453 38.137 34.339 38.058 C 33.737 37.644 32.49 37.93 32.868 38.828 C 33.06 39.285 34.309 39.287 34.501 38.828 C 34.572 38.659 34.471 38.401 34.619 38.362 Z M 33.275 31.129 C 32.956 31.15 31.025 31.593 30.742 31.717 C 30.51 31.819 29.958 32.708 29.942 32.949 C 29.931 33.094 29.99 33.178 30.061 33.291 C 30.215 33.529 31.965 35.078 32.241 35.243 C 32.539 35.42 32.66 35.429 32.973 35.274 C 33.175 35.173 34.776 33.945 34.856 33.805 C 34.985 33.581 34.95 33.396 34.87 33.158 C 34.802 32.956 34.019 31.604 33.872 31.427 C 33.711 31.233 33.539 31.111 33.273 31.128 Z M 16.898 31.44 C 16.759 31.471 16.666 31.561 16.567 31.654 C 16.435 31.778 15.45 33.028 15.403 33.142 C 15.042 34.029 16.221 34.162 16.61 34.579 C 16.823 34.807 16.917 35.35 17.203 35.547 C 17.305 35.618 18.759 36.129 18.927 36.161 C 19.14 36.203 19.348 36.204 19.552 36.121 C 19.705 36.058 20.765 35.043 20.803 34.877 C 20.758 33.871 20.755 32.792 20.541 31.82 C 20.253 31.346 19.329 31.528 18.832 31.501 C 18.278 31.471 17.443 31.319 16.899 31.441 Z M 13.78 32.065 C 13.054 32.214 13.109 33.182 13.686 33.293 C 14.073 33.367 14.877 33.363 14.971 32.863 C 15.108 32.129 14.369 31.944 13.78 32.065 Z M 21.655 32.066 C 20.886 32.205 20.846 33.216 21.711 33.298 C 23.402 33.457 23.073 31.808 21.655 32.066 Z M 26.101 32.064 C 25.82 32.106 23.803 32.861 23.543 33.016 C 23.249 33.191 22.694 34.156 22.683 34.501 C 22.67 34.943 23.106 35.77 23.059 36.05 C 23.008 36.355 22.291 37.299 22.181 37.656 C 22.103 37.911 22.12 38.071 22.249 38.298 C 22.307 38.401 23.289 39.34 23.434 39.452 C 23.58 39.565 23.791 39.73 23.982 39.761 C 26.192 39.619 28.666 39.966 30.844 39.77 C 31.825 39.681 31.456 38.745 31.426 38.089 C 31.399 37.491 31.44 35.648 31.151 35.245 L 26.39 32.048 C 26.293 32.03 26.199 32.049 26.104 32.064 Z M 17.597 36.516 C 17.421 36.307 15.759 34.895 15.545 34.786 C 15.236 34.631 15.047 34.664 14.776 34.853 C 14.341 35.157 13.545 35.934 13.136 36.332 C 12.685 36.773 12.106 37.146 12.658 37.79 L 14.343 39.341 C 14.625 39.428 16.909 39.426 17.267 39.371 C 17.598 39.32 17.728 39.094 17.771 38.783 C 17.83 38.36 17.846 36.809 17.597 36.515 Z M 4.347 34.868 C 4.135 34.909 2.185 35.97 1.954 36.145 C 1.561 36.443 1.5 36.798 1.83 37.194 C 2.665 37.829 3.484 38.973 4.286 39.572 C 4.675 39.861 4.878 39.837 5.227 39.496 C 5.395 39.331 6.842 37.271 6.897 37.111 C 6.964 36.919 6.978 36.681 6.899 36.493 C 6.835 36.343 4.892 34.945 4.68 34.889 C 4.551 34.854 4.483 34.841 4.347 34.868 Z M 21.186 34.949 C 20.702 35.057 20.617 35.773 21.056 36.059 C 21.496 36.346 22.554 36.196 22.531 35.525 C 22.508 34.854 21.68 34.839 21.186 34.949 Z M 31.947 35.728 C 31.384 35.858 31.359 36.836 32.171 36.951 C 33.467 37.134 33.604 35.844 32.783 35.716 C 32.591 35.685 32.133 35.684 31.947 35.728 Z M 18.457 36.742 C 18.132 36.815 17.941 37.26 18.07 37.561 C 18.368 38.254 19.848 38.077 19.803 37.316 C 19.765 36.656 18.941 36.633 18.456 36.742 Z M 7.697 37.287 C 7.503 37.33 7.305 37.523 7.265 37.718 C 7.055 38.74 9.057 38.809 9.035 37.853 C 9.021 37.204 8.165 37.182 7.696 37.286 Z M 10.976 37.915 C 10.083 38.031 10.073 39.067 10.872 39.147 C 12.619 39.322 12.335 37.737 10.976 37.915 Z M 20.721 37.913 C 19.907 38.038 19.919 39.039 20.55 39.138 C 20.966 39.202 21.643 39.236 21.797 38.757 C 22.017 38.074 21.27 37.829 20.721 37.914 Z\" fill=\"transparent\"></path><path d=\"M 15.439 10.448 C 15.144 10.119 14.84 9.76 14.504 9.472 C 14.14 9.158 12.535 8.203 12.478 7.911 C 12.199 6.492 14.921 7.289 15.673 7.29 C 14.747 6.224 13.656 5.314 12.442 4.595 C 11.712 2.665 15.216 3.994 16.064 4.208 C 15.669 3.74 15.21 3.311 14.74 2.922 C 14.431 2.667 13.373 2.01 13.22 1.791 C 12.946 1.398 13.134 0.865 13.612 0.783 C 14.037 0.711 14.995 0.878 15.455 0.959 C 17.327 1.291 18.909 2.1 20.383 3.271 C 21.334 2.106 22.709 1.196 24.131 0.698 C 24.856 0.445 26.544 -0.165 26.261 1.188 C 25.697 1.816 25.002 2.324 24.445 2.96 C 24.379 3.035 23.962 3.53 24.018 3.585 C 24.344 3.501 24.739 3.381 25.071 3.353 C 25.48 3.319 27.033 3.295 27.321 3.441 C 27.608 3.586 27.66 3.873 27.602 4.169 C 27.54 4.488 26.326 5.12 25.989 5.361 C 25.417 5.773 24.767 6.253 24.407 6.859 C 24.871 6.74 25.321 6.575 25.797 6.495 C 26.418 6.391 27.729 6.117 27.602 7.125 C 27.557 7.482 26.665 7.954 26.355 8.223 C 25.666 8.823 24.937 9.608 24.562 10.446 L 39.104 10.446 C 39.674 10.446 40.039 11.608 39.109 11.698 L 0.548 11.653 C -0.02 11.365 0.305 10.446 0.82 10.446 L 15.44 10.446 Z M 19.882 7.173 L 20.803 5.652 C 19.652 4.117 17.977 2.808 16.062 2.418 C 16.852 3.215 17.616 4.011 18.262 4.933 C 18.726 5.594 19.154 6.548 19.693 7.09 C 19.757 7.154 19.762 7.201 19.881 7.172 Z M 23.158 2.574 C 23.082 2.501 22.221 3.179 22.108 3.277 C 21.984 3.384 21.361 3.974 21.324 4.057 C 21.196 4.338 21.558 4.584 21.717 4.756 Z M 24.795 4.679 C 23.693 4.841 22.555 5.521 21.834 6.357 C 21.525 6.717 20.746 7.895 20.676 8.325 C 20.6 8.79 21.503 9.736 21.522 10.293 C 21.642 10.416 21.659 10.281 21.675 10.175 C 21.915 8.555 22.36 7.269 23.43 6.003 Z M 20.273 10.448 C 19.285 8.387 17.877 6.325 15.673 5.459 C 16.815 6.584 17.73 7.876 18.542 9.256 C 18.701 9.527 19.028 10.398 19.298 10.45 C 19.568 10.502 19.976 10.411 20.273 10.449 Z M 24.483 8.266 C 24.378 8.177 23.316 8.891 23.198 9.046 C 22.931 9.401 22.997 10.04 22.846 10.447 L 23.145 10.434 C 23.444 9.623 24.001 8.965 24.482 8.266 Z M 17.778 10.448 C 17.498 10.118 17.319 9.432 16.996 9.165 C 16.649 8.878 15.816 8.643 15.361 8.578 L 16.103 9.278 L 16.92 10.411 L 17.779 10.448 Z M 14.452 30.85 L 11.876 27.695 L 8.16 28.082 C 8.028 28.125 6.707 29.967 6.433 30.254 C 6.076 30.629 5.851 30.84 5.341 30.487 C 4.917 30.195 3.671 28.642 3.375 28.554 C 2.585 28.455 1.667 28.631 0.894 28.54 C 0.121 28.448 -0.004 27.411 0.744 27.295 C 1.65 27.153 2.898 27.377 3.842 27.306 L 5.729 29.082 L 7.503 26.958 L 12.197 26.357 C 12.428 26.371 12.67 26.658 12.825 26.822 C 13.211 27.228 15.005 29.699 15.257 29.77 L 22.398 30.003 L 24.605 28.54 L 31.299 29.789 L 34.534 29.353 L 37.011 27.307 C 37.61 27.352 40.268 26.904 39.597 28.178 C 39.244 28.849 37.954 28.382 37.348 28.579 L 35.028 30.547 L 30.994 31.032 L 24.911 29.859 C 24.329 29.887 23.272 31.185 22.573 31.27 C 20.281 31.208 17.984 31.186 15.708 31.035 C 15.279 31.007 14.79 31.155 14.45 30.851 Z M 35.075 18.233 C 35.303 17.82 35.463 17.233 35.99 17.159 C 36.517 17.085 38.555 17.076 39.098 17.159 C 39.881 17.279 39.86 18.247 39.243 18.385 C 38.736 18.499 36.548 18.29 36.348 18.415 C 36.123 18.86 35.993 19.408 35.432 19.486 C 34.809 19.573 32.382 19.586 31.779 19.49 C 31.329 19.418 30.607 18.521 30.199 18.262 C 29.254 18.301 28.176 18.156 27.248 18.243 C 26.455 18.317 25.475 19.58 24.682 19.654 C 23.105 19.801 21.296 19.541 19.694 19.646 L 17.58 18.484 L 14.695 18.477 L 12.901 19.568 L 8.647 19.226 C 7.853 19.558 7.057 20.109 6.267 20.42 C 5.877 20.572 5.765 20.673 5.378 20.396 C 4.738 19.936 4.011 18.954 3.353 18.445 C 2.56 18.265 1.433 18.555 0.681 18.387 C 0.077 18.253 0.022 17.276 0.828 17.164 C 1.272 17.102 3.376 17.084 3.768 17.173 C 4.227 17.276 5.4 18.862 5.901 19.172 L 8.55 17.94 L 12.59 18.327 C 13.144 18.103 13.811 17.302 14.388 17.233 C 15.452 17.105 16.786 17.318 17.88 17.253 L 20.007 18.4 C 21.385 18.309 22.94 18.534 24.296 18.408 C 24.984 18.344 26.002 17.257 26.713 17.004 C 27.893 17.1 29.302 16.862 30.453 16.999 C 30.961 17.059 31.632 17.966 32.104 18.232 L 35.078 18.235 Z M 39.507 13.28 C 39.811 13.559 39.732 14.104 39.356 14.289 L 0.62 14.312 C -0.079 13.952 0.218 13.084 0.971 13.096 L 38.951 13.096 C 39.123 13.098 39.382 13.167 39.507 13.281 Z M 26.101 32.064 C 26.197 32.049 26.29 32.029 26.386 32.048 L 31.148 35.245 C 31.436 35.648 31.395 37.492 31.423 38.089 C 31.453 38.745 31.822 39.681 30.841 39.77 C 28.664 39.966 26.189 39.619 23.979 39.761 C 23.787 39.729 23.584 39.569 23.431 39.452 C 23.278 39.335 22.304 38.401 22.246 38.298 C 22.117 38.071 22.1 37.911 22.178 37.656 C 22.289 37.299 23.005 36.356 23.056 36.05 C 23.103 35.771 22.667 34.944 22.68 34.501 C 22.691 34.156 23.246 33.19 23.54 33.016 C 23.8 32.86 25.817 32.105 26.098 32.064 Z M 30.253 38.519 L 30.025 35.979 L 26.162 33.378 C 26.066 33.374 24.475 33.972 24.349 34.056 C 23.524 34.604 24.466 35.524 24.325 36.293 C 24.276 36.564 23.512 37.674 23.554 37.849 L 24.289 38.52 L 30.253 38.52 Z M 34.619 38.363 C 34.471 38.402 34.571 38.659 34.501 38.828 C 34.309 39.288 33.06 39.285 32.868 38.828 C 32.49 37.93 33.737 37.644 34.339 38.058 C 34.452 38.138 34.421 38.289 34.542 38.283 C 34.565 37.574 33.989 36.261 34.187 35.628 C 34.315 35.224 35.902 33.91 36.212 33.444 C 36.45 32.952 36.466 31.209 37.014 31.049 C 37.31 30.963 39.17 31.247 39.417 31.421 C 39.63 31.572 39.67 31.76 39.692 32.003 C 39.899 34.255 39.526 36.82 39.692 39.106 C 39.696 39.495 39.484 39.723 39.105 39.767 C 37.915 39.906 36.443 39.673 35.221 39.749 C 34.63 39.564 34.68 38.87 34.619 38.363 Z M 38.441 32.436 L 37.748 32.367 L 37.339 34.024 L 35.443 36.097 L 35.868 38.518 L 38.441 38.518 L 38.441 32.435 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 8.71 29.646 C 8.88 29.594 9.039 29.633 9.205 29.666 C 9.542 29.73 11.508 30.453 11.752 30.627 C 11.93 30.754 12.459 31.601 12.517 31.811 C 12.694 32.453 12.148 33.109 12.169 33.571 C 12.18 33.815 12.966 34.918 13.065 35.242 C 13.236 35.808 12.592 36.295 12.205 36.651 C 11.839 36.989 11.339 37.557 10.818 37.41 L 7.023 35.981 C 6.882 35.884 5.784 34.044 5.729 33.845 C 5.668 33.622 5.657 33.393 5.78 33.189 C 6.324 32.735 8.282 29.777 8.71 29.647 Z M 9.129 30.957 L 7.032 33.644 L 7.881 34.964 L 10.944 36.085 L 11.674 35.361 C 11.42 34.669 10.82 34.119 10.934 33.351 C 10.973 33.095 11.306 32.286 11.268 32.117 C 11.11 31.419 9.683 31.263 9.128 30.957 Z M 16.898 31.44 C 17.442 31.318 18.277 31.47 18.831 31.5 C 19.328 31.527 20.253 31.345 20.54 31.819 C 20.754 32.792 20.757 33.871 20.802 34.876 C 20.765 35.042 19.704 36.057 19.551 36.12 C 19.347 36.203 19.139 36.202 18.926 36.16 C 18.758 36.128 17.305 35.616 17.202 35.546 C 16.916 35.349 16.823 34.806 16.609 34.578 C 16.221 34.161 15.041 34.028 15.402 33.141 C 15.448 33.027 16.434 31.777 16.566 31.653 C 16.664 31.56 16.758 31.47 16.897 31.439 Z M 19.415 32.749 C 18.945 32.835 17.599 32.482 17.273 32.749 C 17.24 32.776 16.922 33.225 16.925 33.255 C 17.132 33.442 17.401 33.542 17.586 33.758 C 17.772 33.975 17.857 34.362 18.016 34.499 C 18.135 34.603 18.983 34.88 19.126 34.841 C 19.236 34.81 19.561 34.462 19.573 34.344 L 19.416 32.747 Z M 17.597 36.516 C 17.846 36.81 17.829 38.361 17.771 38.784 C 17.727 39.095 17.598 39.321 17.267 39.372 C 16.909 39.427 14.626 39.429 14.343 39.342 L 12.658 37.791 C 12.106 37.148 12.685 36.775 13.136 36.333 C 13.545 35.934 14.341 35.157 14.776 34.854 C 15.048 34.665 15.236 34.632 15.545 34.788 C 15.759 34.896 17.421 36.307 17.597 36.517 Z M 14.854 38.129 L 16.53 38.129 L 16.514 37.209 L 15.23 36.191 L 13.958 37.31 L 14.853 38.129 Z M 4.347 34.868 C 4.483 34.841 4.551 34.854 4.68 34.889 C 4.892 34.945 6.835 36.342 6.899 36.493 C 6.979 36.681 6.964 36.919 6.897 37.111 C 6.842 37.271 5.395 39.331 5.227 39.496 C 4.878 39.838 4.675 39.863 4.286 39.572 C 3.484 38.973 2.666 37.829 1.83 37.194 C 1.499 36.798 1.561 36.442 1.954 36.145 C 2.185 35.97 4.135 34.909 4.347 34.868 Z M 5.452 36.89 L 4.481 36.255 L 3.276 36.804 L 4.573 38.123 C 4.723 38.15 5.505 36.966 5.453 36.89 Z M 2.945 29.799 C 3.015 29.79 3.069 29.784 3.14 29.797 C 3.554 29.872 5.058 31.754 5.541 32.08 C 5.847 32.736 5.367 32.946 4.937 33.278 C 4.327 33.751 3.249 34.552 2.599 34.916 C 2.222 35.126 1.865 35.173 1.622 34.751 C 1.437 34.43 0.893 32.685 0.816 32.282 C 0.739 31.879 0.757 31.722 1.05 31.418 C 1.318 31.139 2.359 30.105 2.612 29.94 C 2.708 29.877 2.833 29.813 2.946 29.798 Z M 2.496 33.45 L 4.053 32.32 L 3.069 31.357 C 2.85 31.315 2.277 32.002 2.117 32.18 L 2.496 33.451 Z M 33.275 31.129 C 33.541 31.112 33.715 31.234 33.874 31.428 C 34.02 31.605 34.804 32.957 34.872 33.159 C 34.951 33.397 34.986 33.582 34.858 33.806 C 34.778 33.945 33.177 35.174 32.975 35.275 C 32.662 35.43 32.541 35.422 32.243 35.244 C 31.967 35.079 30.217 33.53 30.064 33.292 C 29.991 33.179 29.933 33.095 29.944 32.95 C 29.96 32.709 30.512 31.82 30.744 31.718 C 31.027 31.594 32.957 31.15 33.277 31.13 Z M 31.423 32.827 L 32.646 33.905 C 33.425 33.504 33.72 33.247 33.007 32.524 Z M 34.521 20.13 C 35.06 20.019 35.412 20.556 35.2 21.049 L 30.834 28.613 C 30.33 29.204 29.45 28.645 29.768 27.935 C 31.269 25.657 32.427 22.966 33.932 20.717 C 34.076 20.501 34.243 20.188 34.52 20.13 Z M 19.239 20.053 C 19.681 19.963 20.184 20.43 19.979 20.875 L 15.706 28.3 C 15.171 28.97 14.315 28.388 14.642 27.624 C 16.13 25.416 17.243 22.742 18.728 20.561 C 18.864 20.364 18.975 20.107 19.239 20.053 Z M 30.772 20.14 C 30.981 20.128 31.349 20.366 31.407 20.562 C 31.501 20.876 31.284 21.173 31.151 21.444 C 30.086 23.603 28.539 25.703 27.432 27.861 C 26.954 28.679 25.919 28.019 26.341 27.237 C 27.702 25.171 28.755 22.767 30.111 20.717 C 30.274 20.472 30.431 20.158 30.771 20.14 Z M 7.697 20.133 C 8.325 19.99 8.694 20.52 8.414 21.083 L 5.181 26.663 C 4.642 27.121 3.832 26.607 4.154 25.947 C 5.314 24.271 6.172 22.024 7.342 20.401 C 7.437 20.269 7.531 20.171 7.698 20.133 Z M 22.823 20.368 C 23.385 20.2 23.858 20.628 23.644 21.189 L 20.384 26.819 C 19.892 27.422 18.997 26.747 19.358 26.103 C 20.491 24.514 21.32 22.235 22.47 20.717 C 22.553 20.607 22.694 20.406 22.823 20.369 Z M 11.597 20.052 C 12.04 19.96 12.544 20.431 12.337 20.874 L 9.546 25.725 C 9.169 26.31 8.351 26.082 8.346 25.384 L 11.162 20.402 C 11.258 20.256 11.422 20.089 11.597 20.052 Z M 4.342 20.532 C 4.529 20.704 4.585 21.038 4.46 21.266 C 3.56 22.601 2.867 24.402 1.935 25.679 C 1.432 26.37 0.499 25.868 0.839 25.05 C 1.745 23.778 2.39 22.03 3.286 20.793 C 3.543 20.439 3.954 20.177 4.341 20.532 Z M 16.583 19.283 C 16.7 19.411 16.809 19.715 16.73 19.883 L 14.532 23.616 C 13.882 23.951 13.386 23.511 13.627 22.789 C 13.767 22.369 15.253 19.822 15.559 19.42 C 15.81 19.091 16.277 18.95 16.582 19.284 Z M 24.534 24.351 C 24.996 24.326 25.274 24.816 25.126 25.243 C 25.002 25.598 23.485 28.216 23.238 28.5 C 22.704 29.111 21.879 28.58 22.184 27.838 C 22.404 27.301 23.63 25.159 23.983 24.723 C 24.122 24.552 24.3 24.364 24.535 24.351 Z M 38.497 19.743 C 39.014 19.63 39.35 20.02 39.265 20.507 L 37.384 23.778 C 36.911 24.289 36.207 23.868 36.291 23.236 C 36.891 22.295 37.378 21.097 38.019 20.202 C 38.155 20.011 38.236 19.799 38.498 19.743 Z M 26.25 23.286 C 25.786 23.732 25.055 23.368 25.203 22.668 C 25.252 22.438 26.592 20.12 26.791 19.889 C 27.302 19.294 28.038 19.671 27.899 20.371 L 26.251 23.286 Z M 35.767 24.422 C 36.349 24.286 36.689 24.705 36.532 25.266 C 36.474 25.473 35.335 27.437 35.167 27.642 C 34.687 28.223 33.886 27.772 34.069 27.095 C 34.144 26.816 35.246 24.919 35.458 24.658 C 35.557 24.537 35.596 24.461 35.768 24.422 Z M 18.998 29.213 C 18.603 29.593 17.949 29.363 17.928 28.808 C 17.917 28.525 18.406 27.613 18.655 27.505 C 19.241 27.251 19.746 27.754 19.51 28.36 C 19.472 28.459 19.062 29.151 18.999 29.213 Z M 12.921 24.345 C 14.367 24.017 13.545 26.482 12.525 25.954 C 11.893 25.627 12.448 24.452 12.921 24.345 Z M 21.186 34.949 C 21.679 34.84 22.508 34.858 22.531 35.525 C 22.554 36.192 21.511 36.356 21.056 36.059 C 20.601 35.762 20.703 35.056 21.186 34.949 Z M 18.457 36.742 C 18.941 36.634 19.766 36.656 19.804 37.316 C 19.849 38.077 18.368 38.254 18.071 37.561 C 17.942 37.26 18.133 36.814 18.458 36.742 Z M 20.796 16.858 C 21.411 16.72 22.292 16.888 22.031 17.704 C 21.885 18.161 21.117 18.171 20.736 18.055 C 20.173 17.884 20.201 16.992 20.796 16.858 Z M 33.117 16.703 C 33.584 16.6 34.454 16.609 34.453 17.271 C 34.453 18.219 32.566 18.143 32.685 17.214 C 32.716 16.976 32.875 16.756 33.117 16.702 Z M 10.976 37.915 C 12.335 37.738 12.619 39.323 10.872 39.147 C 10.073 39.067 10.083 38.031 10.976 37.915 Z M 24.695 30.27 C 25.301 30.133 26.186 30.312 25.93 31.115 C 25.784 31.572 25.016 31.581 24.635 31.466 C 24.072 31.295 24.1 30.404 24.695 30.27 Z M 7.697 37.288 C 8.166 37.183 9.021 37.204 9.036 37.854 C 9.058 38.81 7.056 38.74 7.266 37.719 C 7.305 37.523 7.504 37.331 7.698 37.289 Z M 24.461 14.909 C 24.93 14.805 25.785 14.826 25.801 15.476 C 25.82 16.282 24.364 16.401 24.075 15.73 C 23.946 15.429 24.138 14.982 24.463 14.91 Z M 37.452 29.343 C 37.824 28.935 39.297 29.079 39.032 29.945 C 38.731 30.931 36.601 30.275 37.452 29.343 Z M 14.558 14.909 C 15.042 14.802 15.867 14.824 15.905 15.483 C 15.948 16.22 14.538 16.425 14.209 15.771 C 14.047 15.446 14.197 14.99 14.558 14.909 Z M 4.655 14.909 C 5.07 14.79 5.946 14.838 6.003 15.407 C 6.102 16.392 4.183 16.407 4.233 15.49 C 4.244 15.304 4.478 14.96 4.655 14.909 Z M 10.894 16.858 C 11.374 16.751 12.143 16.792 12.169 17.428 C 12.197 18.104 11.487 18.174 10.959 18.084 C 10.279 17.97 10.284 16.994 10.894 16.858 Z M 31.602 15.071 C 31.919 14.695 33.457 14.761 33.184 15.675 C 32.893 16.651 30.792 16.032 31.602 15.071 Z M 10.582 28.399 C 11.062 28.292 11.831 28.332 11.857 28.969 C 11.885 29.645 11.176 29.715 10.648 29.625 C 9.968 29.51 9.973 28.534 10.582 28.399 Z M 31.947 35.728 C 32.133 35.685 32.591 35.686 32.783 35.716 C 33.604 35.844 33.467 37.134 32.171 36.951 C 31.36 36.836 31.384 35.857 31.947 35.728 Z M 26.956 14.909 C 27.571 14.773 28.396 14.882 28.209 15.695 C 28.091 16.211 27.391 16.211 26.977 16.103 C 26.319 15.931 26.38 15.038 26.957 14.909 Z M 27.424 30.894 C 27.919 30.781 28.673 30.904 28.656 31.542 C 28.64 32.188 27.976 32.185 27.483 32.127 C 26.665 32.03 26.782 31.041 27.423 30.895 Z M 34.988 30.894 C 35.468 30.786 36.236 30.827 36.263 31.464 C 36.291 32.14 35.581 32.209 35.053 32.12 C 34.373 32.005 34.378 31.029 34.988 30.894 Z M 21.655 32.066 C 23.073 31.807 23.401 33.457 21.711 33.298 C 20.846 33.216 20.886 32.205 21.655 32.066 Z M 13.78 32.065 C 14.369 31.944 15.108 32.129 14.971 32.863 C 14.877 33.363 14.073 33.366 13.686 33.293 C 13.109 33.183 13.054 32.215 13.78 32.065 Z M 23.214 16.703 C 23.4 16.661 23.859 16.659 24.05 16.691 C 24.854 16.823 24.732 18.097 23.437 17.926 C 22.621 17.819 22.619 16.834 23.214 16.702 Z M 12.062 14.908 C 12.489 14.784 13.336 14.835 13.409 15.406 C 13.498 16.1 12.752 16.222 12.207 16.135 C 11.548 16.03 11.533 15.063 12.064 14.908 Z M 8.32 15.071 C 9.13 16.032 7.029 16.65 6.737 15.675 C 6.465 14.763 8.003 14.695 8.32 15.071 Z M 36.858 14.909 C 37.395 14.79 38.179 14.863 38.132 15.554 C 38.092 16.163 37.422 16.209 36.938 16.121 C 36.21 15.988 36.267 15.041 36.858 14.908 Z M 34.364 14.909 C 34.82 14.808 35.522 14.821 35.659 15.375 C 35.877 16.249 34.285 16.445 33.977 15.73 C 33.83 15.389 33.995 14.992 34.364 14.909 Z M 2.239 14.909 C 2.718 14.802 3.487 14.844 3.515 15.479 C 3.543 16.147 2.829 16.215 2.319 16.122 C 1.612 15.993 1.606 15.051 2.239 14.909 Z M 16.786 15.963 C 16.688 15.864 16.595 15.555 16.608 15.407 C 16.681 14.623 18.655 14.607 18.307 15.774 C 18.166 16.247 17.072 16.248 16.786 15.963 Z M 23.136 15.963 C 22.851 16.248 21.756 16.246 21.616 15.774 C 21.267 14.607 23.242 14.623 23.315 15.407 C 23.328 15.555 23.235 15.865 23.136 15.963 Z M 29.451 14.909 C 29.931 14.802 30.699 14.844 30.726 15.479 C 30.753 16.115 30.026 16.213 29.53 16.122 C 28.824 15.992 28.818 15.051 29.45 14.909 Z M 9.646 14.909 C 9.99 14.832 10.775 14.846 10.9 15.259 C 11.231 16.365 9.369 16.383 9.216 15.694 C 9.142 15.358 9.293 14.989 9.646 14.909 Z M 7.071 17.909 C 6.678 18.34 5.248 18.099 5.491 17.307 C 5.793 16.32 7.922 16.977 7.071 17.909 Z M 19.549 14.909 C 20.029 14.802 20.798 14.843 20.824 15.479 C 20.852 16.147 20.139 16.215 19.628 16.122 C 18.901 15.989 18.957 15.042 19.549 14.909 Z M 20.721 37.913 C 21.27 37.828 22.017 38.073 21.797 38.756 C 21.643 39.235 20.966 39.202 20.55 39.136 C 19.919 39.038 19.907 38.036 20.721 37.911 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 19.882 7.173 C 19.763 7.201 19.757 7.155 19.694 7.091 C 19.155 6.549 18.727 5.595 18.264 4.934 C 17.616 4.011 16.853 3.216 16.064 2.419 C 17.978 2.809 19.654 4.118 20.804 5.653 L 19.883 7.174 Z M 24.795 4.679 L 23.43 6.003 C 22.36 7.269 21.915 8.555 21.675 10.175 C 21.659 10.28 21.643 10.415 21.522 10.293 C 21.504 9.736 20.6 8.791 20.676 8.325 C 20.747 7.895 21.525 6.717 21.834 6.357 C 22.554 5.522 23.693 4.842 24.795 4.679 Z M 20.273 10.448 C 19.975 10.411 19.577 10.502 19.298 10.449 C 19.019 10.396 18.701 9.526 18.542 9.255 C 17.729 7.875 16.815 6.583 15.673 5.458 C 17.877 6.324 19.285 8.386 20.273 10.447 Z M 17.778 10.448 L 16.919 10.411 L 16.102 9.278 L 15.36 8.578 C 15.815 8.643 16.648 8.879 16.995 9.165 C 17.319 9.431 17.497 10.117 17.777 10.448 Z M 23.158 2.574 L 21.717 4.756 C 21.557 4.585 21.196 4.339 21.324 4.057 C 21.361 3.974 21.984 3.384 22.108 3.277 C 22.221 3.179 23.082 2.501 23.158 2.574 Z M 24.483 8.266 C 24.002 8.966 23.445 9.624 23.146 10.434 L 22.847 10.447 C 22.998 10.04 22.932 9.401 23.199 9.046 C 23.316 8.89 24.379 8.177 24.484 8.266 Z M 30.253 38.519 L 24.289 38.519 L 23.554 37.848 C 23.513 37.674 24.275 36.564 24.325 36.292 C 24.465 35.523 23.524 34.603 24.349 34.055 C 24.476 33.971 26.067 33.373 26.163 33.377 L 30.025 35.978 L 30.253 38.518 Z M 38.441 32.436 L 38.441 38.519 L 35.868 38.519 L 35.443 36.097 L 37.339 34.025 L 37.748 32.368 Z M 9.129 30.957 C 9.684 31.262 11.111 31.419 11.269 32.117 C 11.307 32.286 10.974 33.095 10.935 33.351 C 10.82 34.119 11.421 34.668 11.675 35.361 L 10.945 36.085 L 7.882 34.964 L 7.033 33.644 L 9.13 30.957 Z M 19.415 32.749 L 19.572 34.346 C 19.56 34.465 19.235 34.812 19.125 34.843 C 18.981 34.881 18.134 34.604 18.015 34.501 C 17.857 34.365 17.767 33.972 17.585 33.76 C 17.404 33.549 17.131 33.444 16.924 33.257 C 16.921 33.227 17.239 32.778 17.272 32.751 C 17.598 32.484 18.944 32.836 19.414 32.751 Z M 14.854 38.129 L 13.958 37.31 L 15.23 36.191 L 16.514 37.209 L 16.53 38.129 Z M 5.452 36.89 C 5.505 36.967 4.722 38.15 4.572 38.123 L 3.275 36.804 L 4.48 36.255 L 5.451 36.89 Z M 2.496 33.45 L 2.117 32.179 C 2.277 32.002 2.85 31.315 3.069 31.356 L 4.053 32.319 L 2.496 33.449 Z M 31.423 32.827 L 33.007 32.524 C 33.72 33.247 33.425 33.504 32.646 33.905 Z\" fill=\"transparent\"></path></svg>',svgContentId:11089800350},WyEoPeZp1:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 40 0 L 40 40 L 0 40 L 0 0 Z M 15.439 10.448 L 0.819 10.448 C 0.304 10.448 -0.021 11.367 0.547 11.655 L 39.108 11.7 C 40.039 11.609 39.673 10.448 39.103 10.448 L 24.561 10.448 C 24.935 9.609 25.665 8.825 26.354 8.225 C 26.664 7.956 27.555 7.484 27.601 7.127 C 27.728 6.119 26.416 6.392 25.796 6.497 C 25.32 6.577 24.87 6.741 24.406 6.861 C 24.766 6.255 25.416 5.774 25.987 5.364 C 26.325 5.121 27.539 4.49 27.601 4.171 C 27.659 3.874 27.601 3.585 27.32 3.443 C 27.039 3.3 25.479 3.321 25.07 3.355 C 24.737 3.383 24.343 3.504 24.017 3.587 C 23.961 3.532 24.378 3.037 24.444 2.962 C 25.001 2.326 25.695 1.818 26.26 1.19 C 26.544 -0.163 24.855 0.446 24.13 0.7 C 22.708 1.198 21.333 2.107 20.382 3.273 C 18.907 2.102 17.325 1.293 15.454 0.961 C 14.995 0.88 14.036 0.715 13.611 0.785 C 13.133 0.866 12.945 1.4 13.219 1.793 C 13.372 2.011 14.43 2.669 14.739 2.924 C 15.21 3.314 15.669 3.742 16.062 4.21 C 15.215 3.996 11.711 2.667 12.441 4.597 C 13.655 5.316 14.746 6.226 15.672 7.292 C 14.92 7.291 12.198 6.494 12.477 7.914 C 12.534 8.205 14.139 9.16 14.503 9.474 C 14.84 9.762 15.143 10.12 15.437 10.45 Z M 39.507 13.28 C 39.382 13.166 39.123 13.097 38.951 13.095 L 0.971 13.095 C 0.218 13.083 -0.079 13.951 0.62 14.311 L 39.356 14.287 C 39.732 14.103 39.813 13.559 39.507 13.279 Z M 2.239 14.909 C 1.606 15.051 1.613 15.993 2.319 16.122 C 2.829 16.216 3.542 16.147 3.515 15.479 C 3.488 14.811 2.719 14.801 2.239 14.909 Z M 4.655 14.909 C 4.478 14.96 4.244 15.304 4.233 15.49 C 4.183 16.406 6.102 16.392 6.003 15.407 C 5.946 14.837 5.07 14.79 4.655 14.909 Z M 8.32 15.071 C 8.003 14.695 6.465 14.761 6.738 15.675 C 7.029 16.651 9.13 16.032 8.32 15.071 Z M 9.646 14.909 C 9.293 14.989 9.142 15.358 9.216 15.694 C 9.369 16.383 11.23 16.365 10.9 15.259 C 10.776 14.845 9.991 14.832 9.646 14.909 Z M 12.063 14.908 C 11.533 15.062 11.547 16.029 12.206 16.135 C 12.752 16.223 13.497 16.1 13.408 15.406 C 13.335 14.835 12.488 14.784 12.061 14.908 Z M 14.558 14.909 C 14.197 14.99 14.046 15.446 14.209 15.771 C 14.538 16.425 15.948 16.22 15.905 15.483 C 15.867 14.824 15.043 14.801 14.558 14.909 Z M 16.786 15.963 C 17.072 16.248 18.167 16.246 18.307 15.774 C 18.656 14.607 16.681 14.623 16.608 15.407 C 16.595 15.555 16.688 15.865 16.786 15.963 Z M 19.549 14.909 C 18.958 15.042 18.901 15.989 19.628 16.122 C 20.139 16.216 20.851 16.147 20.824 15.479 C 20.797 14.811 20.029 14.802 19.549 14.909 Z M 23.136 15.963 C 23.235 15.864 23.328 15.555 23.315 15.407 C 23.242 14.623 21.268 14.607 21.616 15.774 C 21.757 16.247 22.851 16.248 23.136 15.963 Z M 24.461 14.909 C 24.136 14.982 23.945 15.428 24.074 15.729 C 24.362 16.4 25.819 16.282 25.8 15.475 C 25.785 14.826 24.929 14.804 24.46 14.908 Z M 26.956 14.909 C 26.379 15.038 26.318 15.932 26.976 16.103 C 27.39 16.21 28.09 16.211 28.208 15.695 C 28.395 14.882 27.571 14.772 26.955 14.909 Z M 29.451 14.909 C 28.819 15.051 28.824 15.992 29.531 16.122 C 30.027 16.212 30.754 16.126 30.727 15.479 C 30.7 14.832 29.932 14.801 29.452 14.909 Z M 31.602 15.071 C 30.792 16.032 32.893 16.65 33.184 15.675 C 33.457 14.762 31.919 14.695 31.602 15.071 Z M 34.364 14.909 C 33.995 14.992 33.83 15.389 33.977 15.73 C 34.285 16.445 35.877 16.249 35.659 15.375 C 35.522 14.821 34.82 14.808 34.364 14.909 Z M 36.858 14.909 C 36.268 15.042 36.21 15.989 36.937 16.122 C 37.422 16.21 38.092 16.164 38.132 15.555 C 38.178 14.864 37.394 14.791 36.858 14.91 Z M 23.214 16.703 C 22.619 16.835 22.621 17.819 23.438 17.927 C 24.732 18.098 24.854 16.824 24.05 16.692 C 23.859 16.66 23.4 16.662 23.214 16.704 Z M 33.117 16.703 C 32.874 16.756 32.716 16.977 32.685 17.215 C 32.566 18.144 34.453 18.219 34.453 17.272 C 34.453 16.61 33.584 16.6 33.117 16.704 Z M 7.071 17.909 C 7.921 16.977 5.793 16.321 5.491 17.307 C 5.248 18.099 6.678 18.34 7.071 17.909 Z M 10.894 16.858 C 10.284 16.995 10.28 17.97 10.959 18.084 C 11.487 18.173 12.197 18.104 12.169 17.428 C 12.142 16.792 11.374 16.751 10.894 16.858 Z M 20.796 16.858 C 20.201 16.992 20.172 17.883 20.736 18.055 C 21.117 18.171 21.885 18.161 22.031 17.704 C 22.292 16.889 21.411 16.721 20.796 16.858 Z M 35.075 18.233 L 32.101 18.23 C 31.629 17.964 30.958 17.056 30.45 16.997 C 29.299 16.861 27.89 17.098 26.709 17.002 C 25.998 17.255 24.981 18.342 24.293 18.406 C 22.936 18.532 21.382 18.308 20.004 18.398 L 17.877 17.251 C 16.783 17.315 15.449 17.103 14.384 17.231 C 13.809 17.301 13.142 18.102 12.586 18.325 L 8.547 17.938 L 5.898 19.17 C 5.397 18.86 4.225 17.275 3.765 17.171 C 3.373 17.082 1.269 17.1 0.825 17.161 C 0.019 17.274 0.075 18.25 0.678 18.385 C 1.43 18.553 2.557 18.263 3.35 18.443 C 4.008 18.952 4.734 19.934 5.375 20.394 C 5.761 20.671 5.875 20.571 6.264 20.418 C 7.054 20.108 7.85 19.557 8.644 19.224 L 12.898 19.566 L 14.692 18.475 L 17.577 18.482 L 19.691 19.644 C 21.294 19.54 23.102 19.8 24.679 19.652 C 25.472 19.578 26.452 18.315 27.245 18.241 C 28.173 18.154 29.251 18.299 30.196 18.26 C 30.603 18.519 31.326 19.416 31.776 19.488 C 32.379 19.584 34.806 19.572 35.429 19.484 C 35.99 19.406 36.121 18.858 36.345 18.413 C 36.545 18.288 38.734 18.497 39.24 18.383 C 39.857 18.245 39.878 17.277 39.095 17.157 C 38.552 17.074 36.538 17.08 35.986 17.157 C 35.435 17.234 35.3 17.818 35.072 18.231 Z M 16.583 19.283 C 16.277 18.949 15.81 19.091 15.56 19.419 C 15.254 19.821 13.768 22.369 13.628 22.788 C 13.387 23.51 13.883 23.95 14.533 23.615 L 16.731 19.882 C 16.81 19.714 16.701 19.41 16.584 19.282 Z M 26.25 23.286 L 27.898 20.371 C 28.036 19.672 27.301 19.294 26.79 19.889 C 26.591 20.12 25.251 22.437 25.202 22.668 C 25.054 23.368 25.785 23.732 26.249 23.286 Z M 38.497 19.743 C 38.235 19.8 38.154 20.011 38.018 20.202 C 37.377 21.097 36.89 22.295 36.29 23.236 C 36.206 23.868 36.911 24.289 37.383 23.778 L 39.264 20.507 C 39.35 20.019 39.012 19.63 38.496 19.743 Z M 11.597 20.052 C 11.422 20.089 11.258 20.256 11.163 20.402 L 8.346 25.384 C 8.352 26.082 9.17 26.31 9.546 25.725 L 12.338 20.874 C 12.544 20.432 12.04 19.96 11.597 20.052 Z M 19.239 20.053 C 18.975 20.107 18.864 20.364 18.728 20.561 C 17.243 22.742 16.129 25.416 14.642 27.624 C 14.315 28.386 15.171 28.97 15.706 28.3 L 19.979 20.875 C 20.184 20.431 19.681 19.963 19.239 20.053 Z M 7.697 20.133 C 7.53 20.171 7.436 20.269 7.341 20.401 C 6.171 22.024 5.312 24.27 4.153 25.947 C 3.832 26.607 4.641 27.121 5.18 26.662 L 8.412 21.083 C 8.693 20.52 8.325 19.99 7.696 20.133 Z M 30.772 20.14 C 30.432 20.158 30.275 20.472 30.112 20.717 C 28.755 22.767 27.702 25.171 26.342 27.237 C 25.92 28.019 26.955 28.679 27.433 27.861 C 28.541 25.703 30.087 23.603 31.152 21.444 C 31.285 21.173 31.502 20.876 31.408 20.562 C 31.349 20.366 30.982 20.128 30.773 20.14 Z M 34.521 20.13 C 34.244 20.187 34.077 20.501 33.933 20.717 C 32.428 22.966 31.269 25.657 29.769 27.935 C 29.451 28.645 30.331 29.204 30.835 28.612 L 35.201 21.049 C 35.414 20.557 35.063 20.019 34.522 20.13 Z M 4.342 20.532 C 3.955 20.178 3.544 20.439 3.287 20.793 C 2.391 22.03 1.746 23.777 0.84 25.05 C 0.499 25.868 1.432 26.37 1.936 25.679 C 2.868 24.402 3.561 22.601 4.461 21.266 C 4.585 21.038 4.529 20.704 4.343 20.532 Z M 22.823 20.368 C 22.694 20.406 22.553 20.606 22.47 20.716 C 21.32 22.235 20.491 24.512 19.358 26.102 C 18.998 26.745 19.893 27.421 20.384 26.818 L 23.644 21.187 C 23.857 20.628 23.385 20.2 22.823 20.367 Z M 12.921 24.345 C 12.448 24.452 11.892 25.627 12.525 25.954 C 13.545 26.481 14.367 24.017 12.921 24.345 Z M 24.534 24.351 C 24.299 24.364 24.121 24.553 23.982 24.723 C 23.629 25.158 22.403 27.301 22.183 27.838 C 21.878 28.58 22.703 29.113 23.236 28.5 C 23.484 28.216 25.001 25.598 25.125 25.243 C 25.274 24.816 24.995 24.326 24.533 24.351 Z M 35.767 24.422 C 35.595 24.461 35.556 24.537 35.457 24.658 C 35.245 24.919 34.143 26.816 34.068 27.095 C 33.885 27.772 34.686 28.223 35.166 27.642 C 35.334 27.436 36.473 25.473 36.531 25.266 C 36.689 24.704 36.348 24.286 35.766 24.422 Z M 14.452 30.85 C 14.792 31.154 15.281 31.006 15.71 31.034 C 17.986 31.185 20.283 31.207 22.575 31.269 C 23.274 31.184 24.33 29.886 24.914 29.858 L 30.996 31.031 L 35.03 30.546 L 37.35 28.578 C 37.956 28.381 39.247 28.848 39.599 28.177 C 40.27 26.903 37.612 27.351 37.014 27.306 L 34.536 29.352 L 31.301 29.787 L 24.607 28.539 L 22.4 30.002 L 15.259 29.769 C 15.007 29.697 13.214 27.227 12.827 26.821 C 12.672 26.657 12.429 26.371 12.199 26.356 L 7.505 26.957 L 5.731 29.081 L 3.844 27.305 C 2.899 27.376 1.652 27.152 0.746 27.294 C -0.003 27.41 0.103 28.445 0.896 28.539 C 1.689 28.632 2.587 28.454 3.377 28.553 C 3.673 28.641 4.918 30.194 5.343 30.486 C 5.853 30.84 6.078 30.628 6.435 30.253 C 6.709 29.966 8.03 28.124 8.162 28.081 L 11.878 27.694 L 14.454 30.849 Z M 18.998 29.213 C 19.062 29.151 19.471 28.459 19.509 28.36 C 19.745 27.754 19.24 27.251 18.654 27.505 C 18.405 27.614 17.917 28.526 17.927 28.808 C 17.949 29.363 18.602 29.593 18.997 29.213 Z M 10.582 28.399 C 9.973 28.535 9.969 29.51 10.648 29.625 C 11.176 29.714 11.885 29.645 11.857 28.969 C 11.83 28.332 11.063 28.292 10.582 28.399 Z M 37.452 29.343 C 36.601 30.275 38.731 30.931 39.032 29.945 C 39.296 29.079 37.823 28.936 37.452 29.343 Z M 8.71 29.646 C 8.282 29.776 6.324 32.734 5.78 33.187 C 5.657 33.392 5.668 33.62 5.729 33.844 C 5.784 34.043 6.882 35.884 7.023 35.98 L 10.818 37.409 C 11.339 37.556 11.839 36.987 12.205 36.65 C 12.592 36.294 13.236 35.808 13.065 35.241 C 12.967 34.917 12.18 33.815 12.169 33.57 C 12.148 33.108 12.694 32.452 12.517 31.81 C 12.458 31.601 11.93 30.753 11.752 30.626 C 11.508 30.452 9.542 29.729 9.205 29.665 C 9.039 29.632 8.88 29.593 8.71 29.645 Z M 2.945 29.799 C 2.832 29.814 2.707 29.878 2.611 29.941 C 2.359 30.106 1.318 31.141 1.049 31.419 C 0.756 31.724 0.735 31.868 0.815 32.283 C 0.894 32.699 1.436 34.431 1.621 34.752 C 1.863 35.173 2.221 35.127 2.598 34.917 C 3.248 34.553 4.326 33.752 4.936 33.279 C 5.366 32.947 5.847 32.738 5.54 32.081 C 5.058 31.755 3.554 29.873 3.139 29.798 C 3.068 29.785 3.014 29.791 2.944 29.8 Z M 24.695 30.27 C 24.1 30.404 24.072 31.295 24.635 31.466 C 25.016 31.581 25.784 31.572 25.93 31.115 C 26.186 30.312 25.301 30.132 24.695 30.27 Z M 27.424 30.894 C 26.782 31.04 26.665 32.029 27.484 32.126 C 27.977 32.184 28.641 32.186 28.657 31.541 C 28.674 30.903 27.92 30.78 27.425 30.893 Z M 34.988 30.894 C 34.378 31.03 34.374 32.005 35.053 32.12 C 35.581 32.208 36.291 32.14 36.263 31.464 C 36.235 30.827 35.468 30.786 34.988 30.894 Z M 34.619 38.362 C 34.68 38.87 34.63 39.564 35.221 39.749 C 36.442 39.674 37.915 39.906 39.105 39.767 C 39.484 39.722 39.696 39.495 39.692 39.106 C 39.526 36.82 39.899 34.256 39.692 32.003 C 39.67 31.76 39.63 31.571 39.417 31.421 C 39.17 31.247 37.31 30.961 37.014 31.049 C 36.465 31.209 36.45 32.952 36.212 33.444 C 35.902 33.91 34.314 35.224 34.187 35.628 C 33.989 36.261 34.565 37.574 34.542 38.283 C 34.422 38.289 34.453 38.137 34.339 38.058 C 33.737 37.644 32.49 37.93 32.868 38.828 C 33.06 39.285 34.309 39.287 34.501 38.828 C 34.572 38.659 34.471 38.401 34.619 38.362 Z M 33.275 31.129 C 32.956 31.15 31.025 31.593 30.742 31.717 C 30.51 31.819 29.958 32.708 29.942 32.949 C 29.931 33.094 29.99 33.178 30.061 33.291 C 30.215 33.529 31.965 35.078 32.241 35.243 C 32.539 35.42 32.66 35.429 32.973 35.274 C 33.175 35.173 34.776 33.945 34.856 33.805 C 34.985 33.581 34.95 33.396 34.87 33.158 C 34.802 32.956 34.019 31.604 33.872 31.427 C 33.711 31.233 33.539 31.111 33.273 31.128 Z M 16.898 31.44 C 16.759 31.471 16.666 31.561 16.567 31.654 C 16.435 31.778 15.45 33.028 15.403 33.142 C 15.042 34.029 16.221 34.162 16.61 34.579 C 16.823 34.807 16.917 35.35 17.203 35.547 C 17.305 35.618 18.759 36.129 18.927 36.161 C 19.14 36.203 19.348 36.204 19.552 36.121 C 19.705 36.058 20.765 35.043 20.803 34.877 C 20.758 33.871 20.755 32.792 20.541 31.82 C 20.253 31.346 19.329 31.528 18.832 31.501 C 18.278 31.471 17.443 31.319 16.899 31.441 Z M 13.78 32.065 C 13.054 32.214 13.109 33.182 13.686 33.293 C 14.073 33.367 14.877 33.363 14.971 32.863 C 15.108 32.129 14.369 31.944 13.78 32.065 Z M 21.655 32.066 C 20.886 32.205 20.846 33.216 21.711 33.298 C 23.402 33.457 23.073 31.808 21.655 32.066 Z M 26.101 32.064 C 25.82 32.106 23.803 32.861 23.543 33.016 C 23.249 33.191 22.694 34.156 22.683 34.501 C 22.67 34.943 23.106 35.77 23.059 36.05 C 23.008 36.355 22.291 37.299 22.181 37.656 C 22.103 37.911 22.12 38.071 22.249 38.298 C 22.307 38.401 23.289 39.34 23.434 39.452 C 23.58 39.565 23.791 39.73 23.982 39.761 C 26.192 39.619 28.666 39.966 30.844 39.77 C 31.825 39.681 31.456 38.745 31.426 38.089 C 31.399 37.491 31.44 35.648 31.151 35.245 L 26.39 32.048 C 26.293 32.03 26.199 32.049 26.104 32.064 Z M 17.597 36.516 C 17.421 36.307 15.759 34.895 15.545 34.786 C 15.236 34.631 15.047 34.664 14.776 34.853 C 14.341 35.157 13.545 35.934 13.136 36.332 C 12.685 36.773 12.106 37.146 12.658 37.79 L 14.343 39.341 C 14.625 39.428 16.909 39.426 17.267 39.371 C 17.598 39.32 17.728 39.094 17.771 38.783 C 17.83 38.36 17.846 36.809 17.597 36.515 Z M 4.347 34.868 C 4.135 34.909 2.185 35.97 1.954 36.145 C 1.561 36.443 1.5 36.798 1.83 37.194 C 2.665 37.829 3.484 38.973 4.286 39.572 C 4.675 39.861 4.878 39.837 5.227 39.496 C 5.395 39.331 6.842 37.271 6.897 37.111 C 6.964 36.919 6.978 36.681 6.899 36.493 C 6.835 36.343 4.892 34.945 4.68 34.889 C 4.551 34.854 4.483 34.841 4.347 34.868 Z M 21.186 34.949 C 20.702 35.057 20.617 35.773 21.056 36.059 C 21.496 36.346 22.554 36.196 22.531 35.525 C 22.508 34.854 21.68 34.839 21.186 34.949 Z M 31.947 35.728 C 31.384 35.858 31.359 36.836 32.171 36.951 C 33.467 37.134 33.604 35.844 32.783 35.716 C 32.591 35.685 32.133 35.684 31.947 35.728 Z M 18.457 36.742 C 18.132 36.815 17.941 37.26 18.07 37.561 C 18.368 38.254 19.848 38.077 19.803 37.316 C 19.765 36.656 18.941 36.633 18.456 36.742 Z M 7.697 37.287 C 7.503 37.33 7.305 37.523 7.265 37.718 C 7.055 38.74 9.057 38.809 9.035 37.853 C 9.021 37.204 8.165 37.182 7.696 37.286 Z M 10.976 37.915 C 10.083 38.031 10.073 39.067 10.872 39.147 C 12.619 39.322 12.335 37.737 10.976 37.915 Z M 20.721 37.913 C 19.907 38.038 19.919 39.039 20.55 39.138 C 20.966 39.202 21.643 39.236 21.797 38.757 C 22.017 38.074 21.27 37.829 20.721 37.914 Z\" fill=\"transparent\"></path><path d=\"M 15.439 10.448 C 15.144 10.119 14.84 9.76 14.504 9.472 C 14.14 9.158 12.535 8.203 12.478 7.911 C 12.199 6.492 14.921 7.289 15.673 7.29 C 14.747 6.224 13.656 5.314 12.442 4.595 C 11.712 2.665 15.216 3.994 16.064 4.208 C 15.669 3.74 15.21 3.311 14.74 2.922 C 14.431 2.667 13.373 2.01 13.22 1.791 C 12.946 1.398 13.134 0.865 13.612 0.783 C 14.037 0.711 14.995 0.878 15.455 0.959 C 17.327 1.291 18.909 2.1 20.383 3.271 C 21.334 2.106 22.709 1.196 24.131 0.698 C 24.856 0.445 26.544 -0.165 26.261 1.188 C 25.697 1.816 25.002 2.324 24.445 2.96 C 24.379 3.035 23.962 3.53 24.018 3.585 C 24.344 3.501 24.739 3.381 25.071 3.353 C 25.48 3.319 27.033 3.295 27.321 3.441 C 27.608 3.586 27.66 3.873 27.602 4.169 C 27.54 4.488 26.326 5.12 25.989 5.361 C 25.417 5.773 24.767 6.253 24.407 6.859 C 24.871 6.74 25.321 6.575 25.797 6.495 C 26.418 6.391 27.729 6.117 27.602 7.125 C 27.557 7.482 26.665 7.954 26.355 8.223 C 25.666 8.823 24.937 9.608 24.562 10.446 L 39.104 10.446 C 39.674 10.446 40.039 11.608 39.109 11.698 L 0.548 11.653 C -0.02 11.365 0.305 10.446 0.82 10.446 L 15.44 10.446 Z M 19.882 7.173 L 20.803 5.652 C 19.652 4.117 17.977 2.808 16.062 2.418 C 16.852 3.215 17.616 4.011 18.262 4.933 C 18.726 5.594 19.154 6.548 19.693 7.09 C 19.757 7.154 19.762 7.201 19.881 7.172 Z M 23.158 2.574 C 23.082 2.501 22.221 3.179 22.108 3.277 C 21.984 3.384 21.361 3.974 21.324 4.057 C 21.196 4.338 21.558 4.584 21.717 4.756 Z M 24.795 4.679 C 23.693 4.841 22.555 5.521 21.834 6.357 C 21.525 6.717 20.746 7.895 20.676 8.325 C 20.6 8.79 21.503 9.736 21.522 10.293 C 21.642 10.416 21.659 10.281 21.675 10.175 C 21.915 8.555 22.36 7.269 23.43 6.003 Z M 20.273 10.448 C 19.285 8.387 17.877 6.325 15.673 5.459 C 16.815 6.584 17.73 7.876 18.542 9.256 C 18.701 9.527 19.028 10.398 19.298 10.45 C 19.568 10.502 19.976 10.411 20.273 10.449 Z M 24.483 8.266 C 24.378 8.177 23.316 8.891 23.198 9.046 C 22.931 9.401 22.997 10.04 22.846 10.447 L 23.145 10.434 C 23.444 9.623 24.001 8.965 24.482 8.266 Z M 17.778 10.448 C 17.498 10.118 17.319 9.432 16.996 9.165 C 16.649 8.878 15.816 8.643 15.361 8.578 L 16.103 9.278 L 16.92 10.411 L 17.779 10.448 Z M 14.452 30.85 L 11.876 27.695 L 8.16 28.082 C 8.028 28.125 6.707 29.967 6.433 30.254 C 6.076 30.629 5.851 30.84 5.341 30.487 C 4.917 30.195 3.671 28.642 3.375 28.554 C 2.585 28.455 1.667 28.631 0.894 28.54 C 0.121 28.448 -0.004 27.411 0.744 27.295 C 1.65 27.153 2.898 27.377 3.842 27.306 L 5.729 29.082 L 7.503 26.958 L 12.197 26.357 C 12.428 26.371 12.67 26.658 12.825 26.822 C 13.211 27.228 15.005 29.699 15.257 29.77 L 22.398 30.003 L 24.605 28.54 L 31.299 29.789 L 34.534 29.353 L 37.011 27.307 C 37.61 27.352 40.268 26.904 39.597 28.178 C 39.244 28.849 37.954 28.382 37.348 28.579 L 35.028 30.547 L 30.994 31.032 L 24.911 29.859 C 24.329 29.887 23.272 31.185 22.573 31.27 C 20.281 31.208 17.984 31.186 15.708 31.035 C 15.279 31.007 14.79 31.155 14.45 30.851 Z M 35.075 18.233 C 35.303 17.82 35.463 17.233 35.99 17.159 C 36.517 17.085 38.555 17.076 39.098 17.159 C 39.881 17.279 39.86 18.247 39.243 18.385 C 38.736 18.499 36.548 18.29 36.348 18.415 C 36.123 18.86 35.993 19.408 35.432 19.486 C 34.809 19.573 32.382 19.586 31.779 19.49 C 31.329 19.418 30.607 18.521 30.199 18.262 C 29.254 18.301 28.176 18.156 27.248 18.243 C 26.455 18.317 25.475 19.58 24.682 19.654 C 23.105 19.801 21.296 19.541 19.694 19.646 L 17.58 18.484 L 14.695 18.477 L 12.901 19.568 L 8.647 19.226 C 7.853 19.558 7.057 20.109 6.267 20.42 C 5.877 20.572 5.765 20.673 5.378 20.396 C 4.738 19.936 4.011 18.954 3.353 18.445 C 2.56 18.265 1.433 18.555 0.681 18.387 C 0.077 18.253 0.022 17.276 0.828 17.164 C 1.272 17.102 3.376 17.084 3.768 17.173 C 4.227 17.276 5.4 18.862 5.901 19.172 L 8.55 17.94 L 12.59 18.327 C 13.144 18.103 13.811 17.302 14.388 17.233 C 15.452 17.105 16.786 17.318 17.88 17.253 L 20.007 18.4 C 21.385 18.309 22.94 18.534 24.296 18.408 C 24.984 18.344 26.002 17.257 26.713 17.004 C 27.893 17.1 29.302 16.862 30.453 16.999 C 30.961 17.059 31.632 17.966 32.104 18.232 L 35.078 18.235 Z M 39.507 13.28 C 39.811 13.559 39.732 14.104 39.356 14.289 L 0.62 14.312 C -0.079 13.952 0.218 13.084 0.971 13.096 L 38.951 13.096 C 39.123 13.098 39.382 13.167 39.507 13.281 Z M 26.101 32.064 C 26.197 32.049 26.29 32.029 26.386 32.048 L 31.148 35.245 C 31.436 35.648 31.395 37.492 31.423 38.089 C 31.453 38.745 31.822 39.681 30.841 39.77 C 28.664 39.966 26.189 39.619 23.979 39.761 C 23.787 39.729 23.584 39.569 23.431 39.452 C 23.278 39.335 22.304 38.401 22.246 38.298 C 22.117 38.071 22.1 37.911 22.178 37.656 C 22.289 37.299 23.005 36.356 23.056 36.05 C 23.103 35.771 22.667 34.944 22.68 34.501 C 22.691 34.156 23.246 33.19 23.54 33.016 C 23.8 32.86 25.817 32.105 26.098 32.064 Z M 30.253 38.519 L 30.025 35.979 L 26.162 33.378 C 26.066 33.374 24.475 33.972 24.349 34.056 C 23.524 34.604 24.466 35.524 24.325 36.293 C 24.276 36.564 23.512 37.674 23.554 37.849 L 24.289 38.52 L 30.253 38.52 Z M 34.619 38.363 C 34.471 38.402 34.571 38.659 34.501 38.828 C 34.309 39.288 33.06 39.285 32.868 38.828 C 32.49 37.93 33.737 37.644 34.339 38.058 C 34.452 38.138 34.421 38.289 34.542 38.283 C 34.565 37.574 33.989 36.261 34.187 35.628 C 34.315 35.224 35.902 33.91 36.212 33.444 C 36.45 32.952 36.466 31.209 37.014 31.049 C 37.31 30.963 39.17 31.247 39.417 31.421 C 39.63 31.572 39.67 31.76 39.692 32.003 C 39.899 34.255 39.526 36.82 39.692 39.106 C 39.696 39.495 39.484 39.723 39.105 39.767 C 37.915 39.906 36.443 39.673 35.221 39.749 C 34.63 39.564 34.68 38.87 34.619 38.363 Z M 38.441 32.436 L 37.748 32.367 L 37.339 34.024 L 35.443 36.097 L 35.868 38.518 L 38.441 38.518 L 38.441 32.435 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 8.71 29.646 C 8.88 29.594 9.039 29.633 9.205 29.666 C 9.542 29.73 11.508 30.453 11.752 30.627 C 11.93 30.754 12.459 31.601 12.517 31.811 C 12.694 32.453 12.148 33.109 12.169 33.571 C 12.18 33.815 12.966 34.918 13.065 35.242 C 13.236 35.808 12.592 36.295 12.205 36.651 C 11.839 36.989 11.339 37.557 10.818 37.41 L 7.023 35.981 C 6.882 35.884 5.784 34.044 5.729 33.845 C 5.668 33.622 5.657 33.393 5.78 33.189 C 6.324 32.735 8.282 29.777 8.71 29.647 Z M 9.129 30.957 L 7.032 33.644 L 7.881 34.964 L 10.944 36.085 L 11.674 35.361 C 11.42 34.669 10.82 34.119 10.934 33.351 C 10.973 33.095 11.306 32.286 11.268 32.117 C 11.11 31.419 9.683 31.263 9.128 30.957 Z M 16.898 31.44 C 17.442 31.318 18.277 31.47 18.831 31.5 C 19.328 31.527 20.253 31.345 20.54 31.819 C 20.754 32.792 20.757 33.871 20.802 34.876 C 20.765 35.042 19.704 36.057 19.551 36.12 C 19.347 36.203 19.139 36.202 18.926 36.16 C 18.758 36.128 17.305 35.616 17.202 35.546 C 16.916 35.349 16.823 34.806 16.609 34.578 C 16.221 34.161 15.041 34.028 15.402 33.141 C 15.448 33.027 16.434 31.777 16.566 31.653 C 16.664 31.56 16.758 31.47 16.897 31.439 Z M 19.415 32.749 C 18.945 32.835 17.599 32.482 17.273 32.749 C 17.24 32.776 16.922 33.225 16.925 33.255 C 17.132 33.442 17.401 33.542 17.586 33.758 C 17.772 33.975 17.857 34.362 18.016 34.499 C 18.135 34.603 18.983 34.88 19.126 34.841 C 19.236 34.81 19.561 34.462 19.573 34.344 L 19.416 32.747 Z M 17.597 36.516 C 17.846 36.81 17.829 38.361 17.771 38.784 C 17.727 39.095 17.598 39.321 17.267 39.372 C 16.909 39.427 14.626 39.429 14.343 39.342 L 12.658 37.791 C 12.106 37.148 12.685 36.775 13.136 36.333 C 13.545 35.934 14.341 35.157 14.776 34.854 C 15.048 34.665 15.236 34.632 15.545 34.788 C 15.759 34.896 17.421 36.307 17.597 36.517 Z M 14.854 38.129 L 16.53 38.129 L 16.514 37.209 L 15.23 36.191 L 13.958 37.31 L 14.853 38.129 Z M 4.347 34.868 C 4.483 34.841 4.551 34.854 4.68 34.889 C 4.892 34.945 6.835 36.342 6.899 36.493 C 6.979 36.681 6.964 36.919 6.897 37.111 C 6.842 37.271 5.395 39.331 5.227 39.496 C 4.878 39.838 4.675 39.863 4.286 39.572 C 3.484 38.973 2.666 37.829 1.83 37.194 C 1.499 36.798 1.561 36.442 1.954 36.145 C 2.185 35.97 4.135 34.909 4.347 34.868 Z M 5.452 36.89 L 4.481 36.255 L 3.276 36.804 L 4.573 38.123 C 4.723 38.15 5.505 36.966 5.453 36.89 Z M 2.945 29.799 C 3.015 29.79 3.069 29.784 3.14 29.797 C 3.554 29.872 5.058 31.754 5.541 32.08 C 5.847 32.736 5.367 32.946 4.937 33.278 C 4.327 33.751 3.249 34.552 2.599 34.916 C 2.222 35.126 1.865 35.173 1.622 34.751 C 1.437 34.43 0.893 32.685 0.816 32.282 C 0.739 31.879 0.757 31.722 1.05 31.418 C 1.318 31.139 2.359 30.105 2.612 29.94 C 2.708 29.877 2.833 29.813 2.946 29.798 Z M 2.496 33.45 L 4.053 32.32 L 3.069 31.357 C 2.85 31.315 2.277 32.002 2.117 32.18 L 2.496 33.451 Z M 33.275 31.129 C 33.541 31.112 33.715 31.234 33.874 31.428 C 34.02 31.605 34.804 32.957 34.872 33.159 C 34.951 33.397 34.986 33.582 34.858 33.806 C 34.778 33.945 33.177 35.174 32.975 35.275 C 32.662 35.43 32.541 35.422 32.243 35.244 C 31.967 35.079 30.217 33.53 30.064 33.292 C 29.991 33.179 29.933 33.095 29.944 32.95 C 29.96 32.709 30.512 31.82 30.744 31.718 C 31.027 31.594 32.957 31.15 33.277 31.13 Z M 31.423 32.827 L 32.646 33.905 C 33.425 33.504 33.72 33.247 33.007 32.524 Z M 34.521 20.13 C 35.06 20.019 35.412 20.556 35.2 21.049 L 30.834 28.613 C 30.33 29.204 29.45 28.645 29.768 27.935 C 31.269 25.657 32.427 22.966 33.932 20.717 C 34.076 20.501 34.243 20.188 34.52 20.13 Z M 19.239 20.053 C 19.681 19.963 20.184 20.43 19.979 20.875 L 15.706 28.3 C 15.171 28.97 14.315 28.388 14.642 27.624 C 16.13 25.416 17.243 22.742 18.728 20.561 C 18.864 20.364 18.975 20.107 19.239 20.053 Z M 30.772 20.14 C 30.981 20.128 31.349 20.366 31.407 20.562 C 31.501 20.876 31.284 21.173 31.151 21.444 C 30.086 23.603 28.539 25.703 27.432 27.861 C 26.954 28.679 25.919 28.019 26.341 27.237 C 27.702 25.171 28.755 22.767 30.111 20.717 C 30.274 20.472 30.431 20.158 30.771 20.14 Z M 7.697 20.133 C 8.325 19.99 8.694 20.52 8.414 21.083 L 5.181 26.663 C 4.642 27.121 3.832 26.607 4.154 25.947 C 5.314 24.271 6.172 22.024 7.342 20.401 C 7.437 20.269 7.531 20.171 7.698 20.133 Z M 22.823 20.368 C 23.385 20.2 23.858 20.628 23.644 21.189 L 20.384 26.819 C 19.892 27.422 18.997 26.747 19.358 26.103 C 20.491 24.514 21.32 22.235 22.47 20.717 C 22.553 20.607 22.694 20.406 22.823 20.369 Z M 11.597 20.052 C 12.04 19.96 12.544 20.431 12.337 20.874 L 9.546 25.725 C 9.169 26.31 8.351 26.082 8.346 25.384 L 11.162 20.402 C 11.258 20.256 11.422 20.089 11.597 20.052 Z M 4.342 20.532 C 4.529 20.704 4.585 21.038 4.46 21.266 C 3.56 22.601 2.867 24.402 1.935 25.679 C 1.432 26.37 0.499 25.868 0.839 25.05 C 1.745 23.778 2.39 22.03 3.286 20.793 C 3.543 20.439 3.954 20.177 4.341 20.532 Z M 16.583 19.283 C 16.7 19.411 16.809 19.715 16.73 19.883 L 14.532 23.616 C 13.882 23.951 13.386 23.511 13.627 22.789 C 13.767 22.369 15.253 19.822 15.559 19.42 C 15.81 19.091 16.277 18.95 16.582 19.284 Z M 24.534 24.351 C 24.996 24.326 25.274 24.816 25.126 25.243 C 25.002 25.598 23.485 28.216 23.238 28.5 C 22.704 29.111 21.879 28.58 22.184 27.838 C 22.404 27.301 23.63 25.159 23.983 24.723 C 24.122 24.552 24.3 24.364 24.535 24.351 Z M 38.497 19.743 C 39.014 19.63 39.35 20.02 39.265 20.507 L 37.384 23.778 C 36.911 24.289 36.207 23.868 36.291 23.236 C 36.891 22.295 37.378 21.097 38.019 20.202 C 38.155 20.011 38.236 19.799 38.498 19.743 Z M 26.25 23.286 C 25.786 23.732 25.055 23.368 25.203 22.668 C 25.252 22.438 26.592 20.12 26.791 19.889 C 27.302 19.294 28.038 19.671 27.899 20.371 L 26.251 23.286 Z M 35.767 24.422 C 36.349 24.286 36.689 24.705 36.532 25.266 C 36.474 25.473 35.335 27.437 35.167 27.642 C 34.687 28.223 33.886 27.772 34.069 27.095 C 34.144 26.816 35.246 24.919 35.458 24.658 C 35.557 24.537 35.596 24.461 35.768 24.422 Z M 18.998 29.213 C 18.603 29.593 17.949 29.363 17.928 28.808 C 17.917 28.525 18.406 27.613 18.655 27.505 C 19.241 27.251 19.746 27.754 19.51 28.36 C 19.472 28.459 19.062 29.151 18.999 29.213 Z M 12.921 24.345 C 14.367 24.017 13.545 26.482 12.525 25.954 C 11.893 25.627 12.448 24.452 12.921 24.345 Z M 21.186 34.949 C 21.679 34.84 22.508 34.858 22.531 35.525 C 22.554 36.192 21.511 36.356 21.056 36.059 C 20.601 35.762 20.703 35.056 21.186 34.949 Z M 18.457 36.742 C 18.941 36.634 19.766 36.656 19.804 37.316 C 19.849 38.077 18.368 38.254 18.071 37.561 C 17.942 37.26 18.133 36.814 18.458 36.742 Z M 20.796 16.858 C 21.411 16.72 22.292 16.888 22.031 17.704 C 21.885 18.161 21.117 18.171 20.736 18.055 C 20.173 17.884 20.201 16.992 20.796 16.858 Z M 33.117 16.703 C 33.584 16.6 34.454 16.609 34.453 17.271 C 34.453 18.219 32.566 18.143 32.685 17.214 C 32.716 16.976 32.875 16.756 33.117 16.702 Z M 10.976 37.915 C 12.335 37.738 12.619 39.323 10.872 39.147 C 10.073 39.067 10.083 38.031 10.976 37.915 Z M 24.695 30.27 C 25.301 30.133 26.186 30.312 25.93 31.115 C 25.784 31.572 25.016 31.581 24.635 31.466 C 24.072 31.295 24.1 30.404 24.695 30.27 Z M 7.697 37.288 C 8.166 37.183 9.021 37.204 9.036 37.854 C 9.058 38.81 7.056 38.74 7.266 37.719 C 7.305 37.523 7.504 37.331 7.698 37.289 Z M 24.461 14.909 C 24.93 14.805 25.785 14.826 25.801 15.476 C 25.82 16.282 24.364 16.401 24.075 15.73 C 23.946 15.429 24.138 14.982 24.463 14.91 Z M 37.452 29.343 C 37.824 28.935 39.297 29.079 39.032 29.945 C 38.731 30.931 36.601 30.275 37.452 29.343 Z M 14.558 14.909 C 15.042 14.802 15.867 14.824 15.905 15.483 C 15.948 16.22 14.538 16.425 14.209 15.771 C 14.047 15.446 14.197 14.99 14.558 14.909 Z M 4.655 14.909 C 5.07 14.79 5.946 14.838 6.003 15.407 C 6.102 16.392 4.183 16.407 4.233 15.49 C 4.244 15.304 4.478 14.96 4.655 14.909 Z M 10.894 16.858 C 11.374 16.751 12.143 16.792 12.169 17.428 C 12.197 18.104 11.487 18.174 10.959 18.084 C 10.279 17.97 10.284 16.994 10.894 16.858 Z M 31.602 15.071 C 31.919 14.695 33.457 14.761 33.184 15.675 C 32.893 16.651 30.792 16.032 31.602 15.071 Z M 10.582 28.399 C 11.062 28.292 11.831 28.332 11.857 28.969 C 11.885 29.645 11.176 29.715 10.648 29.625 C 9.968 29.51 9.973 28.534 10.582 28.399 Z M 31.947 35.728 C 32.133 35.685 32.591 35.686 32.783 35.716 C 33.604 35.844 33.467 37.134 32.171 36.951 C 31.36 36.836 31.384 35.857 31.947 35.728 Z M 26.956 14.909 C 27.571 14.773 28.396 14.882 28.209 15.695 C 28.091 16.211 27.391 16.211 26.977 16.103 C 26.319 15.931 26.38 15.038 26.957 14.909 Z M 27.424 30.894 C 27.919 30.781 28.673 30.904 28.656 31.542 C 28.64 32.188 27.976 32.185 27.483 32.127 C 26.665 32.03 26.782 31.041 27.423 30.895 Z M 34.988 30.894 C 35.468 30.786 36.236 30.827 36.263 31.464 C 36.291 32.14 35.581 32.209 35.053 32.12 C 34.373 32.005 34.378 31.029 34.988 30.894 Z M 21.655 32.066 C 23.073 31.807 23.401 33.457 21.711 33.298 C 20.846 33.216 20.886 32.205 21.655 32.066 Z M 13.78 32.065 C 14.369 31.944 15.108 32.129 14.971 32.863 C 14.877 33.363 14.073 33.366 13.686 33.293 C 13.109 33.183 13.054 32.215 13.78 32.065 Z M 23.214 16.703 C 23.4 16.661 23.859 16.659 24.05 16.691 C 24.854 16.823 24.732 18.097 23.437 17.926 C 22.621 17.819 22.619 16.834 23.214 16.702 Z M 12.062 14.908 C 12.489 14.784 13.336 14.835 13.409 15.406 C 13.498 16.1 12.752 16.222 12.207 16.135 C 11.548 16.03 11.533 15.063 12.064 14.908 Z M 8.32 15.071 C 9.13 16.032 7.029 16.65 6.737 15.675 C 6.465 14.763 8.003 14.695 8.32 15.071 Z M 36.858 14.909 C 37.395 14.79 38.179 14.863 38.132 15.554 C 38.092 16.163 37.422 16.209 36.938 16.121 C 36.21 15.988 36.267 15.041 36.858 14.908 Z M 34.364 14.909 C 34.82 14.808 35.522 14.821 35.659 15.375 C 35.877 16.249 34.285 16.445 33.977 15.73 C 33.83 15.389 33.995 14.992 34.364 14.909 Z M 2.239 14.909 C 2.718 14.802 3.487 14.844 3.515 15.479 C 3.543 16.147 2.829 16.215 2.319 16.122 C 1.612 15.993 1.606 15.051 2.239 14.909 Z M 16.786 15.963 C 16.688 15.864 16.595 15.555 16.608 15.407 C 16.681 14.623 18.655 14.607 18.307 15.774 C 18.166 16.247 17.072 16.248 16.786 15.963 Z M 23.136 15.963 C 22.851 16.248 21.756 16.246 21.616 15.774 C 21.267 14.607 23.242 14.623 23.315 15.407 C 23.328 15.555 23.235 15.865 23.136 15.963 Z M 29.451 14.909 C 29.931 14.802 30.699 14.844 30.726 15.479 C 30.753 16.115 30.026 16.213 29.53 16.122 C 28.824 15.992 28.818 15.051 29.45 14.909 Z M 9.646 14.909 C 9.99 14.832 10.775 14.846 10.9 15.259 C 11.231 16.365 9.369 16.383 9.216 15.694 C 9.142 15.358 9.293 14.989 9.646 14.909 Z M 7.071 17.909 C 6.678 18.34 5.248 18.099 5.491 17.307 C 5.793 16.32 7.922 16.977 7.071 17.909 Z M 19.549 14.909 C 20.029 14.802 20.798 14.843 20.824 15.479 C 20.852 16.147 20.139 16.215 19.628 16.122 C 18.901 15.989 18.957 15.042 19.549 14.909 Z M 20.721 37.913 C 21.27 37.828 22.017 38.073 21.797 38.756 C 21.643 39.235 20.966 39.202 20.55 39.136 C 19.919 39.038 19.907 38.036 20.721 37.911 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 19.882 7.173 C 19.763 7.201 19.757 7.155 19.694 7.091 C 19.155 6.549 18.727 5.595 18.264 4.934 C 17.616 4.011 16.853 3.216 16.064 2.419 C 17.978 2.809 19.654 4.118 20.804 5.653 L 19.883 7.174 Z M 24.795 4.679 L 23.43 6.003 C 22.36 7.269 21.915 8.555 21.675 10.175 C 21.659 10.28 21.643 10.415 21.522 10.293 C 21.504 9.736 20.6 8.791 20.676 8.325 C 20.747 7.895 21.525 6.717 21.834 6.357 C 22.554 5.522 23.693 4.842 24.795 4.679 Z M 20.273 10.448 C 19.975 10.411 19.577 10.502 19.298 10.449 C 19.019 10.396 18.701 9.526 18.542 9.255 C 17.729 7.875 16.815 6.583 15.673 5.458 C 17.877 6.324 19.285 8.386 20.273 10.447 Z M 17.778 10.448 L 16.919 10.411 L 16.102 9.278 L 15.36 8.578 C 15.815 8.643 16.648 8.879 16.995 9.165 C 17.319 9.431 17.497 10.117 17.777 10.448 Z M 23.158 2.574 L 21.717 4.756 C 21.557 4.585 21.196 4.339 21.324 4.057 C 21.361 3.974 21.984 3.384 22.108 3.277 C 22.221 3.179 23.082 2.501 23.158 2.574 Z M 24.483 8.266 C 24.002 8.966 23.445 9.624 23.146 10.434 L 22.847 10.447 C 22.998 10.04 22.932 9.401 23.199 9.046 C 23.316 8.89 24.379 8.177 24.484 8.266 Z M 30.253 38.519 L 24.289 38.519 L 23.554 37.848 C 23.513 37.674 24.275 36.564 24.325 36.292 C 24.465 35.523 23.524 34.603 24.349 34.055 C 24.476 33.971 26.067 33.373 26.163 33.377 L 30.025 35.978 L 30.253 38.518 Z M 38.441 32.436 L 38.441 38.519 L 35.868 38.519 L 35.443 36.097 L 37.339 34.025 L 37.748 32.368 Z M 9.129 30.957 C 9.684 31.262 11.111 31.419 11.269 32.117 C 11.307 32.286 10.974 33.095 10.935 33.351 C 10.82 34.119 11.421 34.668 11.675 35.361 L 10.945 36.085 L 7.882 34.964 L 7.033 33.644 L 9.13 30.957 Z M 19.415 32.749 L 19.572 34.346 C 19.56 34.465 19.235 34.812 19.125 34.843 C 18.981 34.881 18.134 34.604 18.015 34.501 C 17.857 34.365 17.767 33.972 17.585 33.76 C 17.404 33.549 17.131 33.444 16.924 33.257 C 16.921 33.227 17.239 32.778 17.272 32.751 C 17.598 32.484 18.944 32.836 19.414 32.751 Z M 14.854 38.129 L 13.958 37.31 L 15.23 36.191 L 16.514 37.209 L 16.53 38.129 Z M 5.452 36.89 C 5.505 36.967 4.722 38.15 4.572 38.123 L 3.275 36.804 L 4.48 36.255 L 5.451 36.89 Z M 2.496 33.45 L 2.117 32.179 C 2.277 32.002 2.85 31.315 3.069 31.356 L 4.053 32.319 L 2.496 33.449 Z M 31.423 32.827 L 33.007 32.524 C 33.72 33.247 33.425 33.504 32.646 33.905 Z\" fill=\"transparent\"></path></svg>',svgContentId:11089800350}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-11b9qun`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({GUsdKloHp:{safeArea:false},JOmoTWbFe:{safeArea:false},WyEoPeZp1:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-160zddn\",exit:animation1,initial:animation3,layoutDependency:layoutDependency,layoutId:\"bzKJQmEYn\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Soil\"})}),className:\"framer-1jl75dv\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"QYDMfXtpf\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GUsdKloHp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Suelo\"})})},JOmoTWbFe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Solo\"})})},KTXWmrMfV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Suelo\"})})},os4sYcgtK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Solo\"})})},WyEoPeZp1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Soil\"})})}},baseVariant,gestureVariant)})})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gJdwc.framer-1ygvmh, .framer-gJdwc .framer-1ygvmh { display: block; }\",\".framer-gJdwc.framer-6bo0oy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gJdwc .framer-11b9qun { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gJdwc .framer-14dw20g { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-gJdwc .framer-160zddn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gJdwc .framer-1jl75dv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gJdwc.framer-6bo0oy, .framer-gJdwc .framer-11b9qun, .framer-gJdwc .framer-160zddn { gap: 0px; } .framer-gJdwc.framer-6bo0oy > *, .framer-gJdwc .framer-160zddn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gJdwc.framer-6bo0oy > :first-child, .framer-gJdwc .framer-160zddn > :first-child { margin-top: 0px; } .framer-gJdwc.framer-6bo0oy > :last-child, .framer-gJdwc .framer-160zddn > :last-child { margin-bottom: 0px; } .framer-gJdwc .framer-11b9qun > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gJdwc .framer-11b9qun > :first-child { margin-left: 0px; } .framer-gJdwc .framer-11b9qun > :last-child { margin-right: 0px; } }\",\".framer-gJdwc.framer-v-10d3oy7 .framer-14dw20g, .framer-gJdwc.framer-v-gj1nu .framer-14dw20g, .framer-gJdwc.framer-v-1pcbztq .framer-14dw20g { height: 40px; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"WyEoPeZp1\":{\"layout\":[\"auto\",\"auto\"]},\"KTXWmrMfV\":{\"layout\":[\"auto\",\"auto\"]},\"GUsdKloHp\":{\"layout\":[\"auto\",\"auto\"]},\"os4sYcgtK\":{\"layout\":[\"auto\",\"auto\"]},\"JOmoTWbFe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqcTZ3Xgkp=withCSS(Component,css,\"framer-gJdwc\");export default FramerqcTZ3Xgkp;FramerqcTZ3Xgkp.displayName=\"ICON\";FramerqcTZ3Xgkp.defaultProps={height:76,width:76};addPropertyControls(FramerqcTZ3Xgkp,{variant:{options:[\"YFpTfJlog\",\"WyEoPeZp1\",\"KTXWmrMfV\",\"GUsdKloHp\",\"os4sYcgtK\",\"JOmoTWbFe\"],optionTitles:[\"Desktop - EN\",\"mobile - EN\",\"Desktop - ES\",\"mobile - ES\",\"Desktop - PT\",\"mobile - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqcTZ3Xgkp,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqcTZ3Xgkp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WyEoPeZp1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KTXWmrMfV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GUsdKloHp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"os4sYcgtK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JOmoTWbFe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"76\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"76\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qcTZ3Xgkp.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"PcFJoiHdd\",\"CEzWJpsGk\",\"ffPxR3Sp2\",\"tQsTR4DAV\",\"KXRE1zIhy\",\"j8eXbWVRE\"];const serializationHash=\"framer-sXgeh\";const variantClassNames={CEzWJpsGk:\"framer-v-2e2p44\",ffPxR3Sp2:\"framer-v-iz93i1\",j8eXbWVRE:\"framer-v-1rht2et\",KXRE1zIhy:\"framer-v-qwuzqx\",PcFJoiHdd:\"framer-v-1xztoza\",tQsTR4DAV:\"framer-v-186mmml\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:4.2,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - EN\":\"PcFJoiHdd\",\"Desktop - ES\":\"ffPxR3Sp2\",\"Desktop - PT\":\"KXRE1zIhy\",\"mobile - EN\":\"CEzWJpsGk\",\"mobile - ES\":\"tQsTR4DAV\",\"mobile - PT\":\"j8eXbWVRE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PcFJoiHdd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PcFJoiHdd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xztoza\",className,classNames),\"data-framer-name\":\"Desktop - EN\",\"data-highlight\":true,id:`${layoutId}-1xztoza`,layoutDependency:layoutDependency,layoutId:\"PcFJoiHdd\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:refBinding,style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({CEzWJpsGk:{\"data-framer-name\":\"mobile - EN\"},ffPxR3Sp2:{\"data-framer-name\":\"Desktop - ES\"},j8eXbWVRE:{\"data-framer-name\":\"mobile - PT\"},KXRE1zIhy:{\"data-framer-name\":\"Desktop - PT\"},tQsTR4DAV:{\"data-framer-name\":\"mobile - ES\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-34jsm0\",\"data-framer-name\":\"Crecimiento\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xKOVk4LGT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 4.094 59.962 L 0 59.962 L 0 0 L 60 0 L 60 59.962 L 38.714 59.962 C 41.155 59.072 41.617 56.411 39.522 54.772 C 38.094 53.655 36.667 53.736 34.934 53.747 C 31.88 49.859 26.456 49.002 21.872 50.262 L 21.872 38.516 L 27.956 32.439 C 34.895 32.803 41.197 27.819 41.644 20.753 C 41.837 17.705 41.528 17.303 38.423 17.534 C 31.339 18.061 26.425 24.248 26.723 31.206 L 21.872 36 L 21.872 26.064 C 21.872 26.048 22.062 26.048 22.162 25.952 C 27.637 20.613 28.484 12.616 23.506 6.606 C 21.861 4.622 21.03 3.756 19.005 5.958 C 13.469 11.98 14.059 20.861 20.117 26.239 L 20.117 36.233 L 15.031 31.205 C 15.438 24.259 10.386 18.002 3.337 17.527 C 0.466 17.333 -0.063 17.584 0.111 20.517 C 0.539 27.731 6.708 32.744 13.798 32.438 L 20.116 38.747 L 20.116 50.261 C 16.442 49.038 12.05 49.756 9.067 52.252 C 8.758 52.511 7.877 53.555 7.636 53.627 C 7.239 53.745 6.184 53.563 5.581 53.678 C 2.103 54.348 0.164 58.308 4.092 59.962 Z M 58.011 11.162 L 58.011 57.977 C 57.395 58.1 56.452 58.264 55.906 57.919 L 55.906 1.87 L 57.836 1.87 L 58.011 2.045 L 58.011 8.006 C 58.011 8.63 59.614 9.148 59.77 7.894 C 59.916 6.73 59.912 2.978 59.755 1.822 C 59.627 0.877 58.766 0.194 57.841 0.112 C 54.608 -0.172 50.95 0.327 47.67 0.128 C 46.723 0.3 46.084 0.9 45.875 1.841 L 45.842 57.573 C 45.883 59.177 46.887 59.741 48.358 59.852 C 50.716 60.03 55.275 60.077 57.587 59.833 C 58.659 59.72 59.4 59.303 59.739 58.242 L 59.769 11.277 C 59.631 10.089 58.178 10.205 58.012 11.162 Z M 28.855 4.828 C 28.605 4.627 26.62 4.602 26.281 4.7 C 25.555 4.912 25.6 6.162 26.377 6.309 C 26.73 6.375 28.327 6.356 28.666 6.262 C 29.191 6.117 29.267 5.161 28.855 4.828 Z M 30.958 4.698 C 30.411 4.863 30.33 6.048 30.987 6.261 C 31.344 6.377 33.234 6.37 33.516 6.203 C 33.981 5.927 33.92 4.861 33.367 4.702 C 33.13 4.633 31.189 4.63 30.958 4.7 Z M 35.755 4.7 C 35.066 4.902 35.067 6.087 35.755 6.287 C 35.997 6.358 37.67 6.361 37.95 6.309 C 38.727 6.162 38.772 4.913 38.045 4.7 C 37.809 4.631 35.991 4.631 35.755 4.7 Z M 40.434 4.7 C 39.822 4.875 39.822 6.111 40.434 6.288 C 40.747 6.377 42.777 6.356 42.991 6.203 C 43.419 5.9 43.359 4.853 42.842 4.698 C 42.611 4.63 40.672 4.633 40.433 4.7 Z M 7.252 39.858 L 7.252 47.864 C 7.252 47.897 7.664 48.305 7.722 48.328 C 8.195 48.531 9.006 48.211 9.006 47.747 L 9.006 39.856 C 9.744 40.436 10.345 42.206 11.392 42.073 C 12.005 41.997 12.142 41.409 12.019 40.878 L 9.123 37.109 C 8.463 36.516 7.713 36.569 7.072 37.163 L 4.114 40.994 C 4.002 41.713 4.573 42.273 5.298 42.053 C 5.852 41.884 6.681 40.209 7.252 39.856 Z M 36.141 39.858 C 36.703 40.15 37.614 41.911 38.094 42.055 C 38.802 42.266 39.444 41.728 39.275 40.994 C 39.208 40.705 36.744 37.591 36.377 37.225 C 35.489 36.339 34.861 36.595 34.091 37.402 C 33.114 38.423 32.23 39.852 31.344 40.972 C 31.219 41.769 31.72 42.28 32.519 42.027 C 33.136 41.83 33.772 40.323 34.384 39.975 L 34.384 47.514 C 34.384 48.678 36.139 48.539 36.139 47.864 L 36.139 39.858 Z\" fill=\"transparent\"></path><path d=\"M 4.094 59.962 C 0.166 58.308 2.105 54.348 5.583 53.678 C 6.186 53.563 7.241 53.745 7.637 53.627 C 7.878 53.555 8.758 52.511 9.069 52.252 C 12.052 49.756 16.445 49.038 20.117 50.261 L 20.117 38.747 L 13.8 32.438 C 6.709 32.745 0.541 27.733 0.112 20.519 C -0.061 17.586 0.467 17.334 3.339 17.528 C 10.387 18.003 15.439 24.261 15.033 31.206 L 20.119 36.234 L 20.119 26.241 C 14.061 20.862 13.469 11.981 19.006 5.959 C 21.031 3.756 21.862 4.622 23.508 6.608 C 28.486 12.617 27.639 20.614 22.164 25.953 C 22.064 26.05 21.873 26.05 21.873 26.066 L 21.873 36.002 L 26.725 31.208 C 26.427 24.25 31.341 18.063 38.425 17.536 C 41.53 17.305 41.839 17.706 41.645 20.755 C 41.198 27.819 34.897 32.803 27.958 32.441 L 21.873 38.517 L 21.873 50.264 C 26.458 49.003 31.883 49.863 34.936 53.748 C 36.669 53.738 38.095 53.656 39.523 54.773 C 41.619 56.413 41.156 59.073 38.716 59.964 L 15.556 59.964 C 14.689 59.467 14.787 58.331 15.845 58.208 L 38.486 58.158 C 40.055 57.206 38.314 55.694 37.125 55.531 C 36.283 55.417 35.217 55.677 34.406 55.442 C 33.611 55.212 32.991 54.087 32.336 53.538 C 30.198 51.742 26.766 51.191 24.067 51.58 C 23.134 51.714 21.73 52.356 20.989 52.37 C 20.398 52.381 19.455 51.873 18.831 51.722 C 15.792 50.981 12.525 51.645 10.12 53.655 C 9.609 54.081 8.842 55.128 8.272 55.314 C 7.514 55.563 6.675 55.233 5.819 55.433 C 5.139 55.592 3.725 56.361 3.65 57.125 C 3.584 57.792 4.136 58.159 4.731 58.214 C 7.217 58.442 10.027 58.011 12.548 58.233 C 13.45 58.567 13.408 59.497 12.631 59.961 L 4.094 59.961 Z M 21.872 23.611 C 26.456 18.83 25.93 10.88 20.978 6.555 C 16.044 10.795 15.481 18.931 20.117 23.611 L 20.117 15.253 C 20.117 15.227 20.405 14.853 20.433 14.837 C 20.922 14.545 21.872 14.852 21.872 15.37 Z M 3.567 19.286 C 3.028 19.231 2.42 19.325 1.872 19.286 C 1.62 25.148 6.023 30.142 11.87 30.625 L 7.252 25.645 C 7.178 24.925 7.956 24.405 8.581 24.795 L 13.214 29.339 C 12.906 24.208 8.706 19.803 3.566 19.288 Z M 39.883 19.286 L 38.188 19.286 C 37.663 19.286 36.052 19.773 35.495 19.984 C 31.706 21.416 28.816 25.125 28.658 29.222 L 32.981 24.953 C 33.705 24.228 34.852 24.995 34.442 25.947 C 33.175 27.419 31.391 28.736 30.177 30.214 C 30.069 30.345 29.892 30.403 29.944 30.623 C 34.072 30.217 37.689 27.697 39.186 23.789 C 39.381 23.277 39.884 21.684 39.884 21.214 L 39.884 19.286 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 15.556 59.962 L 12.633 59.962 C 13.408 59.498 13.452 58.567 12.55 58.234 C 10.028 58.012 7.219 58.444 4.733 58.216 C 4.137 58.161 3.586 57.795 3.652 57.127 C 3.727 56.361 5.141 55.594 5.82 55.434 C 6.678 55.233 7.516 55.564 8.273 55.316 C 8.842 55.13 9.611 54.083 10.122 53.656 C 12.527 51.647 15.794 50.981 18.833 51.723 C 19.455 51.875 20.398 52.383 20.991 52.372 C 21.731 52.358 23.136 51.716 24.069 51.581 C 26.767 51.192 30.2 51.745 32.337 53.539 C 32.992 54.089 33.612 55.214 34.408 55.444 C 35.217 55.678 36.284 55.419 37.127 55.533 C 38.317 55.695 40.056 57.208 38.487 58.159 L 15.847 58.209 C 14.789 58.331 14.689 59.469 15.558 59.966 Z M 27.572 53.438 C 26.508 53.655 26.792 55.394 27.984 55.15 C 29.048 54.933 28.764 53.194 27.572 53.438 Z M 14.002 53.555 C 13.105 53.695 12.939 55.15 13.988 55.284 C 15.445 55.472 15.159 53.373 14.002 53.555 Z M 23.542 56.775 C 24.541 57.777 25.767 55.861 24.559 55.348 C 23.62 54.952 22.894 56.125 23.542 56.775 Z\" fill=\"transparent\"></path><path d=\"M 58.011 11.162 C 58.178 10.205 59.63 10.089 59.767 11.277 L 59.737 58.242 C 59.398 59.303 58.658 59.719 57.586 59.833 C 55.273 60.077 50.712 60.03 48.356 59.852 C 46.887 59.741 45.881 59.177 45.841 57.573 L 45.873 1.841 C 46.083 0.9 46.722 0.3 47.669 0.128 C 50.947 0.327 54.605 -0.172 57.839 0.113 C 58.764 0.194 59.625 0.877 59.753 1.822 C 59.911 2.978 59.914 6.73 59.769 7.894 C 59.612 9.148 58.009 8.63 58.009 8.006 L 58.009 2.045 L 57.834 1.87 L 55.905 1.87 L 55.905 57.917 C 56.45 58.262 57.394 58.098 58.009 57.975 L 58.009 11.162 Z M 54.152 1.87 L 47.777 1.87 L 47.602 2.045 L 47.602 4.5 C 48.286 4.984 49.889 4.159 49.831 5.55 C 49.78 6.811 48.244 6.002 47.602 6.487 L 47.602 8.65 L 50.233 8.65 C 51.186 8.65 51.18 10.403 50.467 10.403 L 47.602 10.403 L 47.602 12.741 C 48.45 12.706 50.044 12.539 49.825 13.845 C 49.802 13.987 49.378 14.494 49.297 14.494 L 47.602 14.494 L 47.602 16.831 L 50.35 16.831 C 50.814 16.831 51.136 17.642 50.931 18.116 C 50.906 18.172 50.5 18.584 50.466 18.584 L 47.6 18.584 L 47.6 20.922 C 50.628 20.434 50.628 23.162 47.6 22.675 L 47.6 25.012 L 50.466 25.012 C 50.498 25.012 50.906 25.425 50.931 25.481 C 51.134 25.955 50.813 26.766 50.35 26.766 L 47.602 26.766 L 47.602 29.103 L 49.297 29.103 C 49.892 29.103 50.175 30.675 49.056 30.85 C 48.606 30.92 48.064 30.816 47.602 30.856 L 47.602 33.194 L 50.467 33.194 C 51.18 33.194 51.186 34.947 50.233 34.947 L 47.602 34.947 L 47.602 37.109 C 48.286 37.594 49.889 36.769 49.831 38.159 C 49.78 39.42 48.244 38.611 47.602 39.097 L 47.602 41.259 L 50.233 41.259 C 51.186 41.259 51.18 43.012 50.467 43.012 L 47.602 43.012 L 47.602 45.35 C 48.508 45.311 50.108 45.18 49.802 46.552 C 49.759 46.744 49.472 47.105 49.298 47.105 L 47.603 47.105 L 47.603 49.442 L 50.352 49.442 C 50.816 49.442 51.138 50.253 50.933 50.727 C 50.908 50.783 50.502 51.195 50.467 51.195 L 47.602 51.195 L 47.602 53.416 C 48.464 53.353 50.213 53.266 49.8 54.619 C 49.767 54.725 49.336 55.169 49.298 55.169 L 47.603 55.169 L 47.603 57.798 C 47.603 57.825 47.969 58.091 48.013 58.091 L 54.153 58.091 L 54.153 1.87 Z M 7.252 39.858 C 6.68 40.211 5.852 41.886 5.298 42.055 C 4.573 42.275 4.003 41.714 4.114 40.995 L 7.072 37.164 C 7.711 36.57 8.463 36.516 9.123 37.111 L 12.019 40.88 C 12.144 41.411 12.005 41.998 11.392 42.075 C 10.345 42.206 9.742 40.437 9.006 39.858 L 9.006 47.748 C 9.006 48.212 8.195 48.533 7.722 48.33 C 7.666 48.305 7.252 47.898 7.252 47.866 L 7.252 39.859 Z M 36.141 39.858 L 36.141 47.864 C 36.141 48.539 34.386 48.678 34.386 47.514 L 34.386 39.975 C 33.773 40.323 33.137 41.831 32.52 42.027 C 31.722 42.281 31.22 41.77 31.345 40.972 C 32.231 39.85 33.116 38.422 34.092 37.402 C 34.862 36.595 35.489 36.339 36.378 37.225 C 36.744 37.591 39.209 40.703 39.277 40.994 C 39.445 41.727 38.803 42.266 38.095 42.055 C 37.616 41.911 36.705 40.15 36.142 39.858 Z M 28.855 4.828 C 29.267 5.161 29.191 6.117 28.666 6.262 C 28.328 6.356 26.73 6.377 26.377 6.309 C 25.598 6.162 25.555 4.912 26.281 4.7 C 26.62 4.6 28.605 4.627 28.855 4.828 Z M 40.434 4.7 C 40.673 4.631 42.612 4.628 42.844 4.698 C 43.361 4.853 43.42 5.902 42.992 6.203 C 42.778 6.355 40.748 6.377 40.436 6.288 C 39.823 6.113 39.823 4.877 40.436 4.7 Z M 30.958 4.698 C 31.189 4.63 33.128 4.633 33.367 4.7 C 33.922 4.859 33.981 5.925 33.516 6.202 C 33.234 6.369 31.344 6.375 30.987 6.259 C 30.33 6.047 30.412 4.861 30.958 4.697 Z M 35.755 4.7 C 35.991 4.631 37.809 4.631 38.045 4.7 C 38.772 4.913 38.727 6.163 37.95 6.309 C 37.67 6.363 35.998 6.359 35.755 6.288 C 35.067 6.088 35.066 4.9 35.755 4.7 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 21.872 23.611 L 21.872 15.37 C 21.872 14.852 20.922 14.545 20.433 14.838 C 20.406 14.853 20.117 15.227 20.117 15.253 L 20.117 23.611 C 15.481 18.931 16.044 10.794 20.978 6.555 C 25.93 10.88 26.455 18.83 21.872 23.611 Z M 39.883 19.286 L 39.883 21.214 C 39.883 21.684 39.38 23.277 39.184 23.789 C 37.689 27.697 34.07 30.217 29.942 30.623 C 29.891 30.403 30.067 30.347 30.175 30.214 C 31.391 28.734 33.175 27.419 34.441 25.947 C 34.85 24.994 33.703 24.228 32.98 24.953 L 28.656 29.222 C 28.816 25.125 31.706 21.417 35.494 19.984 C 36.052 19.773 37.663 19.286 38.186 19.286 L 39.881 19.286 Z M 3.567 19.286 C 8.708 19.802 12.908 24.208 13.216 29.338 L 8.583 24.794 C 7.958 24.403 7.18 24.923 7.253 25.644 L 11.872 30.623 C 6.023 30.139 1.622 25.147 1.873 19.284 C 2.422 19.323 3.03 19.23 3.569 19.284 Z\" fill=\"transparent\"></path><path d=\"M 27.572 53.438 C 28.764 53.194 29.048 54.933 27.984 55.15 C 26.792 55.394 26.508 53.655 27.572 53.438 Z M 23.542 56.775 C 22.894 56.125 23.62 54.952 24.559 55.348 C 25.767 55.859 24.541 57.777 23.542 56.775 Z M 14.002 53.555 C 15.159 53.373 15.445 55.472 13.988 55.284 C 12.939 55.15 13.105 53.695 14.002 53.555 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 54.152 1.87 L 54.152 58.094 L 48.011 58.094 C 47.967 58.094 47.602 57.828 47.602 57.802 L 47.602 55.172 L 49.297 55.172 C 49.334 55.172 49.766 54.728 49.798 54.622 C 50.211 53.267 48.462 53.356 47.6 53.419 L 47.6 51.198 L 50.466 51.198 C 50.498 51.198 50.906 50.786 50.931 50.73 C 51.134 50.256 50.813 49.445 50.35 49.445 L 47.602 49.445 L 47.602 47.108 L 49.297 47.108 C 49.47 47.108 49.758 46.747 49.8 46.555 C 50.108 45.184 48.506 45.316 47.6 45.353 L 47.6 43.016 L 50.466 43.016 C 51.178 43.016 51.184 41.262 50.231 41.262 L 47.6 41.262 L 47.6 39.1 C 48.242 38.612 49.778 39.422 49.83 38.162 C 49.888 36.772 48.284 37.597 47.6 37.112 L 47.6 34.95 L 50.231 34.95 C 51.184 34.95 51.178 33.197 50.466 33.197 L 47.6 33.197 L 47.6 30.859 C 48.064 30.817 48.605 30.923 49.055 30.853 C 50.175 30.678 49.891 29.106 49.295 29.106 L 47.6 29.106 L 47.6 26.769 L 50.348 26.769 C 50.813 26.769 51.134 25.958 50.93 25.484 C 50.905 25.428 50.498 25.016 50.464 25.016 L 47.598 25.016 L 47.598 22.678 C 50.627 23.166 50.627 20.438 47.598 20.925 L 47.598 18.587 L 50.464 18.587 C 50.497 18.587 50.905 18.175 50.93 18.119 C 51.133 17.645 50.811 16.834 50.348 16.834 L 47.6 16.834 L 47.6 14.497 L 49.295 14.497 C 49.377 14.497 49.8 13.989 49.823 13.848 C 50.042 12.542 48.448 12.709 47.6 12.744 L 47.6 10.406 L 50.466 10.406 C 51.178 10.406 51.184 8.653 50.231 8.653 L 47.6 8.653 L 47.6 6.491 C 48.242 6.003 49.778 6.813 49.83 5.553 C 49.888 4.162 48.284 4.987 47.6 4.503 L 47.6 2.048 L 47.775 1.873 L 54.15 1.873 Z\" fill=\"transparent\"></path></svg>',svgContentId:12385708311,withExternalLayout:true,...addPropertyOverrides({CEzWJpsGk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 2.729 39.975 L 0 39.975 L 0 0 L 40 0 L 40 39.975 L 25.809 39.975 C 27.436 39.381 27.745 37.607 26.348 36.515 C 25.396 35.77 24.445 35.824 23.29 35.831 C 21.253 33.24 17.638 32.668 14.581 33.508 L 14.581 25.677 L 18.637 21.626 C 23.264 21.869 27.465 18.546 27.763 13.835 C 27.892 11.803 27.685 11.535 25.616 11.69 C 20.893 12.041 17.617 16.166 17.816 20.804 L 14.581 24 L 14.581 17.376 C 14.581 17.366 14.708 17.366 14.775 17.301 C 18.425 13.742 18.99 8.41 15.671 4.404 C 14.574 3.081 14.02 2.504 12.67 3.972 C 8.979 7.986 9.373 13.907 13.411 17.493 L 13.411 24.155 L 10.021 20.803 C 10.292 16.173 6.924 12.001 2.225 11.684 C 0.31 11.555 -0.042 11.723 0.074 13.678 C 0.359 18.487 4.472 21.829 9.199 21.625 L 13.41 25.831 L 13.41 33.507 C 10.961 32.692 8.033 33.171 6.045 34.834 C 5.839 35.007 5.251 35.703 5.091 35.751 C 4.826 35.83 4.123 35.708 3.721 35.785 C 1.402 36.232 0.109 38.872 2.728 39.975 Z M 38.674 7.442 L 38.674 38.651 C 38.264 38.733 37.634 38.843 37.271 38.612 L 37.271 1.247 L 38.557 1.247 L 38.674 1.364 L 38.674 5.337 C 38.674 5.753 39.743 6.099 39.847 5.262 C 39.944 4.486 39.942 1.985 39.836 1.215 C 39.751 0.584 39.177 0.129 38.56 0.075 C 36.405 -0.115 33.967 0.218 31.78 0.085 C 31.149 0.2 30.723 0.6 30.583 1.227 L 30.561 38.382 C 30.589 39.451 31.258 39.827 32.239 39.901 C 33.81 40.02 36.85 40.051 38.392 39.889 C 39.106 39.814 39.6 39.535 39.826 38.828 L 39.846 7.518 C 39.754 6.726 38.785 6.803 38.675 7.442 Z M 19.236 3.219 C 19.07 3.084 17.747 3.068 17.521 3.133 C 17.036 3.275 17.067 4.108 17.584 4.206 C 17.82 4.25 18.884 4.237 19.11 4.175 C 19.46 4.078 19.511 3.441 19.236 3.219 Z M 20.639 3.132 C 20.274 3.242 20.22 4.032 20.658 4.174 C 20.896 4.251 22.156 4.247 22.344 4.135 C 22.654 3.951 22.614 3.241 22.245 3.134 C 22.086 3.089 20.793 3.086 20.639 3.133 Z M 23.836 3.133 C 23.377 3.268 23.378 4.058 23.836 4.192 C 23.998 4.239 25.114 4.241 25.3 4.206 C 25.818 4.108 25.848 3.275 25.364 3.133 C 25.206 3.087 23.994 3.087 23.836 3.133 Z M 26.956 3.133 C 26.548 3.25 26.548 4.074 26.956 4.192 C 27.165 4.251 28.518 4.238 28.66 4.135 C 28.946 3.933 28.906 3.235 28.561 3.132 C 28.407 3.086 27.115 3.089 26.955 3.133 Z M 4.834 26.572 L 4.834 31.909 C 4.834 31.931 5.109 32.203 5.148 32.219 C 5.464 32.354 6.004 32.141 6.004 31.831 L 6.004 26.571 C 6.496 26.957 6.897 28.138 7.595 28.049 C 8.003 27.998 8.095 27.606 8.012 27.252 L 6.082 24.74 C 5.642 24.344 5.142 24.379 4.715 24.775 L 2.743 27.329 C 2.668 27.808 3.049 28.182 3.532 28.035 C 3.901 27.923 4.454 26.806 4.834 26.571 Z M 24.094 26.572 C 24.469 26.767 25.076 27.941 25.396 28.036 C 25.868 28.177 26.296 27.819 26.183 27.329 C 26.139 27.136 24.496 25.06 24.251 24.817 C 23.659 24.226 23.241 24.397 22.727 24.934 C 22.076 25.616 21.486 26.568 20.896 27.315 C 20.812 27.846 21.147 28.186 21.679 28.018 C 22.091 27.886 22.515 26.882 22.923 26.65 L 22.923 31.676 C 22.923 32.452 24.093 32.359 24.093 31.909 L 24.093 26.572 Z\" fill=\"transparent\"></path><path d=\"M 2.729 39.975 C 0.11 38.872 1.403 36.232 3.722 35.785 C 4.124 35.708 4.827 35.83 5.092 35.751 C 5.252 35.703 5.839 35.007 6.046 34.834 C 8.034 33.171 10.964 32.692 13.411 33.507 L 13.411 25.831 L 9.2 21.625 C 4.473 21.83 0.36 18.489 0.075 13.679 C -0.041 11.724 0.311 11.556 2.226 11.685 C 6.925 12.002 10.293 16.174 10.022 20.804 L 13.413 24.156 L 13.413 17.494 C 9.374 13.908 8.979 7.987 12.671 3.973 C 14.021 2.504 14.575 3.081 15.672 4.405 C 18.991 8.411 18.426 13.743 14.776 17.302 C 14.709 17.367 14.582 17.367 14.582 17.377 L 14.582 24.001 L 17.817 20.805 C 17.618 16.167 20.894 12.042 25.617 11.691 C 27.686 11.536 27.893 11.804 27.764 13.836 C 27.466 18.546 23.265 21.869 18.639 21.627 L 14.582 25.678 L 14.582 33.509 C 17.639 32.669 21.255 33.242 23.291 35.832 C 24.446 35.825 25.397 35.771 26.349 36.516 C 27.746 37.608 27.438 39.382 25.81 39.976 L 10.371 39.976 C 9.793 39.645 9.858 38.887 10.564 38.805 L 25.657 38.772 C 26.703 38.137 25.543 37.129 24.75 37.021 C 24.189 36.945 23.478 37.118 22.938 36.961 C 22.407 36.808 21.994 36.058 21.557 35.692 C 20.132 34.495 17.844 34.127 16.045 34.386 C 15.423 34.476 14.486 34.904 13.993 34.914 C 13.599 34.921 12.97 34.582 12.554 34.481 C 10.528 33.987 8.35 34.43 6.747 35.77 C 6.406 36.054 5.895 36.752 5.515 36.876 C 5.009 37.042 4.45 36.822 3.879 36.955 C 3.426 37.061 2.483 37.574 2.433 38.083 C 2.39 38.528 2.757 38.773 3.154 38.809 C 4.811 38.961 6.684 38.674 8.366 38.822 C 8.967 39.045 8.939 39.665 8.421 39.974 L 2.729 39.974 Z M 14.581 15.741 C 17.637 12.553 17.286 7.253 13.985 4.37 C 10.696 7.197 10.321 12.621 13.411 15.741 L 13.411 10.169 C 13.411 10.151 13.603 9.902 13.622 9.892 C 13.948 9.697 14.581 9.901 14.581 10.247 Z M 2.378 12.857 C 2.019 12.821 1.614 12.883 1.248 12.857 C 1.08 16.766 4.016 20.095 7.914 20.417 L 4.834 17.097 C 4.785 16.617 5.304 16.27 5.721 16.53 L 8.809 19.559 C 8.604 16.139 5.804 13.202 2.377 12.858 Z M 26.589 12.857 L 25.458 12.857 C 25.108 12.857 24.034 13.182 23.664 13.323 C 21.137 14.277 19.21 16.75 19.105 19.481 L 21.987 16.635 C 22.47 16.152 23.234 16.664 22.961 17.298 C 22.117 18.279 20.927 19.157 20.118 20.143 C 20.046 20.23 19.928 20.269 19.962 20.416 C 22.715 20.145 25.126 18.465 26.124 15.859 C 26.254 15.518 26.59 14.456 26.59 14.143 L 26.59 12.857 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.371 39.975 L 8.422 39.975 C 8.939 39.666 8.968 39.045 8.367 38.823 C 6.685 38.675 4.812 38.963 3.155 38.81 C 2.758 38.774 2.391 38.53 2.434 38.084 C 2.484 37.574 3.427 37.063 3.88 36.956 C 4.452 36.822 5.01 37.043 5.516 36.877 C 5.895 36.753 6.407 36.055 6.748 35.771 C 8.351 34.431 10.529 33.988 12.555 34.482 C 12.97 34.583 13.599 34.922 13.994 34.915 C 14.487 34.905 15.424 34.477 16.046 34.388 C 17.845 34.128 20.133 34.497 21.558 35.693 C 21.995 36.059 22.408 36.809 22.939 36.963 C 23.478 37.119 24.19 36.946 24.751 37.022 C 25.545 37.13 26.704 38.139 25.658 38.773 L 10.565 38.806 C 9.859 38.888 9.793 39.646 10.372 39.977 Z M 18.381 35.625 C 17.672 35.77 17.861 36.929 18.656 36.767 C 19.366 36.622 19.176 35.463 18.381 35.625 Z M 9.334 35.703 C 8.736 35.797 8.626 36.767 9.325 36.856 C 10.297 36.981 10.106 35.582 9.334 35.703 Z M 15.695 37.85 C 16.36 38.518 17.178 37.241 16.373 36.899 C 15.747 36.634 15.263 37.417 15.695 37.85 Z\" fill=\"transparent\"></path><path d=\"M 38.674 7.442 C 38.785 6.803 39.753 6.726 39.845 7.518 L 39.825 38.828 C 39.599 39.535 39.105 39.813 38.391 39.889 C 36.849 40.051 33.808 40.02 32.237 39.901 C 31.258 39.827 30.587 39.451 30.56 38.382 L 30.582 1.227 C 30.722 0.6 31.148 0.2 31.779 0.085 C 33.965 0.218 36.403 -0.115 38.559 0.075 C 39.176 0.129 39.75 0.584 39.835 1.215 C 39.941 1.985 39.943 4.486 39.846 5.263 C 39.742 6.099 38.673 5.753 38.673 5.338 L 38.673 1.364 L 38.556 1.247 L 37.27 1.247 L 37.27 38.611 C 37.633 38.842 38.262 38.732 38.673 38.65 L 38.673 7.442 Z M 36.101 1.247 L 31.851 1.247 L 31.734 1.364 L 31.734 3 C 32.191 3.323 33.259 2.773 33.221 3.7 C 33.186 4.541 32.163 4.001 31.734 4.325 L 31.734 5.767 L 33.489 5.767 C 34.124 5.767 34.12 6.935 33.645 6.935 L 31.734 6.935 L 31.734 8.494 C 32.3 8.471 33.363 8.359 33.217 9.23 C 33.201 9.325 32.919 9.662 32.865 9.662 L 31.734 9.662 L 31.734 11.221 L 33.567 11.221 C 33.876 11.221 34.091 11.761 33.954 12.077 C 33.938 12.115 33.667 12.39 33.644 12.39 L 31.733 12.39 L 31.733 13.948 C 33.752 13.623 33.752 15.442 31.733 15.117 L 31.733 16.675 L 33.644 16.675 C 33.666 16.675 33.938 16.95 33.954 16.987 C 34.09 17.303 33.875 17.844 33.567 17.844 L 31.734 17.844 L 31.734 19.402 L 32.865 19.402 C 33.261 19.402 33.45 20.45 32.704 20.567 C 32.404 20.614 32.043 20.544 31.734 20.571 L 31.734 22.129 L 33.645 22.129 C 34.12 22.129 34.124 23.298 33.489 23.298 L 31.734 23.298 L 31.734 24.74 C 32.191 25.062 33.259 24.512 33.221 25.44 C 33.186 26.28 32.163 25.741 31.734 26.065 L 31.734 27.506 L 33.489 27.506 C 34.124 27.506 34.12 28.675 33.645 28.675 L 31.734 28.675 L 31.734 30.233 C 32.339 30.207 33.405 30.12 33.201 31.034 C 33.173 31.162 32.981 31.403 32.866 31.403 L 31.735 31.403 L 31.735 32.961 L 33.568 32.961 C 33.877 32.961 34.092 33.502 33.955 33.818 C 33.939 33.855 33.668 34.13 33.645 34.13 L 31.734 34.13 L 31.734 35.61 C 32.309 35.569 33.475 35.51 33.2 36.412 C 33.178 36.483 32.891 36.779 32.866 36.779 L 31.735 36.779 L 31.735 38.532 C 31.735 38.55 31.979 38.727 32.008 38.727 L 36.102 38.727 L 36.102 1.247 Z M 4.834 26.572 C 4.453 26.807 3.901 27.924 3.532 28.036 C 3.049 28.183 2.669 27.809 2.743 27.33 L 4.715 24.776 C 5.141 24.38 5.642 24.344 6.082 24.741 L 8.013 27.253 C 8.096 27.607 8.003 27.999 7.595 28.05 C 6.897 28.137 6.495 26.958 6.004 26.572 L 6.004 31.832 C 6.004 32.142 5.464 32.355 5.148 32.22 C 5.11 32.203 4.834 31.932 4.834 31.91 L 4.834 26.573 Z M 24.094 26.572 L 24.094 31.909 C 24.094 32.359 22.924 32.452 22.924 31.676 L 22.924 26.65 C 22.516 26.882 22.092 27.888 21.68 28.018 C 21.148 28.188 20.814 27.847 20.897 27.315 C 21.487 26.567 22.077 25.615 22.728 24.934 C 23.242 24.397 23.659 24.226 24.252 24.817 C 24.496 25.06 26.14 27.135 26.184 27.329 C 26.297 27.818 25.869 28.177 25.397 28.036 C 25.077 27.941 24.47 26.767 24.095 26.572 Z M 19.236 3.219 C 19.511 3.441 19.46 4.078 19.11 4.175 C 18.885 4.237 17.82 4.251 17.584 4.206 C 17.066 4.108 17.036 3.275 17.521 3.133 C 17.747 3.067 19.07 3.084 19.236 3.219 Z M 26.956 3.133 C 27.116 3.087 28.408 3.085 28.562 3.132 C 28.907 3.235 28.947 3.934 28.661 4.135 C 28.519 4.236 27.166 4.251 26.957 4.192 C 26.549 4.075 26.549 3.251 26.957 3.133 Z M 20.639 3.132 C 20.793 3.086 22.085 3.089 22.245 3.133 C 22.615 3.24 22.654 3.95 22.344 4.134 C 22.156 4.246 20.896 4.25 20.658 4.173 C 20.22 4.031 20.275 3.241 20.639 3.131 Z M 23.836 3.133 C 23.994 3.088 25.206 3.088 25.364 3.133 C 25.848 3.275 25.818 4.108 25.3 4.206 C 25.114 4.242 23.999 4.24 23.836 4.192 C 23.378 4.058 23.377 3.267 23.836 3.133 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.581 15.741 L 14.581 10.247 C 14.581 9.901 13.948 9.697 13.622 9.892 C 13.604 9.902 13.411 10.151 13.411 10.169 L 13.411 15.741 C 10.321 12.621 10.696 7.196 13.985 4.37 C 17.286 7.253 17.636 12.553 14.581 15.741 Z M 26.589 12.857 L 26.589 14.143 C 26.589 14.456 26.253 15.518 26.123 15.859 C 25.126 18.465 22.714 20.145 19.961 20.416 C 19.927 20.269 20.045 20.231 20.117 20.143 C 20.927 19.156 22.117 18.279 22.96 17.298 C 23.233 16.663 22.469 16.152 21.986 16.635 L 19.104 19.481 C 19.21 16.75 21.138 14.278 23.663 13.323 C 24.034 13.182 25.108 12.857 25.457 12.857 L 26.588 12.857 Z M 2.378 12.857 C 5.805 13.201 8.605 16.139 8.81 19.558 L 5.722 16.529 C 5.305 16.269 4.786 16.616 4.835 17.096 L 7.915 20.416 C 4.016 20.093 1.081 16.765 1.249 12.856 C 1.615 12.882 2.02 12.82 2.379 12.856 Z\" fill=\"transparent\"></path><path d=\"M 18.381 35.625 C 19.176 35.463 19.366 36.622 18.656 36.767 C 17.861 36.929 17.672 35.77 18.381 35.625 Z M 15.695 37.85 C 15.263 37.417 15.747 36.634 16.373 36.899 C 17.178 37.24 16.36 38.518 15.695 37.85 Z M 9.334 35.703 C 10.106 35.582 10.297 36.981 9.325 36.856 C 8.626 36.767 8.736 35.797 9.334 35.703 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 36.101 1.247 L 36.101 38.729 L 32.007 38.729 C 31.978 38.729 31.734 38.552 31.734 38.534 L 31.734 36.781 L 32.865 36.781 C 32.89 36.781 33.177 36.485 33.199 36.415 C 33.474 35.511 32.308 35.571 31.733 35.612 L 31.733 34.132 L 33.644 34.132 C 33.666 34.132 33.937 33.857 33.954 33.82 C 34.09 33.504 33.875 32.964 33.567 32.964 L 31.734 32.964 L 31.734 31.405 L 32.865 31.405 C 32.98 31.405 33.172 31.165 33.2 31.036 C 33.405 30.123 32.337 30.21 31.733 30.235 L 31.733 28.677 L 33.644 28.677 C 34.119 28.677 34.123 27.508 33.487 27.508 L 31.733 27.508 L 31.733 26.067 C 32.161 25.742 33.185 26.281 33.22 25.442 C 33.258 24.515 32.19 25.065 31.733 24.742 L 31.733 23.3 L 33.487 23.3 C 34.123 23.3 34.119 22.131 33.644 22.131 L 31.733 22.131 L 31.733 20.573 C 32.043 20.545 32.403 20.616 32.703 20.569 C 33.45 20.452 33.26 19.404 32.864 19.404 L 31.733 19.404 L 31.733 17.846 L 33.566 17.846 C 33.875 17.846 34.09 17.305 33.953 16.99 C 33.936 16.952 33.666 16.677 33.643 16.677 L 31.732 16.677 L 31.732 15.119 C 33.751 15.444 33.751 13.625 31.732 13.95 L 31.732 12.392 L 33.643 12.392 C 33.665 12.392 33.936 12.117 33.953 12.079 C 34.089 11.764 33.874 11.223 33.566 11.223 L 31.733 11.223 L 31.733 9.665 L 32.864 9.665 C 32.918 9.665 33.2 9.326 33.216 9.232 C 33.361 8.361 32.299 8.473 31.733 8.496 L 31.733 6.937 L 33.644 6.937 C 34.119 6.937 34.123 5.769 33.487 5.769 L 31.733 5.769 L 31.733 4.327 C 32.161 4.002 33.185 4.542 33.22 3.702 C 33.258 2.775 32.19 3.325 31.733 3.002 L 31.733 1.366 L 31.85 1.249 L 36.1 1.249 Z\" fill=\"transparent\"></path></svg>',svgContentId:11355661495},j8eXbWVRE:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 2.729 39.975 L 0 39.975 L 0 0 L 40 0 L 40 39.975 L 25.809 39.975 C 27.436 39.381 27.745 37.607 26.348 36.515 C 25.396 35.77 24.445 35.824 23.29 35.831 C 21.253 33.24 17.638 32.668 14.581 33.508 L 14.581 25.677 L 18.637 21.626 C 23.264 21.869 27.465 18.546 27.763 13.835 C 27.892 11.803 27.685 11.535 25.616 11.69 C 20.893 12.041 17.617 16.166 17.816 20.804 L 14.581 24 L 14.581 17.376 C 14.581 17.366 14.708 17.366 14.775 17.301 C 18.425 13.742 18.99 8.41 15.671 4.404 C 14.574 3.081 14.02 2.504 12.67 3.972 C 8.979 7.986 9.373 13.907 13.411 17.493 L 13.411 24.155 L 10.021 20.803 C 10.292 16.173 6.924 12.001 2.225 11.684 C 0.31 11.555 -0.042 11.723 0.074 13.678 C 0.359 18.487 4.472 21.829 9.199 21.625 L 13.41 25.831 L 13.41 33.507 C 10.961 32.692 8.033 33.171 6.045 34.834 C 5.839 35.007 5.251 35.703 5.091 35.751 C 4.826 35.83 4.123 35.708 3.721 35.785 C 1.402 36.232 0.109 38.872 2.728 39.975 Z M 38.674 7.442 L 38.674 38.651 C 38.264 38.733 37.634 38.843 37.271 38.612 L 37.271 1.247 L 38.557 1.247 L 38.674 1.364 L 38.674 5.337 C 38.674 5.753 39.743 6.099 39.847 5.262 C 39.944 4.486 39.942 1.985 39.836 1.215 C 39.751 0.584 39.177 0.129 38.56 0.075 C 36.405 -0.115 33.967 0.218 31.78 0.085 C 31.149 0.2 30.723 0.6 30.583 1.227 L 30.561 38.382 C 30.589 39.451 31.258 39.827 32.239 39.901 C 33.81 40.02 36.85 40.051 38.392 39.889 C 39.106 39.814 39.6 39.535 39.826 38.828 L 39.846 7.518 C 39.754 6.726 38.785 6.803 38.675 7.442 Z M 19.236 3.219 C 19.07 3.084 17.747 3.068 17.521 3.133 C 17.036 3.275 17.067 4.108 17.584 4.206 C 17.82 4.25 18.884 4.237 19.11 4.175 C 19.46 4.078 19.511 3.441 19.236 3.219 Z M 20.639 3.132 C 20.274 3.242 20.22 4.032 20.658 4.174 C 20.896 4.251 22.156 4.247 22.344 4.135 C 22.654 3.951 22.614 3.241 22.245 3.134 C 22.086 3.089 20.793 3.086 20.639 3.133 Z M 23.836 3.133 C 23.377 3.268 23.378 4.058 23.836 4.192 C 23.998 4.239 25.114 4.241 25.3 4.206 C 25.818 4.108 25.848 3.275 25.364 3.133 C 25.206 3.087 23.994 3.087 23.836 3.133 Z M 26.956 3.133 C 26.548 3.25 26.548 4.074 26.956 4.192 C 27.165 4.251 28.518 4.238 28.66 4.135 C 28.946 3.933 28.906 3.235 28.561 3.132 C 28.407 3.086 27.115 3.089 26.955 3.133 Z M 4.834 26.572 L 4.834 31.909 C 4.834 31.931 5.109 32.203 5.148 32.219 C 5.464 32.354 6.004 32.141 6.004 31.831 L 6.004 26.571 C 6.496 26.957 6.897 28.138 7.595 28.049 C 8.003 27.998 8.095 27.606 8.012 27.252 L 6.082 24.74 C 5.642 24.344 5.142 24.379 4.715 24.775 L 2.743 27.329 C 2.668 27.808 3.049 28.182 3.532 28.035 C 3.901 27.923 4.454 26.806 4.834 26.571 Z M 24.094 26.572 C 24.469 26.767 25.076 27.941 25.396 28.036 C 25.868 28.177 26.296 27.819 26.183 27.329 C 26.139 27.136 24.496 25.06 24.251 24.817 C 23.659 24.226 23.241 24.397 22.727 24.934 C 22.076 25.616 21.486 26.568 20.896 27.315 C 20.812 27.846 21.147 28.186 21.679 28.018 C 22.091 27.886 22.515 26.882 22.923 26.65 L 22.923 31.676 C 22.923 32.452 24.093 32.359 24.093 31.909 L 24.093 26.572 Z\" fill=\"transparent\"></path><path d=\"M 2.729 39.975 C 0.11 38.872 1.403 36.232 3.722 35.785 C 4.124 35.708 4.827 35.83 5.092 35.751 C 5.252 35.703 5.839 35.007 6.046 34.834 C 8.034 33.171 10.964 32.692 13.411 33.507 L 13.411 25.831 L 9.2 21.625 C 4.473 21.83 0.36 18.489 0.075 13.679 C -0.041 11.724 0.311 11.556 2.226 11.685 C 6.925 12.002 10.293 16.174 10.022 20.804 L 13.413 24.156 L 13.413 17.494 C 9.374 13.908 8.979 7.987 12.671 3.973 C 14.021 2.504 14.575 3.081 15.672 4.405 C 18.991 8.411 18.426 13.743 14.776 17.302 C 14.709 17.367 14.582 17.367 14.582 17.377 L 14.582 24.001 L 17.817 20.805 C 17.618 16.167 20.894 12.042 25.617 11.691 C 27.686 11.536 27.893 11.804 27.764 13.836 C 27.466 18.546 23.265 21.869 18.639 21.627 L 14.582 25.678 L 14.582 33.509 C 17.639 32.669 21.255 33.242 23.291 35.832 C 24.446 35.825 25.397 35.771 26.349 36.516 C 27.746 37.608 27.438 39.382 25.81 39.976 L 10.371 39.976 C 9.793 39.645 9.858 38.887 10.564 38.805 L 25.657 38.772 C 26.703 38.137 25.543 37.129 24.75 37.021 C 24.189 36.945 23.478 37.118 22.938 36.961 C 22.407 36.808 21.994 36.058 21.557 35.692 C 20.132 34.495 17.844 34.127 16.045 34.386 C 15.423 34.476 14.486 34.904 13.993 34.914 C 13.599 34.921 12.97 34.582 12.554 34.481 C 10.528 33.987 8.35 34.43 6.747 35.77 C 6.406 36.054 5.895 36.752 5.515 36.876 C 5.009 37.042 4.45 36.822 3.879 36.955 C 3.426 37.061 2.483 37.574 2.433 38.083 C 2.39 38.528 2.757 38.773 3.154 38.809 C 4.811 38.961 6.684 38.674 8.366 38.822 C 8.967 39.045 8.939 39.665 8.421 39.974 L 2.729 39.974 Z M 14.581 15.741 C 17.637 12.553 17.286 7.253 13.985 4.37 C 10.696 7.197 10.321 12.621 13.411 15.741 L 13.411 10.169 C 13.411 10.151 13.603 9.902 13.622 9.892 C 13.948 9.697 14.581 9.901 14.581 10.247 Z M 2.378 12.857 C 2.019 12.821 1.614 12.883 1.248 12.857 C 1.08 16.766 4.016 20.095 7.914 20.417 L 4.834 17.097 C 4.785 16.617 5.304 16.27 5.721 16.53 L 8.809 19.559 C 8.604 16.139 5.804 13.202 2.377 12.858 Z M 26.589 12.857 L 25.458 12.857 C 25.108 12.857 24.034 13.182 23.664 13.323 C 21.137 14.277 19.21 16.75 19.105 19.481 L 21.987 16.635 C 22.47 16.152 23.234 16.664 22.961 17.298 C 22.117 18.279 20.927 19.157 20.118 20.143 C 20.046 20.23 19.928 20.269 19.962 20.416 C 22.715 20.145 25.126 18.465 26.124 15.859 C 26.254 15.518 26.59 14.456 26.59 14.143 L 26.59 12.857 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.371 39.975 L 8.422 39.975 C 8.939 39.666 8.968 39.045 8.367 38.823 C 6.685 38.675 4.812 38.963 3.155 38.81 C 2.758 38.774 2.391 38.53 2.434 38.084 C 2.484 37.574 3.427 37.063 3.88 36.956 C 4.452 36.822 5.01 37.043 5.516 36.877 C 5.895 36.753 6.407 36.055 6.748 35.771 C 8.351 34.431 10.529 33.988 12.555 34.482 C 12.97 34.583 13.599 34.922 13.994 34.915 C 14.487 34.905 15.424 34.477 16.046 34.388 C 17.845 34.128 20.133 34.497 21.558 35.693 C 21.995 36.059 22.408 36.809 22.939 36.963 C 23.478 37.119 24.19 36.946 24.751 37.022 C 25.545 37.13 26.704 38.139 25.658 38.773 L 10.565 38.806 C 9.859 38.888 9.793 39.646 10.372 39.977 Z M 18.381 35.625 C 17.672 35.77 17.861 36.929 18.656 36.767 C 19.366 36.622 19.176 35.463 18.381 35.625 Z M 9.334 35.703 C 8.736 35.797 8.626 36.767 9.325 36.856 C 10.297 36.981 10.106 35.582 9.334 35.703 Z M 15.695 37.85 C 16.36 38.518 17.178 37.241 16.373 36.899 C 15.747 36.634 15.263 37.417 15.695 37.85 Z\" fill=\"transparent\"></path><path d=\"M 38.674 7.442 C 38.785 6.803 39.753 6.726 39.845 7.518 L 39.825 38.828 C 39.599 39.535 39.105 39.813 38.391 39.889 C 36.849 40.051 33.808 40.02 32.237 39.901 C 31.258 39.827 30.587 39.451 30.56 38.382 L 30.582 1.227 C 30.722 0.6 31.148 0.2 31.779 0.085 C 33.965 0.218 36.403 -0.115 38.559 0.075 C 39.176 0.129 39.75 0.584 39.835 1.215 C 39.941 1.985 39.943 4.486 39.846 5.263 C 39.742 6.099 38.673 5.753 38.673 5.338 L 38.673 1.364 L 38.556 1.247 L 37.27 1.247 L 37.27 38.611 C 37.633 38.842 38.262 38.732 38.673 38.65 L 38.673 7.442 Z M 36.101 1.247 L 31.851 1.247 L 31.734 1.364 L 31.734 3 C 32.191 3.323 33.259 2.773 33.221 3.7 C 33.186 4.541 32.163 4.001 31.734 4.325 L 31.734 5.767 L 33.489 5.767 C 34.124 5.767 34.12 6.935 33.645 6.935 L 31.734 6.935 L 31.734 8.494 C 32.3 8.471 33.363 8.359 33.217 9.23 C 33.201 9.325 32.919 9.662 32.865 9.662 L 31.734 9.662 L 31.734 11.221 L 33.567 11.221 C 33.876 11.221 34.091 11.761 33.954 12.077 C 33.938 12.115 33.667 12.39 33.644 12.39 L 31.733 12.39 L 31.733 13.948 C 33.752 13.623 33.752 15.442 31.733 15.117 L 31.733 16.675 L 33.644 16.675 C 33.666 16.675 33.938 16.95 33.954 16.987 C 34.09 17.303 33.875 17.844 33.567 17.844 L 31.734 17.844 L 31.734 19.402 L 32.865 19.402 C 33.261 19.402 33.45 20.45 32.704 20.567 C 32.404 20.614 32.043 20.544 31.734 20.571 L 31.734 22.129 L 33.645 22.129 C 34.12 22.129 34.124 23.298 33.489 23.298 L 31.734 23.298 L 31.734 24.74 C 32.191 25.062 33.259 24.512 33.221 25.44 C 33.186 26.28 32.163 25.741 31.734 26.065 L 31.734 27.506 L 33.489 27.506 C 34.124 27.506 34.12 28.675 33.645 28.675 L 31.734 28.675 L 31.734 30.233 C 32.339 30.207 33.405 30.12 33.201 31.034 C 33.173 31.162 32.981 31.403 32.866 31.403 L 31.735 31.403 L 31.735 32.961 L 33.568 32.961 C 33.877 32.961 34.092 33.502 33.955 33.818 C 33.939 33.855 33.668 34.13 33.645 34.13 L 31.734 34.13 L 31.734 35.61 C 32.309 35.569 33.475 35.51 33.2 36.412 C 33.178 36.483 32.891 36.779 32.866 36.779 L 31.735 36.779 L 31.735 38.532 C 31.735 38.55 31.979 38.727 32.008 38.727 L 36.102 38.727 L 36.102 1.247 Z M 4.834 26.572 C 4.453 26.807 3.901 27.924 3.532 28.036 C 3.049 28.183 2.669 27.809 2.743 27.33 L 4.715 24.776 C 5.141 24.38 5.642 24.344 6.082 24.741 L 8.013 27.253 C 8.096 27.607 8.003 27.999 7.595 28.05 C 6.897 28.137 6.495 26.958 6.004 26.572 L 6.004 31.832 C 6.004 32.142 5.464 32.355 5.148 32.22 C 5.11 32.203 4.834 31.932 4.834 31.91 L 4.834 26.573 Z M 24.094 26.572 L 24.094 31.909 C 24.094 32.359 22.924 32.452 22.924 31.676 L 22.924 26.65 C 22.516 26.882 22.092 27.888 21.68 28.018 C 21.148 28.188 20.814 27.847 20.897 27.315 C 21.487 26.567 22.077 25.615 22.728 24.934 C 23.242 24.397 23.659 24.226 24.252 24.817 C 24.496 25.06 26.14 27.135 26.184 27.329 C 26.297 27.818 25.869 28.177 25.397 28.036 C 25.077 27.941 24.47 26.767 24.095 26.572 Z M 19.236 3.219 C 19.511 3.441 19.46 4.078 19.11 4.175 C 18.885 4.237 17.82 4.251 17.584 4.206 C 17.066 4.108 17.036 3.275 17.521 3.133 C 17.747 3.067 19.07 3.084 19.236 3.219 Z M 26.956 3.133 C 27.116 3.087 28.408 3.085 28.562 3.132 C 28.907 3.235 28.947 3.934 28.661 4.135 C 28.519 4.236 27.166 4.251 26.957 4.192 C 26.549 4.075 26.549 3.251 26.957 3.133 Z M 20.639 3.132 C 20.793 3.086 22.085 3.089 22.245 3.133 C 22.615 3.24 22.654 3.95 22.344 4.134 C 22.156 4.246 20.896 4.25 20.658 4.173 C 20.22 4.031 20.275 3.241 20.639 3.131 Z M 23.836 3.133 C 23.994 3.088 25.206 3.088 25.364 3.133 C 25.848 3.275 25.818 4.108 25.3 4.206 C 25.114 4.242 23.999 4.24 23.836 4.192 C 23.378 4.058 23.377 3.267 23.836 3.133 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.581 15.741 L 14.581 10.247 C 14.581 9.901 13.948 9.697 13.622 9.892 C 13.604 9.902 13.411 10.151 13.411 10.169 L 13.411 15.741 C 10.321 12.621 10.696 7.196 13.985 4.37 C 17.286 7.253 17.636 12.553 14.581 15.741 Z M 26.589 12.857 L 26.589 14.143 C 26.589 14.456 26.253 15.518 26.123 15.859 C 25.126 18.465 22.714 20.145 19.961 20.416 C 19.927 20.269 20.045 20.231 20.117 20.143 C 20.927 19.156 22.117 18.279 22.96 17.298 C 23.233 16.663 22.469 16.152 21.986 16.635 L 19.104 19.481 C 19.21 16.75 21.138 14.278 23.663 13.323 C 24.034 13.182 25.108 12.857 25.457 12.857 L 26.588 12.857 Z M 2.378 12.857 C 5.805 13.201 8.605 16.139 8.81 19.558 L 5.722 16.529 C 5.305 16.269 4.786 16.616 4.835 17.096 L 7.915 20.416 C 4.016 20.093 1.081 16.765 1.249 12.856 C 1.615 12.882 2.02 12.82 2.379 12.856 Z\" fill=\"transparent\"></path><path d=\"M 18.381 35.625 C 19.176 35.463 19.366 36.622 18.656 36.767 C 17.861 36.929 17.672 35.77 18.381 35.625 Z M 15.695 37.85 C 15.263 37.417 15.747 36.634 16.373 36.899 C 17.178 37.24 16.36 38.518 15.695 37.85 Z M 9.334 35.703 C 10.106 35.582 10.297 36.981 9.325 36.856 C 8.626 36.767 8.736 35.797 9.334 35.703 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 36.101 1.247 L 36.101 38.729 L 32.007 38.729 C 31.978 38.729 31.734 38.552 31.734 38.534 L 31.734 36.781 L 32.865 36.781 C 32.89 36.781 33.177 36.485 33.199 36.415 C 33.474 35.511 32.308 35.571 31.733 35.612 L 31.733 34.132 L 33.644 34.132 C 33.666 34.132 33.937 33.857 33.954 33.82 C 34.09 33.504 33.875 32.964 33.567 32.964 L 31.734 32.964 L 31.734 31.405 L 32.865 31.405 C 32.98 31.405 33.172 31.165 33.2 31.036 C 33.405 30.123 32.337 30.21 31.733 30.235 L 31.733 28.677 L 33.644 28.677 C 34.119 28.677 34.123 27.508 33.487 27.508 L 31.733 27.508 L 31.733 26.067 C 32.161 25.742 33.185 26.281 33.22 25.442 C 33.258 24.515 32.19 25.065 31.733 24.742 L 31.733 23.3 L 33.487 23.3 C 34.123 23.3 34.119 22.131 33.644 22.131 L 31.733 22.131 L 31.733 20.573 C 32.043 20.545 32.403 20.616 32.703 20.569 C 33.45 20.452 33.26 19.404 32.864 19.404 L 31.733 19.404 L 31.733 17.846 L 33.566 17.846 C 33.875 17.846 34.09 17.305 33.953 16.99 C 33.936 16.952 33.666 16.677 33.643 16.677 L 31.732 16.677 L 31.732 15.119 C 33.751 15.444 33.751 13.625 31.732 13.95 L 31.732 12.392 L 33.643 12.392 C 33.665 12.392 33.936 12.117 33.953 12.079 C 34.089 11.764 33.874 11.223 33.566 11.223 L 31.733 11.223 L 31.733 9.665 L 32.864 9.665 C 32.918 9.665 33.2 9.326 33.216 9.232 C 33.361 8.361 32.299 8.473 31.733 8.496 L 31.733 6.937 L 33.644 6.937 C 34.119 6.937 34.123 5.769 33.487 5.769 L 31.733 5.769 L 31.733 4.327 C 32.161 4.002 33.185 4.542 33.22 3.702 C 33.258 2.775 32.19 3.325 31.733 3.002 L 31.733 1.366 L 31.85 1.249 L 36.1 1.249 Z\" fill=\"transparent\"></path></svg>',svgContentId:11355661495},tQsTR4DAV:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 2.729 39.975 L 0 39.975 L 0 0 L 40 0 L 40 39.975 L 25.809 39.975 C 27.436 39.381 27.745 37.607 26.348 36.515 C 25.396 35.77 24.445 35.824 23.29 35.831 C 21.253 33.24 17.638 32.668 14.581 33.508 L 14.581 25.677 L 18.637 21.626 C 23.264 21.869 27.465 18.546 27.763 13.835 C 27.892 11.803 27.685 11.535 25.616 11.69 C 20.893 12.041 17.617 16.166 17.816 20.804 L 14.581 24 L 14.581 17.376 C 14.581 17.366 14.708 17.366 14.775 17.301 C 18.425 13.742 18.99 8.41 15.671 4.404 C 14.574 3.081 14.02 2.504 12.67 3.972 C 8.979 7.986 9.373 13.907 13.411 17.493 L 13.411 24.155 L 10.021 20.803 C 10.292 16.173 6.924 12.001 2.225 11.684 C 0.31 11.555 -0.042 11.723 0.074 13.678 C 0.359 18.487 4.472 21.829 9.199 21.625 L 13.41 25.831 L 13.41 33.507 C 10.961 32.692 8.033 33.171 6.045 34.834 C 5.839 35.007 5.251 35.703 5.091 35.751 C 4.826 35.83 4.123 35.708 3.721 35.785 C 1.402 36.232 0.109 38.872 2.728 39.975 Z M 38.674 7.442 L 38.674 38.651 C 38.264 38.733 37.634 38.843 37.271 38.612 L 37.271 1.247 L 38.557 1.247 L 38.674 1.364 L 38.674 5.337 C 38.674 5.753 39.743 6.099 39.847 5.262 C 39.944 4.486 39.942 1.985 39.836 1.215 C 39.751 0.584 39.177 0.129 38.56 0.075 C 36.405 -0.115 33.967 0.218 31.78 0.085 C 31.149 0.2 30.723 0.6 30.583 1.227 L 30.561 38.382 C 30.589 39.451 31.258 39.827 32.239 39.901 C 33.81 40.02 36.85 40.051 38.392 39.889 C 39.106 39.814 39.6 39.535 39.826 38.828 L 39.846 7.518 C 39.754 6.726 38.785 6.803 38.675 7.442 Z M 19.236 3.219 C 19.07 3.084 17.747 3.068 17.521 3.133 C 17.036 3.275 17.067 4.108 17.584 4.206 C 17.82 4.25 18.884 4.237 19.11 4.175 C 19.46 4.078 19.511 3.441 19.236 3.219 Z M 20.639 3.132 C 20.274 3.242 20.22 4.032 20.658 4.174 C 20.896 4.251 22.156 4.247 22.344 4.135 C 22.654 3.951 22.614 3.241 22.245 3.134 C 22.086 3.089 20.793 3.086 20.639 3.133 Z M 23.836 3.133 C 23.377 3.268 23.378 4.058 23.836 4.192 C 23.998 4.239 25.114 4.241 25.3 4.206 C 25.818 4.108 25.848 3.275 25.364 3.133 C 25.206 3.087 23.994 3.087 23.836 3.133 Z M 26.956 3.133 C 26.548 3.25 26.548 4.074 26.956 4.192 C 27.165 4.251 28.518 4.238 28.66 4.135 C 28.946 3.933 28.906 3.235 28.561 3.132 C 28.407 3.086 27.115 3.089 26.955 3.133 Z M 4.834 26.572 L 4.834 31.909 C 4.834 31.931 5.109 32.203 5.148 32.219 C 5.464 32.354 6.004 32.141 6.004 31.831 L 6.004 26.571 C 6.496 26.957 6.897 28.138 7.595 28.049 C 8.003 27.998 8.095 27.606 8.012 27.252 L 6.082 24.74 C 5.642 24.344 5.142 24.379 4.715 24.775 L 2.743 27.329 C 2.668 27.808 3.049 28.182 3.532 28.035 C 3.901 27.923 4.454 26.806 4.834 26.571 Z M 24.094 26.572 C 24.469 26.767 25.076 27.941 25.396 28.036 C 25.868 28.177 26.296 27.819 26.183 27.329 C 26.139 27.136 24.496 25.06 24.251 24.817 C 23.659 24.226 23.241 24.397 22.727 24.934 C 22.076 25.616 21.486 26.568 20.896 27.315 C 20.812 27.846 21.147 28.186 21.679 28.018 C 22.091 27.886 22.515 26.882 22.923 26.65 L 22.923 31.676 C 22.923 32.452 24.093 32.359 24.093 31.909 L 24.093 26.572 Z\" fill=\"transparent\"></path><path d=\"M 2.729 39.975 C 0.11 38.872 1.403 36.232 3.722 35.785 C 4.124 35.708 4.827 35.83 5.092 35.751 C 5.252 35.703 5.839 35.007 6.046 34.834 C 8.034 33.171 10.964 32.692 13.411 33.507 L 13.411 25.831 L 9.2 21.625 C 4.473 21.83 0.36 18.489 0.075 13.679 C -0.041 11.724 0.311 11.556 2.226 11.685 C 6.925 12.002 10.293 16.174 10.022 20.804 L 13.413 24.156 L 13.413 17.494 C 9.374 13.908 8.979 7.987 12.671 3.973 C 14.021 2.504 14.575 3.081 15.672 4.405 C 18.991 8.411 18.426 13.743 14.776 17.302 C 14.709 17.367 14.582 17.367 14.582 17.377 L 14.582 24.001 L 17.817 20.805 C 17.618 16.167 20.894 12.042 25.617 11.691 C 27.686 11.536 27.893 11.804 27.764 13.836 C 27.466 18.546 23.265 21.869 18.639 21.627 L 14.582 25.678 L 14.582 33.509 C 17.639 32.669 21.255 33.242 23.291 35.832 C 24.446 35.825 25.397 35.771 26.349 36.516 C 27.746 37.608 27.438 39.382 25.81 39.976 L 10.371 39.976 C 9.793 39.645 9.858 38.887 10.564 38.805 L 25.657 38.772 C 26.703 38.137 25.543 37.129 24.75 37.021 C 24.189 36.945 23.478 37.118 22.938 36.961 C 22.407 36.808 21.994 36.058 21.557 35.692 C 20.132 34.495 17.844 34.127 16.045 34.386 C 15.423 34.476 14.486 34.904 13.993 34.914 C 13.599 34.921 12.97 34.582 12.554 34.481 C 10.528 33.987 8.35 34.43 6.747 35.77 C 6.406 36.054 5.895 36.752 5.515 36.876 C 5.009 37.042 4.45 36.822 3.879 36.955 C 3.426 37.061 2.483 37.574 2.433 38.083 C 2.39 38.528 2.757 38.773 3.154 38.809 C 4.811 38.961 6.684 38.674 8.366 38.822 C 8.967 39.045 8.939 39.665 8.421 39.974 L 2.729 39.974 Z M 14.581 15.741 C 17.637 12.553 17.286 7.253 13.985 4.37 C 10.696 7.197 10.321 12.621 13.411 15.741 L 13.411 10.169 C 13.411 10.151 13.603 9.902 13.622 9.892 C 13.948 9.697 14.581 9.901 14.581 10.247 Z M 2.378 12.857 C 2.019 12.821 1.614 12.883 1.248 12.857 C 1.08 16.766 4.016 20.095 7.914 20.417 L 4.834 17.097 C 4.785 16.617 5.304 16.27 5.721 16.53 L 8.809 19.559 C 8.604 16.139 5.804 13.202 2.377 12.858 Z M 26.589 12.857 L 25.458 12.857 C 25.108 12.857 24.034 13.182 23.664 13.323 C 21.137 14.277 19.21 16.75 19.105 19.481 L 21.987 16.635 C 22.47 16.152 23.234 16.664 22.961 17.298 C 22.117 18.279 20.927 19.157 20.118 20.143 C 20.046 20.23 19.928 20.269 19.962 20.416 C 22.715 20.145 25.126 18.465 26.124 15.859 C 26.254 15.518 26.59 14.456 26.59 14.143 L 26.59 12.857 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.371 39.975 L 8.422 39.975 C 8.939 39.666 8.968 39.045 8.367 38.823 C 6.685 38.675 4.812 38.963 3.155 38.81 C 2.758 38.774 2.391 38.53 2.434 38.084 C 2.484 37.574 3.427 37.063 3.88 36.956 C 4.452 36.822 5.01 37.043 5.516 36.877 C 5.895 36.753 6.407 36.055 6.748 35.771 C 8.351 34.431 10.529 33.988 12.555 34.482 C 12.97 34.583 13.599 34.922 13.994 34.915 C 14.487 34.905 15.424 34.477 16.046 34.388 C 17.845 34.128 20.133 34.497 21.558 35.693 C 21.995 36.059 22.408 36.809 22.939 36.963 C 23.478 37.119 24.19 36.946 24.751 37.022 C 25.545 37.13 26.704 38.139 25.658 38.773 L 10.565 38.806 C 9.859 38.888 9.793 39.646 10.372 39.977 Z M 18.381 35.625 C 17.672 35.77 17.861 36.929 18.656 36.767 C 19.366 36.622 19.176 35.463 18.381 35.625 Z M 9.334 35.703 C 8.736 35.797 8.626 36.767 9.325 36.856 C 10.297 36.981 10.106 35.582 9.334 35.703 Z M 15.695 37.85 C 16.36 38.518 17.178 37.241 16.373 36.899 C 15.747 36.634 15.263 37.417 15.695 37.85 Z\" fill=\"transparent\"></path><path d=\"M 38.674 7.442 C 38.785 6.803 39.753 6.726 39.845 7.518 L 39.825 38.828 C 39.599 39.535 39.105 39.813 38.391 39.889 C 36.849 40.051 33.808 40.02 32.237 39.901 C 31.258 39.827 30.587 39.451 30.56 38.382 L 30.582 1.227 C 30.722 0.6 31.148 0.2 31.779 0.085 C 33.965 0.218 36.403 -0.115 38.559 0.075 C 39.176 0.129 39.75 0.584 39.835 1.215 C 39.941 1.985 39.943 4.486 39.846 5.263 C 39.742 6.099 38.673 5.753 38.673 5.338 L 38.673 1.364 L 38.556 1.247 L 37.27 1.247 L 37.27 38.611 C 37.633 38.842 38.262 38.732 38.673 38.65 L 38.673 7.442 Z M 36.101 1.247 L 31.851 1.247 L 31.734 1.364 L 31.734 3 C 32.191 3.323 33.259 2.773 33.221 3.7 C 33.186 4.541 32.163 4.001 31.734 4.325 L 31.734 5.767 L 33.489 5.767 C 34.124 5.767 34.12 6.935 33.645 6.935 L 31.734 6.935 L 31.734 8.494 C 32.3 8.471 33.363 8.359 33.217 9.23 C 33.201 9.325 32.919 9.662 32.865 9.662 L 31.734 9.662 L 31.734 11.221 L 33.567 11.221 C 33.876 11.221 34.091 11.761 33.954 12.077 C 33.938 12.115 33.667 12.39 33.644 12.39 L 31.733 12.39 L 31.733 13.948 C 33.752 13.623 33.752 15.442 31.733 15.117 L 31.733 16.675 L 33.644 16.675 C 33.666 16.675 33.938 16.95 33.954 16.987 C 34.09 17.303 33.875 17.844 33.567 17.844 L 31.734 17.844 L 31.734 19.402 L 32.865 19.402 C 33.261 19.402 33.45 20.45 32.704 20.567 C 32.404 20.614 32.043 20.544 31.734 20.571 L 31.734 22.129 L 33.645 22.129 C 34.12 22.129 34.124 23.298 33.489 23.298 L 31.734 23.298 L 31.734 24.74 C 32.191 25.062 33.259 24.512 33.221 25.44 C 33.186 26.28 32.163 25.741 31.734 26.065 L 31.734 27.506 L 33.489 27.506 C 34.124 27.506 34.12 28.675 33.645 28.675 L 31.734 28.675 L 31.734 30.233 C 32.339 30.207 33.405 30.12 33.201 31.034 C 33.173 31.162 32.981 31.403 32.866 31.403 L 31.735 31.403 L 31.735 32.961 L 33.568 32.961 C 33.877 32.961 34.092 33.502 33.955 33.818 C 33.939 33.855 33.668 34.13 33.645 34.13 L 31.734 34.13 L 31.734 35.61 C 32.309 35.569 33.475 35.51 33.2 36.412 C 33.178 36.483 32.891 36.779 32.866 36.779 L 31.735 36.779 L 31.735 38.532 C 31.735 38.55 31.979 38.727 32.008 38.727 L 36.102 38.727 L 36.102 1.247 Z M 4.834 26.572 C 4.453 26.807 3.901 27.924 3.532 28.036 C 3.049 28.183 2.669 27.809 2.743 27.33 L 4.715 24.776 C 5.141 24.38 5.642 24.344 6.082 24.741 L 8.013 27.253 C 8.096 27.607 8.003 27.999 7.595 28.05 C 6.897 28.137 6.495 26.958 6.004 26.572 L 6.004 31.832 C 6.004 32.142 5.464 32.355 5.148 32.22 C 5.11 32.203 4.834 31.932 4.834 31.91 L 4.834 26.573 Z M 24.094 26.572 L 24.094 31.909 C 24.094 32.359 22.924 32.452 22.924 31.676 L 22.924 26.65 C 22.516 26.882 22.092 27.888 21.68 28.018 C 21.148 28.188 20.814 27.847 20.897 27.315 C 21.487 26.567 22.077 25.615 22.728 24.934 C 23.242 24.397 23.659 24.226 24.252 24.817 C 24.496 25.06 26.14 27.135 26.184 27.329 C 26.297 27.818 25.869 28.177 25.397 28.036 C 25.077 27.941 24.47 26.767 24.095 26.572 Z M 19.236 3.219 C 19.511 3.441 19.46 4.078 19.11 4.175 C 18.885 4.237 17.82 4.251 17.584 4.206 C 17.066 4.108 17.036 3.275 17.521 3.133 C 17.747 3.067 19.07 3.084 19.236 3.219 Z M 26.956 3.133 C 27.116 3.087 28.408 3.085 28.562 3.132 C 28.907 3.235 28.947 3.934 28.661 4.135 C 28.519 4.236 27.166 4.251 26.957 4.192 C 26.549 4.075 26.549 3.251 26.957 3.133 Z M 20.639 3.132 C 20.793 3.086 22.085 3.089 22.245 3.133 C 22.615 3.24 22.654 3.95 22.344 4.134 C 22.156 4.246 20.896 4.25 20.658 4.173 C 20.22 4.031 20.275 3.241 20.639 3.131 Z M 23.836 3.133 C 23.994 3.088 25.206 3.088 25.364 3.133 C 25.848 3.275 25.818 4.108 25.3 4.206 C 25.114 4.242 23.999 4.24 23.836 4.192 C 23.378 4.058 23.377 3.267 23.836 3.133 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.581 15.741 L 14.581 10.247 C 14.581 9.901 13.948 9.697 13.622 9.892 C 13.604 9.902 13.411 10.151 13.411 10.169 L 13.411 15.741 C 10.321 12.621 10.696 7.196 13.985 4.37 C 17.286 7.253 17.636 12.553 14.581 15.741 Z M 26.589 12.857 L 26.589 14.143 C 26.589 14.456 26.253 15.518 26.123 15.859 C 25.126 18.465 22.714 20.145 19.961 20.416 C 19.927 20.269 20.045 20.231 20.117 20.143 C 20.927 19.156 22.117 18.279 22.96 17.298 C 23.233 16.663 22.469 16.152 21.986 16.635 L 19.104 19.481 C 19.21 16.75 21.138 14.278 23.663 13.323 C 24.034 13.182 25.108 12.857 25.457 12.857 L 26.588 12.857 Z M 2.378 12.857 C 5.805 13.201 8.605 16.139 8.81 19.558 L 5.722 16.529 C 5.305 16.269 4.786 16.616 4.835 17.096 L 7.915 20.416 C 4.016 20.093 1.081 16.765 1.249 12.856 C 1.615 12.882 2.02 12.82 2.379 12.856 Z\" fill=\"transparent\"></path><path d=\"M 18.381 35.625 C 19.176 35.463 19.366 36.622 18.656 36.767 C 17.861 36.929 17.672 35.77 18.381 35.625 Z M 15.695 37.85 C 15.263 37.417 15.747 36.634 16.373 36.899 C 17.178 37.24 16.36 38.518 15.695 37.85 Z M 9.334 35.703 C 10.106 35.582 10.297 36.981 9.325 36.856 C 8.626 36.767 8.736 35.797 9.334 35.703 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 36.101 1.247 L 36.101 38.729 L 32.007 38.729 C 31.978 38.729 31.734 38.552 31.734 38.534 L 31.734 36.781 L 32.865 36.781 C 32.89 36.781 33.177 36.485 33.199 36.415 C 33.474 35.511 32.308 35.571 31.733 35.612 L 31.733 34.132 L 33.644 34.132 C 33.666 34.132 33.937 33.857 33.954 33.82 C 34.09 33.504 33.875 32.964 33.567 32.964 L 31.734 32.964 L 31.734 31.405 L 32.865 31.405 C 32.98 31.405 33.172 31.165 33.2 31.036 C 33.405 30.123 32.337 30.21 31.733 30.235 L 31.733 28.677 L 33.644 28.677 C 34.119 28.677 34.123 27.508 33.487 27.508 L 31.733 27.508 L 31.733 26.067 C 32.161 25.742 33.185 26.281 33.22 25.442 C 33.258 24.515 32.19 25.065 31.733 24.742 L 31.733 23.3 L 33.487 23.3 C 34.123 23.3 34.119 22.131 33.644 22.131 L 31.733 22.131 L 31.733 20.573 C 32.043 20.545 32.403 20.616 32.703 20.569 C 33.45 20.452 33.26 19.404 32.864 19.404 L 31.733 19.404 L 31.733 17.846 L 33.566 17.846 C 33.875 17.846 34.09 17.305 33.953 16.99 C 33.936 16.952 33.666 16.677 33.643 16.677 L 31.732 16.677 L 31.732 15.119 C 33.751 15.444 33.751 13.625 31.732 13.95 L 31.732 12.392 L 33.643 12.392 C 33.665 12.392 33.936 12.117 33.953 12.079 C 34.089 11.764 33.874 11.223 33.566 11.223 L 31.733 11.223 L 31.733 9.665 L 32.864 9.665 C 32.918 9.665 33.2 9.326 33.216 9.232 C 33.361 8.361 32.299 8.473 31.733 8.496 L 31.733 6.937 L 33.644 6.937 C 34.119 6.937 34.123 5.769 33.487 5.769 L 31.733 5.769 L 31.733 4.327 C 32.161 4.002 33.185 4.542 33.22 3.702 C 33.258 2.775 32.19 3.325 31.733 3.002 L 31.733 1.366 L 31.85 1.249 L 36.1 1.249 Z\" fill=\"transparent\"></path></svg>',svgContentId:11355661495}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1xztoza`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({CEzWJpsGk:{safeArea:false},j8eXbWVRE:{safeArea:false},tQsTR4DAV:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1sbbwoz\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"pZmZqCmn9\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Phenotype\"})}),className:\"framer-1wimh1k\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"eMMeLVnfx\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CEzWJpsGk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Phenotype\"})})},ffPxR3Sp2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fenotipo\"})})},j8eXbWVRE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf3tipo\"})})},KXRE1zIhy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf3tipo\"})})},tQsTR4DAV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fenotipo\"})})}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sXgeh.framer-1590fhh, .framer-sXgeh .framer-1590fhh { display: block; }\",\".framer-sXgeh.framer-1xztoza { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-sXgeh .framer-34jsm0 { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-sXgeh .framer-1sbbwoz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sXgeh .framer-1wimh1k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sXgeh.framer-1xztoza, .framer-sXgeh .framer-1sbbwoz { gap: 0px; } .framer-sXgeh.framer-1xztoza > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sXgeh.framer-1xztoza > :first-child { margin-left: 0px; } .framer-sXgeh.framer-1xztoza > :last-child { margin-right: 0px; } .framer-sXgeh .framer-1sbbwoz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sXgeh .framer-1sbbwoz > :first-child { margin-top: 0px; } .framer-sXgeh .framer-1sbbwoz > :last-child { margin-bottom: 0px; } }\",\".framer-sXgeh.framer-v-2e2p44 .framer-34jsm0, .framer-sXgeh.framer-v-186mmml .framer-34jsm0, .framer-sXgeh.framer-v-1rht2et .framer-34jsm0 { height: 40px; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"CEzWJpsGk\":{\"layout\":[\"auto\",\"auto\"]},\"ffPxR3Sp2\":{\"layout\":[\"auto\",\"auto\"]},\"tQsTR4DAV\":{\"layout\":[\"auto\",\"auto\"]},\"KXRE1zIhy\":{\"layout\":[\"auto\",\"auto\"]},\"j8eXbWVRE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRvywd0klM=withCSS(Component,css,\"framer-sXgeh\");export default FramerRvywd0klM;FramerRvywd0klM.displayName=\"grouw\";FramerRvywd0klM.defaultProps={height:76,width:76};addPropertyControls(FramerRvywd0klM,{variant:{options:[\"PcFJoiHdd\",\"CEzWJpsGk\",\"ffPxR3Sp2\",\"tQsTR4DAV\",\"KXRE1zIhy\",\"j8eXbWVRE\"],optionTitles:[\"Desktop - EN\",\"mobile - EN\",\"Desktop - ES\",\"mobile - ES\",\"Desktop - PT\",\"mobile - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRvywd0klM,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRvywd0klM\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CEzWJpsGk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ffPxR3Sp2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tQsTR4DAV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KXRE1zIhy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j8eXbWVRE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"76\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"76\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rvywd0klM.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"TKuwo8U4U\",\"ZMcHSHXxG\",\"V2iN2fMJ1\",\"X0WDvnA8f\",\"zexQWWfcH\",\"iFR9rKi0z\"];const serializationHash=\"framer-SgKib\";const variantClassNames={iFR9rKi0z:\"framer-v-t1ep5k\",TKuwo8U4U:\"framer-v-d7eopy\",V2iN2fMJ1:\"framer-v-z5fo5t\",X0WDvnA8f:\"framer-v-jfq9d4\",zexQWWfcH:\"framer-v-1vw308w\",ZMcHSHXxG:\"framer-v-5fqb1s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:4.2,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - EN\":\"TKuwo8U4U\",\"Desktop - ES\":\"V2iN2fMJ1\",\"Desktop - PT\":\"zexQWWfcH\",\"mobile - EN\":\"ZMcHSHXxG\",\"mobile - ES\":\"X0WDvnA8f\",\"mobile - PT\":\"iFR9rKi0z\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TKuwo8U4U\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TKuwo8U4U\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d7eopy\",className,classNames),\"data-framer-name\":\"Desktop - EN\",\"data-highlight\":true,id:`${layoutId}-d7eopy`,layoutDependency:layoutDependency,layoutId:\"TKuwo8U4U\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:refBinding,style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({iFR9rKi0z:{\"data-framer-name\":\"mobile - PT\"},V2iN2fMJ1:{\"data-framer-name\":\"Desktop - ES\"},X0WDvnA8f:{\"data-framer-name\":\"mobile - ES\"},zexQWWfcH:{\"data-framer-name\":\"Desktop - PT\"},ZMcHSHXxG:{\"data-framer-name\":\"mobile - EN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pt80y8\",\"data-framer-name\":\"Cadena-de-adn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IanaslMfr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><path d=\"M 42.923 60 C 42.08 59.662 41.425 59.138 41.297 58.177 C 40.905 55.272 40.859 54.052 38.944 51.641 C 34.914 46.567 28.912 45.916 23.664 42.944 C 12.348 36.538 10.891 25.383 22.278 18.009 C 28.027 14.286 35.2 13.82 39.441 7.803 C 41.064 5.498 40.889 4.422 41.314 1.841 C 41.691 -0.45 45.114 -0.4 45.383 1.809 C 46.106 7.759 40.987 13.197 36.294 16 C 30.903 19.219 20.284 21.056 18.769 28.416 C 16.725 38.333 31.356 40.869 37.23 44.698 C 40.856 47.064 44.106 50.509 45.089 54.85 C 45.478 56.572 45.991 59.286 43.859 59.997 L 42.923 59.997 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 16.023 60 C 14.064 59.338 14.384 57.197 14.655 55.531 C 15.273 51.709 17.928 48.211 20.948 45.919 C 21.273 45.672 22.431 44.78 22.739 44.794 L 27.136 46.841 C 23.542 48.808 19.55 51.825 18.747 56.113 C 18.447 57.717 18.963 59.352 16.961 59.998 L 16.025 59.998 Z M 32.866 40.233 C 32.684 40.058 32.927 40.03 33.016 39.972 C 34.237 39.184 35.528 38.628 36.714 37.709 C 44.281 31.855 41.814 25.369 34.537 20.958 C 34.278 20.8 32.93 20.183 32.864 20.114 C 32.798 20.045 32.842 19.819 33.03 19.872 L 37.319 17.83 C 42.552 21.066 46.555 26.148 45.13 32.673 C 44.484 35.63 42.425 38.3 40.17 40.23 C 39.683 40.647 37.88 42.08 37.387 42.252 C 37.283 42.288 37.217 42.323 37.109 42.252 C 36.166 41.692 35.183 41.184 34.191 40.716 C 33.952 40.603 32.912 40.28 32.862 40.23 Z M 27.134 13.333 C 25.548 13.773 24.133 14.705 22.639 15.323 C 18.23 12.781 13.97 7.267 14.498 1.925 C 14.692 -0.034 17.378 -0.561 18.311 1.164 C 18.723 1.925 18.5 2.35 18.613 3.084 C 19.106 6.308 20.617 8.592 23.103 10.639 C 24.358 11.673 25.806 12.411 27.134 13.331 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 20.702 31.111 L 20.702 29.006 L 39.006 29.006 C 39.019 29.006 39.181 29.169 39.181 29.181 L 39.181 30.936 C 39.181 30.948 39.019 31.111 39.006 31.111 Z M 39.181 2.222 C 39.227 2.875 39.139 3.517 38.961 4.142 C 33.013 4.302 26.989 4.159 21.012 4.214 C 20.761 4.155 20.65 2.494 20.702 2.22 L 39.181 2.22 Z M 20.702 57.895 C 20.656 57.242 20.744 56.6 20.922 55.975 C 26.87 55.816 32.894 55.958 38.87 55.903 C 39.122 55.962 39.233 57.623 39.181 57.897 L 20.702 57.897 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 37.427 25.966 L 22.456 25.966 C 22.88 25.431 24.214 23.97 24.861 23.867 C 28.053 24.08 31.658 23.561 34.802 23.855 C 35.661 23.934 36.964 25.231 37.428 25.966 Z M 37.427 34.152 C 36.994 34.872 35.616 36.186 34.8 36.263 C 31.656 36.556 28.053 36.038 24.859 36.25 C 24.213 36.147 22.878 34.686 22.455 34.152 L 37.425 34.152 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 37.077 7.369 C 37.244 7.492 35.263 9.384 34.906 9.35 C 31.822 9.116 28.22 9.684 25.198 9.364 C 24.422 9.281 23.231 8.041 22.808 7.369 Z M 37.077 52.748 L 22.808 52.748 C 23.231 52.077 24.422 50.834 25.198 50.753 C 28.22 50.433 31.822 51.002 34.906 50.767 C 35.431 50.85 36.811 52.209 37.077 52.748 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:8777019069,withExternalLayout:true,...addPropertyOverrides({iFR9rKi0z:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 28.616 40 C 28.053 39.775 27.617 39.425 27.531 38.784 C 27.27 36.848 27.24 36.034 25.963 34.427 C 23.276 31.045 19.275 30.61 15.776 28.629 C 8.232 24.358 7.26 16.922 14.852 12.006 C 18.684 9.524 23.467 9.214 26.294 5.202 C 27.376 3.666 27.259 2.948 27.543 1.227 C 27.794 -0.3 30.076 -0.267 30.255 1.206 C 30.738 5.173 27.325 8.798 24.196 10.667 C 20.602 12.813 13.523 14.038 12.513 18.944 C 11.15 25.555 20.904 27.246 24.82 29.799 C 27.238 31.376 29.404 33.673 30.059 36.567 C 30.319 37.715 30.66 39.524 29.24 39.998 L 28.616 39.998 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.682 40 C 9.376 39.558 9.59 38.131 9.77 37.021 C 10.182 34.473 11.952 32.141 13.966 30.613 C 14.182 30.448 14.954 29.853 15.159 29.863 L 18.091 31.227 C 15.695 32.539 13.033 34.55 12.498 37.408 C 12.298 38.478 12.642 39.568 11.307 39.999 L 10.683 39.999 Z M 21.91 26.822 C 21.79 26.705 21.951 26.686 22.01 26.648 C 22.825 26.123 23.685 25.752 24.476 25.14 C 29.521 21.236 27.876 16.913 23.025 13.972 C 22.852 13.867 21.953 13.455 21.909 13.409 C 21.866 13.364 21.895 13.213 22.02 13.248 L 24.879 11.886 C 28.368 14.044 31.036 17.432 30.086 21.782 C 29.656 23.753 28.283 25.533 26.78 26.82 C 26.455 27.098 25.253 28.053 24.925 28.168 C 24.855 28.192 24.811 28.216 24.74 28.168 C 24.11 27.795 23.455 27.456 22.794 27.144 C 22.634 27.069 21.942 26.853 21.908 26.82 Z M 18.09 8.889 C 17.032 9.182 16.089 9.803 15.093 10.216 C 12.153 8.521 9.314 4.845 9.666 1.283 C 9.795 -0.023 11.585 -0.374 12.207 0.776 C 12.482 1.283 12.333 1.567 12.408 2.056 C 12.737 4.205 13.745 5.728 15.402 7.093 C 16.239 7.782 17.204 8.274 18.09 8.888 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 13.801 20.741 L 13.801 19.338 L 26.004 19.338 C 26.012 19.338 26.121 19.446 26.121 19.454 L 26.121 20.624 C 26.121 20.632 26.012 20.741 26.004 20.741 Z M 26.121 1.481 C 26.151 1.917 26.093 2.345 25.974 2.761 C 22.008 2.868 17.993 2.773 14.008 2.809 C 13.841 2.77 13.767 1.663 13.801 1.48 L 26.121 1.48 Z M 13.801 38.597 C 13.771 38.161 13.829 37.733 13.948 37.317 C 17.914 37.21 21.929 37.305 25.914 37.269 C 26.081 37.308 26.155 38.416 26.121 38.598 L 13.801 38.598 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.951 17.31 L 14.971 17.31 C 15.253 16.954 16.143 15.98 16.574 15.911 C 18.702 16.053 21.105 15.707 23.201 15.903 C 23.774 15.956 24.643 16.821 24.952 17.31 Z M 24.951 22.768 C 24.663 23.248 23.744 24.124 23.2 24.175 C 21.104 24.371 18.702 24.025 16.573 24.167 C 16.142 24.098 15.252 23.124 14.97 22.768 L 24.95 22.768 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.718 4.912 C 24.829 4.995 23.508 6.256 23.271 6.233 C 21.215 6.077 18.814 6.456 16.799 6.243 C 16.281 6.187 15.487 5.36 15.205 4.912 Z M 24.718 35.166 L 15.205 35.166 C 15.487 34.718 16.281 33.89 16.799 33.835 C 18.814 33.622 21.215 34.001 23.271 33.845 C 23.621 33.9 24.541 34.806 24.718 35.166 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:8793289323},X0WDvnA8f:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 28.616 40 C 28.053 39.775 27.617 39.425 27.531 38.784 C 27.27 36.848 27.24 36.034 25.963 34.427 C 23.276 31.045 19.275 30.61 15.776 28.629 C 8.232 24.358 7.26 16.922 14.852 12.006 C 18.684 9.524 23.467 9.214 26.294 5.202 C 27.376 3.666 27.259 2.948 27.543 1.227 C 27.794 -0.3 30.076 -0.267 30.255 1.206 C 30.738 5.173 27.325 8.798 24.196 10.667 C 20.602 12.813 13.523 14.038 12.513 18.944 C 11.15 25.555 20.904 27.246 24.82 29.799 C 27.238 31.376 29.404 33.673 30.059 36.567 C 30.319 37.715 30.66 39.524 29.24 39.998 L 28.616 39.998 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.682 40 C 9.376 39.558 9.59 38.131 9.77 37.021 C 10.182 34.473 11.952 32.141 13.966 30.613 C 14.182 30.448 14.954 29.853 15.159 29.863 L 18.091 31.227 C 15.695 32.539 13.033 34.55 12.498 37.408 C 12.298 38.478 12.642 39.568 11.307 39.999 L 10.683 39.999 Z M 21.91 26.822 C 21.79 26.705 21.951 26.686 22.01 26.648 C 22.825 26.123 23.685 25.752 24.476 25.14 C 29.521 21.236 27.876 16.913 23.025 13.972 C 22.852 13.867 21.953 13.455 21.909 13.409 C 21.866 13.364 21.895 13.213 22.02 13.248 L 24.879 11.886 C 28.368 14.044 31.036 17.432 30.086 21.782 C 29.656 23.753 28.283 25.533 26.78 26.82 C 26.455 27.098 25.253 28.053 24.925 28.168 C 24.855 28.192 24.811 28.216 24.74 28.168 C 24.11 27.795 23.455 27.456 22.794 27.144 C 22.634 27.069 21.942 26.853 21.908 26.82 Z M 18.09 8.889 C 17.032 9.182 16.089 9.803 15.093 10.216 C 12.153 8.521 9.314 4.845 9.666 1.283 C 9.795 -0.023 11.585 -0.374 12.207 0.776 C 12.482 1.283 12.333 1.567 12.408 2.056 C 12.737 4.205 13.745 5.728 15.402 7.093 C 16.239 7.782 17.204 8.274 18.09 8.888 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 13.801 20.741 L 13.801 19.338 L 26.004 19.338 C 26.012 19.338 26.121 19.446 26.121 19.454 L 26.121 20.624 C 26.121 20.632 26.012 20.741 26.004 20.741 Z M 26.121 1.481 C 26.151 1.917 26.093 2.345 25.974 2.761 C 22.008 2.868 17.993 2.773 14.008 2.809 C 13.841 2.77 13.767 1.663 13.801 1.48 L 26.121 1.48 Z M 13.801 38.597 C 13.771 38.161 13.829 37.733 13.948 37.317 C 17.914 37.21 21.929 37.305 25.914 37.269 C 26.081 37.308 26.155 38.416 26.121 38.598 L 13.801 38.598 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.951 17.31 L 14.971 17.31 C 15.253 16.954 16.143 15.98 16.574 15.911 C 18.702 16.053 21.105 15.707 23.201 15.903 C 23.774 15.956 24.643 16.821 24.952 17.31 Z M 24.951 22.768 C 24.663 23.248 23.744 24.124 23.2 24.175 C 21.104 24.371 18.702 24.025 16.573 24.167 C 16.142 24.098 15.252 23.124 14.97 22.768 L 24.95 22.768 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.718 4.912 C 24.829 4.995 23.508 6.256 23.271 6.233 C 21.215 6.077 18.814 6.456 16.799 6.243 C 16.281 6.187 15.487 5.36 15.205 4.912 Z M 24.718 35.166 L 15.205 35.166 C 15.487 34.718 16.281 33.89 16.799 33.835 C 18.814 33.622 21.215 34.001 23.271 33.845 C 23.621 33.9 24.541 34.806 24.718 35.166 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:8793289323},ZMcHSHXxG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 28.616 40 C 28.053 39.775 27.617 39.425 27.531 38.784 C 27.27 36.848 27.24 36.034 25.963 34.427 C 23.276 31.045 19.275 30.61 15.776 28.629 C 8.232 24.358 7.26 16.922 14.852 12.006 C 18.684 9.524 23.467 9.214 26.294 5.202 C 27.376 3.666 27.259 2.948 27.543 1.227 C 27.794 -0.3 30.076 -0.267 30.255 1.206 C 30.738 5.173 27.325 8.798 24.196 10.667 C 20.602 12.813 13.523 14.038 12.513 18.944 C 11.15 25.555 20.904 27.246 24.82 29.799 C 27.238 31.376 29.404 33.673 30.059 36.567 C 30.319 37.715 30.66 39.524 29.24 39.998 L 28.616 39.998 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.682 40 C 9.376 39.558 9.59 38.131 9.77 37.021 C 10.182 34.473 11.952 32.141 13.966 30.613 C 14.182 30.448 14.954 29.853 15.159 29.863 L 18.091 31.227 C 15.695 32.539 13.033 34.55 12.498 37.408 C 12.298 38.478 12.642 39.568 11.307 39.999 L 10.683 39.999 Z M 21.91 26.822 C 21.79 26.705 21.951 26.686 22.01 26.648 C 22.825 26.123 23.685 25.752 24.476 25.14 C 29.521 21.236 27.876 16.913 23.025 13.972 C 22.852 13.867 21.953 13.455 21.909 13.409 C 21.866 13.364 21.895 13.213 22.02 13.248 L 24.879 11.886 C 28.368 14.044 31.036 17.432 30.086 21.782 C 29.656 23.753 28.283 25.533 26.78 26.82 C 26.455 27.098 25.253 28.053 24.925 28.168 C 24.855 28.192 24.811 28.216 24.74 28.168 C 24.11 27.795 23.455 27.456 22.794 27.144 C 22.634 27.069 21.942 26.853 21.908 26.82 Z M 18.09 8.889 C 17.032 9.182 16.089 9.803 15.093 10.216 C 12.153 8.521 9.314 4.845 9.666 1.283 C 9.795 -0.023 11.585 -0.374 12.207 0.776 C 12.482 1.283 12.333 1.567 12.408 2.056 C 12.737 4.205 13.745 5.728 15.402 7.093 C 16.239 7.782 17.204 8.274 18.09 8.888 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 13.801 20.741 L 13.801 19.338 L 26.004 19.338 C 26.012 19.338 26.121 19.446 26.121 19.454 L 26.121 20.624 C 26.121 20.632 26.012 20.741 26.004 20.741 Z M 26.121 1.481 C 26.151 1.917 26.093 2.345 25.974 2.761 C 22.008 2.868 17.993 2.773 14.008 2.809 C 13.841 2.77 13.767 1.663 13.801 1.48 L 26.121 1.48 Z M 13.801 38.597 C 13.771 38.161 13.829 37.733 13.948 37.317 C 17.914 37.21 21.929 37.305 25.914 37.269 C 26.081 37.308 26.155 38.416 26.121 38.598 L 13.801 38.598 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.951 17.31 L 14.971 17.31 C 15.253 16.954 16.143 15.98 16.574 15.911 C 18.702 16.053 21.105 15.707 23.201 15.903 C 23.774 15.956 24.643 16.821 24.952 17.31 Z M 24.951 22.768 C 24.663 23.248 23.744 24.124 23.2 24.175 C 21.104 24.371 18.702 24.025 16.573 24.167 C 16.142 24.098 15.252 23.124 14.97 22.768 L 24.95 22.768 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.718 4.912 C 24.829 4.995 23.508 6.256 23.271 6.233 C 21.215 6.077 18.814 6.456 16.799 6.243 C 16.281 6.187 15.487 5.36 15.205 4.912 Z M 24.718 35.166 L 15.205 35.166 C 15.487 34.718 16.281 33.89 16.799 33.835 C 18.814 33.622 21.215 34.001 23.271 33.845 C 23.621 33.9 24.541 34.806 24.718 35.166 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:8793289323}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-d7eopy`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({iFR9rKi0z:{safeArea:false},X0WDvnA8f:{safeArea:false},ZMcHSHXxG:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1xgvjqd\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"MQpOhDY37\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Genotype\"})}),className:\"framer-zaac5v\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"xB2mNykn_\",style:{\"--extracted-a0htzi\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iFR9rKi0z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf3tipo\"})})},V2iN2fMJ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Genotipo\"})})},X0WDvnA8f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Genotipo\"})})},zexQWWfcH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf3tipo\"})})},ZMcHSHXxG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Genotype\"})})}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SgKib.framer-10wp9f0, .framer-SgKib .framer-10wp9f0 { display: block; }\",\".framer-SgKib.framer-d7eopy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-SgKib .framer-1pt80y8 { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-SgKib .framer-1xgvjqd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SgKib .framer-zaac5v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SgKib.framer-d7eopy, .framer-SgKib .framer-1xgvjqd { gap: 0px; } .framer-SgKib.framer-d7eopy > *, .framer-SgKib .framer-1xgvjqd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SgKib.framer-d7eopy > :first-child, .framer-SgKib .framer-1xgvjqd > :first-child { margin-left: 0px; } .framer-SgKib.framer-d7eopy > :last-child, .framer-SgKib .framer-1xgvjqd > :last-child { margin-right: 0px; } }\",\".framer-SgKib.framer-v-5fqb1s .framer-1pt80y8, .framer-SgKib.framer-v-jfq9d4 .framer-1pt80y8, .framer-SgKib.framer-v-t1ep5k .framer-1pt80y8 { height: 40px; width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ZMcHSHXxG\":{\"layout\":[\"auto\",\"auto\"]},\"V2iN2fMJ1\":{\"layout\":[\"auto\",\"auto\"]},\"X0WDvnA8f\":{\"layout\":[\"auto\",\"auto\"]},\"zexQWWfcH\":{\"layout\":[\"auto\",\"auto\"]},\"iFR9rKi0z\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZ3OhBCluA=withCSS(Component,css,\"framer-SgKib\");export default FramerZ3OhBCluA;FramerZ3OhBCluA.displayName=\"ADN\";FramerZ3OhBCluA.defaultProps={height:76,width:76};addPropertyControls(FramerZ3OhBCluA,{variant:{options:[\"TKuwo8U4U\",\"ZMcHSHXxG\",\"V2iN2fMJ1\",\"X0WDvnA8f\",\"zexQWWfcH\",\"iFR9rKi0z\"],optionTitles:[\"Desktop - EN\",\"mobile - EN\",\"Desktop - ES\",\"mobile - ES\",\"Desktop - PT\",\"mobile - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ3OhBCluA,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ3OhBCluA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"76\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"76\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZMcHSHXxG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"V2iN2fMJ1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X0WDvnA8f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zexQWWfcH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iFR9rKi0z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z3OhBCluA.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,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 Rectangulo from\"https://framerusercontent.com/modules/6NOqhIQKMODubuEGGVmR/FpDn9RJmRpCC5x28ozTW/cxKIKJV53.js\";import Lluvia from\"https://framerusercontent.com/modules/tkogCeDIk0f2q03BGHL4/6RKbnU26fLyWH2E5mwnT/Hv_4e0ePo.js\";import ICON from\"https://framerusercontent.com/modules/w7Hd6bL8edf8uz2TyOOf/rIHWqbxCWHD3dORN2Z3R/qcTZ3Xgkp.js\";import Grouw from\"https://framerusercontent.com/modules/tfVPeTHlZWRBimWafLA7/OYZ8QnBTY9jXEUhcMzd9/Rvywd0klM.js\";import ADN from\"https://framerusercontent.com/modules/nKkRTgYiVl2Zht9df4J8/MsnKdLIKcrRshIHXrKcl/Z3OhBCluA.js\";const LluviaFonts=getFonts(Lluvia);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const GrouwFonts=getFonts(Grouw);const RectanguloFonts=getFonts(Rectangulo);const ICONFonts=getFonts(ICON);const ADNFonts=getFonts(ADN);const cycleOrder=[\"sZV7tVTOL\",\"PT6iKZaPx\",\"xsxjE7KZr\",\"J6Ia3wCmX\",\"Akx_EBRTc\",\"gckABU9Lh\"];const serializationHash=\"framer-xK5nF\";const variantClassNames={Akx_EBRTc:\"framer-v-1wjngmh\",gckABU9Lh:\"framer-v-1pb6ai8\",J6Ia3wCmX:\"framer-v-53bbd3\",PT6iKZaPx:\"framer-v-1y885et\",sZV7tVTOL:\"framer-v-1rdd2h\",xsxjE7KZr:\"framer-v-16fok33\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:1,duration:3.1,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition2={delay:0,duration:2,ease:[.51,.02,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:16};const transition3={bounce:0,delay:0,duration:2.1,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"sZV7tVTOL\",\"Variant 1 - ES\":\"xsxjE7KZr\",\"Variant 1 - PT\":\"Akx_EBRTc\",\"Variant 2 - EN\":\"PT6iKZaPx\",\"Variant 2 - ES\":\"J6Ia3wCmX\",\"Variant 2 - PT\":\"gckABU9Lh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sZV7tVTOL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sZV7tVTOL\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rdd2h\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",layoutDependency:layoutDependency,layoutId:\"sZV7tVTOL\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({Akx_EBRTc:{\"data-framer-name\":\"Variant 1 - PT\"},gckABU9Lh:{\"data-framer-name\":\"Variant 2 - PT\"},J6Ia3wCmX:{\"data-framer-name\":\"Variant 2 - ES\"},PT6iKZaPx:{\"data-framer-name\":\"Variant 2 - EN\"},xsxjE7KZr:{\"data-framer-name\":\"Variant 1 - ES\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vimnr\",\"data-framer-name\":\"fondo\",layoutDependency:layoutDependency,layoutId:\"Q7O8pIQvy\",style:{backgroundColor:\"var(--token-49034f0c-22f9-44bf-8b2f-c23abcae9b90, rgb(230, 234, 220))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.6290672451193061-144.5)),pixelHeight:2048,pixelWidth:2048,sizes:\"289px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"},className:\"framer-1omm452\",\"data-framer-name\":\"panta \",layoutDependency:layoutDependency,layoutId:\"ZxMVJsO4C\",style:{opacity:1},variants:{Akx_EBRTc:{opacity:1},gckABU9Lh:{opacity:0},J6Ia3wCmX:{opacity:0},PT6iKZaPx:{opacity:0},xsxjE7KZr:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.4945770065075924-207)),pixelHeight:2048,pixelWidth:2048,sizes:\"414px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}},J6Ia3wCmX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.4945770065075924-207)),pixelHeight:2048,pixelWidth:2048,sizes:\"414px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}},PT6iKZaPx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.4945770065075924-207)),pixelHeight:2048,pixelWidth:2048,sizes:\"414px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:(componentViewport?.y||0)+((componentViewport?.height||461)*.4793926247288505-38),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{className:\"framer-11m4bm1-container\",layoutDependency:layoutDependency,layoutId:\"RN1HgcsiO-container\",nodeId:\"RN1HgcsiO\",rendersWithMotion:true,scopeId:\"b_PYmLUDb\",style:{opacity:0},transformTemplate:transformTemplate2,variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},J6Ia3wCmX:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},PT6iKZaPx:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Lluvia,{height:\"100%\",id:\"RN1HgcsiO\",layoutId:\"RN1HgcsiO\",variant:\"QXucfFLDW\",width:\"100%\",...addPropertyOverrides({Akx_EBRTc:{variant:\"B3uuQJDVR\"},gckABU9Lh:{variant:\"B3uuQJDVR\"},J6Ia3wCmX:{variant:\"vgXmrkN3x\"},xsxjE7KZr:{variant:\"vgXmrkN3x\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:(componentViewport?.y||0)+-80,...addPropertyOverrides({gckABU9Lh:{y:(componentViewport?.y||0)+7},J6Ia3wCmX:{y:(componentViewport?.y||0)+7},PT6iKZaPx:{y:(componentViewport?.y||0)+7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{className:\"framer-1omhq77-container\",layoutDependency:layoutDependency,layoutId:\"D9saMarNm-container\",nodeId:\"D9saMarNm\",rendersWithMotion:true,scopeId:\"b_PYmLUDb\",style:{opacity:0},variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},J6Ia3wCmX:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},PT6iKZaPx:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Grouw,{height:\"100%\",id:\"D9saMarNm\",layoutId:\"D9saMarNm\",variant:\"PcFJoiHdd\",width:\"100%\",...addPropertyOverrides({Akx_EBRTc:{variant:\"KXRE1zIhy\"},gckABU9Lh:{variant:\"KXRE1zIhy\"},J6Ia3wCmX:{variant:\"ffPxR3Sp2\"},xsxjE7KZr:{variant:\"ffPxR3Sp2\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.5661605206073755-189)),pixelHeight:2048,pixelWidth:2048,sizes:\"378px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"},className:\"framer-d9zes5\",\"data-framer-name\":\"parcela\",layoutDependency:layoutDependency,layoutId:\"jSQos7Gfv\",style:{opacity:0},variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.49674620390455554-283)),pixelHeight:2048,pixelWidth:2048,sizes:\"566px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}},J6Ia3wCmX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.49674620390455554-283)),pixelHeight:2048,pixelWidth:2048,sizes:\"566px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}},PT6iKZaPx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||461)*.49674620390455554-283)),pixelHeight:2048,pixelWidth:2048,sizes:\"566px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:(componentViewport?.y||0)+54,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{className:\"framer-1m13599-container\",layoutDependency:layoutDependency,layoutId:\"Z6KvteXfN-container\",nodeId:\"Z6KvteXfN\",rendersWithMotion:true,scopeId:\"b_PYmLUDb\",style:{opacity:0},variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},J6Ia3wCmX:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},PT6iKZaPx:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Rectangulo,{height:\"100%\",id:\"Z6KvteXfN\",layoutId:\"Z6KvteXfN\",variant:\"SJsU16r48\",width:\"100%\",...addPropertyOverrides({Akx_EBRTc:{variant:\"V97uaOE6h\"},gckABU9Lh:{variant:\"V97uaOE6h\"},J6Ia3wCmX:{variant:\"pSqSxUw0Z\"},xsxjE7KZr:{variant:\"pSqSxUw0Z\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:(componentViewport?.y||0)+(componentViewport?.height||461)-26,...addPropertyOverrides({gckABU9Lh:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-154},J6Ia3wCmX:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-154},PT6iKZaPx:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-154}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{className:\"framer-e0294i-container\",layoutDependency:layoutDependency,layoutId:\"c2OIWlajB-container\",nodeId:\"c2OIWlajB\",rendersWithMotion:true,scopeId:\"b_PYmLUDb\",style:{opacity:0},variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},J6Ia3wCmX:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},PT6iKZaPx:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ICON,{height:\"100%\",id:\"c2OIWlajB\",layoutId:\"c2OIWlajB\",variant:\"YFpTfJlog\",width:\"100%\",...addPropertyOverrides({Akx_EBRTc:{variant:\"os4sYcgtK\"},gckABU9Lh:{variant:\"os4sYcgtK\"},J6Ia3wCmX:{variant:\"KTXWmrMfV\"},xsxjE7KZr:{variant:\"KTXWmrMfV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:(componentViewport?.y||0)+(componentViewport?.height||461)- -12,...addPropertyOverrides({gckABU9Lh:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-98},J6Ia3wCmX:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-98},PT6iKZaPx:{y:(componentViewport?.y||0)+(componentViewport?.height||461)-98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{className:\"framer-q7jv8k-container\",layoutDependency:layoutDependency,layoutId:\"zzOl9s_gI-container\",nodeId:\"zzOl9s_gI\",rendersWithMotion:true,scopeId:\"b_PYmLUDb\",style:{opacity:0},variants:{gckABU9Lh:{opacity:1},J6Ia3wCmX:{opacity:1},PT6iKZaPx:{opacity:1}},...addPropertyOverrides({gckABU9Lh:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},J6Ia3wCmX:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1},PT6iKZaPx:{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,whileHover:animation1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ADN,{height:\"100%\",id:\"zzOl9s_gI\",layoutId:\"zzOl9s_gI\",variant:\"TKuwo8U4U\",width:\"100%\",...addPropertyOverrides({Akx_EBRTc:{variant:\"zexQWWfcH\"},gckABU9Lh:{variant:\"zexQWWfcH\"},J6Ia3wCmX:{variant:\"V2iN2fMJ1\"},xsxjE7KZr:{variant:\"V2iN2fMJ1\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xK5nF.framer-17wkc9q, .framer-xK5nF .framer-17wkc9q { display: block; }\",\".framer-xK5nF.framer-1rdd2h { height: 461px; overflow: hidden; position: relative; width: 582px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xK5nF .framer-vimnr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); left: 48%; overflow: visible; position: absolute; top: 50%; width: 400px; }\",\".framer-xK5nF .framer-1omm452 { flex: none; height: 289px; left: calc(50.00000000000002% - 289px / 2); overflow: visible; position: absolute; top: calc(62.90672451193061% - 289px / 2); width: 289px; }\",\".framer-xK5nF .framer-11m4bm1-container { flex: none; height: auto; position: absolute; right: 5px; top: 48%; width: auto; z-index: 1; }\",\".framer-xK5nF .framer-1omhq77-container { flex: none; height: auto; position: absolute; right: 125px; top: -80px; width: auto; z-index: 1; }\",\".framer-xK5nF .framer-d9zes5 { flex: none; height: 378px; left: calc(45.54455445544557% - 378px / 2); overflow: visible; position: absolute; top: calc(56.61605206073755% - 378px / 2); width: 378px; }\",\".framer-xK5nF .framer-1m13599-container { flex: none; height: auto; left: -80px; position: absolute; top: 54px; width: auto; z-index: 1; }\",\".framer-xK5nF .framer-e0294i-container { bottom: -50px; flex: none; height: auto; left: 114px; position: absolute; width: auto; z-index: 1; }\",\".framer-xK5nF .framer-q7jv8k-container { bottom: -88px; flex: none; height: auto; position: absolute; right: 193px; width: auto; z-index: 1; }\",\".framer-xK5nF.framer-v-1y885et.framer-1rdd2h, .framer-xK5nF.framer-v-53bbd3.framer-1rdd2h, .framer-xK5nF.framer-v-1pb6ai8.framer-1rdd2h { overflow: visible; width: 594px; will-change: unset; }\",\".framer-xK5nF.framer-v-1y885et .framer-1omm452, .framer-xK5nF.framer-v-53bbd3 .framer-1omm452, .framer-xK5nF.framer-v-1pb6ai8 .framer-1omm452 { height: 414px; left: calc(50.00000000000002% - 414px / 2); top: calc(49.45770065075924% - 414px / 2); width: 414px; }\",\".framer-xK5nF.framer-v-1y885et .framer-11m4bm1-container, .framer-xK5nF.framer-v-53bbd3 .framer-11m4bm1-container, .framer-xK5nF.framer-v-1pb6ai8 .framer-11m4bm1-container { right: 77px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xK5nF.framer-v-1y885et .framer-1omhq77-container, .framer-xK5nF.framer-v-53bbd3 .framer-1omhq77-container, .framer-xK5nF.framer-v-1pb6ai8 .framer-1omhq77-container { top: 7px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xK5nF.framer-v-1y885et .framer-d9zes5, .framer-xK5nF.framer-v-53bbd3 .framer-d9zes5, .framer-xK5nF.framer-v-1pb6ai8 .framer-d9zes5 { height: 566px; left: calc(51.34680134680137% - 566px / 2); top: calc(49.67462039045555% - 566px / 2); width: 566px; }\",\".framer-xK5nF.framer-v-1y885et .framer-1m13599-container, .framer-xK5nF.framer-v-53bbd3 .framer-1m13599-container, .framer-xK5nF.framer-v-1pb6ai8 .framer-1m13599-container { left: 52px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xK5nF.framer-v-1y885et .framer-e0294i-container, .framer-xK5nF.framer-v-53bbd3 .framer-e0294i-container, .framer-xK5nF.framer-v-1pb6ai8 .framer-e0294i-container { bottom: 78px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-xK5nF.framer-v-1y885et .framer-q7jv8k-container, .framer-xK5nF.framer-v-53bbd3 .framer-q7jv8k-container, .framer-xK5nF.framer-v-1pb6ai8 .framer-q7jv8k-container { bottom: 22px; will-change: var(--framer-will-change-effect-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 461\n * @framerIntrinsicWidth 582\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PT6iKZaPx\":{\"layout\":[\"fixed\",\"fixed\"]},\"xsxjE7KZr\":{\"layout\":[\"fixed\",\"fixed\"]},\"J6Ia3wCmX\":{\"layout\":[\"fixed\",\"fixed\"]},\"Akx_EBRTc\":{\"layout\":[\"fixed\",\"fixed\"]},\"gckABU9Lh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb_PYmLUDb=withCSS(Component,css,\"framer-xK5nF\");export default Framerb_PYmLUDb;Framerb_PYmLUDb.displayName=\"planta\";Framerb_PYmLUDb.defaultProps={height:461,width:582};addPropertyControls(Framerb_PYmLUDb,{variant:{options:[\"sZV7tVTOL\",\"PT6iKZaPx\",\"xsxjE7KZr\",\"J6Ia3wCmX\",\"Akx_EBRTc\",\"gckABU9Lh\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb_PYmLUDb,[{explicitInter:true,fonts:[]},...LluviaFonts,...GrouwFonts,...RectanguloFonts,...ICONFonts,...ADNFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb_PYmLUDb\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PT6iKZaPx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xsxjE7KZr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J6Ia3wCmX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Akx_EBRTc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gckABU9Lh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"461\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"582\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4b118ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rIMnxu6okW20KMp9pvBJ/LGHUXpQgHt3Ogg0bHGlh/lRrtTQluw.js\";const cycleOrder=[\"JojXAzBSP\",\"P73tqthbG\",\"fbMLC5BrJ\",\"BmiIsnKFF\",\"GAhJWR75P\",\"gpbwCET_M\"];const serializationHash=\"framer-Gc0Br\";const variantClassNames={BmiIsnKFF:\"framer-v-1td9e4\",fbMLC5BrJ:\"framer-v-1uicegs\",GAhJWR75P:\"framer-v-ybxpql\",gpbwCET_M:\"framer-v-fy9h3x\",JojXAzBSP:\"framer-v-uiygy7\",P73tqthbG:\"framer-v-xu0zqg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:.8,duration:1.6,type:\"spring\"};const transition2={bounce:0,delay:0,duration:2,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;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={\"Highlight off - EN\":\"JojXAzBSP\",\"Highlight off - ES\":\"fbMLC5BrJ\",\"Highlight off - PT\":\"GAhJWR75P\",\"highlight on - EN\":\"P73tqthbG\",\"Highlight on - ES\":\"BmiIsnKFF\",\"Highlight on - PT\":\"gpbwCET_M\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JojXAzBSP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JojXAzBSP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({BmiIsnKFF:{value:transition2},gpbwCET_M:{value:transition2},P73tqthbG:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-uiygy7\",className,classNames),\"data-framer-name\":\"Highlight off - EN\",layoutDependency:layoutDependency,layoutId:\"JojXAzBSP\",ref:ref??ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0,...style},variants:{BmiIsnKFF:{opacity:1},gpbwCET_M:{opacity:1},P73tqthbG:{opacity:1}},...addPropertyOverrides({BmiIsnKFF:{\"data-framer-name\":\"Highlight on - ES\"},fbMLC5BrJ:{\"data-framer-name\":\"Highlight off - ES\"},GAhJWR75P:{\"data-framer-name\":\"Highlight off - PT\"},gpbwCET_M:{\"data-framer-name\":\"Highlight on - PT\"},P73tqthbG:{\"data-framer-name\":\"highlight on - EN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13rlm44\",\"data-framer-name\":\"Highlight\",layoutDependency:layoutDependency,layoutId:\"NVXYKjmID\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nv78wx\",\"data-styles-preset\":\"lRrtTQluw\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"sustainable future\"})}),className:\"framer-1w5b4hf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ay2Ts_jRp\",style:{\"--extracted-1eung3n\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BmiIsnKFF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nv78wx\",\"data-styles-preset\":\"lRrtTQluw\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sostenible\"})})},fbMLC5BrJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nv78wx\",\"data-styles-preset\":\"lRrtTQluw\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sostenible\"})})},GAhJWR75P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nv78wx\",\"data-styles-preset\":\"lRrtTQluw\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sustent\\xe1vel\"})})},gpbwCET_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nv78wx\",\"data-styles-preset\":\"lRrtTQluw\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sustent\\xe1vel\"})}),transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gc0Br.framer-9zi7te, .framer-Gc0Br .framer-9zi7te { display: block; }\",\".framer-Gc0Br.framer-uiygy7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 53px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 410px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Gc0Br .framer-13rlm44 { flex: none; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-Gc0Br .framer-1w5b4hf { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gc0Br.framer-uiygy7 { gap: 0px; } .framer-Gc0Br.framer-uiygy7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Gc0Br.framer-uiygy7 > :first-child { margin-left: 0px; } .framer-Gc0Br.framer-uiygy7 > :last-child { margin-right: 0px; } }\",\".framer-Gc0Br.framer-v-xu0zqg .framer-13rlm44, .framer-Gc0Br.framer-v-1td9e4 .framer-13rlm44 { width: 404px; }\",\".framer-Gc0Br.framer-v-1uicegs.framer-uiygy7, .framer-Gc0Br.framer-v-1td9e4.framer-uiygy7 { width: 380px; }\",\".framer-Gc0Br.framer-v-ybxpql.framer-uiygy7, .framer-Gc0Br.framer-v-fy9h3x.framer-uiygy7 { width: 420px; }\",\".framer-Gc0Br.framer-v-fy9h3x .framer-13rlm44 { width: 415px; }\",\".framer-Gc0Br.framer-v-fy9h3x .framer-1w5b4hf { left: 50%; top: 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"P73tqthbG\":{\"layout\":[\"fixed\",\"fixed\"]},\"fbMLC5BrJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"BmiIsnKFF\":{\"layout\":[\"fixed\",\"fixed\"]},\"GAhJWR75P\":{\"layout\":[\"fixed\",\"fixed\"]},\"gpbwCET_M\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerluSrNs9J4=withCSS(Component,css,\"framer-Gc0Br\");export default FramerluSrNs9J4;FramerluSrNs9J4.displayName=\"Highlight\";FramerluSrNs9J4.defaultProps={height:53,width:410};addPropertyControls(FramerluSrNs9J4,{variant:{options:[\"JojXAzBSP\",\"P73tqthbG\",\"fbMLC5BrJ\",\"BmiIsnKFF\",\"GAhJWR75P\",\"gpbwCET_M\"],optionTitles:[\"Highlight off - EN\",\"highlight on - EN\",\"Highlight off - ES\",\"Highlight on - ES\",\"Highlight off - PT\",\"Highlight on - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerluSrNs9J4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerluSrNs9J4\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P73tqthbG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fbMLC5BrJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BmiIsnKFF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GAhJWR75P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gpbwCET_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"410\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"53\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./luSrNs9J4.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"AxZAzAo1G\",\"wEqPM8YJK\"];const serializationHash=\"framer-yxrBN\";const variantClassNames={AxZAzAo1G:\"framer-v-ry0pju\",wEqPM8YJK:\"framer-v-z5psjx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:3.3,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??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={\"Image in\":\"wEqPM8YJK\",\"Image out\":\"AxZAzAo1G\"};const getProps=({height,id,image,width,...props})=>{return{...props,DiolV6S6S:image??props.DiolV6S6S,variant:humanReadableVariantMap[props.variant]??props.variant??\"AxZAzAo1G\"};};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,DiolV6S6S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AxZAzAo1G\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ry0pju\",className,classNames),\"data-framer-name\":\"Image out\",layoutDependency:layoutDependency,layoutId:\"AxZAzAo1G\",ref:ref??ref1,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({wEqPM8YJK:{\"data-framer-name\":\"Image in\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||400)-0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(DiolV6S6S)},className:\"framer-hp118g\",layoutDependency:layoutDependency,layoutId:\"V8qli0b01\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},variants:{wEqPM8YJK:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({wEqPM8YJK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||400)-0-(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1+0)+0+0)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(DiolV6S6S)}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yxrBN.framer-1hidmpi, .framer-yxrBN .framer-1hidmpi { display: block; }\",\".framer-yxrBN.framer-ry0pju { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yxrBN .framer-hp118g { bottom: -400px; flex: none; height: 400px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yxrBN.framer-ry0pju { gap: 0px; } .framer-yxrBN.framer-ry0pju > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yxrBN.framer-ry0pju > :first-child { margin-top: 0px; } .framer-yxrBN.framer-ry0pju > :last-child { margin-bottom: 0px; } }\",\".framer-yxrBN.framer-v-z5psjx .framer-hp118g { bottom: unset; flex: 1 0 0px; height: 1px; left: unset; position: relative; right: unset; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wEqPM8YJK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"DiolV6S6S\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNnQ2pknWm=withCSS(Component,css,\"framer-yxrBN\");export default FramerNnQ2pknWm;FramerNnQ2pknWm.displayName=\"Image animation\";FramerNnQ2pknWm.defaultProps={height:400,width:500};addPropertyControls(FramerNnQ2pknWm,{variant:{options:[\"AxZAzAo1G\",\"wEqPM8YJK\"],optionTitles:[\"Image out\",\"Image in\"],title:\"Variant\",type:ControlType.Enum},DiolV6S6S:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerNnQ2pknWm,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNnQ2pknWm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wEqPM8YJK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"DiolV6S6S\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"400\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NnQ2pknWm.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"vT9a5UQ6a\",\"Nrv9OBhxi\",\"DBaQ9LAFi\",\"h5B1wPDL0\",\"Igwg2yvPe\",\"xn2RIo9KM\"];const serializationHash=\"framer-QGkG2\";const variantClassNames={DBaQ9LAFi:\"framer-v-jzz73q\",h5B1wPDL0:\"framer-v-hiomkr\",Igwg2yvPe:\"framer-v-i3d2s4\",Nrv9OBhxi:\"framer-v-hwv3jn\",vT9a5UQ6a:\"framer-v-d9moe4\",xn2RIo9KM:\"framer-v-1jte2a7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:1.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"vT9a5UQ6a\",\"Variant 1 - ES\":\"DBaQ9LAFi\",\"Variant 1 - PT\":\"Igwg2yvPe\",\"Variant 2 - EN\":\"Nrv9OBhxi\",\"Variant 2 - ES\":\"h5B1wPDL0\",\"Variant 2 - PT\":\"xn2RIo9KM\"};const getProps=({click,height,id,width,...props})=>{return{...props,PHcz3pJwh:click??props.PHcz3pJwh,variant:humanReadableVariantMap[props.variant]??props.variant??\"vT9a5UQ6a\"};};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,PHcz3pJwh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vT9a5UQ6a\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xit6dp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"Nrv9OBhxi\");});const onTap1gzbip3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"vT9a5UQ6a\");});const onAppear1wkbsvi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vT9a5UQ6a\"),1500);});const onTap1sayyb7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"h5B1wPDL0\");});const onTape93utl=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"DBaQ9LAFi\");});const onTap13icz3n=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"xn2RIo9KM\");});const onTappd28be=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(PHcz3pJwh){const res=await PHcz3pJwh(...args);if(res===false)return false;}setVariant(\"Igwg2yvPe\");});useOnVariantChange(baseVariant,{Nrv9OBhxi:onAppear1wkbsvi});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d9moe4\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vT9a5UQ6a\",onTap:onTap1xit6dp,ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({DBaQ9LAFi:{\"data-framer-name\":\"Variant 1 - ES\",onTap:onTap1sayyb7},h5B1wPDL0:{\"data-framer-name\":\"Variant 2 - ES\",onTap:onTape93utl},Igwg2yvPe:{\"data-framer-name\":\"Variant 1 - PT\",onTap:onTap13icz3n},Nrv9OBhxi:{\"data-framer-name\":\"Variant 2 - EN\",onTap:onTap1gzbip3},xn2RIo9KM:{\"data-framer-name\":\"Variant 2 - PT\",onTap:onTappd28be}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g1kp5u\",layoutDependency:layoutDependency,layoutId:\"UGPtegWg9\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-aupwmy\",\"data-framer-name\":\"Crecimiento\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hKu_oYVR3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 2.729 39.975 L 0 39.975 L 0 0 L 40 0 L 40 39.975 L 25.809 39.975 C 27.436 39.381 27.745 37.607 26.348 36.515 C 25.396 35.77 24.445 35.824 23.29 35.831 C 21.253 33.24 17.638 32.668 14.581 33.508 L 14.581 25.677 L 18.637 21.626 C 23.264 21.869 27.465 18.546 27.763 13.835 C 27.892 11.803 27.685 11.535 25.616 11.69 C 20.893 12.041 17.617 16.166 17.816 20.804 L 14.581 24 L 14.581 17.376 C 14.581 17.366 14.708 17.366 14.775 17.301 C 18.425 13.742 18.99 8.41 15.671 4.404 C 14.574 3.081 14.02 2.504 12.67 3.972 C 8.979 7.986 9.373 13.907 13.411 17.493 L 13.411 24.155 L 10.021 20.803 C 10.292 16.173 6.924 12.001 2.225 11.684 C 0.31 11.555 -0.042 11.723 0.074 13.678 C 0.359 18.487 4.472 21.829 9.199 21.625 L 13.41 25.831 L 13.41 33.507 C 10.961 32.692 8.033 33.171 6.045 34.834 C 5.839 35.007 5.251 35.703 5.091 35.751 C 4.826 35.83 4.123 35.708 3.721 35.785 C 1.402 36.232 0.109 38.872 2.728 39.975 Z M 38.674 7.442 L 38.674 38.651 C 38.264 38.733 37.634 38.843 37.271 38.612 L 37.271 1.247 L 38.557 1.247 L 38.674 1.364 L 38.674 5.337 C 38.674 5.753 39.743 6.099 39.847 5.262 C 39.944 4.486 39.942 1.985 39.836 1.215 C 39.751 0.584 39.177 0.129 38.56 0.075 C 36.405 -0.115 33.967 0.218 31.78 0.085 C 31.149 0.2 30.723 0.6 30.583 1.227 L 30.561 38.382 C 30.589 39.451 31.258 39.827 32.239 39.901 C 33.81 40.02 36.85 40.051 38.392 39.889 C 39.106 39.814 39.6 39.535 39.826 38.828 L 39.846 7.518 C 39.754 6.726 38.785 6.803 38.675 7.442 Z M 19.236 3.219 C 19.07 3.084 17.747 3.068 17.521 3.133 C 17.036 3.275 17.067 4.108 17.584 4.206 C 17.82 4.25 18.884 4.237 19.11 4.175 C 19.46 4.078 19.511 3.441 19.236 3.219 Z M 20.639 3.132 C 20.274 3.242 20.22 4.032 20.658 4.174 C 20.896 4.251 22.156 4.247 22.344 4.135 C 22.654 3.951 22.614 3.241 22.245 3.134 C 22.086 3.089 20.793 3.086 20.639 3.133 Z M 23.836 3.133 C 23.377 3.268 23.378 4.058 23.836 4.192 C 23.998 4.239 25.114 4.241 25.3 4.206 C 25.818 4.108 25.848 3.275 25.364 3.133 C 25.206 3.087 23.994 3.087 23.836 3.133 Z M 26.956 3.133 C 26.548 3.25 26.548 4.074 26.956 4.192 C 27.165 4.251 28.518 4.238 28.66 4.135 C 28.946 3.933 28.906 3.235 28.561 3.132 C 28.407 3.086 27.115 3.089 26.955 3.133 Z M 4.834 26.572 L 4.834 31.909 C 4.834 31.931 5.109 32.203 5.148 32.219 C 5.464 32.354 6.004 32.141 6.004 31.831 L 6.004 26.571 C 6.496 26.957 6.897 28.138 7.595 28.049 C 8.003 27.998 8.095 27.606 8.012 27.252 L 6.082 24.74 C 5.642 24.344 5.142 24.379 4.715 24.775 L 2.743 27.329 C 2.668 27.808 3.049 28.182 3.532 28.035 C 3.901 27.923 4.454 26.806 4.834 26.571 Z M 24.094 26.572 C 24.469 26.767 25.076 27.941 25.396 28.036 C 25.868 28.177 26.296 27.819 26.183 27.329 C 26.139 27.136 24.496 25.06 24.251 24.817 C 23.659 24.226 23.241 24.397 22.727 24.934 C 22.076 25.616 21.486 26.568 20.896 27.315 C 20.812 27.846 21.147 28.186 21.679 28.018 C 22.091 27.886 22.515 26.882 22.923 26.65 L 22.923 31.676 C 22.923 32.452 24.093 32.359 24.093 31.909 L 24.093 26.572 Z\" fill=\"transparent\"></path><path d=\"M 2.729 39.975 C 0.11 38.872 1.403 36.232 3.722 35.785 C 4.124 35.708 4.827 35.83 5.092 35.751 C 5.252 35.703 5.839 35.007 6.046 34.834 C 8.034 33.171 10.964 32.692 13.411 33.507 L 13.411 25.831 L 9.2 21.625 C 4.473 21.83 0.36 18.489 0.075 13.679 C -0.041 11.724 0.311 11.556 2.226 11.685 C 6.925 12.002 10.293 16.174 10.022 20.804 L 13.413 24.156 L 13.413 17.494 C 9.374 13.908 8.979 7.987 12.671 3.973 C 14.021 2.504 14.575 3.081 15.672 4.405 C 18.991 8.411 18.426 13.743 14.776 17.302 C 14.709 17.367 14.582 17.367 14.582 17.377 L 14.582 24.001 L 17.817 20.805 C 17.618 16.167 20.894 12.042 25.617 11.691 C 27.686 11.536 27.893 11.804 27.764 13.836 C 27.466 18.546 23.265 21.869 18.639 21.627 L 14.582 25.678 L 14.582 33.509 C 17.639 32.669 21.255 33.242 23.291 35.832 C 24.446 35.825 25.397 35.771 26.349 36.516 C 27.746 37.608 27.438 39.382 25.81 39.976 L 10.371 39.976 C 9.793 39.645 9.858 38.887 10.564 38.805 L 25.657 38.772 C 26.703 38.137 25.543 37.129 24.75 37.021 C 24.189 36.945 23.478 37.118 22.938 36.961 C 22.407 36.808 21.994 36.058 21.557 35.692 C 20.132 34.495 17.844 34.127 16.045 34.386 C 15.423 34.476 14.486 34.904 13.993 34.914 C 13.599 34.921 12.97 34.582 12.554 34.481 C 10.528 33.987 8.35 34.43 6.747 35.77 C 6.406 36.054 5.895 36.752 5.515 36.876 C 5.009 37.042 4.45 36.822 3.879 36.955 C 3.426 37.061 2.483 37.574 2.433 38.083 C 2.39 38.528 2.757 38.773 3.154 38.809 C 4.811 38.961 6.684 38.674 8.366 38.822 C 8.967 39.045 8.939 39.665 8.421 39.974 L 2.729 39.974 Z M 14.581 15.741 C 17.637 12.553 17.286 7.253 13.985 4.37 C 10.696 7.197 10.321 12.621 13.411 15.741 L 13.411 10.169 C 13.411 10.151 13.603 9.902 13.622 9.892 C 13.948 9.697 14.581 9.901 14.581 10.247 Z M 2.378 12.857 C 2.019 12.821 1.614 12.883 1.248 12.857 C 1.08 16.766 4.016 20.095 7.914 20.417 L 4.834 17.097 C 4.785 16.617 5.304 16.27 5.721 16.53 L 8.809 19.559 C 8.604 16.139 5.804 13.202 2.377 12.858 Z M 26.589 12.857 L 25.458 12.857 C 25.108 12.857 24.034 13.182 23.664 13.323 C 21.138 14.277 19.21 16.75 19.105 19.481 L 21.988 16.635 C 22.47 16.152 23.234 16.664 22.961 17.298 C 22.117 18.279 20.927 19.157 20.118 20.143 C 20.046 20.23 19.928 20.269 19.963 20.416 C 22.715 20.145 25.126 18.465 26.124 15.859 C 26.254 15.518 26.59 14.456 26.59 14.143 L 26.59 12.857 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.371 39.975 L 8.422 39.975 C 8.939 39.666 8.968 39.045 8.367 38.823 C 6.685 38.675 4.812 38.962 3.155 38.81 C 2.758 38.774 2.391 38.53 2.434 38.084 C 2.484 37.574 3.427 37.062 3.88 36.956 C 4.452 36.822 5.01 37.043 5.516 36.877 C 5.895 36.753 6.407 36.055 6.748 35.771 C 8.351 34.431 10.529 33.987 12.555 34.482 C 12.97 34.583 13.599 34.922 13.994 34.915 C 14.487 34.905 15.424 34.477 16.046 34.387 C 17.845 34.128 20.133 34.497 21.558 35.693 C 21.995 36.059 22.408 36.809 22.939 36.962 C 23.478 37.119 24.19 36.946 24.751 37.022 C 25.545 37.13 26.704 38.139 25.658 38.773 L 10.565 38.806 C 9.859 38.887 9.793 39.646 10.372 39.977 Z M 18.381 35.625 C 17.672 35.77 17.861 36.929 18.656 36.767 C 19.366 36.622 19.176 35.463 18.381 35.625 Z M 9.334 35.703 C 8.736 35.797 8.626 36.767 9.325 36.856 C 10.297 36.981 10.106 35.582 9.334 35.703 Z M 15.695 37.85 C 16.36 38.518 17.178 37.241 16.373 36.899 C 15.747 36.634 15.263 37.417 15.695 37.85 Z\" fill=\"transparent\"></path><path d=\"M 38.674 7.442 C 38.785 6.803 39.753 6.726 39.845 7.518 L 39.825 38.828 C 39.599 39.535 39.105 39.812 38.391 39.889 C 36.849 40.051 33.808 40.02 32.237 39.901 C 31.258 39.827 30.587 39.451 30.56 38.382 L 30.582 1.227 C 30.722 0.6 31.148 0.2 31.779 0.085 C 33.965 0.218 36.403 -0.115 38.559 0.075 C 39.176 0.129 39.75 0.584 39.835 1.215 C 39.941 1.985 39.943 4.486 39.846 5.262 C 39.742 6.099 38.673 5.753 38.673 5.337 L 38.673 1.364 L 38.556 1.247 L 37.27 1.247 L 37.27 38.611 C 37.633 38.842 38.262 38.732 38.673 38.65 L 38.673 7.442 Z M 36.101 1.247 L 31.851 1.247 L 31.734 1.364 L 31.734 3 C 32.191 3.323 33.259 2.773 33.221 3.7 C 33.186 4.541 32.163 4.001 31.734 4.325 L 31.734 5.767 L 33.489 5.767 C 34.124 5.767 34.12 6.935 33.645 6.935 L 31.734 6.935 L 31.734 8.494 C 32.3 8.471 33.363 8.359 33.217 9.23 C 33.201 9.325 32.919 9.663 32.865 9.663 L 31.734 9.663 L 31.734 11.221 L 33.567 11.221 C 33.876 11.221 34.091 11.761 33.954 12.077 C 33.938 12.115 33.667 12.39 33.644 12.39 L 31.733 12.39 L 31.733 13.948 C 33.752 13.623 33.752 15.442 31.733 15.117 L 31.733 16.675 L 33.644 16.675 C 33.666 16.675 33.938 16.95 33.954 16.988 C 34.09 17.303 33.875 17.844 33.567 17.844 L 31.734 17.844 L 31.734 19.402 L 32.865 19.402 C 33.261 19.402 33.45 20.45 32.704 20.567 C 32.404 20.614 32.043 20.544 31.734 20.571 L 31.734 22.129 L 33.645 22.129 C 34.12 22.129 34.124 23.298 33.489 23.298 L 31.734 23.298 L 31.734 24.74 C 32.191 25.063 33.259 24.513 33.221 25.44 C 33.186 26.28 32.163 25.741 31.734 26.065 L 31.734 27.506 L 33.489 27.506 C 34.124 27.506 34.12 28.675 33.645 28.675 L 31.734 28.675 L 31.734 30.233 C 32.339 30.207 33.405 30.12 33.201 31.034 C 33.173 31.163 32.981 31.403 32.866 31.403 L 31.735 31.403 L 31.735 32.961 L 33.568 32.961 C 33.877 32.961 34.092 33.502 33.955 33.818 C 33.939 33.855 33.668 34.13 33.645 34.13 L 31.734 34.13 L 31.734 35.61 C 32.309 35.569 33.475 35.51 33.2 36.413 C 33.178 36.483 32.891 36.779 32.866 36.779 L 31.735 36.779 L 31.735 38.532 C 31.735 38.55 31.979 38.727 32.008 38.727 L 36.102 38.727 L 36.102 1.247 Z M 4.834 26.572 C 4.453 26.807 3.901 27.924 3.532 28.036 C 3.049 28.183 2.669 27.809 2.743 27.33 L 4.715 24.776 C 5.141 24.38 5.642 24.344 6.082 24.741 L 8.013 27.253 C 8.096 27.607 8.003 27.999 7.595 28.05 C 6.897 28.137 6.495 26.958 6.004 26.572 L 6.004 31.832 C 6.004 32.142 5.464 32.355 5.148 32.22 C 5.11 32.203 4.834 31.932 4.834 31.91 L 4.834 26.573 Z M 24.094 26.572 L 24.094 31.909 C 24.094 32.359 22.924 32.452 22.924 31.676 L 22.924 26.65 C 22.516 26.882 22.092 27.888 21.68 28.018 C 21.148 28.188 20.814 27.847 20.897 27.315 C 21.487 26.567 22.077 25.615 22.728 24.934 C 23.242 24.397 23.659 24.226 24.252 24.817 C 24.496 25.06 26.14 27.135 26.184 27.329 C 26.297 27.818 25.869 28.177 25.397 28.036 C 25.077 27.941 24.47 26.767 24.095 26.572 Z M 19.236 3.219 C 19.511 3.441 19.46 4.078 19.11 4.175 C 18.885 4.237 17.82 4.251 17.584 4.206 C 17.066 4.108 17.036 3.275 17.521 3.133 C 17.747 3.067 19.07 3.084 19.236 3.219 Z M 26.956 3.133 C 27.116 3.087 28.408 3.085 28.562 3.132 C 28.907 3.235 28.947 3.934 28.661 4.135 C 28.519 4.236 27.166 4.251 26.957 4.192 C 26.549 4.075 26.549 3.251 26.957 3.133 Z M 20.639 3.132 C 20.793 3.086 22.085 3.089 22.245 3.133 C 22.615 3.24 22.654 3.95 22.344 4.134 C 22.156 4.246 20.896 4.25 20.658 4.173 C 20.22 4.031 20.275 3.241 20.639 3.131 Z M 23.836 3.133 C 23.994 3.088 25.206 3.088 25.364 3.133 C 25.848 3.275 25.818 4.108 25.3 4.206 C 25.114 4.242 23.999 4.24 23.836 4.192 C 23.378 4.058 23.377 3.267 23.836 3.133 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.581 15.741 L 14.581 10.247 C 14.581 9.901 13.948 9.697 13.622 9.892 C 13.604 9.902 13.411 10.151 13.411 10.169 L 13.411 15.741 C 10.321 12.621 10.696 7.196 13.985 4.37 C 17.286 7.253 17.636 12.553 14.581 15.741 Z M 26.589 12.857 L 26.589 14.143 C 26.589 14.456 26.253 15.518 26.123 15.859 C 25.126 18.465 22.714 20.145 19.961 20.416 C 19.927 20.269 20.045 20.231 20.117 20.143 C 20.927 19.156 22.117 18.279 22.96 17.298 C 23.233 16.662 22.469 16.152 21.986 16.635 L 19.104 19.481 C 19.21 16.75 21.138 14.278 23.663 13.323 C 24.034 13.182 25.108 12.857 25.457 12.857 L 26.588 12.857 Z M 2.378 12.857 C 5.805 13.201 8.605 16.139 8.81 19.558 L 5.722 16.529 C 5.305 16.269 4.786 16.616 4.835 17.096 L 7.915 20.416 C 4.016 20.093 1.081 16.765 1.249 12.856 C 1.615 12.882 2.02 12.82 2.379 12.856 Z\" fill=\"transparent\"></path><path d=\"M 18.381 35.625 C 19.176 35.463 19.366 36.622 18.656 36.767 C 17.861 36.929 17.672 35.77 18.381 35.625 Z M 15.695 37.85 C 15.263 37.417 15.747 36.634 16.373 36.899 C 17.178 37.24 16.36 38.518 15.695 37.85 Z M 9.334 35.703 C 10.106 35.582 10.297 36.981 9.325 36.856 C 8.626 36.767 8.736 35.797 9.334 35.703 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 36.101 1.247 L 36.101 38.729 L 32.007 38.729 C 31.978 38.729 31.734 38.552 31.734 38.534 L 31.734 36.781 L 32.865 36.781 C 32.89 36.781 33.177 36.485 33.199 36.415 C 33.474 35.511 32.308 35.571 31.733 35.612 L 31.733 34.132 L 33.644 34.132 C 33.666 34.132 33.937 33.857 33.954 33.82 C 34.09 33.504 33.875 32.964 33.567 32.964 L 31.734 32.964 L 31.734 31.405 L 32.865 31.405 C 32.98 31.405 33.172 31.165 33.2 31.036 C 33.405 30.123 32.337 30.21 31.733 30.235 L 31.733 28.677 L 33.644 28.677 C 34.119 28.677 34.123 27.508 33.487 27.508 L 31.733 27.508 L 31.733 26.067 C 32.161 25.742 33.185 26.281 33.22 25.442 C 33.258 24.515 32.19 25.065 31.733 24.742 L 31.733 23.3 L 33.487 23.3 C 34.123 23.3 34.119 22.131 33.644 22.131 L 31.733 22.131 L 31.733 20.573 C 32.043 20.545 32.403 20.616 32.703 20.569 C 33.45 20.452 33.26 19.404 32.864 19.404 L 31.733 19.404 L 31.733 17.846 L 33.566 17.846 C 33.875 17.846 34.09 17.305 33.953 16.99 C 33.936 16.952 33.666 16.677 33.643 16.677 L 31.732 16.677 L 31.732 15.119 C 33.751 15.444 33.751 13.625 31.732 13.95 L 31.732 12.392 L 33.643 12.392 C 33.665 12.392 33.936 12.117 33.953 12.079 C 34.089 11.764 33.874 11.223 33.566 11.223 L 31.733 11.223 L 31.733 9.665 L 32.864 9.665 C 32.918 9.665 33.2 9.326 33.216 9.232 C 33.361 8.361 32.299 8.473 31.733 8.496 L 31.733 6.937 L 33.644 6.937 C 34.119 6.937 34.123 5.769 33.487 5.769 L 31.733 5.769 L 31.733 4.327 C 32.161 4.002 33.185 4.542 33.22 3.702 C 33.258 2.775 32.19 3.325 31.733 3.002 L 31.733 1.366 L 31.85 1.249 L 36.1 1.249 Z\" fill=\"transparent\"></path></svg>',svgContentId:9269814299,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ysosq\",layoutDependency:layoutDependency,layoutId:\"IIxPrXfeR\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{h5B1wPDL0:{opacity:1},Nrv9OBhxi:{opacity:1},xn2RIo9KM:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Phenomics\"})}),className:\"framer-1hbmqau\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"cSJd6NLE6\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DBaQ9LAFi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf3mica\"})})},h5B1wPDL0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf3mica\"})})},Igwg2yvPe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf4mica\"})})},xn2RIo9KM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Fen\\xf4mica\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QGkG2.framer-lcfiiv, .framer-QGkG2 .framer-lcfiiv { display: block; }\",\".framer-QGkG2.framer-d9moe4 { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QGkG2 .framer-g1kp5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-QGkG2 .framer-aupwmy { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-QGkG2 .framer-3ysosq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QGkG2 .framer-1hbmqau { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QGkG2.framer-d9moe4, .framer-QGkG2 .framer-g1kp5u, .framer-QGkG2 .framer-3ysosq { gap: 0px; } .framer-QGkG2.framer-d9moe4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QGkG2.framer-d9moe4 > :first-child { margin-top: 0px; } .framer-QGkG2.framer-d9moe4 > :last-child { margin-bottom: 0px; } .framer-QGkG2 .framer-g1kp5u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QGkG2 .framer-g1kp5u > :first-child, .framer-QGkG2 .framer-3ysosq > :first-child { margin-left: 0px; } .framer-QGkG2 .framer-g1kp5u > :last-child, .framer-QGkG2 .framer-3ysosq > :last-child { margin-right: 0px; } .framer-QGkG2 .framer-3ysosq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Nrv9OBhxi\":{\"layout\":[\"auto\",\"auto\"]},\"DBaQ9LAFi\":{\"layout\":[\"auto\",\"auto\"]},\"h5B1wPDL0\":{\"layout\":[\"auto\",\"auto\"]},\"Igwg2yvPe\":{\"layout\":[\"auto\",\"auto\"]},\"xn2RIo9KM\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"PHcz3pJwh\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerevynN0x7l=withCSS(Component,css,\"framer-QGkG2\");export default FramerevynN0x7l;FramerevynN0x7l.displayName=\"grown icon mobile\";FramerevynN0x7l.defaultProps={height:107,width:97};addPropertyControls(FramerevynN0x7l,{variant:{options:[\"vT9a5UQ6a\",\"Nrv9OBhxi\",\"DBaQ9LAFi\",\"h5B1wPDL0\",\"Igwg2yvPe\",\"xn2RIo9KM\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum},PHcz3pJwh:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerevynN0x7l,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerevynN0x7l\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"97\",\"framerIntrinsicHeight\":\"107\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nrv9OBhxi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DBaQ9LAFi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h5B1wPDL0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Igwg2yvPe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xn2RIo9KM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"PHcz3pJwh\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./evynN0x7l.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"lY7oLgeiq\",\"f8X2APRd4\",\"i5ezpMilz\",\"NAUOmz7zm\",\"ZmOXBAFpJ\",\"mAz9sez9M\"];const serializationHash=\"framer-63PuW\";const variantClassNames={f8X2APRd4:\"framer-v-f4oss0\",i5ezpMilz:\"framer-v-16pvb7y\",lY7oLgeiq:\"framer-v-1j9orgt\",mAz9sez9M:\"framer-v-1te76gr\",NAUOmz7zm:\"framer-v-phn5l3\",ZmOXBAFpJ:\"framer-v-1o49tee\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:1.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"lY7oLgeiq\",\"Variant 1 - ES\":\"i5ezpMilz\",\"Variant 1 - PT\":\"ZmOXBAFpJ\",\"Variant 2 - EN\":\"f8X2APRd4\",\"Variant 2 - ES\":\"NAUOmz7zm\",\"Variant 2 - PT\":\"mAz9sez9M\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lY7oLgeiq\",yEMTxol9n:click??props.yEMTxol9n};};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,yEMTxol9n,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lY7oLgeiq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap6p8ijn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"f8X2APRd4\");});const onTap1f4fzwa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"lY7oLgeiq\");});const onAppear14hr72d=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lY7oLgeiq\"),1500);});const onTapno7e5l=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"NAUOmz7zm\");});const onTap1kubsh8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"i5ezpMilz\");});const onTap7bye7f=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"mAz9sez9M\");});const onTapd426b4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yEMTxol9n){const res=await yEMTxol9n(...args);if(res===false)return false;}setVariant(\"ZmOXBAFpJ\");});useOnVariantChange(baseVariant,{f8X2APRd4:onAppear14hr72d});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j9orgt\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lY7oLgeiq\",onTap:onTap6p8ijn,ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({f8X2APRd4:{\"data-framer-name\":\"Variant 2 - EN\",onTap:onTap1f4fzwa},i5ezpMilz:{\"data-framer-name\":\"Variant 1 - ES\",onTap:onTapno7e5l},mAz9sez9M:{\"data-framer-name\":\"Variant 2 - PT\",onTap:onTapd426b4},NAUOmz7zm:{\"data-framer-name\":\"Variant 2 - ES\",onTap:onTap1kubsh8},ZmOXBAFpJ:{\"data-framer-name\":\"Variant 1 - PT\",onTap:onTap7bye7f}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yq5ywy\",layoutDependency:layoutDependency,layoutId:\"SN2l0cZzu\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xt1ra6\",layoutDependency:layoutDependency,layoutId:\"iNICotUk0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6gl6k0\",\"data-framer-name\":\"Temperatura-alta\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"b6CScra2D\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 19.961 40 L 18.246 40 C 8.295 39.051 5.197 26.137 13.632 20.767 L 13.661 16.04 C 14.052 15.211 15.098 15.397 15.204 16.334 C 15.382 17.902 15.102 19.84 15.168 21.444 C 15.021 21.932 14.53 22.041 14.167 22.314 C 4.789 29.358 14.014 42.579 23.445 37.283 C 28.691 34.337 29.428 26.983 24.91 23.003 C 24.461 22.608 23.083 21.879 23.006 21.398 L 23.006 5.416 C 22.815 1.824 18.324 0.253 16.022 3.118 C 14.62 4.862 15.406 7.825 15.207 9.944 C 15.115 10.935 14.125 11.186 13.661 10.314 C 13.808 7.012 12.758 3.327 15.88 1.104 C 19.476 -1.457 24.327 1.016 24.565 5.337 L 24.576 20.765 C 28.742 23.568 30.574 28.597 28.753 33.393 C 27.395 36.973 23.802 39.697 19.96 40 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 16.751 22.755 L 16.781 6.059 C 16.842 5.79 17.172 5.581 17.432 5.541 C 17.956 5.459 20.251 5.461 20.761 5.554 C 21.188 5.631 21.449 5.999 21.446 6.429 L 21.453 22.718 L 21.521 22.806 C 25.768 24.299 27.603 29.266 25.382 33.217 C 22.807 37.798 16.248 38.136 13.192 33.865 C 10.346 29.888 12.182 24.326 16.752 22.754 Z M 19.883 7.096 L 18.324 7.096 L 18.324 23.509 C 18.324 23.585 18.067 23.941 17.963 24.006 C 17.699 24.174 17.186 24.25 16.867 24.393 C 10.89 27.061 13.244 35.799 19.53 35.322 C 25.35 34.88 26.793 26.8 21.339 24.393 C 21.025 24.254 19.882 24.016 19.882 23.589 L 19.882 7.096 Z M 27.426 5.554 C 27.872 5.473 30.156 5.467 30.586 5.554 C 31.427 5.724 31.43 6.96 30.519 7.089 C 30.054 7.154 27.753 7.172 27.346 7.079 C 26.584 6.907 26.544 5.715 27.426 5.554 Z M 27.426 9.921 C 27.872 9.84 30.156 9.833 30.586 9.921 C 31.427 10.091 31.43 11.327 30.519 11.455 C 30.054 11.521 27.753 11.539 27.346 11.446 C 26.584 11.274 26.544 10.081 27.426 9.921 Z M 27.426 14.288 C 27.872 14.206 30.156 14.2 30.586 14.288 C 31.427 14.457 31.43 15.694 30.519 15.822 C 30.054 15.888 27.753 15.905 27.346 15.813 C 26.584 15.641 26.544 14.448 27.426 14.288 Z M 27.426 18.654 C 27.872 18.573 30.156 18.567 30.586 18.654 C 31.427 18.824 31.43 20.06 30.519 20.189 C 30.054 20.254 27.753 20.272 27.346 20.179 C 26.584 20.007 26.544 18.815 27.426 18.654 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 14.249 12.415 C 15.274 12.216 15.526 13.738 14.602 13.943 C 13.557 14.174 13.229 12.614 14.249 12.415 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 22.28 28.867 C 22.933 28.739 23.258 29.306 23.228 29.891 C 23.079 32.792 19.813 34.654 17.229 33.336 C 16.629 33.03 16.144 32.347 16.838 31.847 C 17.392 31.448 17.788 31.933 18.324 32.085 C 19.614 32.452 21.007 31.832 21.481 30.564 C 21.717 29.934 21.502 29.019 22.281 28.866 Z M 15.575 28.867 C 16.795 28.666 16.78 30.545 15.641 30.407 C 14.755 30.3 14.718 29.008 15.575 28.867 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:9435819099,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cql9id\",layoutDependency:layoutDependency,layoutId:\"bOl0JjJAJ\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{f8X2APRd4:{opacity:1},mAz9sez9M:{opacity:1},NAUOmz7zm:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climate\"})}),className:\"framer-1b2cucl\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"VY9sZ6aWj\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i5ezpMilz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},mAz9sez9M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},NAUOmz7zm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})},ZmOXBAFpJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Clima\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-63PuW.framer-12fxiwg, .framer-63PuW .framer-12fxiwg { display: block; }\",\".framer-63PuW.framer-1j9orgt { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-63PuW .framer-yq5ywy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-63PuW .framer-1xt1ra6 { flex: none; height: 40px; overflow: visible; position: relative; width: 40px; }\",\".framer-63PuW .framer-6gl6k0 { flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-63PuW .framer-1cql9id { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-63PuW .framer-1b2cucl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-63PuW.framer-1j9orgt, .framer-63PuW .framer-yq5ywy, .framer-63PuW .framer-1cql9id { gap: 0px; } .framer-63PuW.framer-1j9orgt > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-63PuW.framer-1j9orgt > :first-child { margin-top: 0px; } .framer-63PuW.framer-1j9orgt > :last-child { margin-bottom: 0px; } .framer-63PuW .framer-yq5ywy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-63PuW .framer-yq5ywy > :first-child, .framer-63PuW .framer-1cql9id > :first-child { margin-left: 0px; } .framer-63PuW .framer-yq5ywy > :last-child, .framer-63PuW .framer-1cql9id > :last-child { margin-right: 0px; } .framer-63PuW .framer-1cql9id > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 71\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"f8X2APRd4\":{\"layout\":[\"auto\",\"auto\"]},\"i5ezpMilz\":{\"layout\":[\"auto\",\"auto\"]},\"NAUOmz7zm\":{\"layout\":[\"auto\",\"auto\"]},\"ZmOXBAFpJ\":{\"layout\":[\"auto\",\"auto\"]},\"mAz9sez9M\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yEMTxol9n\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHqI0iLz1b=withCSS(Component,css,\"framer-63PuW\");export default FramerHqI0iLz1b;FramerHqI0iLz1b.displayName=\"temperature icon mobile\";FramerHqI0iLz1b.defaultProps={height:105,width:71};addPropertyControls(FramerHqI0iLz1b,{variant:{options:[\"lY7oLgeiq\",\"f8X2APRd4\",\"i5ezpMilz\",\"NAUOmz7zm\",\"ZmOXBAFpJ\",\"mAz9sez9M\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum},yEMTxol9n:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerHqI0iLz1b,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHqI0iLz1b\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f8X2APRd4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i5ezpMilz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NAUOmz7zm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZmOXBAFpJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mAz9sez9M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"yEMTxol9n\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"71\",\"framerIntrinsicHeight\":\"105\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HqI0iLz1b.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"MjaoDlZFF\",\"M8RHP6qJe\",\"pv9qLxaHf\",\"Fj9ZbWjr8\",\"Xse_1cZkx\",\"aE7HS1Vmv\"];const serializationHash=\"framer-o8Sgo\";const variantClassNames={aE7HS1Vmv:\"framer-v-1pmtomc\",Fj9ZbWjr8:\"framer-v-18nta7a\",M8RHP6qJe:\"framer-v-50j5xm\",MjaoDlZFF:\"framer-v-oihavq\",pv9qLxaHf:\"framer-v-zhs3gr\",Xse_1cZkx:\"framer-v-1lm83no\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:1.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"MjaoDlZFF\",\"Variant 1 - ES\":\"pv9qLxaHf\",\"Variant 1 - PT\":\"Xse_1cZkx\",\"Variant 2 - EN\":\"M8RHP6qJe\",\"Variant 2 - ES\":\"Fj9ZbWjr8\",\"Variant 2 - PT\":\"aE7HS1Vmv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MjaoDlZFF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MjaoDlZFF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ekwdg7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"M8RHP6qJe\");});const onTap1y6pt25=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"MjaoDlZFF\");});const onAppear1i3ejhf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MjaoDlZFF\"),1500);});const onTapro8zzp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Fj9ZbWjr8\");});const onTaphefvlq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"pv9qLxaHf\");});const onTapegs9vu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"aE7HS1Vmv\");});const onTap1skbjc7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Xse_1cZkx\");});useOnVariantChange(baseVariant,{M8RHP6qJe:onAppear1i3ejhf});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-oihavq\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MjaoDlZFF\",onTap:onTap1ekwdg7,ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({aE7HS1Vmv:{\"data-framer-name\":\"Variant 2 - PT\",onTap:onTap1skbjc7},Fj9ZbWjr8:{\"data-framer-name\":\"Variant 2 - ES\",onTap:onTaphefvlq},M8RHP6qJe:{\"data-framer-name\":\"Variant 2 - EN\",onTap:onTap1y6pt25},pv9qLxaHf:{\"data-framer-name\":\"Variant 1 - ES\",onTap:onTapro8zzp},Xse_1cZkx:{\"data-framer-name\":\"Variant 1 - PT\",onTap:onTapegs9vu}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3r5py9\",layoutDependency:layoutDependency,layoutId:\"SESRdVlqv\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14819f5\",\"data-framer-name\":\"Suelo (1)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nwJ0GUTOy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 40 0 L 40 40 L 0 40 L 0 0 Z M 15.439 10.448 L 0.819 10.448 C 0.304 10.448 -0.021 11.367 0.547 11.655 L 39.108 11.7 C 40.039 11.609 39.673 10.448 39.103 10.448 L 24.561 10.448 C 24.935 9.609 25.665 8.825 26.354 8.225 C 26.664 7.956 27.555 7.484 27.601 7.127 C 27.728 6.119 26.416 6.392 25.796 6.497 C 25.32 6.577 24.87 6.741 24.406 6.861 C 24.766 6.255 25.416 5.774 25.987 5.364 C 26.325 5.121 27.539 4.49 27.601 4.171 C 27.659 3.874 27.601 3.585 27.32 3.443 C 27.039 3.3 25.479 3.321 25.07 3.355 C 24.737 3.383 24.343 3.504 24.017 3.587 C 23.961 3.532 24.378 3.037 24.444 2.962 C 25.001 2.326 25.695 1.818 26.26 1.19 C 26.544 -0.163 24.855 0.446 24.13 0.7 C 22.708 1.198 21.333 2.107 20.382 3.273 C 18.907 2.102 17.325 1.293 15.454 0.961 C 14.995 0.88 14.036 0.715 13.611 0.785 C 13.133 0.866 12.945 1.4 13.219 1.793 C 13.372 2.011 14.43 2.669 14.739 2.924 C 15.21 3.314 15.669 3.742 16.062 4.21 C 15.215 3.996 11.711 2.667 12.441 4.597 C 13.655 5.316 14.746 6.226 15.672 7.292 C 14.92 7.291 12.198 6.494 12.477 7.914 C 12.534 8.205 14.139 9.16 14.503 9.474 C 14.84 9.762 15.143 10.12 15.437 10.45 Z M 39.507 13.28 C 39.382 13.166 39.123 13.097 38.951 13.095 L 0.971 13.095 C 0.218 13.083 -0.079 13.951 0.62 14.311 L 39.356 14.287 C 39.732 14.103 39.813 13.559 39.507 13.279 Z M 2.239 14.909 C 1.606 15.051 1.613 15.993 2.319 16.122 C 2.829 16.216 3.542 16.147 3.515 15.479 C 3.488 14.811 2.719 14.801 2.239 14.909 Z M 4.655 14.909 C 4.478 14.96 4.244 15.304 4.233 15.49 C 4.183 16.406 6.102 16.392 6.003 15.407 C 5.946 14.837 5.07 14.79 4.655 14.909 Z M 8.32 15.071 C 8.003 14.695 6.465 14.761 6.738 15.675 C 7.029 16.651 9.13 16.032 8.32 15.071 Z M 9.646 14.909 C 9.293 14.989 9.142 15.358 9.216 15.694 C 9.369 16.383 11.23 16.365 10.9 15.259 C 10.776 14.845 9.991 14.832 9.646 14.909 Z M 12.063 14.908 C 11.533 15.062 11.547 16.029 12.206 16.135 C 12.752 16.223 13.497 16.1 13.408 15.406 C 13.335 14.835 12.488 14.784 12.061 14.908 Z M 14.558 14.909 C 14.197 14.99 14.046 15.446 14.209 15.771 C 14.538 16.425 15.948 16.22 15.905 15.483 C 15.867 14.824 15.043 14.801 14.558 14.909 Z M 16.786 15.963 C 17.072 16.248 18.167 16.246 18.307 15.774 C 18.656 14.607 16.681 14.623 16.608 15.407 C 16.595 15.555 16.688 15.865 16.786 15.963 Z M 19.549 14.909 C 18.958 15.042 18.901 15.989 19.628 16.122 C 20.139 16.216 20.851 16.147 20.824 15.479 C 20.797 14.811 20.029 14.802 19.549 14.909 Z M 23.136 15.963 C 23.235 15.864 23.328 15.555 23.315 15.407 C 23.242 14.623 21.268 14.607 21.616 15.774 C 21.757 16.247 22.851 16.248 23.136 15.963 Z M 24.461 14.909 C 24.136 14.982 23.945 15.428 24.074 15.729 C 24.362 16.4 25.819 16.282 25.8 15.475 C 25.785 14.826 24.929 14.804 24.46 14.908 Z M 26.956 14.909 C 26.379 15.038 26.318 15.932 26.976 16.103 C 27.39 16.21 28.09 16.211 28.208 15.695 C 28.395 14.882 27.571 14.772 26.955 14.909 Z M 29.451 14.909 C 28.819 15.051 28.824 15.992 29.531 16.122 C 30.027 16.212 30.754 16.126 30.727 15.479 C 30.7 14.832 29.932 14.801 29.452 14.909 Z M 31.602 15.071 C 30.792 16.032 32.893 16.65 33.184 15.675 C 33.457 14.762 31.919 14.695 31.602 15.071 Z M 34.364 14.909 C 33.995 14.992 33.83 15.389 33.977 15.73 C 34.285 16.445 35.877 16.249 35.659 15.375 C 35.522 14.821 34.82 14.808 34.364 14.909 Z M 36.858 14.909 C 36.268 15.042 36.21 15.989 36.937 16.122 C 37.422 16.21 38.092 16.164 38.132 15.555 C 38.178 14.864 37.394 14.791 36.858 14.91 Z M 23.214 16.703 C 22.619 16.835 22.621 17.819 23.438 17.927 C 24.732 18.098 24.854 16.824 24.05 16.692 C 23.859 16.66 23.4 16.662 23.214 16.704 Z M 33.117 16.703 C 32.874 16.756 32.716 16.977 32.685 17.215 C 32.566 18.144 34.453 18.219 34.453 17.272 C 34.453 16.61 33.584 16.6 33.117 16.704 Z M 7.071 17.909 C 7.921 16.977 5.793 16.321 5.491 17.307 C 5.248 18.099 6.678 18.34 7.071 17.909 Z M 10.894 16.858 C 10.284 16.995 10.28 17.97 10.959 18.084 C 11.487 18.173 12.197 18.104 12.169 17.428 C 12.142 16.792 11.374 16.751 10.894 16.858 Z M 20.796 16.858 C 20.201 16.992 20.172 17.883 20.736 18.055 C 21.117 18.171 21.885 18.161 22.031 17.704 C 22.292 16.889 21.411 16.721 20.796 16.858 Z M 35.075 18.233 L 32.101 18.23 C 31.629 17.964 30.958 17.056 30.45 16.997 C 29.299 16.861 27.89 17.098 26.709 17.002 C 25.998 17.255 24.981 18.342 24.293 18.406 C 22.936 18.532 21.382 18.308 20.004 18.398 L 17.877 17.251 C 16.783 17.315 15.449 17.103 14.384 17.231 C 13.809 17.301 13.142 18.102 12.586 18.325 L 8.547 17.938 L 5.898 19.17 C 5.397 18.86 4.225 17.275 3.765 17.171 C 3.373 17.082 1.269 17.1 0.825 17.161 C 0.019 17.274 0.075 18.25 0.678 18.385 C 1.43 18.553 2.557 18.263 3.35 18.443 C 4.008 18.952 4.734 19.934 5.375 20.394 C 5.761 20.671 5.875 20.571 6.264 20.418 C 7.054 20.108 7.85 19.557 8.644 19.224 L 12.898 19.566 L 14.692 18.475 L 17.577 18.482 L 19.691 19.644 C 21.294 19.54 23.102 19.8 24.679 19.652 C 25.472 19.578 26.452 18.315 27.245 18.241 C 28.173 18.154 29.251 18.299 30.196 18.26 C 30.603 18.519 31.326 19.416 31.776 19.488 C 32.379 19.584 34.806 19.572 35.429 19.484 C 35.99 19.406 36.121 18.858 36.345 18.413 C 36.545 18.288 38.734 18.497 39.24 18.383 C 39.857 18.245 39.878 17.277 39.095 17.157 C 38.552 17.074 36.538 17.08 35.986 17.157 C 35.435 17.234 35.3 17.818 35.072 18.231 Z M 16.583 19.283 C 16.277 18.949 15.81 19.091 15.56 19.419 C 15.254 19.821 13.768 22.369 13.628 22.788 C 13.387 23.51 13.883 23.95 14.533 23.615 L 16.731 19.882 C 16.81 19.714 16.701 19.41 16.584 19.282 Z M 26.25 23.286 L 27.898 20.371 C 28.036 19.672 27.301 19.294 26.79 19.889 C 26.591 20.12 25.251 22.437 25.202 22.668 C 25.054 23.368 25.785 23.732 26.249 23.286 Z M 38.497 19.743 C 38.235 19.8 38.154 20.011 38.018 20.202 C 37.377 21.097 36.89 22.295 36.29 23.236 C 36.206 23.868 36.911 24.289 37.383 23.778 L 39.264 20.507 C 39.35 20.019 39.012 19.63 38.496 19.743 Z M 11.597 20.052 C 11.422 20.089 11.258 20.256 11.163 20.402 L 8.346 25.384 C 8.352 26.082 9.17 26.31 9.546 25.725 L 12.338 20.874 C 12.544 20.432 12.04 19.96 11.597 20.052 Z M 19.239 20.053 C 18.975 20.107 18.864 20.364 18.728 20.561 C 17.243 22.742 16.129 25.416 14.642 27.624 C 14.315 28.386 15.171 28.97 15.706 28.3 L 19.979 20.875 C 20.184 20.431 19.681 19.963 19.239 20.053 Z M 7.697 20.133 C 7.53 20.171 7.436 20.269 7.341 20.401 C 6.171 22.024 5.312 24.27 4.153 25.947 C 3.832 26.607 4.641 27.121 5.18 26.662 L 8.412 21.083 C 8.693 20.52 8.325 19.99 7.696 20.133 Z M 30.772 20.14 C 30.432 20.158 30.275 20.472 30.112 20.717 C 28.755 22.767 27.702 25.171 26.342 27.237 C 25.92 28.019 26.955 28.679 27.433 27.861 C 28.541 25.703 30.087 23.603 31.152 21.444 C 31.285 21.173 31.502 20.876 31.408 20.562 C 31.349 20.366 30.982 20.128 30.773 20.14 Z M 34.521 20.13 C 34.244 20.187 34.077 20.501 33.933 20.717 C 32.428 22.966 31.269 25.657 29.769 27.935 C 29.451 28.645 30.331 29.204 30.835 28.612 L 35.201 21.049 C 35.414 20.557 35.063 20.019 34.522 20.13 Z M 4.342 20.532 C 3.955 20.178 3.544 20.439 3.287 20.793 C 2.391 22.03 1.746 23.777 0.84 25.05 C 0.499 25.868 1.432 26.37 1.936 25.679 C 2.868 24.402 3.561 22.601 4.461 21.266 C 4.585 21.038 4.529 20.704 4.343 20.532 Z M 22.823 20.368 C 22.694 20.406 22.553 20.606 22.47 20.716 C 21.32 22.235 20.491 24.512 19.358 26.102 C 18.998 26.745 19.893 27.421 20.384 26.818 L 23.644 21.187 C 23.857 20.628 23.385 20.2 22.823 20.367 Z M 12.921 24.345 C 12.448 24.452 11.892 25.627 12.525 25.954 C 13.545 26.481 14.367 24.017 12.921 24.345 Z M 24.534 24.351 C 24.299 24.364 24.121 24.553 23.982 24.723 C 23.629 25.158 22.403 27.301 22.183 27.838 C 21.878 28.58 22.703 29.113 23.236 28.5 C 23.484 28.216 25.001 25.598 25.125 25.243 C 25.274 24.816 24.995 24.326 24.533 24.351 Z M 35.767 24.422 C 35.595 24.461 35.556 24.537 35.457 24.658 C 35.245 24.919 34.143 26.816 34.068 27.095 C 33.885 27.772 34.686 28.223 35.166 27.642 C 35.334 27.436 36.473 25.473 36.531 25.266 C 36.689 24.704 36.348 24.286 35.766 24.422 Z M 14.452 30.85 C 14.792 31.154 15.281 31.006 15.71 31.034 C 17.986 31.185 20.283 31.207 22.575 31.269 C 23.274 31.184 24.33 29.886 24.914 29.858 L 30.996 31.031 L 35.03 30.546 L 37.35 28.578 C 37.956 28.381 39.247 28.848 39.599 28.177 C 40.27 26.903 37.612 27.351 37.014 27.306 L 34.536 29.352 L 31.301 29.787 L 24.607 28.539 L 22.4 30.002 L 15.259 29.769 C 15.007 29.697 13.214 27.227 12.827 26.821 C 12.672 26.657 12.429 26.371 12.199 26.356 L 7.505 26.957 L 5.731 29.081 L 3.844 27.305 C 2.899 27.376 1.652 27.152 0.746 27.294 C -0.003 27.41 0.103 28.445 0.896 28.539 C 1.689 28.632 2.587 28.454 3.377 28.553 C 3.673 28.641 4.918 30.194 5.343 30.486 C 5.853 30.84 6.078 30.628 6.435 30.253 C 6.709 29.966 8.03 28.124 8.162 28.081 L 11.878 27.694 L 14.454 30.849 Z M 18.998 29.213 C 19.062 29.151 19.471 28.459 19.509 28.36 C 19.745 27.754 19.24 27.251 18.654 27.505 C 18.405 27.614 17.917 28.526 17.927 28.808 C 17.949 29.363 18.602 29.593 18.997 29.213 Z M 10.582 28.399 C 9.973 28.535 9.969 29.51 10.648 29.625 C 11.176 29.714 11.885 29.645 11.857 28.969 C 11.83 28.332 11.063 28.292 10.582 28.399 Z M 37.452 29.343 C 36.601 30.275 38.731 30.931 39.032 29.945 C 39.296 29.079 37.823 28.936 37.452 29.343 Z M 8.71 29.646 C 8.282 29.776 6.324 32.734 5.78 33.187 C 5.657 33.392 5.668 33.62 5.729 33.844 C 5.784 34.043 6.882 35.884 7.023 35.98 L 10.818 37.409 C 11.339 37.556 11.839 36.987 12.205 36.65 C 12.592 36.294 13.236 35.808 13.065 35.241 C 12.967 34.917 12.18 33.815 12.169 33.57 C 12.148 33.108 12.694 32.452 12.517 31.81 C 12.458 31.601 11.93 30.753 11.752 30.626 C 11.508 30.452 9.542 29.729 9.205 29.665 C 9.039 29.632 8.88 29.593 8.71 29.645 Z M 2.945 29.799 C 2.832 29.814 2.707 29.878 2.611 29.941 C 2.359 30.106 1.318 31.141 1.049 31.419 C 0.756 31.724 0.735 31.868 0.815 32.283 C 0.894 32.699 1.436 34.431 1.621 34.752 C 1.863 35.173 2.221 35.127 2.598 34.917 C 3.248 34.553 4.326 33.752 4.936 33.279 C 5.366 32.947 5.847 32.738 5.54 32.081 C 5.058 31.755 3.554 29.873 3.139 29.798 C 3.068 29.785 3.014 29.791 2.944 29.8 Z M 24.695 30.27 C 24.1 30.404 24.072 31.295 24.635 31.466 C 25.016 31.581 25.784 31.572 25.93 31.115 C 26.186 30.312 25.301 30.132 24.695 30.27 Z M 27.424 30.894 C 26.782 31.04 26.665 32.029 27.484 32.126 C 27.977 32.184 28.641 32.186 28.657 31.541 C 28.674 30.903 27.92 30.78 27.425 30.893 Z M 34.988 30.894 C 34.378 31.03 34.374 32.005 35.053 32.12 C 35.581 32.208 36.291 32.14 36.263 31.464 C 36.235 30.827 35.468 30.786 34.988 30.894 Z M 34.619 38.362 C 34.68 38.87 34.63 39.564 35.221 39.749 C 36.442 39.674 37.915 39.906 39.105 39.767 C 39.484 39.722 39.696 39.495 39.692 39.106 C 39.526 36.82 39.899 34.256 39.692 32.003 C 39.67 31.76 39.63 31.571 39.417 31.421 C 39.17 31.247 37.31 30.961 37.014 31.049 C 36.465 31.209 36.45 32.952 36.212 33.444 C 35.902 33.91 34.314 35.224 34.187 35.628 C 33.989 36.261 34.565 37.574 34.542 38.283 C 34.422 38.289 34.453 38.137 34.339 38.058 C 33.737 37.644 32.49 37.93 32.868 38.828 C 33.06 39.285 34.309 39.287 34.501 38.828 C 34.572 38.659 34.471 38.401 34.619 38.362 Z M 33.275 31.129 C 32.956 31.15 31.025 31.593 30.742 31.717 C 30.51 31.819 29.958 32.708 29.942 32.949 C 29.931 33.094 29.99 33.178 30.061 33.291 C 30.215 33.529 31.965 35.078 32.241 35.243 C 32.539 35.42 32.66 35.429 32.973 35.274 C 33.175 35.173 34.776 33.945 34.856 33.805 C 34.985 33.581 34.95 33.396 34.87 33.158 C 34.802 32.956 34.019 31.604 33.872 31.427 C 33.711 31.233 33.539 31.111 33.273 31.128 Z M 16.898 31.44 C 16.759 31.471 16.666 31.561 16.567 31.654 C 16.435 31.778 15.45 33.028 15.403 33.142 C 15.042 34.029 16.221 34.162 16.61 34.579 C 16.823 34.807 16.917 35.35 17.203 35.547 C 17.305 35.618 18.759 36.129 18.927 36.161 C 19.14 36.203 19.348 36.204 19.552 36.121 C 19.705 36.058 20.765 35.043 20.803 34.877 C 20.758 33.871 20.755 32.792 20.541 31.82 C 20.253 31.346 19.329 31.528 18.832 31.501 C 18.278 31.471 17.443 31.319 16.899 31.441 Z M 13.78 32.065 C 13.054 32.214 13.109 33.182 13.686 33.293 C 14.073 33.367 14.877 33.363 14.971 32.863 C 15.108 32.129 14.369 31.944 13.78 32.065 Z M 21.655 32.066 C 20.886 32.205 20.846 33.216 21.711 33.298 C 23.402 33.457 23.073 31.808 21.655 32.066 Z M 26.101 32.064 C 25.82 32.106 23.803 32.861 23.543 33.016 C 23.249 33.191 22.694 34.156 22.683 34.501 C 22.67 34.943 23.106 35.77 23.059 36.05 C 23.008 36.355 22.291 37.299 22.181 37.656 C 22.103 37.911 22.12 38.071 22.249 38.298 C 22.307 38.401 23.289 39.34 23.434 39.452 C 23.58 39.565 23.791 39.73 23.982 39.761 C 26.192 39.619 28.666 39.966 30.844 39.77 C 31.825 39.681 31.456 38.745 31.426 38.089 C 31.399 37.491 31.44 35.648 31.151 35.245 L 26.39 32.048 C 26.293 32.03 26.199 32.049 26.104 32.064 Z M 17.597 36.516 C 17.421 36.307 15.759 34.895 15.545 34.786 C 15.236 34.631 15.047 34.664 14.776 34.853 C 14.341 35.157 13.545 35.934 13.136 36.332 C 12.685 36.773 12.106 37.146 12.658 37.79 L 14.343 39.341 C 14.625 39.428 16.909 39.426 17.267 39.371 C 17.598 39.32 17.728 39.094 17.771 38.783 C 17.83 38.36 17.846 36.809 17.597 36.515 Z M 4.347 34.868 C 4.135 34.909 2.185 35.97 1.954 36.145 C 1.561 36.443 1.5 36.798 1.83 37.194 C 2.665 37.829 3.484 38.973 4.286 39.572 C 4.675 39.861 4.878 39.837 5.227 39.496 C 5.395 39.331 6.842 37.271 6.897 37.111 C 6.964 36.919 6.978 36.681 6.899 36.493 C 6.835 36.343 4.892 34.945 4.68 34.889 C 4.551 34.854 4.483 34.841 4.347 34.868 Z M 21.186 34.949 C 20.702 35.057 20.617 35.773 21.056 36.059 C 21.496 36.346 22.554 36.196 22.531 35.525 C 22.508 34.854 21.68 34.839 21.186 34.949 Z M 31.947 35.728 C 31.384 35.858 31.359 36.836 32.171 36.951 C 33.467 37.134 33.604 35.844 32.783 35.716 C 32.591 35.685 32.133 35.684 31.947 35.728 Z M 18.457 36.742 C 18.132 36.815 17.941 37.26 18.07 37.561 C 18.368 38.254 19.848 38.077 19.803 37.316 C 19.765 36.656 18.941 36.633 18.456 36.742 Z M 7.697 37.287 C 7.503 37.33 7.305 37.523 7.265 37.718 C 7.055 38.74 9.057 38.809 9.035 37.853 C 9.021 37.204 8.165 37.182 7.696 37.286 Z M 10.976 37.915 C 10.083 38.031 10.073 39.067 10.872 39.147 C 12.619 39.322 12.335 37.737 10.976 37.915 Z M 20.721 37.913 C 19.907 38.038 19.919 39.039 20.55 39.138 C 20.966 39.202 21.643 39.236 21.797 38.757 C 22.017 38.074 21.27 37.829 20.721 37.914 Z\" fill=\"transparent\"></path><path d=\"M 15.439 10.448 C 15.144 10.119 14.84 9.76 14.504 9.472 C 14.14 9.158 12.535 8.203 12.478 7.911 C 12.199 6.492 14.921 7.289 15.673 7.29 C 14.747 6.224 13.656 5.314 12.442 4.595 C 11.712 2.665 15.216 3.994 16.064 4.208 C 15.669 3.74 15.21 3.311 14.74 2.922 C 14.431 2.667 13.373 2.01 13.22 1.791 C 12.946 1.398 13.134 0.865 13.612 0.783 C 14.037 0.711 14.995 0.878 15.455 0.959 C 17.327 1.291 18.909 2.1 20.383 3.271 C 21.334 2.106 22.709 1.196 24.131 0.698 C 24.856 0.445 26.544 -0.165 26.261 1.188 C 25.697 1.816 25.002 2.324 24.445 2.96 C 24.379 3.035 23.962 3.53 24.018 3.585 C 24.344 3.501 24.739 3.381 25.071 3.353 C 25.48 3.319 27.033 3.295 27.321 3.441 C 27.608 3.586 27.66 3.873 27.602 4.169 C 27.54 4.488 26.326 5.12 25.989 5.361 C 25.417 5.773 24.767 6.253 24.407 6.859 C 24.871 6.74 25.321 6.575 25.797 6.495 C 26.418 6.391 27.729 6.117 27.602 7.125 C 27.557 7.482 26.665 7.954 26.355 8.223 C 25.666 8.823 24.937 9.608 24.562 10.446 L 39.104 10.446 C 39.674 10.446 40.039 11.608 39.109 11.698 L 0.548 11.653 C -0.02 11.365 0.305 10.446 0.82 10.446 L 15.44 10.446 Z M 19.882 7.173 L 20.803 5.652 C 19.652 4.117 17.977 2.808 16.062 2.418 C 16.852 3.215 17.616 4.011 18.262 4.933 C 18.726 5.594 19.154 6.548 19.693 7.09 C 19.757 7.154 19.762 7.201 19.881 7.172 Z M 23.158 2.574 C 23.082 2.501 22.221 3.179 22.108 3.277 C 21.984 3.384 21.361 3.974 21.324 4.057 C 21.196 4.338 21.558 4.584 21.717 4.756 Z M 24.795 4.679 C 23.693 4.841 22.555 5.521 21.834 6.357 C 21.525 6.717 20.746 7.895 20.676 8.325 C 20.6 8.79 21.503 9.736 21.522 10.293 C 21.642 10.416 21.659 10.281 21.675 10.175 C 21.915 8.555 22.36 7.269 23.43 6.003 Z M 20.273 10.448 C 19.285 8.387 17.877 6.325 15.673 5.459 C 16.815 6.584 17.73 7.876 18.542 9.256 C 18.701 9.527 19.028 10.398 19.298 10.45 C 19.568 10.502 19.976 10.411 20.273 10.449 Z M 24.483 8.266 C 24.378 8.177 23.316 8.891 23.198 9.046 C 22.931 9.401 22.997 10.04 22.846 10.447 L 23.145 10.434 C 23.444 9.623 24.001 8.965 24.482 8.266 Z M 17.778 10.448 C 17.498 10.118 17.319 9.432 16.996 9.165 C 16.649 8.878 15.816 8.643 15.361 8.578 L 16.103 9.278 L 16.92 10.411 L 17.779 10.448 Z M 14.452 30.85 L 11.876 27.695 L 8.16 28.082 C 8.028 28.125 6.707 29.967 6.433 30.254 C 6.076 30.629 5.851 30.84 5.341 30.487 C 4.917 30.195 3.671 28.642 3.375 28.554 C 2.585 28.455 1.667 28.631 0.894 28.54 C 0.121 28.448 -0.004 27.411 0.744 27.295 C 1.65 27.153 2.898 27.377 3.842 27.306 L 5.729 29.082 L 7.503 26.958 L 12.197 26.357 C 12.428 26.371 12.67 26.658 12.825 26.822 C 13.211 27.228 15.005 29.699 15.257 29.77 L 22.398 30.003 L 24.605 28.54 L 31.299 29.789 L 34.534 29.353 L 37.011 27.307 C 37.61 27.352 40.268 26.904 39.597 28.178 C 39.244 28.849 37.954 28.382 37.348 28.579 L 35.028 30.547 L 30.994 31.032 L 24.911 29.859 C 24.329 29.887 23.272 31.185 22.573 31.27 C 20.281 31.208 17.984 31.186 15.708 31.035 C 15.279 31.007 14.79 31.155 14.45 30.851 Z M 35.075 18.233 C 35.303 17.82 35.463 17.233 35.99 17.159 C 36.517 17.085 38.555 17.076 39.098 17.159 C 39.881 17.279 39.86 18.247 39.243 18.385 C 38.736 18.499 36.548 18.29 36.348 18.415 C 36.123 18.86 35.993 19.408 35.432 19.486 C 34.809 19.573 32.382 19.586 31.779 19.49 C 31.329 19.418 30.607 18.521 30.199 18.262 C 29.254 18.301 28.176 18.156 27.248 18.243 C 26.455 18.317 25.475 19.58 24.682 19.654 C 23.105 19.801 21.296 19.541 19.694 19.646 L 17.58 18.484 L 14.695 18.477 L 12.901 19.568 L 8.647 19.226 C 7.853 19.558 7.057 20.109 6.267 20.42 C 5.877 20.572 5.765 20.673 5.378 20.396 C 4.738 19.936 4.011 18.954 3.353 18.445 C 2.56 18.265 1.433 18.555 0.681 18.387 C 0.077 18.253 0.022 17.276 0.828 17.164 C 1.272 17.102 3.376 17.084 3.768 17.173 C 4.227 17.276 5.4 18.862 5.901 19.172 L 8.55 17.94 L 12.59 18.327 C 13.144 18.103 13.811 17.302 14.388 17.233 C 15.452 17.105 16.786 17.318 17.88 17.253 L 20.007 18.4 C 21.385 18.309 22.94 18.534 24.296 18.408 C 24.984 18.344 26.002 17.257 26.713 17.004 C 27.893 17.1 29.302 16.862 30.453 16.999 C 30.961 17.059 31.632 17.966 32.104 18.232 L 35.078 18.235 Z M 39.507 13.28 C 39.811 13.559 39.732 14.104 39.356 14.289 L 0.62 14.312 C -0.079 13.952 0.218 13.084 0.971 13.096 L 38.951 13.096 C 39.123 13.098 39.382 13.167 39.507 13.281 Z M 26.101 32.064 C 26.197 32.049 26.29 32.029 26.386 32.048 L 31.148 35.245 C 31.436 35.648 31.395 37.492 31.423 38.089 C 31.453 38.745 31.822 39.681 30.841 39.77 C 28.664 39.966 26.189 39.619 23.979 39.761 C 23.787 39.729 23.584 39.569 23.431 39.452 C 23.278 39.335 22.304 38.401 22.246 38.298 C 22.117 38.071 22.1 37.911 22.178 37.656 C 22.289 37.299 23.005 36.356 23.056 36.05 C 23.103 35.771 22.667 34.944 22.68 34.501 C 22.691 34.156 23.246 33.19 23.54 33.016 C 23.8 32.86 25.817 32.105 26.098 32.064 Z M 30.253 38.519 L 30.025 35.979 L 26.163 33.378 C 26.066 33.374 24.475 33.972 24.349 34.056 C 23.524 34.604 24.466 35.524 24.325 36.293 C 24.276 36.564 23.513 37.674 23.554 37.849 L 24.289 38.52 L 30.253 38.52 Z M 34.619 38.363 C 34.471 38.402 34.571 38.659 34.501 38.828 C 34.309 39.288 33.06 39.285 32.868 38.828 C 32.49 37.93 33.738 37.644 34.339 38.058 C 34.452 38.138 34.421 38.289 34.542 38.283 C 34.565 37.574 33.989 36.261 34.188 35.628 C 34.315 35.224 35.902 33.91 36.213 33.444 C 36.45 32.952 36.466 31.209 37.014 31.049 C 37.31 30.963 39.17 31.247 39.417 31.421 C 39.63 31.572 39.67 31.76 39.692 32.003 C 39.899 34.255 39.526 36.82 39.692 39.106 C 39.696 39.495 39.484 39.723 39.105 39.767 C 37.915 39.906 36.443 39.673 35.221 39.749 C 34.63 39.564 34.68 38.87 34.619 38.363 Z M 38.441 32.436 L 37.748 32.367 L 37.339 34.024 L 35.443 36.097 L 35.868 38.518 L 38.441 38.518 L 38.441 32.435 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 8.71 29.646 C 8.88 29.594 9.039 29.633 9.205 29.666 C 9.542 29.73 11.508 30.453 11.752 30.627 C 11.93 30.754 12.459 31.601 12.517 31.811 C 12.694 32.453 12.148 33.109 12.169 33.571 C 12.18 33.815 12.966 34.918 13.065 35.242 C 13.236 35.808 12.592 36.295 12.205 36.651 C 11.839 36.989 11.339 37.557 10.818 37.41 L 7.023 35.981 C 6.882 35.884 5.784 34.044 5.729 33.845 C 5.668 33.622 5.657 33.393 5.78 33.189 C 6.324 32.735 8.282 29.777 8.71 29.647 Z M 9.129 30.957 L 7.032 33.644 L 7.881 34.964 L 10.944 36.085 L 11.674 35.361 C 11.42 34.669 10.82 34.119 10.934 33.351 C 10.973 33.095 11.306 32.286 11.268 32.117 C 11.11 31.419 9.683 31.262 9.128 30.957 Z M 16.898 31.44 C 17.442 31.318 18.277 31.47 18.831 31.5 C 19.328 31.527 20.253 31.345 20.54 31.819 C 20.754 32.792 20.757 33.871 20.802 34.876 C 20.765 35.042 19.704 36.057 19.551 36.12 C 19.347 36.203 19.139 36.202 18.926 36.16 C 18.758 36.128 17.305 35.616 17.202 35.546 C 16.916 35.349 16.823 34.806 16.609 34.578 C 16.221 34.161 15.041 34.028 15.402 33.141 C 15.448 33.027 16.434 31.777 16.566 31.653 C 16.664 31.56 16.758 31.47 16.897 31.439 Z M 19.415 32.749 C 18.945 32.835 17.599 32.482 17.273 32.749 C 17.24 32.776 16.922 33.225 16.925 33.255 C 17.132 33.442 17.401 33.542 17.586 33.758 C 17.772 33.975 17.857 34.362 18.016 34.499 C 18.135 34.603 18.983 34.88 19.126 34.841 C 19.236 34.81 19.561 34.462 19.573 34.344 L 19.416 32.747 Z M 17.597 36.516 C 17.846 36.81 17.829 38.361 17.771 38.784 C 17.727 39.095 17.598 39.321 17.267 39.372 C 16.909 39.427 14.626 39.429 14.343 39.342 L 12.658 37.791 C 12.106 37.148 12.685 36.775 13.136 36.333 C 13.545 35.934 14.341 35.157 14.776 34.854 C 15.048 34.665 15.236 34.632 15.545 34.788 C 15.759 34.896 17.421 36.307 17.597 36.517 Z M 14.854 38.129 L 16.53 38.129 L 16.514 37.209 L 15.23 36.191 L 13.958 37.31 L 14.853 38.129 Z M 4.347 34.868 C 4.483 34.841 4.551 34.854 4.68 34.889 C 4.892 34.945 6.835 36.342 6.899 36.493 C 6.979 36.681 6.964 36.919 6.897 37.111 C 6.842 37.271 5.395 39.331 5.227 39.496 C 4.878 39.838 4.675 39.863 4.286 39.572 C 3.484 38.973 2.666 37.829 1.83 37.194 C 1.499 36.798 1.561 36.442 1.954 36.145 C 2.185 35.97 4.135 34.909 4.347 34.868 Z M 5.452 36.89 L 4.481 36.255 L 3.276 36.804 L 4.573 38.123 C 4.723 38.15 5.505 36.966 5.453 36.89 Z M 2.945 29.799 C 3.015 29.79 3.069 29.784 3.14 29.797 C 3.554 29.872 5.058 31.754 5.541 32.08 C 5.847 32.736 5.367 32.946 4.938 33.278 C 4.327 33.751 3.249 34.552 2.599 34.916 C 2.222 35.126 1.865 35.173 1.622 34.751 C 1.438 34.43 0.893 32.685 0.816 32.282 C 0.739 31.879 0.757 31.722 1.05 31.418 C 1.318 31.139 2.359 30.105 2.613 29.94 C 2.708 29.877 2.833 29.813 2.946 29.798 Z M 2.496 33.45 L 4.053 32.32 L 3.069 31.357 C 2.85 31.315 2.277 32.002 2.117 32.18 L 2.496 33.451 Z M 33.275 31.129 C 33.541 31.112 33.715 31.234 33.874 31.428 C 34.02 31.605 34.804 32.957 34.872 33.159 C 34.951 33.397 34.986 33.582 34.858 33.806 C 34.778 33.945 33.177 35.174 32.975 35.275 C 32.663 35.43 32.541 35.422 32.243 35.244 C 31.967 35.079 30.217 33.53 30.064 33.292 C 29.991 33.179 29.933 33.095 29.944 32.95 C 29.96 32.709 30.513 31.82 30.744 31.718 C 31.027 31.594 32.957 31.15 33.277 31.13 Z M 31.423 32.827 L 32.646 33.905 C 33.425 33.504 33.72 33.247 33.007 32.524 Z M 34.521 20.13 C 35.06 20.019 35.412 20.556 35.2 21.049 L 30.834 28.613 C 30.33 29.204 29.45 28.645 29.768 27.935 C 31.269 25.657 32.427 22.966 33.932 20.717 C 34.076 20.501 34.243 20.188 34.52 20.13 Z M 19.239 20.053 C 19.681 19.963 20.184 20.43 19.979 20.875 L 15.706 28.3 C 15.171 28.97 14.315 28.388 14.642 27.624 C 16.13 25.416 17.243 22.742 18.728 20.561 C 18.864 20.364 18.975 20.107 19.239 20.053 Z M 30.772 20.14 C 30.981 20.128 31.349 20.366 31.407 20.563 C 31.501 20.876 31.284 21.173 31.151 21.444 C 30.086 23.603 28.539 25.703 27.432 27.861 C 26.954 28.679 25.919 28.019 26.341 27.238 C 27.702 25.171 28.755 22.767 30.111 20.717 C 30.274 20.472 30.431 20.158 30.771 20.14 Z M 7.697 20.133 C 8.325 19.99 8.694 20.52 8.414 21.083 L 5.181 26.663 C 4.642 27.121 3.832 26.607 4.154 25.947 C 5.314 24.271 6.172 22.024 7.342 20.401 C 7.437 20.269 7.531 20.171 7.698 20.133 Z M 22.823 20.368 C 23.385 20.2 23.858 20.628 23.644 21.189 L 20.384 26.819 C 19.892 27.422 18.997 26.747 19.358 26.103 C 20.491 24.514 21.32 22.235 22.47 20.717 C 22.553 20.607 22.694 20.406 22.823 20.369 Z M 11.597 20.052 C 12.04 19.96 12.544 20.431 12.337 20.874 L 9.546 25.725 C 9.169 26.31 8.351 26.082 8.346 25.384 L 11.162 20.402 C 11.258 20.256 11.422 20.089 11.597 20.052 Z M 4.342 20.532 C 4.529 20.704 4.585 21.038 4.46 21.266 C 3.56 22.601 2.867 24.402 1.935 25.679 C 1.432 26.37 0.499 25.868 0.839 25.05 C 1.745 23.778 2.39 22.03 3.286 20.793 C 3.543 20.439 3.954 20.177 4.341 20.532 Z M 16.583 19.283 C 16.7 19.411 16.809 19.715 16.73 19.883 L 14.532 23.616 C 13.882 23.951 13.386 23.511 13.627 22.789 C 13.767 22.369 15.253 19.822 15.559 19.42 C 15.81 19.091 16.277 18.95 16.582 19.284 Z M 24.534 24.351 C 24.996 24.326 25.274 24.816 25.126 25.243 C 25.002 25.598 23.485 28.216 23.238 28.5 C 22.704 29.111 21.879 28.58 22.184 27.838 C 22.404 27.301 23.63 25.159 23.983 24.723 C 24.122 24.552 24.3 24.364 24.535 24.351 Z M 38.497 19.743 C 39.014 19.63 39.35 20.02 39.265 20.507 L 37.384 23.778 C 36.911 24.289 36.207 23.868 36.291 23.236 C 36.891 22.295 37.378 21.097 38.019 20.202 C 38.155 20.011 38.236 19.799 38.498 19.743 Z M 26.25 23.286 C 25.786 23.732 25.055 23.368 25.203 22.668 C 25.252 22.438 26.592 20.12 26.791 19.889 C 27.302 19.294 28.038 19.671 27.899 20.371 L 26.251 23.286 Z M 35.767 24.422 C 36.349 24.286 36.689 24.705 36.532 25.266 C 36.474 25.473 35.335 27.438 35.167 27.642 C 34.688 28.223 33.886 27.772 34.069 27.095 C 34.144 26.816 35.246 24.919 35.458 24.658 C 35.557 24.538 35.596 24.461 35.768 24.422 Z M 18.998 29.213 C 18.603 29.593 17.949 29.363 17.928 28.808 C 17.917 28.525 18.406 27.613 18.655 27.505 C 19.241 27.251 19.746 27.754 19.51 28.36 C 19.472 28.459 19.062 29.151 18.999 29.213 Z M 12.921 24.345 C 14.367 24.017 13.545 26.482 12.525 25.954 C 11.893 25.627 12.448 24.452 12.921 24.345 Z M 21.186 34.949 C 21.679 34.84 22.508 34.858 22.531 35.525 C 22.554 36.192 21.511 36.356 21.056 36.059 C 20.601 35.763 20.703 35.056 21.186 34.949 Z M 18.457 36.742 C 18.941 36.634 19.766 36.656 19.804 37.316 C 19.849 38.077 18.368 38.254 18.071 37.561 C 17.942 37.26 18.133 36.814 18.458 36.742 Z M 20.796 16.858 C 21.411 16.72 22.292 16.888 22.031 17.704 C 21.885 18.161 21.117 18.171 20.736 18.055 C 20.173 17.884 20.201 16.992 20.796 16.858 Z M 33.117 16.703 C 33.584 16.6 34.454 16.609 34.453 17.271 C 34.453 18.219 32.566 18.143 32.685 17.214 C 32.716 16.976 32.875 16.756 33.117 16.702 Z M 10.976 37.915 C 12.335 37.738 12.619 39.323 10.872 39.147 C 10.073 39.067 10.083 38.031 10.976 37.915 Z M 24.695 30.27 C 25.301 30.133 26.186 30.313 25.93 31.115 C 25.784 31.572 25.016 31.581 24.635 31.466 C 24.072 31.295 24.1 30.404 24.695 30.27 Z M 7.697 37.288 C 8.166 37.183 9.021 37.204 9.036 37.854 C 9.058 38.81 7.056 38.74 7.266 37.719 C 7.305 37.523 7.504 37.331 7.698 37.289 Z M 24.461 14.909 C 24.93 14.805 25.785 14.826 25.801 15.476 C 25.82 16.282 24.364 16.401 24.075 15.73 C 23.946 15.429 24.138 14.982 24.463 14.91 Z M 37.452 29.343 C 37.824 28.935 39.297 29.079 39.032 29.945 C 38.731 30.931 36.601 30.275 37.452 29.343 Z M 14.558 14.909 C 15.042 14.802 15.867 14.824 15.905 15.483 C 15.948 16.22 14.538 16.425 14.209 15.771 C 14.047 15.446 14.197 14.99 14.558 14.909 Z M 4.655 14.909 C 5.07 14.79 5.946 14.838 6.003 15.407 C 6.102 16.392 4.183 16.407 4.233 15.49 C 4.244 15.304 4.478 14.96 4.655 14.909 Z M 10.894 16.858 C 11.374 16.751 12.143 16.792 12.169 17.428 C 12.197 18.104 11.487 18.174 10.959 18.084 C 10.279 17.97 10.284 16.994 10.894 16.858 Z M 31.602 15.071 C 31.919 14.695 33.457 14.761 33.184 15.675 C 32.893 16.651 30.792 16.032 31.602 15.071 Z M 10.582 28.399 C 11.062 28.292 11.831 28.332 11.857 28.969 C 11.885 29.645 11.176 29.715 10.648 29.625 C 9.968 29.51 9.973 28.534 10.582 28.399 Z M 31.947 35.728 C 32.133 35.685 32.591 35.686 32.783 35.716 C 33.604 35.844 33.467 37.134 32.171 36.951 C 31.36 36.836 31.384 35.857 31.947 35.728 Z M 26.956 14.909 C 27.571 14.773 28.396 14.882 28.209 15.695 C 28.091 16.211 27.391 16.211 26.977 16.103 C 26.319 15.931 26.38 15.038 26.957 14.909 Z M 27.424 30.894 C 27.919 30.781 28.673 30.904 28.656 31.542 C 28.64 32.188 27.976 32.185 27.483 32.127 C 26.665 32.03 26.782 31.041 27.423 30.895 Z M 34.987 30.894 C 35.468 30.786 36.236 30.827 36.262 31.464 C 36.291 32.14 35.581 32.209 35.053 32.12 C 34.373 32.005 34.378 31.029 34.987 30.894 Z M 21.655 32.066 C 23.073 31.807 23.401 33.457 21.711 33.298 C 20.846 33.216 20.886 32.205 21.655 32.066 Z M 13.78 32.065 C 14.369 31.944 15.108 32.129 14.971 32.863 C 14.877 33.363 14.073 33.366 13.686 33.293 C 13.109 33.183 13.054 32.215 13.78 32.065 Z M 23.214 16.703 C 23.4 16.661 23.859 16.659 24.05 16.691 C 24.854 16.823 24.732 18.097 23.437 17.926 C 22.621 17.819 22.619 16.834 23.214 16.702 Z M 12.062 14.908 C 12.489 14.784 13.336 14.835 13.409 15.406 C 13.498 16.1 12.752 16.222 12.207 16.135 C 11.548 16.03 11.533 15.063 12.064 14.908 Z M 8.32 15.071 C 9.13 16.032 7.029 16.65 6.737 15.675 C 6.465 14.763 8.003 14.695 8.32 15.071 Z M 36.858 14.909 C 37.395 14.79 38.179 14.863 38.132 15.554 C 38.092 16.163 37.422 16.209 36.938 16.121 C 36.21 15.988 36.267 15.041 36.858 14.908 Z M 34.364 14.909 C 34.82 14.808 35.522 14.821 35.659 15.375 C 35.877 16.249 34.285 16.445 33.977 15.73 C 33.83 15.389 33.995 14.992 34.364 14.909 Z M 2.239 14.909 C 2.718 14.802 3.488 14.844 3.515 15.479 C 3.543 16.147 2.829 16.215 2.319 16.122 C 1.613 15.993 1.606 15.051 2.239 14.909 Z M 16.786 15.963 C 16.688 15.864 16.595 15.555 16.608 15.407 C 16.681 14.623 18.655 14.607 18.307 15.774 C 18.166 16.247 17.072 16.248 16.786 15.963 Z M 23.136 15.963 C 22.851 16.248 21.756 16.246 21.616 15.774 C 21.267 14.607 23.242 14.623 23.315 15.407 C 23.328 15.555 23.235 15.865 23.136 15.963 Z M 29.451 14.909 C 29.931 14.802 30.699 14.844 30.726 15.479 C 30.753 16.115 30.026 16.213 29.53 16.122 C 28.824 15.992 28.818 15.051 29.45 14.909 Z M 9.646 14.909 C 9.99 14.832 10.775 14.846 10.9 15.259 C 11.231 16.365 9.369 16.383 9.216 15.694 C 9.142 15.358 9.293 14.989 9.646 14.909 Z M 7.071 17.909 C 6.678 18.34 5.248 18.099 5.491 17.307 C 5.793 16.32 7.922 16.977 7.071 17.909 Z M 19.549 14.909 C 20.029 14.802 20.798 14.843 20.824 15.479 C 20.852 16.147 20.139 16.215 19.628 16.122 C 18.901 15.989 18.957 15.042 19.549 14.909 Z M 20.721 37.913 C 21.27 37.828 22.017 38.073 21.797 38.756 C 21.643 39.235 20.966 39.202 20.55 39.136 C 19.919 39.038 19.907 38.036 20.721 37.911 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 19.882 7.173 C 19.763 7.201 19.757 7.155 19.694 7.091 C 19.155 6.549 18.727 5.595 18.264 4.934 C 17.616 4.011 16.853 3.216 16.064 2.419 C 17.978 2.809 19.654 4.118 20.804 5.653 L 19.883 7.174 Z M 24.795 4.679 L 23.43 6.003 C 22.36 7.269 21.915 8.555 21.675 10.175 C 21.659 10.28 21.643 10.415 21.522 10.293 C 21.504 9.736 20.6 8.791 20.676 8.325 C 20.747 7.895 21.525 6.717 21.834 6.357 C 22.554 5.522 23.693 4.842 24.795 4.679 Z M 20.273 10.448 C 19.975 10.411 19.577 10.502 19.298 10.449 C 19.019 10.396 18.701 9.526 18.542 9.255 C 17.729 7.875 16.815 6.583 15.673 5.458 C 17.877 6.324 19.285 8.386 20.273 10.447 Z M 17.778 10.448 L 16.919 10.411 L 16.102 9.278 L 15.36 8.578 C 15.815 8.643 16.648 8.879 16.995 9.165 C 17.319 9.431 17.497 10.117 17.777 10.448 Z M 23.158 2.574 L 21.717 4.756 C 21.557 4.585 21.196 4.339 21.324 4.057 C 21.361 3.974 21.984 3.384 22.108 3.277 C 22.221 3.179 23.082 2.501 23.158 2.574 Z M 24.483 8.266 C 24.002 8.966 23.445 9.624 23.146 10.434 L 22.847 10.447 C 22.998 10.04 22.932 9.401 23.199 9.046 C 23.316 8.89 24.379 8.177 24.484 8.266 Z M 30.253 38.519 L 24.289 38.519 L 23.554 37.848 C 23.513 37.674 24.275 36.564 24.325 36.292 C 24.465 35.523 23.524 34.603 24.349 34.055 C 24.476 33.971 26.067 33.373 26.163 33.377 L 30.025 35.978 L 30.253 38.518 Z M 38.441 32.436 L 38.441 38.519 L 35.868 38.519 L 35.443 36.097 L 37.339 34.025 L 37.748 32.368 Z M 9.129 30.957 C 9.684 31.263 11.111 31.419 11.269 32.117 C 11.307 32.286 10.974 33.095 10.935 33.351 C 10.82 34.119 11.421 34.668 11.675 35.361 L 10.945 36.085 L 7.882 34.964 L 7.033 33.644 L 9.13 30.957 Z M 19.415 32.749 L 19.572 34.346 C 19.56 34.465 19.235 34.812 19.125 34.843 C 18.981 34.881 18.134 34.604 18.015 34.501 C 17.857 34.365 17.767 33.972 17.585 33.76 C 17.404 33.549 17.131 33.444 16.924 33.257 C 16.921 33.227 17.239 32.778 17.272 32.751 C 17.598 32.484 18.944 32.836 19.414 32.751 Z M 14.854 38.129 L 13.958 37.31 L 15.23 36.191 L 16.514 37.209 L 16.53 38.129 Z M 5.452 36.89 C 5.505 36.967 4.722 38.15 4.572 38.123 L 3.275 36.804 L 4.48 36.255 L 5.451 36.89 Z M 2.496 33.45 L 2.117 32.179 C 2.277 32.002 2.85 31.315 3.069 31.356 L 4.053 32.319 L 2.496 33.449 Z M 31.423 32.827 L 33.007 32.524 C 33.72 33.247 33.425 33.504 32.646 33.905 Z\" fill=\"transparent\"></path></svg>',svgContentId:12627943433,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-176s2jn\",layoutDependency:layoutDependency,layoutId:\"QNGLLWGFq\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{aE7HS1Vmv:{opacity:1},Fj9ZbWjr8:{opacity:1},M8RHP6qJe:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Soil\"})}),className:\"framer-7ihzr7\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"wB4EBqBa6\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aE7HS1Vmv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Solo\"})})},Fj9ZbWjr8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Suelo\"})})},pv9qLxaHf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Suelo\"})})},Xse_1cZkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Solo\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o8Sgo.framer-1aztxrt, .framer-o8Sgo .framer-1aztxrt { display: block; }\",\".framer-o8Sgo.framer-oihavq { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-o8Sgo .framer-3r5py9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-o8Sgo .framer-14819f5 { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-o8Sgo .framer-176s2jn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-o8Sgo .framer-7ihzr7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-o8Sgo.framer-oihavq, .framer-o8Sgo .framer-3r5py9, .framer-o8Sgo .framer-176s2jn { gap: 0px; } .framer-o8Sgo.framer-oihavq > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-o8Sgo.framer-oihavq > :first-child { margin-top: 0px; } .framer-o8Sgo.framer-oihavq > :last-child { margin-bottom: 0px; } .framer-o8Sgo .framer-3r5py9 > *, .framer-o8Sgo .framer-176s2jn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-o8Sgo .framer-3r5py9 > :first-child, .framer-o8Sgo .framer-176s2jn > :first-child { margin-left: 0px; } .framer-o8Sgo .framer-3r5py9 > :last-child, .framer-o8Sgo .framer-176s2jn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"M8RHP6qJe\":{\"layout\":[\"auto\",\"auto\"]},\"pv9qLxaHf\":{\"layout\":[\"auto\",\"auto\"]},\"Fj9ZbWjr8\":{\"layout\":[\"auto\",\"auto\"]},\"Xse_1cZkx\":{\"layout\":[\"auto\",\"auto\"]},\"aE7HS1Vmv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjfXqkjS5t=withCSS(Component,css,\"framer-o8Sgo\");export default FramerjfXqkjS5t;FramerjfXqkjS5t.displayName=\"soil icon mobile\";FramerjfXqkjS5t.defaultProps={height:105,width:56};addPropertyControls(FramerjfXqkjS5t,{variant:{options:[\"MjaoDlZFF\",\"M8RHP6qJe\",\"pv9qLxaHf\",\"Fj9ZbWjr8\",\"Xse_1cZkx\",\"aE7HS1Vmv\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjfXqkjS5t,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjfXqkjS5t\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"105\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"56\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M8RHP6qJe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pv9qLxaHf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Fj9ZbWjr8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Xse_1cZkx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aE7HS1Vmv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jfXqkjS5t.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"LHNeyc0Wo\",\"WEfSt9oDH\",\"uUF6f2goo\",\"C2nn0wbuK\",\"jqZTGvYsN\",\"IGk7PEefz\"];const serializationHash=\"framer-ZsNPn\";const variantClassNames={C2nn0wbuK:\"framer-v-1h8jkf9\",IGk7PEefz:\"framer-v-1re1pji\",jqZTGvYsN:\"framer-v-xyenit\",LHNeyc0Wo:\"framer-v-qevy4s\",uUF6f2goo:\"framer-v-et5l9e\",WEfSt9oDH:\"framer-v-a7b1tm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:1.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"LHNeyc0Wo\",\"Variant 1 - ES\":\"uUF6f2goo\",\"Variant 1 - PT\":\"jqZTGvYsN\",\"Variant 2 - EN\":\"WEfSt9oDH\",\"Variant 2 - ES\":\"C2nn0wbuK\",\"Variant 2 - PT\":\"IGk7PEefz\"};const getProps=({click,height,id,width,...props})=>{return{...props,BUSeG60Gu:click??props.BUSeG60Gu,variant:humanReadableVariantMap[props.variant]??props.variant??\"LHNeyc0Wo\"};};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,BUSeG60Gu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LHNeyc0Wo\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1gpkan8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"WEfSt9oDH\");});const onTapky71sm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"LHNeyc0Wo\");});const onAppear8gd71e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"LHNeyc0Wo\"),1500);});const onTaprmqouc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"C2nn0wbuK\");});const onTapkkcw00=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"uUF6f2goo\");});const onTap1ly5sci=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"IGk7PEefz\");});const onTap4t12zj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BUSeG60Gu){const res=await BUSeG60Gu(...args);if(res===false)return false;}setVariant(\"jqZTGvYsN\");});useOnVariantChange(baseVariant,{WEfSt9oDH:onAppear8gd71e});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qevy4s\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LHNeyc0Wo\",onTap:onTap1gpkan8,ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({C2nn0wbuK:{\"data-framer-name\":\"Variant 2 - ES\",onTap:onTapkkcw00},IGk7PEefz:{\"data-framer-name\":\"Variant 2 - PT\",onTap:onTap4t12zj},jqZTGvYsN:{\"data-framer-name\":\"Variant 1 - PT\",onTap:onTap1ly5sci},uUF6f2goo:{\"data-framer-name\":\"Variant 1 - ES\",onTap:onTaprmqouc},WEfSt9oDH:{\"data-framer-name\":\"Variant 2 - EN\",onTap:onTapky71sm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bxx4k4\",layoutDependency:layoutDependency,layoutId:\"GvIOaSPkw\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19jkr7q\",\"data-framer-name\":\"Soltar\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"duvvSTP7x\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 20.378 0 L 21.159 0.508 C 24.546 5.737 28.341 10.807 31.271 16.317 C 34.197 21.817 35.932 26.625 32.649 32.532 C 27.439 41.907 14.119 42.524 8.119 33.614 C 3.864 27.297 5.89 21.771 9.2 15.719 C 12.124 10.371 15.756 5.407 19.134 0.358 L 19.753 0 Z M 20.027 3.981 C 17.068 8.502 13.82 12.942 11.28 17.72 C 9.069 21.876 7.454 25.442 9.41 30.134 C 13.093 38.971 25.758 39.575 30.256 31.075 C 33.002 25.886 31.083 21.797 28.51 17.124 C 25.937 12.451 23.017 8.417 20.208 4.11 L 20.025 3.981 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 23.215 31.803 C 23.578 31.442 24.3 31.125 24.749 30.722 C 26.5 29.153 26.561 27.847 27.031 25.742 C 27.392 24.124 29.585 24.373 29.746 25.722 C 30.092 28.612 27.585 32.927 24.927 34.102 C 23.278 34.831 22.078 32.931 23.214 31.802 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:11298960441,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tj3hn9\",layoutDependency:layoutDependency,layoutId:\"LILNc1QD0\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{C2nn0wbuK:{opacity:1},IGk7PEefz:{opacity:1},WEfSt9oDH:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climatological\"})}),className:\"framer-1oqeamc\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"jk0axGiUw\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({C2nn0wbuK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climatol\\xf3gico\"})})},IGk7PEefz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climatol\\xf3gico\"})})},jqZTGvYsN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climatol\\xf3gico\"})})},uUF6f2goo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Climatol\\xf3gico\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZsNPn.framer-2s2xy8, .framer-ZsNPn .framer-2s2xy8 { display: block; }\",\".framer-ZsNPn.framer-qevy4s { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZsNPn .framer-bxx4k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-ZsNPn .framer-19jkr7q { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-ZsNPn .framer-tj3hn9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZsNPn .framer-1oqeamc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZsNPn.framer-qevy4s, .framer-ZsNPn .framer-bxx4k4, .framer-ZsNPn .framer-tj3hn9 { gap: 0px; } .framer-ZsNPn.framer-qevy4s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZsNPn.framer-qevy4s > :first-child { margin-top: 0px; } .framer-ZsNPn.framer-qevy4s > :last-child { margin-bottom: 0px; } .framer-ZsNPn .framer-bxx4k4 > *, .framer-ZsNPn .framer-tj3hn9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZsNPn .framer-bxx4k4 > :first-child, .framer-ZsNPn .framer-tj3hn9 > :first-child { margin-left: 0px; } .framer-ZsNPn .framer-bxx4k4 > :last-child, .framer-ZsNPn .framer-tj3hn9 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"WEfSt9oDH\":{\"layout\":[\"auto\",\"auto\"]},\"uUF6f2goo\":{\"layout\":[\"auto\",\"auto\"]},\"C2nn0wbuK\":{\"layout\":[\"auto\",\"auto\"]},\"jqZTGvYsN\":{\"layout\":[\"auto\",\"auto\"]},\"IGk7PEefz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BUSeG60Gu\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOAxo8PzrV=withCSS(Component,css,\"framer-ZsNPn\");export default FramerOAxo8PzrV;FramerOAxo8PzrV.displayName=\"lluvia icon mobile\";FramerOAxo8PzrV.defaultProps={height:105,width:121};addPropertyControls(FramerOAxo8PzrV,{variant:{options:[\"LHNeyc0Wo\",\"WEfSt9oDH\",\"uUF6f2goo\",\"C2nn0wbuK\",\"jqZTGvYsN\",\"IGk7PEefz\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum},BUSeG60Gu:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerOAxo8PzrV,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOAxo8PzrV\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"BUSeG60Gu\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"105\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WEfSt9oDH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uUF6f2goo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C2nn0wbuK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jqZTGvYsN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IGk7PEefz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"121\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OAxo8PzrV.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"e6vNV5Y0N\",\"SfA9pP0X8\",\"Q0wYmpeAD\",\"X2P1d2UJT\",\"qJqKe36B2\",\"l8Je4ZzDU\"];const serializationHash=\"framer-psVJr\";const variantClassNames={e6vNV5Y0N:\"framer-v-vmv9ql\",l8Je4ZzDU:\"framer-v-u3eg4l\",Q0wYmpeAD:\"framer-v-layxpq\",qJqKe36B2:\"framer-v-oooocs\",SfA9pP0X8:\"framer-v-1cndwgf\",X2P1d2UJT:\"framer-v-b9mlm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:1.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"e6vNV5Y0N\",\"Variant 1 - ES\":\"Q0wYmpeAD\",\"Variant 1 - PT\":\"qJqKe36B2\",\"Variant 2 - EN\":\"SfA9pP0X8\",\"Variant 2 - ES\":\"X2P1d2UJT\",\"Variant 2 - PT\":\"l8Je4ZzDU\"};const getProps=({click,height,id,width,...props})=>{return{...props,hAXrEU5ZU:click??props.hAXrEU5ZU,variant:humanReadableVariantMap[props.variant]??props.variant??\"e6vNV5Y0N\"};};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,hAXrEU5ZU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e6vNV5Y0N\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqyqkk7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"SfA9pP0X8\");});const onTap1fh8a7d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"e6vNV5Y0N\");});const onAppear1wawrnj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"e6vNV5Y0N\"),1500);});const onTap17bdc66=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"X2P1d2UJT\");});const onTap17132le=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"Q0wYmpeAD\");});const onTapkz8t0y=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"l8Je4ZzDU\");});const onTap1qbxfz0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hAXrEU5ZU){const res=await hAXrEU5ZU(...args);if(res===false)return false;}setVariant(\"qJqKe36B2\");});useOnVariantChange(baseVariant,{SfA9pP0X8:onAppear1wawrnj});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vmv9ql\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"e6vNV5Y0N\",onTap:onTapqyqkk7,ref:refBinding,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({l8Je4ZzDU:{\"data-framer-name\":\"Variant 2 - PT\",onTap:onTap1qbxfz0},Q0wYmpeAD:{\"data-framer-name\":\"Variant 1 - ES\",onTap:onTap17bdc66},qJqKe36B2:{\"data-framer-name\":\"Variant 1 - PT\",onTap:onTapkz8t0y},SfA9pP0X8:{\"data-framer-name\":\"Variant 2 - EN\",onTap:onTap1fh8a7d},X2P1d2UJT:{\"data-framer-name\":\"Variant 2 - ES\",onTap:onTap17132le}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ah9sd9\",layoutDependency:layoutDependency,layoutId:\"tZAmPaFmY\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-97ks68\",\"data-framer-name\":\"Cadena-de-adn\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PfYTYt9uw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 28.616 40 C 28.053 39.775 27.617 39.425 27.531 38.784 C 27.27 36.848 27.24 36.034 25.963 34.427 C 23.276 31.045 19.275 30.61 15.776 28.629 C 8.232 24.358 7.26 16.922 14.852 12.006 C 18.684 9.524 23.467 9.214 26.294 5.202 C 27.376 3.666 27.259 2.948 27.543 1.227 C 27.794 -0.3 30.076 -0.267 30.255 1.206 C 30.738 5.173 27.325 8.798 24.196 10.667 C 20.602 12.813 13.523 14.038 12.513 18.944 C 11.15 25.555 20.904 27.246 24.82 29.799 C 27.238 31.376 29.404 33.673 30.059 36.567 C 30.319 37.715 30.66 39.524 29.24 39.998 L 28.616 39.998 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 10.682 40 C 9.376 39.558 9.59 38.131 9.77 37.021 C 10.182 34.473 11.952 32.141 13.966 30.613 C 14.182 30.448 14.954 29.853 15.159 29.863 L 18.091 31.227 C 15.695 32.539 13.033 34.55 12.498 37.408 C 12.298 38.478 12.642 39.568 11.307 39.999 L 10.683 39.999 Z M 21.91 26.822 C 21.79 26.705 21.951 26.686 22.01 26.648 C 22.825 26.123 23.685 25.752 24.476 25.14 C 29.521 21.236 27.876 16.913 23.025 13.972 C 22.852 13.867 21.953 13.455 21.909 13.409 C 21.866 13.364 21.895 13.213 22.02 13.248 L 24.879 11.886 C 28.368 14.044 31.036 17.432 30.086 21.782 C 29.656 23.753 28.283 25.533 26.78 26.82 C 26.455 27.098 25.253 28.053 24.925 28.168 C 24.855 28.192 24.811 28.216 24.74 28.168 C 24.11 27.795 23.455 27.456 22.794 27.144 C 22.634 27.069 21.942 26.853 21.908 26.82 Z M 18.09 8.889 C 17.032 9.182 16.089 9.803 15.093 10.216 C 12.153 8.521 9.314 4.845 9.666 1.283 C 9.795 -0.023 11.585 -0.374 12.207 0.776 C 12.482 1.283 12.333 1.567 12.408 2.056 C 12.737 4.205 13.745 5.728 15.402 7.093 C 16.239 7.782 17.204 8.274 18.09 8.888 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 13.801 20.741 L 13.801 19.338 L 26.004 19.338 C 26.013 19.338 26.121 19.446 26.121 19.454 L 26.121 20.624 C 26.121 20.632 26.013 20.741 26.004 20.741 Z M 26.121 1.481 C 26.151 1.917 26.093 2.345 25.974 2.761 C 22.008 2.868 17.993 2.773 14.008 2.809 C 13.841 2.77 13.767 1.663 13.801 1.48 L 26.121 1.48 Z M 13.801 38.597 C 13.771 38.161 13.829 37.733 13.948 37.317 C 17.914 37.21 21.929 37.305 25.914 37.269 C 26.081 37.308 26.155 38.416 26.121 38.598 L 13.801 38.598 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.951 17.31 L 14.971 17.31 C 15.253 16.954 16.143 15.98 16.574 15.911 C 18.702 16.053 21.105 15.707 23.201 15.903 C 23.774 15.956 24.643 16.821 24.952 17.31 Z M 24.951 22.768 C 24.662 23.248 23.744 24.124 23.2 24.175 C 21.104 24.371 18.702 24.025 16.573 24.167 C 16.142 24.098 15.252 23.124 14.97 22.768 L 24.95 22.768 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path><path d=\"M 24.718 4.913 C 24.829 4.995 23.508 6.256 23.271 6.233 C 21.215 6.077 18.814 6.456 16.799 6.243 C 16.281 6.188 15.487 5.36 15.205 4.913 Z M 24.718 35.166 L 15.205 35.166 C 15.487 34.718 16.281 33.89 16.799 33.835 C 18.814 33.622 21.215 34.001 23.271 33.845 C 23.621 33.9 24.541 34.806 24.718 35.166 Z\" fill=\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)) /* {&quot;name&quot;:&quot;Verde oscuro&quot;} */\"></path></svg>',svgContentId:10203550566,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3p3krh\",layoutDependency:layoutDependency,layoutId:\"dzapCQw0L\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{l8Je4ZzDU:{opacity:1},SfA9pP0X8:{opacity:1},X2P1d2UJT:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Genomics\"})}),className:\"framer-qu8i0m\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"FcwsiK1qh\",style:{\"--extracted-r6o4lv\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({l8Je4ZzDU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf4mica\"})})},Q0wYmpeAD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf3mica\"})})},qJqKe36B2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf4mica\"})})},X2P1d2UJT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"Gen\\xf3mica\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-psVJr.framer-pmmskk, .framer-psVJr .framer-pmmskk { display: block; }\",\".framer-psVJr.framer-vmv9ql { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-psVJr .framer-1ah9sd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-psVJr .framer-97ks68 { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-psVJr .framer-3p3krh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-psVJr .framer-qu8i0m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-psVJr.framer-vmv9ql, .framer-psVJr .framer-1ah9sd9, .framer-psVJr .framer-3p3krh { gap: 0px; } .framer-psVJr.framer-vmv9ql > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-psVJr.framer-vmv9ql > :first-child { margin-top: 0px; } .framer-psVJr.framer-vmv9ql > :last-child { margin-bottom: 0px; } .framer-psVJr .framer-1ah9sd9 > *, .framer-psVJr .framer-3p3krh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-psVJr .framer-1ah9sd9 > :first-child, .framer-psVJr .framer-3p3krh > :first-child { margin-left: 0px; } .framer-psVJr .framer-1ah9sd9 > :last-child, .framer-psVJr .framer-3p3krh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 88.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SfA9pP0X8\":{\"layout\":[\"auto\",\"auto\"]},\"Q0wYmpeAD\":{\"layout\":[\"auto\",\"auto\"]},\"X2P1d2UJT\":{\"layout\":[\"auto\",\"auto\"]},\"qJqKe36B2\":{\"layout\":[\"auto\",\"auto\"]},\"l8Je4ZzDU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hAXrEU5ZU\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUmtDb1b31=withCSS(Component,css,\"framer-psVJr\");export default FramerUmtDb1b31;FramerUmtDb1b31.displayName=\"genomic icon mobile\";FramerUmtDb1b31.defaultProps={height:105,width:88.5};addPropertyControls(FramerUmtDb1b31,{variant:{options:[\"e6vNV5Y0N\",\"SfA9pP0X8\",\"Q0wYmpeAD\",\"X2P1d2UJT\",\"qJqKe36B2\",\"l8Je4ZzDU\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum},hAXrEU5ZU:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerUmtDb1b31,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUmtDb1b31\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"88.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SfA9pP0X8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q0wYmpeAD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X2P1d2UJT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qJqKe36B2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"l8Je4ZzDU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hAXrEU5ZU\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"105\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UmtDb1b31.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,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 GrownIconMobile from\"https://framerusercontent.com/modules/p8Bf82QZlZumPcZQ2z48/CMcql7egnmhAdQXTYU3u/evynN0x7l.js\";import TemperatureIconMobile from\"https://framerusercontent.com/modules/oaciOwv9Ca7Bhqpt77nY/K1XcxaJubu0s2r9AGQwA/HqI0iLz1b.js\";import SoilIconMobile from\"https://framerusercontent.com/modules/v6PL2wb7mEUGSEheuY44/ATHKuA0Ff8MbiG2GdlWU/jfXqkjS5t.js\";import LluviaIconMobile from\"https://framerusercontent.com/modules/mOCc6oe0DSQ8nhMHjs1h/uHhW8dH7yVsJAJIur2kT/OAxo8PzrV.js\";import GenomicIconMobile from\"https://framerusercontent.com/modules/cGk2ao45z5e5ld7l7wb1/wtsjFyMSff0w4H4Ju7Ek/UmtDb1b31.js\";const TemperatureIconMobileFonts=getFonts(TemperatureIconMobile);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const LluviaIconMobileFonts=getFonts(LluviaIconMobile);const SoilIconMobileFonts=getFonts(SoilIconMobile);const GenomicIconMobileFonts=getFonts(GenomicIconMobile);const GrownIconMobileFonts=getFonts(GrownIconMobile);const cycleOrder=[\"nf_8s4oCA\",\"Pu5ptAxnA\",\"pbjRZDBqg\",\"YVSy9V9BM\",\"tM5nogXAE\",\"FRPMRtlVw\"];const serializationHash=\"framer-XwozN\";const variantClassNames={FRPMRtlVw:\"framer-v-1hj67cr\",nf_8s4oCA:\"framer-v-18lcf7x\",pbjRZDBqg:\"framer-v-13w2zxq\",Pu5ptAxnA:\"framer-v-wjvob0\",tM5nogXAE:\"framer-v-j5hd0p\",YVSy9V9BM:\"framer-v-u880xv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:1,duration:2.8,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:0,duration:2,ease:[.51,.02,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:8};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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 - EN\":\"nf_8s4oCA\",\"Variant 1 - ES\":\"pbjRZDBqg\",\"Variant 1 - PT\":\"tM5nogXAE\",\"Variant 2 - EN\":\"Pu5ptAxnA\",\"Variant 2 - ES\":\"YVSy9V9BM\",\"Variant 2 - PT\":\"FRPMRtlVw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nf_8s4oCA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nf_8s4oCA\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18lcf7x\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",layoutDependency:layoutDependency,layoutId:\"nf_8s4oCA\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({FRPMRtlVw:{\"data-framer-name\":\"Variant 2 - PT\"},pbjRZDBqg:{\"data-framer-name\":\"Variant 1 - ES\"},Pu5ptAxnA:{\"data-framer-name\":\"Variant 2 - EN\"},tM5nogXAE:{\"data-framer-name\":\"Variant 1 - PT\"},YVSy9V9BM:{\"data-framer-name\":\"Variant 2 - ES\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1olp6mj\",\"data-framer-name\":\"fondo\",layoutDependency:layoutDependency,layoutId:\"wjAHJMqyE\",style:{backgroundColor:\"var(--token-49034f0c-22f9-44bf-8b2f-c23abcae9b90, rgb(230, 234, 220))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.5013927576601673-142)),pixelHeight:2048,pixelWidth:2048,sizes:\"284px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"},className:\"framer-183zqi1\",\"data-framer-name\":\"panta \",layoutDependency:layoutDependency,layoutId:\"ymdcKgOk7\",style:{opacity:0},variants:{FRPMRtlVw:{opacity:1},Pu5ptAxnA:{opacity:1},YVSy9V9BM:{opacity:1}},...addPropertyOverrides({FRPMRtlVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.6053412462908014-104)),pixelHeight:2048,pixelWidth:2048,sizes:\"208px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}},Pu5ptAxnA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.6053412462908014-104)),pixelHeight:2048,pixelWidth:2048,sizes:\"208px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}},YVSy9V9BM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.6053412462908014-104)),pixelHeight:2048,pixelWidth:2048,sizes:\"208px\",src:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png\",srcSet:\"https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R5Wi5QWfWSLCBpUqqJQko7isZN0.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.4986072423398331-192.5)),pixelHeight:2048,pixelWidth:2048,sizes:\"385px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"},className:\"framer-1aqnwss\",\"data-framer-name\":\"parcela\",layoutDependency:layoutDependency,layoutId:\"XZ6Z5lwqS\",style:{opacity:1},variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.5519287833827895-156)),pixelHeight:2048,pixelWidth:2048,sizes:\"312px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}},Pu5ptAxnA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.5519287833827895-156)),pixelHeight:2048,pixelWidth:2048,sizes:\"312px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}},YVSy9V9BM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||359)*.5519287833827895-156)),pixelHeight:2048,pixelWidth:2048,sizes:\"312px\",src:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png\",srcSet:\"https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u8tqtl1DvKgGDeqBnAaxYzYKMN8.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,y:(componentViewport?.y||0)+38,...addPropertyOverrides({FRPMRtlVw:{y:(componentViewport?.y||0)+93},Pu5ptAxnA:{y:(componentViewport?.y||0)+93},YVSy9V9BM:{y:(componentViewport?.y||0)+93}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1wjfyj8-container\",layoutDependency:layoutDependency,layoutId:\"qZCp3Tnvq-container\",nodeId:\"qZCp3Tnvq\",rendersWithMotion:true,scopeId:\"SZJbqd1pW\",style:{opacity:1},variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{__framer__loopEffectEnabled:undefined},Pu5ptAxnA:{__framer__loopEffectEnabled:undefined},YVSy9V9BM:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TemperatureIconMobile,{height:\"100%\",id:\"qZCp3Tnvq\",layoutId:\"qZCp3Tnvq\",variant:\"lY7oLgeiq\",width:\"100%\",...addPropertyOverrides({FRPMRtlVw:{variant:\"ZmOXBAFpJ\"},pbjRZDBqg:{variant:\"i5ezpMilz\"},tM5nogXAE:{variant:\"ZmOXBAFpJ\"},YVSy9V9BM:{variant:\"i5ezpMilz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,y:(componentViewport?.y||0)+((componentViewport?.height||359)*.5348189415041785-52.5),...addPropertyOverrides({FRPMRtlVw:{y:(componentViewport?.y||0)+(componentViewport?.height||359)-203},Pu5ptAxnA:{y:(componentViewport?.y||0)+(componentViewport?.height||359)-203},YVSy9V9BM:{y:(componentViewport?.y||0)+(componentViewport?.height||359)-203}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yk5hdk-container\",layoutDependency:layoutDependency,layoutId:\"Lgwjd9WrD-container\",nodeId:\"Lgwjd9WrD\",rendersWithMotion:true,scopeId:\"SZJbqd1pW\",style:{opacity:1},transformTemplate:transformTemplate2,variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined},Pu5ptAxnA:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined},YVSy9V9BM:{__framer__loopEffectEnabled:undefined,transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(LluviaIconMobile,{height:\"100%\",id:\"Lgwjd9WrD\",layoutId:\"Lgwjd9WrD\",variant:\"LHNeyc0Wo\",width:\"100%\",...addPropertyOverrides({FRPMRtlVw:{variant:\"jqZTGvYsN\"},pbjRZDBqg:{variant:\"uUF6f2goo\"},tM5nogXAE:{variant:\"jqZTGvYsN\"},YVSy9V9BM:{variant:\"uUF6f2goo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,y:(componentViewport?.y||0)+(componentViewport?.height||359)-156,...addPropertyOverrides({FRPMRtlVw:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -8},Pu5ptAxnA:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -8},YVSy9V9BM:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1crnqbj-container\",layoutDependency:layoutDependency,layoutId:\"jhZb5YYjr-container\",nodeId:\"jhZb5YYjr\",rendersWithMotion:true,scopeId:\"SZJbqd1pW\",style:{opacity:1},variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{__framer__loopEffectEnabled:undefined},Pu5ptAxnA:{__framer__loopEffectEnabled:undefined},YVSy9V9BM:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SoilIconMobile,{height:\"100%\",id:\"jhZb5YYjr\",layoutId:\"jhZb5YYjr\",variant:\"MjaoDlZFF\",width:\"100%\",...addPropertyOverrides({FRPMRtlVw:{variant:\"Xse_1cZkx\"},pbjRZDBqg:{variant:\"pv9qLxaHf\"},tM5nogXAE:{variant:\"Xse_1cZkx\"},YVSy9V9BM:{variant:\"pv9qLxaHf\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:105,y:(componentViewport?.y||0)+(componentViewport?.height||359)-109,...addPropertyOverrides({FRPMRtlVw:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -6},Pu5ptAxnA:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -6},YVSy9V9BM:{y:(componentViewport?.y||0)+(componentViewport?.height||359)- -6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1av4jhk-container\",layoutDependency:layoutDependency,layoutId:\"zZscgpuiB-container\",nodeId:\"zZscgpuiB\",rendersWithMotion:true,scopeId:\"SZJbqd1pW\",style:{opacity:1},variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{__framer__loopEffectEnabled:undefined},Pu5ptAxnA:{__framer__loopEffectEnabled:undefined},YVSy9V9BM:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(GenomicIconMobile,{height:\"100%\",id:\"zZscgpuiB\",layoutId:\"zZscgpuiB\",variant:\"e6vNV5Y0N\",width:\"100%\",...addPropertyOverrides({FRPMRtlVw:{variant:\"qJqKe36B2\"},pbjRZDBqg:{variant:\"Q0wYmpeAD\"},tM5nogXAE:{variant:\"qJqKe36B2\"},YVSy9V9BM:{variant:\"Q0wYmpeAD\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,y:(componentViewport?.y||0)+1,...addPropertyOverrides({FRPMRtlVw:{y:(componentViewport?.y||0)+-82},Pu5ptAxnA:{y:(componentViewport?.y||0)+-82},YVSy9V9BM:{y:(componentViewport?.y||0)+-82}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-lkzab8-container\",layoutDependency:layoutDependency,layoutId:\"dZYf5BD0q-container\",nodeId:\"dZYf5BD0q\",rendersWithMotion:true,scopeId:\"SZJbqd1pW\",style:{opacity:1},variants:{FRPMRtlVw:{opacity:0},pbjRZDBqg:{opacity:1},Pu5ptAxnA:{opacity:0},tM5nogXAE:{opacity:1},YVSy9V9BM:{opacity:0}},...addPropertyOverrides({FRPMRtlVw:{__framer__loopEffectEnabled:undefined},Pu5ptAxnA:{__framer__loopEffectEnabled:undefined},YVSy9V9BM:{__framer__loopEffectEnabled:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(GrownIconMobile,{height:\"100%\",id:\"dZYf5BD0q\",layoutId:\"dZYf5BD0q\",variant:\"vT9a5UQ6a\",width:\"100%\",...addPropertyOverrides({FRPMRtlVw:{variant:\"Igwg2yvPe\"},pbjRZDBqg:{variant:\"DBaQ9LAFi\"},tM5nogXAE:{variant:\"Igwg2yvPe\"},YVSy9V9BM:{variant:\"DBaQ9LAFi\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XwozN.framer-u0j84v, .framer-XwozN .framer-u0j84v { display: block; }\",\".framer-XwozN.framer-18lcf7x { height: 359px; overflow: hidden; position: relative; width: 342px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XwozN .framer-1olp6mj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 314px); left: 50%; overflow: visible; position: absolute; top: 49%; width: 314px; }\",\".framer-XwozN .framer-183zqi1 { flex: none; height: 284px; left: calc(50.00000000000002% - 284px / 2); overflow: visible; position: absolute; top: calc(50.13927576601673% - 284px / 2); width: 284px; }\",\".framer-XwozN .framer-1aqnwss { flex: none; height: 385px; left: calc(50.00000000000002% - 385px / 2); overflow: visible; position: absolute; top: calc(49.86072423398331% - 385px / 2); width: 385px; }\",\".framer-XwozN .framer-1wjfyj8-container { flex: none; height: auto; left: 1px; position: absolute; top: 38px; width: auto; z-index: 1; }\",\".framer-XwozN .framer-1yk5hdk-container { flex: none; height: auto; position: absolute; right: 0px; top: 53%; width: auto; z-index: 1; }\",\".framer-XwozN .framer-1crnqbj-container { bottom: 51px; flex: none; height: auto; left: 46px; position: absolute; width: auto; z-index: 1; }\",\".framer-XwozN .framer-1av4jhk-container { bottom: 4px; flex: none; height: auto; position: absolute; right: 95px; width: auto; z-index: 1; }\",\".framer-XwozN .framer-lkzab8-container { flex: none; height: auto; position: absolute; right: 49px; top: 1px; width: auto; z-index: 1; }\",\".framer-XwozN.framer-v-wjvob0 .framer-183zqi1, .framer-XwozN.framer-v-u880xv .framer-183zqi1, .framer-XwozN.framer-v-1hj67cr .framer-183zqi1 { height: 208px; left: calc(52.04678362573102% - 208px / 2); top: calc(60.53412462908015% - 208px / 2); width: 208px; }\",\".framer-XwozN.framer-v-wjvob0 .framer-1aqnwss, .framer-XwozN.framer-v-u880xv .framer-1aqnwss, .framer-XwozN.framer-v-1hj67cr .framer-1aqnwss { height: 312px; left: calc(50.00000000000002% - 312px / 2); top: calc(55.19287833827895% - 312px / 2); width: 312px; }\",\".framer-XwozN.framer-v-wjvob0 .framer-1wjfyj8-container, .framer-XwozN.framer-v-u880xv .framer-1wjfyj8-container, .framer-XwozN.framer-v-1hj67cr .framer-1wjfyj8-container { left: -95px; top: 93px; }\",\".framer-XwozN.framer-v-wjvob0 .framer-1yk5hdk-container, .framer-XwozN.framer-v-u880xv .framer-1yk5hdk-container, .framer-XwozN.framer-v-1hj67cr .framer-1yk5hdk-container { bottom: 98px; right: -118px; top: unset; }\",\".framer-XwozN.framer-v-wjvob0 .framer-1crnqbj-container, .framer-XwozN.framer-v-u880xv .framer-1crnqbj-container, .framer-XwozN.framer-v-1hj67cr .framer-1crnqbj-container { bottom: -113px; }\",\".framer-XwozN.framer-v-wjvob0 .framer-1av4jhk-container, .framer-XwozN.framer-v-u880xv .framer-1av4jhk-container, .framer-XwozN.framer-v-1hj67cr .framer-1av4jhk-container { bottom: -111px; }\",\".framer-XwozN.framer-v-wjvob0 .framer-lkzab8-container, .framer-XwozN.framer-v-u880xv .framer-lkzab8-container, .framer-XwozN.framer-v-1hj67cr .framer-lkzab8-container { right: 41px; top: -82px; z-index: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 359\n * @framerIntrinsicWidth 342\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pu5ptAxnA\":{\"layout\":[\"fixed\",\"fixed\"]},\"pbjRZDBqg\":{\"layout\":[\"fixed\",\"fixed\"]},\"YVSy9V9BM\":{\"layout\":[\"fixed\",\"fixed\"]},\"tM5nogXAE\":{\"layout\":[\"fixed\",\"fixed\"]},\"FRPMRtlVw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSZJbqd1pW=withCSS(Component,css,\"framer-XwozN\");export default FramerSZJbqd1pW;FramerSZJbqd1pW.displayName=\"plant animation mobile\";FramerSZJbqd1pW.defaultProps={height:359,width:342};addPropertyControls(FramerSZJbqd1pW,{variant:{options:[\"nf_8s4oCA\",\"Pu5ptAxnA\",\"pbjRZDBqg\",\"YVSy9V9BM\",\"tM5nogXAE\",\"FRPMRtlVw\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSZJbqd1pW,[{explicitInter:true,fonts:[]},...TemperatureIconMobileFonts,...LluviaIconMobileFonts,...SoilIconMobileFonts,...GenomicIconMobileFonts,...GrownIconMobileFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSZJbqd1pW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pu5ptAxnA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pbjRZDBqg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YVSy9V9BM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tM5nogXAE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FRPMRtlVw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"342\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"359\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"hUbsDgnxi\",\"VXIXuv_yK\",\"Q29M46WWl\",\"Pu9qTURVQ\",\"GMefACW79\",\"MaAF4IXpt\"];const serializationHash=\"framer-zUZ52\";const variantClassNames={GMefACW79:\"framer-v-1yys3a\",hUbsDgnxi:\"framer-v-1b0vqpi\",MaAF4IXpt:\"framer-v-1b2nded\",Pu9qTURVQ:\"framer-v-1jx8qcj\",Q29M46WWl:\"framer-v-4vg2lj\",VXIXuv_yK:\"framer-v-1aefeyt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:2,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1 - EN\":\"hUbsDgnxi\",\"Variant 1 - ES\":\"Q29M46WWl\",\"Variant 1 - PT\":\"GMefACW79\",\"Variant 2 - EN\":\"VXIXuv_yK\",\"Variant 2 - ES\":\"Pu9qTURVQ\",\"Variant 2 - PT\":\"MaAF4IXpt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hUbsDgnxi\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hUbsDgnxi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1b0vqpi\",className,classNames),\"data-framer-name\":\"Variant 1 - EN\",layoutDependency:layoutDependency,layoutId:\"hUbsDgnxi\",ref:ref??ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({GMefACW79:{\"data-framer-name\":\"Variant 1 - PT\"},MaAF4IXpt:{\"data-framer-name\":\"Variant 2 - PT\"},Pu9qTURVQ:{\"data-framer-name\":\"Variant 2 - ES\"},Q29M46WWl:{\"data-framer-name\":\"Variant 1 - ES\"},VXIXuv_yK:{\"data-framer-name\":\"Variant 2 - EN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkr0zu\",\"data-framer-name\":\"Highlight\",layoutDependency:layoutDependency,layoutId:\"jPkfaM0f2\",style:{backgroundColor:\"var(--token-2a87689f-30c6-4202-9e65-d555a4f797fe, rgb(179, 239, 62))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},variants:{MaAF4IXpt:{opacity:1},Pu9qTURVQ:{opacity:1},VXIXuv_yK:{opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"sustainable future\"})}),className:\"framer-wiosll\",fonts:[\"FS;Space Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"V1KPkwZ_y\",style:{\"--extracted-1eung3n\":\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{MaAF4IXpt:{opacity:1},Pu9qTURVQ:{opacity:1},VXIXuv_yK:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GMefACW79:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sustent\\xe1vel\"})})},MaAF4IXpt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sustent\\xe1vel\"})})},Pu9qTURVQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sostenible\"})})},Q29M46WWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1ib2xk\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53)))\"},children:\"futuro sostenible\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zUZ52.framer-1b8dj3j, .framer-zUZ52 .framer-1b8dj3j { display: block; }\",\".framer-zUZ52.framer-1b0vqpi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 25px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 204px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zUZ52 .framer-bkr0zu { flex: none; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-zUZ52 .framer-wiosll { flex: none; height: auto; left: 3px; position: absolute; top: 0px; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zUZ52.framer-1b0vqpi { gap: 0px; } .framer-zUZ52.framer-1b0vqpi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zUZ52.framer-1b0vqpi > :first-child { margin-left: 0px; } .framer-zUZ52.framer-1b0vqpi > :last-child { margin-right: 0px; } }\",\".framer-zUZ52.framer-v-1aefeyt .framer-bkr0zu, .framer-zUZ52.framer-v-1jx8qcj .framer-bkr0zu { width: 189px; }\",\".framer-zUZ52.framer-v-4vg2lj.framer-1b0vqpi, .framer-zUZ52.framer-v-1jx8qcj.framer-1b0vqpi { width: 175px; }\",\".framer-zUZ52.framer-v-1yys3a.framer-1b0vqpi, .framer-zUZ52.framer-v-1b2nded .framer-bkr0zu { width: 210px; }\",\".framer-zUZ52.framer-v-1b2nded.framer-1b0vqpi { width: 190px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 204\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VXIXuv_yK\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q29M46WWl\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pu9qTURVQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"GMefACW79\":{\"layout\":[\"fixed\",\"fixed\"]},\"MaAF4IXpt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVX1lUZInj=withCSS(Component,css,\"framer-zUZ52\");export default FramerVX1lUZInj;FramerVX1lUZInj.displayName=\"hifglight mobile\";FramerVX1lUZInj.defaultProps={height:25,width:204};addPropertyControls(FramerVX1lUZInj,{variant:{options:[\"hUbsDgnxi\",\"VXIXuv_yK\",\"Q29M46WWl\",\"Pu9qTURVQ\",\"GMefACW79\",\"MaAF4IXpt\"],optionTitles:[\"Variant 1 - EN\",\"Variant 2 - EN\",\"Variant 1 - ES\",\"Variant 2 - ES\",\"Variant 1 - PT\",\"Variant 2 - PT\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVX1lUZInj,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVX1lUZInj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"25\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"204\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VXIXuv_yK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q29M46WWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pu9qTURVQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GMefACW79\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MaAF4IXpt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VX1lUZInj.map", "// Generated by Framer (aa1abb7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"HFZrFe1OU\",\"MOyhrN9Dj\",\"OxDaO40nI\",\"rtZqR52HS\"];const serializationHash=\"framer-RH83i\";const variantClassNames={HFZrFe1OU:\"framer-v-100cf3y\",MOyhrN9Dj:\"framer-v-af3hc3\",OxDaO40nI:\"framer-v-13mj8z7\",rtZqR52HS:\"framer-v-1yadfa9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:1.6,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:2,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:2.1,skewX:0,skewY:0,x:0,y:300};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop variant\":\"MOyhrN9Dj\",\"Variant 3\":\"OxDaO40nI\",\"Variant 4\":\"rtZqR52HS\",Desktop:\"HFZrFe1OU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HFZrFe1OU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HFZrFe1OU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeary0ad58=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MOyhrN9Dj\"),2e3);});const onAppear124r1oh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rtZqR52HS\"),2e3);});useOnVariantChange(baseVariant,{default:onAppeary0ad58,OxDaO40nI:onAppear124r1oh,rtZqR52HS:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-100cf3y\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HFZrFe1OU\",ref:ref??ref1,style:{...style},...addPropertyOverrides({MOyhrN9Dj:{\"data-framer-name\":\"Desktop variant\"},OxDaO40nI:{\"data-framer-name\":\"Variant 3\"},rtZqR52HS:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b6tt62\",layoutDependency:layoutDependency,layoutId:\"MeoFzDhIs\",style:{backgroundColor:\"var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, rgb(4, 47, 53))\"},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:606,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-((componentViewport?.height||800)-0)*1/2)+(0+(((componentViewport?.height||800)-0)*1-0-126)/2)),pixelHeight:126,pixelWidth:606,sizes:\"606px\",src:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png\",srcSet:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png 606w\"},className:\"framer-12desig\",\"data-framer-appear-id\":\"12desig\",\"data-framer-name\":\"Logo loader\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"wCoVv89PR\",optimized:true,...addPropertyOverrides({MOyhrN9Dj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:606,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*-.4999999999999998-((componentViewport?.height||800)-0)*1/2)+(0+(((componentViewport?.height||800)-0)*1-0-126)/2)),pixelHeight:126,pixelWidth:606,sizes:\"606px\",src:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png\",srcSet:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png 606w\"}},OxDaO40nI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:606,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*.5000000000000002-((componentViewport?.height||800)-0)*1/2)+(0+(((componentViewport?.height||800)-0)*1-0-51)/2)),pixelHeight:174,pixelWidth:686,sizes:\"244px\",src:\"https://framerusercontent.com/images/kSSbcJAJxcT7Pb6S90210PZ3cg.png\",srcSet:\"https://framerusercontent.com/images/kSSbcJAJxcT7Pb6S90210PZ3cg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kSSbcJAJxcT7Pb6S90210PZ3cg.png 686w\"}},rtZqR52HS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:126,intrinsicWidth:606,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||800)*-.4999999999999998-((componentViewport?.height||800)-0)*1/2)+(0+(((componentViewport?.height||800)-0)*1-0-50)/2)),pixelHeight:126,pixelWidth:606,sizes:\"240.4762px\",src:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png\",srcSet:\"https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YEojdeYmqbCipjucYHr9uZYqBKc.png 606w\"}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RH83i.framer-jkouq6, .framer-RH83i .framer-jkouq6 { display: block; }\",\".framer-RH83i.framer-100cf3y { height: 800px; overflow: hidden; position: relative; width: 1280px; }\",\".framer-RH83i .framer-1b6tt62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-RH83i .framer-12desig { aspect-ratio: 4.809523809523809 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 126px); overflow: visible; position: relative; width: 606px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RH83i .framer-1b6tt62 { gap: 0px; } .framer-RH83i .framer-1b6tt62 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RH83i .framer-1b6tt62 > :first-child { margin-left: 0px; } .framer-RH83i .framer-1b6tt62 > :last-child { margin-right: 0px; } }\",\".framer-RH83i.framer-v-af3hc3 .framer-1b6tt62, .framer-RH83i.framer-v-1yadfa9 .framer-1b6tt62 { top: calc(-49.99999999999998% - 100% / 2); }\",\".framer-RH83i.framer-v-13mj8z7.framer-100cf3y, .framer-RH83i.framer-v-1yadfa9.framer-100cf3y { width: 390px; }\",\".framer-RH83i.framer-v-13mj8z7 .framer-12desig { height: var(--framer-aspect-ratio-supported, 50px); width: 244px; }\",\".framer-RH83i.framer-v-1yadfa9 .framer-12desig { height: var(--framer-aspect-ratio-supported, 50px); width: 240px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MOyhrN9Dj\":{\"layout\":[\"fixed\",\"fixed\"]},\"OxDaO40nI\":{\"layout\":[\"fixed\",\"fixed\"]},\"rtZqR52HS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw1g4pjtGT=withCSS(Component,css,\"framer-RH83i\");export default Framerw1g4pjtGT;Framerw1g4pjtGT.displayName=\"Loader\";Framerw1g4pjtGT.defaultProps={height:800,width:1280};addPropertyControls(Framerw1g4pjtGT,{variant:{options:[\"HFZrFe1OU\",\"MOyhrN9Dj\",\"OxDaO40nI\",\"rtZqR52HS\"],optionTitles:[\"Desktop\",\"Desktop variant\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerw1g4pjtGT,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw1g4pjtGT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MOyhrN9Dj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OxDaO40nI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rtZqR52HS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1280\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./w1g4pjtGT.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"znxRtXHzg\",\"P1FLnbIOL\",\"o0gvidLA3\",\"jCn2xo3tp\"];const serializationHash=\"framer-lkQLG\";const variantClassNames={jCn2xo3tp:\"framer-v-fdvfnd\",o0gvidLA3:\"framer-v-1sqr5wv\",P1FLnbIOL:\"framer-v-1q9o2vp\",znxRtXHzg:\"framer-v-1ht3ufs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:2.5,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"znxRtXHzg\",\"Variant 2\":\"P1FLnbIOL\",\"Variant 3\":\"o0gvidLA3\",\"Variant 4\":\"jCn2xo3tp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"znxRtXHzg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"znxRtXHzg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ht3ufs\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"znxRtXHzg\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({jCn2xo3tp:{\"data-framer-name\":\"Variant 4\"},o0gvidLA3:{\"data-framer-name\":\"Variant 3\"},P1FLnbIOL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"computer \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||344)*.5000000000000002-132)),pixelHeight:1645,pixelWidth:2244,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png\",srcSet:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png 2244w\"},className:\"framer-c7r2yc\",\"data-framer-name\":\"computadora\",layoutDependency:layoutDependency,layoutId:\"k7RYG2Vbc\",...addPropertyOverrides({jCn2xo3tp:{background:{alt:\"computer \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-19),pixelHeight:1645,pixelWidth:2244,sizes:`calc(${componentViewport?.width||\"100vw\"} + 81px)`,src:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png\",srcSet:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png 2244w\"}},o0gvidLA3:{background:{alt:\"computer \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||258)*.5000000000000002-95.5)),pixelHeight:1645,pixelWidth:2244,sizes:\"252px\",src:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png\",srcSet:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png 2244w\"}},P1FLnbIOL:{background:{alt:\"computer \",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-54),pixelHeight:1645,pixelWidth:2244,sizes:`calc(${componentViewport?.width||\"100vw\"} + 207px)`,src:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png\",srcSet:\"https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hDvTyhwaoClgLpPnS0MQ1um9kcc.png 2244w\"}}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lkQLG.framer-q8pegt, .framer-lkQLG .framer-q8pegt { display: block; }\",\".framer-lkQLG.framer-1ht3ufs { height: 344px; overflow: visible; position: relative; width: 409px; }\",\".framer-lkQLG .framer-c7r2yc { flex: none; height: 264px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 264px / 2); }\",\".framer-lkQLG.framer-v-1q9o2vp .framer-c7r2yc { bottom: 0px; height: unset; left: -118px; right: -89px; top: -54px; }\",\".framer-lkQLG.framer-v-1sqr5wv.framer-1ht3ufs, .framer-lkQLG.framer-v-fdvfnd.framer-1ht3ufs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 258px; justify-content: center; padding: 0px; width: 294px; }\",\".framer-lkQLG.framer-v-1sqr5wv .framer-c7r2yc { height: 191px; left: calc(50.00000000000002% - 252px / 2); order: 0; right: unset; top: calc(50.00000000000002% - 191px / 2); width: 252px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lkQLG.framer-v-1sqr5wv.framer-1ht3ufs { gap: 0px; } .framer-lkQLG.framer-v-1sqr5wv.framer-1ht3ufs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lkQLG.framer-v-1sqr5wv.framer-1ht3ufs > :first-child { margin-left: 0px; } .framer-lkQLG.framer-v-1sqr5wv.framer-1ht3ufs > :last-child { margin-right: 0px; } }\",\".framer-lkQLG.framer-v-fdvfnd .framer-c7r2yc { bottom: -7px; height: unset; left: -12px; order: 0; right: -69px; top: -19px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lkQLG.framer-v-fdvfnd.framer-1ht3ufs { gap: 0px; } .framer-lkQLG.framer-v-fdvfnd.framer-1ht3ufs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lkQLG.framer-v-fdvfnd.framer-1ht3ufs > :first-child { margin-left: 0px; } .framer-lkQLG.framer-v-fdvfnd.framer-1ht3ufs > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 344\n * @framerIntrinsicWidth 409\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"P1FLnbIOL\":{\"layout\":[\"fixed\",\"fixed\"]},\"o0gvidLA3\":{\"layout\":[\"fixed\",\"fixed\"]},\"jCn2xo3tp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerY693iy0_Z=withCSS(Component,css,\"framer-lkQLG\");export default FramerY693iy0_Z;FramerY693iy0_Z.displayName=\"imagen scroll computer\";FramerY693iy0_Z.defaultProps={height:344,width:409};addPropertyControls(FramerY693iy0_Z,{variant:{options:[\"znxRtXHzg\",\"P1FLnbIOL\",\"o0gvidLA3\",\"jCn2xo3tp\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerY693iy0_Z,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY693iy0_Z\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"344\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"409\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P1FLnbIOL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o0gvidLA3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jCn2xo3tp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Y693iy0_Z.map", "// Generated by Framer (aa1abb7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Space Grotesk-regular\",\"FS;Space Grotesk-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6DG6HUOGHOB35UGAANBDBVY77OCFNQOA/MX56D7EXTFRCL3EZPNM332VF6D5TDENT/2MGP255ZY2RSFHKW6LNN6W6BWQGC2LUO.woff2\",weight:\"400\"},{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GFEQC7SZ2XMFHB2INR6RE24JKHO5JNTS/R2HDHPNP7PMXFG5AIIV7PF3KFELSLGKJ/COAKOVM7H37QQIPEFBZNVR5EL4GEPLQU.woff2\",weight:\"700\"}]}];export const css=[\".framer-Cbiyq .framer-styles-preset-uem90n:not(.rich-text-wrapper), .framer-Cbiyq .framer-styles-preset-uem90n.rich-text-wrapper h1 { --framer-font-family: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, #042f35); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1279px) and (min-width: 810px) { .framer-Cbiyq .framer-styles-preset-uem90n:not(.rich-text-wrapper), .framer-Cbiyq .framer-styles-preset-uem90n.rich-text-wrapper h1 { --framer-font-family: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, #042f35); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-Cbiyq .framer-styles-preset-uem90n:not(.rich-text-wrapper), .framer-Cbiyq .framer-styles-preset-uem90n.rich-text-wrapper h1 { --framer-font-family: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-family-bold: \\\"Space Grotesk\\\", \\\"Space Grotesk Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-16d4170b-6914-417c-88de-b3ac99c8cd97, #042f35); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-Cbiyq\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "RichText2", "css", "FramercxKIKJV53", "withCSS", "cxKIKJV53_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "RichText2", "css", "FramerHv_4e0ePo", "withCSS", "Hv_4e0ePo_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "ref2", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "RichText2", "css", "FramerqcTZ3Xgkp", "withCSS", "qcTZ3Xgkp_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "RichText2", "css", "FramerRvywd0klM", "withCSS", "Rvywd0klM_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "RichText2", "css", "FramerZ3OhBCluA", "withCSS", "Z3OhBCluA_default", "addPropertyControls", "ControlType", "addFonts", "LluviaFonts", "getFonts", "Hv_4e0ePo_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "GrouwFonts", "Rvywd0klM_default", "RectanguloFonts", "cxKIKJV53_default", "ICONFonts", "qcTZ3Xgkp_default", "ADNFonts", "Z3OhBCluA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "animation", "transition3", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "Framerb_PYmLUDb", "withCSS", "b_PYmLUDb_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerluSrNs9J4", "withCSS", "luSrNs9J4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DiolV6S6S", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerNnQ2pknWm", "withCSS", "NnQ2pknWm_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "PHcz3pJwh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1xit6dp", "args", "onTap1gzbip3", "onAppear1wkbsvi", "onTap1sayyb7", "onTape93utl", "onTap13icz3n", "onTappd28be", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerevynN0x7l", "withCSS", "evynN0x7l_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "yEMTxol9n", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap6p8ijn", "args", "onTap1f4fzwa", "onAppear14hr72d", "onTapno7e5l", "onTap1kubsh8", "onTap7bye7f", "onTapd426b4", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerHqI0iLz1b", "withCSS", "HqI0iLz1b_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ekwdg7", "args", "onTap1y6pt25", "onAppear1i3ejhf", "onTapro8zzp", "onTaphefvlq", "onTapegs9vu", "onTap1skbjc7", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerjfXqkjS5t", "withCSS", "jfXqkjS5t_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "BUSeG60Gu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1gpkan8", "args", "onTapky71sm", "onAppear8gd71e", "onTaprmqouc", "onTapkkcw00", "onTap1ly5sci", "onTap4t12zj", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerOAxo8PzrV", "withCSS", "OAxo8PzrV_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hAXrEU5ZU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqyqkk7", "args", "onTap1fh8a7d", "onAppear1wawrnj", "onTap17bdc66", "onTap17132le", "onTapkz8t0y", "onTap1qbxfz0", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerUmtDb1b31", "withCSS", "UmtDb1b31_default", "addPropertyControls", "ControlType", "addFonts", "TemperatureIconMobileFonts", "getFonts", "HqI0iLz1b_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "LluviaIconMobileFonts", "OAxo8PzrV_default", "SoilIconMobileFonts", "jfXqkjS5t_default", "GenomicIconMobileFonts", "UmtDb1b31_default", "GrownIconMobileFonts", "evynN0x7l_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerSZJbqd1pW", "withCSS", "SZJbqd1pW_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerVX1lUZInj", "withCSS", "VX1lUZInj_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppeary0ad58", "args", "onAppear124r1oh", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "getLoadingLazyAtYPosition", "css", "Framerw1g4pjtGT", "withCSS", "w1g4pjtGT_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerY693iy0_Z", "withCSS", "Y693iy0_Z_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
