{"version":3,"file":"QhMx5rnan.DcLCLuxF.mjs","names":["addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","MotionDivWithFXWithOptimizedAppearEffect","serializationHash","variantClassNames","transition1","transition2","animation","animation1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","SoluEs","Botaoform","BotO","className","_Fragment","css"],"sources":["https:/framerusercontent.com/modules/lCj0e5OslRQtYuEMf6sB/vpYAhnuEL4SbSXThyMAu/Uncode.js","https:/framerusercontent.com/modules/vVdbOrqpXm39tygprFRv/cpFFu3A0iexXlObOceEw/ksSE0t5Oh.js","https:/framerusercontent.com/modules/pyjeIlo1kyGxWhjQOs2O/zdBNLKwsQucnsu9Al6Bc/aItL5GHHL.js","https:/framerusercontent.com/modules/20BPVqEYJK8Rj7r2VzrC/MP4hXpTgYP4mkDsznyjn/vfdOKw5is.js","https:/framerusercontent.com/modules/rUiXPOIKXp7KMAt9Gnv2/FhLtsNdWGF4E9YFszM06/QhMx5rnan.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n */export function HoverClickEventComponent(props){const{targetType,targetSection,targetName,eventType,onEnter,onOut}=props;const activeMap=useRef(new WeakMap);useEffect(()=>{let targetElements=[];// Seleção dos elementos alvo com base no tipo selecionado\nif(targetType===\"ScrollSectionRef\"){if(targetSection&&targetSection.current){targetElements=[targetSection.current];}}else if(targetType===\"NomeDaCamada\"){if(targetName){// Seleciona todos os elementos com o atributo name igual a targetName\ntargetElements=Array.from(document.querySelectorAll(`[name=\"${targetName}\"]`));}}if(targetElements.length===0)return;// Definição dos handlers de eventos\nconst handleMouseEnter=event=>{// Removido: event.stopPropagation()\nconst element=event.currentTarget;if(!activeMap.current.get(element)){onEnter&&onEnter(element);activeMap.current.set(element,true);}};const handleMouseLeave=event=>{// Removido: event.stopPropagation()\nconst element=event.currentTarget;if(activeMap.current.get(element)){onOut&&onOut(element);activeMap.current.set(element,false);}};const handleClick=event=>{// Removido: event.stopPropagation()\nconst element=event.currentTarget;if(!activeMap.current.get(element)){onEnter&&onEnter(element);activeMap.current.set(element,true);}else{onOut&&onOut(element);activeMap.current.set(element,false);}};const handleMouseDown=event=>{// Removido: event.stopPropagation()\nconst element=event.currentTarget;if(!activeMap.current.get(element)){onEnter&&onEnter(element);activeMap.current.set(element,true);}};const handleMouseUp=event=>{// Removido: event.stopPropagation()\nconst element=event.currentTarget;if(activeMap.current.get(element)){onOut&&onOut(element);activeMap.current.set(element,false);}};// Adiciona os eventos com base no tipo selecionado\ntargetElements.forEach(element=>{if(eventType===\"Hover\"){element.addEventListener(\"mouseenter\",handleMouseEnter);element.addEventListener(\"mouseleave\",handleMouseLeave);}else if(eventType===\"Click\"){element.addEventListener(\"click\",handleClick);}else if(eventType===\"Press\"){element.addEventListener(\"mousedown\",handleMouseDown);element.addEventListener(\"mouseup\",handleMouseUp);}else if(eventType===\"Release\"){element.addEventListener(\"mouseup\",handleMouseUp);element.addEventListener(\"mouseleave\",handleMouseLeave);}});// Limpeza dos eventos ao desmontar ou alterar\nreturn()=>{targetElements.forEach(element=>{if(eventType===\"Hover\"){element.removeEventListener(\"mouseenter\",handleMouseEnter);element.removeEventListener(\"mouseleave\",handleMouseLeave);}else if(eventType===\"Click\"){element.removeEventListener(\"click\",handleClick);}else if(eventType===\"Press\"){element.removeEventListener(\"mousedown\",handleMouseDown);element.removeEventListener(\"mouseup\",handleMouseUp);}else if(eventType===\"Release\"){element.removeEventListener(\"mouseup\",handleMouseUp);element.removeEventListener(\"mouseleave\",handleMouseLeave);}});};},[targetType,targetSection,targetName,eventType,onEnter,onOut]);return /*#__PURE__*/_jsx(\"div\",{style:{width:\"1px\",height:\"1px\",opacity:0,overflow:\"hidden\"}});}HoverClickEventComponent.displayName=\"UncodeTracker\";// Adicionando Property Controls com novas opções de evento\naddPropertyControls(HoverClickEventComponent,{targetType:{type:ControlType.Enum,title:\"Target Type / Tipo de Alvo\",options:[\"ScrollSectionRef\",\"NomeDaCamada\"],optionTitles:[\"Scroll Section Ref\",\"Nome da Camada\"],defaultValue:\"ScrollSectionRef\",description:\"Selecione o tipo de refer\\xeancia para a se\\xe7\\xe3o alvo.\"},targetSection:{type:ControlType.ScrollSectionRef,title:\"Target Section / Se\\xe7\\xe3o Alvo\",description:\"Selecione a se\\xe7\\xe3o a ser monitorada.\\nDentro de componentes ser\\xe1 necess\\xe1rio que crie uma vari\\xe1vel disto aqui para que possa setar uma ID/Scroll section para ativar a troca.\",hidden:props=>props.targetType!==\"ScrollSectionRef\"},targetName:{type:ControlType.String,title:\"Target Name / Nome da Camada\",placeholder:\"Digite o nome\",description:'Digite **apenas o valor** do atributo `name` da camada a ser monitorada. Exemplo: \"botaoform\".',hidden:props=>props.targetType!==\"NomeDaCamada\"},eventType:{type:ControlType.Enum,title:\"Event Type / Tipo de Evento\",options:[\"Hover\",\"Click\",\"Press\",\"Release\"],optionTitles:[\"Hover\",\"Click\",\"Press\",\"Release\"],defaultValue:\"Hover\",description:\"Selecione o tipo de evento a ser disparado.\"},onEnter:{type:ControlType.EventHandler,title:\"On Enter / Ao Entrar\",description:\"Disparado ao interagir com o elemento.\"},onOut:{type:ControlType.EventHandler,title:\"On Out / Ao Sair\",description:\"Disparado ao finalizar a intera\\xe7\\xe3o com o elemento.\"},autor:{type:ControlType.String,title:\"Code by\",placeholder:\"Autor:\",description:\"Autor: UncodeStack and @omatusaelhorch.\",readOnly:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"HoverClickEventComponent\":{\"type\":\"reactComponent\",\"name\":\"HoverClickEventComponent\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Uncode.map","// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"qYMxWI6eR\",\"byH7n1JkS\"];const serializationHash=\"framer-PLGYY\";const variantClassNames={byH7n1JkS:\"framer-v-lx87r0\",qYMxWI6eR:\"framer-v-61xho5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"qYMxWI6eR\",\"Variant 2\":\"byH7n1JkS\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,p5j6pKsVH:click!==null&&click!==void 0?click:props.p5j6pKsVH,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qYMxWI6eR\"};};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,p5j6pKsVH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qYMxWI6eR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapmx325o=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(p5j6pKsVH){const res=await p5j6pKsVH(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"byH7n1JkS\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-61xho5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qYMxWI6eR\",onTap:onTapmx325o,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgba(30, 135, 125, 0.19)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{byH7n1JkS:{\"--border-color\":\"rgba(30, 135, 125, 0.18)\",backgroundColor:\"rgb(66, 187, 175)\"}},...addPropertyOverrides({byH7n1JkS:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12yz2m3\",layoutDependency:layoutDependency,layoutId:\"pVohtjFGl\",style:{backgroundColor:\"rgb(65, 187, 175)\",borderBottomLeftRadius:251,borderBottomRightRadius:251,borderTopLeftRadius:251,borderTopRightRadius:251,rotate:0},variants:{byH7n1JkS:{backgroundColor:\"rgb(255, 255, 255)\",rotate:45}}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dpsriz\",layoutDependency:layoutDependency,layoutId:\"qmWynZfnf\",style:{backgroundColor:\"rgb(65, 187, 175)\",borderBottomLeftRadius:251,borderBottomRightRadius:251,borderTopLeftRadius:251,borderTopRightRadius:251}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fyqmo8\",layoutDependency:layoutDependency,layoutId:\"yt2d3JmJx\",style:{backgroundColor:\"rgb(65, 187, 175)\",borderBottomLeftRadius:251,borderBottomRightRadius:251,borderTopLeftRadius:251,borderTopRightRadius:251,rotate:0},variants:{byH7n1JkS:{backgroundColor:\"rgb(255, 255, 255)\",rotate:-45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PLGYY.framer-ft5idp, .framer-PLGYY .framer-ft5idp { display: block; }\",\".framer-PLGYY.framer-61xho5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 66px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 66px; }\",\".framer-PLGYY .framer-12yz2m3, .framer-PLGYY .framer-1dpsriz, .framer-PLGYY .framer-fyqmo8 { flex: none; height: 3px; overflow: visible; position: relative; width: 33px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PLGYY.framer-61xho5 { gap: 0px; } .framer-PLGYY.framer-61xho5 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-PLGYY.framer-61xho5 > :first-child { margin-top: 0px; } .framer-PLGYY.framer-61xho5 > :last-child { margin-bottom: 0px; } }\",\".framer-PLGYY.framer-v-lx87r0.framer-61xho5 { display: block; padding: unset; }\",\".framer-PLGYY.framer-v-lx87r0 .framer-12yz2m3, .framer-PLGYY.framer-v-lx87r0 .framer-fyqmo8 { left: calc(50.00000000000002% - 33px / 2); position: absolute; top: calc(50.00000000000002% - 3px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PLGYY.framer-v-lx87r0.framer-61xho5 { gap: 0px; } .framer-PLGYY.framer-v-lx87r0.framer-61xho5 > *, .framer-PLGYY.framer-v-lx87r0.framer-61xho5 > :first-child, .framer-PLGYY.framer-v-lx87r0.framer-61xho5 > :last-child { margin: 0px; } }\",'.framer-PLGYY[data-border=\"true\"]::after, .framer-PLGYY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 66\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"byH7n1JkS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"p5j6pKsVH\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerksSE0t5Oh=withCSS(Component,css,\"framer-PLGYY\");export default FramerksSE0t5Oh;FramerksSE0t5Oh.displayName=\"Menu\";FramerksSE0t5Oh.defaultProps={height:66,width:66};addPropertyControls(FramerksSE0t5Oh,{variant:{options:[\"qYMxWI6eR\",\"byH7n1JkS\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},p5j6pKsVH:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerksSE0t5Oh,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerksSE0t5Oh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"66\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"66\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"byH7n1JkS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"p5j6pKsVH\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ksSE0t5Oh.map","// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"MNYOiVFLw\",\"kQEysGzwb\"];const serializationHash=\"framer-KzJnH\";const variantClassNames={kQEysGzwb:\"framer-v-1krj22y\",MNYOiVFLw:\"framer-v-ed1u63\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"MNYOiVFLw\",\"Variant 2\":\"kQEysGzwb\"};const getProps=({click,height,hover,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,TEsnJgbz5:hover!==null&&hover!==void 0?hover:props.TEsnJgbz5,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"MNYOiVFLw\",x_tn4B2Ry:click!==null&&click!==void 0?click:props.x_tn4B2Ry};};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,TEsnJgbz5,x_tn4B2Ry,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MNYOiVFLw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ayetfm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(x_tn4B2Ry){const res=await x_tn4B2Ry(...args);if(res===false)return false;}});const onMouseEntermamlzp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(TEsnJgbz5){const res=await TEsnJgbz5(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ed1u63\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MNYOiVFLw\",onMouseEnter:onMouseEntermamlzp,onTap:onTap1ayetfm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({kQEysGzwb:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wforid\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Z6QG9Oxv_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:\"Solu\\xe7\\xf5es\"})}),className:\"framer-1iziawp\",\"data-framer-name\":\"Solu\\xe7\\xf5es\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Dr4ubOr7l\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{kQEysGzwb:{opacity:.5}},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-axu6zw\",layoutDependency:layoutDependency,layoutId:\"NqmZVgOe7\",style:{rotate:0},variants:{kQEysGzwb:{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qa7cri\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Axt9Ec3uO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 25\"><path d=\"M 10.505 16.44 L 3.505 9.591 L 4.681 8.44 L 10.505 14.138 L 16.328 8.44 L 17.505 9.591 Z\" fill=\"rgb(67,188,175)\"></path></svg>',svgContentId:9476640931,withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KzJnH.framer-1chuhvk, .framer-KzJnH .framer-1chuhvk { display: block; }\",\".framer-KzJnH.framer-ed1u63 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 3.0899999141693115px 0px 0px; position: relative; width: min-content; }\",\".framer-KzJnH .framer-1wforid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-KzJnH .framer-1iziawp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KzJnH .framer-axu6zw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KzJnH .framer-qa7cri { flex: none; height: 25px; position: relative; width: 21px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KzJnH.framer-ed1u63, .framer-KzJnH .framer-1wforid, .framer-KzJnH .framer-axu6zw { gap: 0px; } .framer-KzJnH.framer-ed1u63 > * { margin: 0px; margin-left: calc(8.25px / 2); margin-right: calc(8.25px / 2); } .framer-KzJnH.framer-ed1u63 > :first-child, .framer-KzJnH .framer-axu6zw > :first-child { margin-left: 0px; } .framer-KzJnH.framer-ed1u63 > :last-child, .framer-KzJnH .framer-axu6zw > :last-child { margin-right: 0px; } .framer-KzJnH .framer-1wforid > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KzJnH .framer-1wforid > :first-child { margin-top: 0px; } .framer-KzJnH .framer-1wforid > :last-child { margin-bottom: 0px; } .framer-KzJnH .framer-axu6zw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kQEysGzwb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TEsnJgbz5\":\"hover\",\"x_tn4B2Ry\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraItL5GHHL=withCSS(Component,css,\"framer-KzJnH\");export default FrameraItL5GHHL;FrameraItL5GHHL.displayName=\"Solu\\xe7\\xf5es\";FrameraItL5GHHL.defaultProps={height:25,width:106};addPropertyControls(FrameraItL5GHHL,{variant:{options:[\"MNYOiVFLw\",\"kQEysGzwb\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},TEsnJgbz5:{title:\"Hover\",type:ControlType.EventHandler},x_tn4B2Ry:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameraItL5GHHL,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraItL5GHHL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kQEysGzwb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"106\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"25\",\"framerVariables\":\"{\\\"TEsnJgbz5\\\":\\\"hover\\\",\\\"x_tn4B2Ry\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aItL5GHHL.map","// Generated by Framer (03f754e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const enabledGestures={nso0Uq2On:{hover:true}};const serializationHash=\"framer-n6mbL\";const variantClassNames={nso0Uq2On:\"framer-v-9nip4s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition2={bounce:.6,delay:0,duration:.7,type:\"spring\"};const animation={opacity:1,rotate:15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:29,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:11};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({border,click,height,id,link2,newTab,texto,width,...props})=>{var _ref,_ref1;return{...props,amdM3By72:link2!==null&&link2!==void 0?link2:props.amdM3By72,MMeALfBGT:(_ref=border!==null&&border!==void 0?border:props.MMeALfBGT)!==null&&_ref!==void 0?_ref:{borderBottomWidth:3,borderColor:\"rgb(153, 199, 198)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},RlZm0f_dd:click!==null&&click!==void 0?click:props.RlZm0f_dd,vBnyA7TiN:(_ref1=texto!==null&&texto!==void 0?texto:props.vBnyA7TiN)!==null&&_ref1!==void 0?_ref1:\"J\\xe1 tenho uma conta\",Yo4Fnsi0v:newTab!==null&&newTab!==void 0?newTab:props.Yo4Fnsi0v};};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,vBnyA7TiN,amdM3By72,Yo4Fnsi0v,RlZm0f_dd,MMeALfBGT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nso0Uq2On\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap55t179=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(RlZm0f_dd){const res=await RlZm0f_dd(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"nso0Uq2On-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _MMeALfBGT_borderBottomWidth,_MMeALfBGT_borderLeftWidth,_MMeALfBGT_borderRightWidth,_MMeALfBGT_borderTopWidth;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:amdM3By72,nodeId:\"nso0Uq2On\",openInNewTab:Yo4Fnsi0v,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-9nip4s\",className,classNames)} framer-177ajqg`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nso0Uq2On\",onTap:onTap55t179,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":`${(_MMeALfBGT_borderBottomWidth=MMeALfBGT.borderBottomWidth)!==null&&_MMeALfBGT_borderBottomWidth!==void 0?_MMeALfBGT_borderBottomWidth:MMeALfBGT.borderWidth}px`,\"--border-color\":MMeALfBGT.borderColor,\"--border-left-width\":`${(_MMeALfBGT_borderLeftWidth=MMeALfBGT.borderLeftWidth)!==null&&_MMeALfBGT_borderLeftWidth!==void 0?_MMeALfBGT_borderLeftWidth:MMeALfBGT.borderWidth}px`,\"--border-right-width\":`${(_MMeALfBGT_borderRightWidth=MMeALfBGT.borderRightWidth)!==null&&_MMeALfBGT_borderRightWidth!==void 0?_MMeALfBGT_borderRightWidth:MMeALfBGT.borderWidth}px`,\"--border-style\":MMeALfBGT.borderStyle,\"--border-top-width\":`${(_MMeALfBGT_borderTopWidth=MMeALfBGT.borderTopWidth)!==null&&_MMeALfBGT_borderTopWidth!==void 0?_MMeALfBGT_borderTopWidth:MMeALfBGT.borderWidth}px`,backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"nso0Uq2On-hover\":{backgroundColor:\"rgb(67, 188, 175)\"}},...addPropertyOverrides({\"nso0Uq2On-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:\"J\\xe1 tenho uma conta\"})}),className:\"framer-1mslh60\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"FQ4SAxKg3\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},text:vBnyA7TiN,variants:{\"nso0Uq2On-hover\":{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"nso0Uq2On-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Arvore Sans Bold\", \"Arvore Sans Bold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"J\\xe1 tenho uma conta\"})}),fonts:[\"CUSTOM;Arvore Sans Bold\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1oe55g5\",\"data-framer-appear-id\":\"1oe55g5\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"izlq64WCx\",optimized:true,style:{rotate:15},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vhrwhp\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wvQDgavks\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 31\"><g transform=\"translate(0.499 0)\" id=\"ss11963992116_1\"><path d=\"M 18.342 29.653 C 18.855 29.399 19.11 28.805 18.962 28.26 C 18.522 26.65 17.251 23.395 13.991 21.963 C 10.732 20.532 7.465 21.808 5.991 22.571 C 5.479 22.825 5.223 23.419 5.373 23.964 C 5.811 25.574 7.082 28.829 10.341 30.261 C 13.601 31.692 16.87 30.416 18.342 29.653 Z\" fill=\"rgb(69,208,193)\"></path><path d=\"M 9.03 0.505 C 8.607 0.005 7.897 -0.146 7.314 0.153 C 5.441 1.111 1.116 3.635 0.174 8.306 C -0.756 12.974 2.287 16.884 3.637 18.495 C 4.06 18.995 4.77 19.146 5.353 18.847 C 7.226 17.89 11.551 15.215 12.481 10.547 C 13.423 5.877 10.38 2.116 9.03 0.505 Z\" fill=\"rgb(69,208,193)\"></path></g></svg>',svgContentId:11963992116,withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n6mbL.framer-177ajqg, .framer-n6mbL .framer-177ajqg { display: block; }\",\".framer-n6mbL.framer-9nip4s { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 21px 35px 21px 35px; position: relative; text-decoration: none; width: min-content; }\",\".framer-n6mbL .framer-1mslh60 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-n6mbL .framer-1oe55g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -25px; top: 41%; width: min-content; z-index: 1; }\",\".framer-n6mbL .framer-1vhrwhp { flex: none; height: 31px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n6mbL.framer-9nip4s, .framer-n6mbL .framer-1oe55g5 { gap: 0px; } .framer-n6mbL.framer-9nip4s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n6mbL.framer-9nip4s > :first-child { margin-top: 0px; } .framer-n6mbL.framer-9nip4s > :last-child { margin-bottom: 0px; } .framer-n6mbL .framer-1oe55g5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-n6mbL .framer-1oe55g5 > :first-child { margin-left: 0px; } .framer-n6mbL .framer-1oe55g5 > :last-child { margin-right: 0px; } }\",'.framer-n6mbL[data-border=\"true\"]::after, .framer-n6mbL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 235\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xXy3Yh6_1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vBnyA7TiN\":\"texto\",\"amdM3By72\":\"link2\",\"Yo4Fnsi0v\":\"newTab\",\"RlZm0f_dd\":\"click\",\"MMeALfBGT\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervfdOKw5is=withCSS(Component,css,\"framer-n6mbL\");export default FramervfdOKw5is;FramervfdOKw5is.displayName=\"botaoform\";FramervfdOKw5is.defaultProps={height:66,width:235};addPropertyControls(FramervfdOKw5is,{vBnyA7TiN:{defaultValue:\"J\\xe1 tenho uma conta\",displayTextArea:false,title:\"Texto\",type:ControlType.String},amdM3By72:{title:\"Link 2\",type:ControlType.Link},Yo4Fnsi0v:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},RlZm0f_dd:{title:\"Click\",type:ControlType.EventHandler},MMeALfBGT:{defaultValue:{borderBottomWidth:3,borderColor:\"rgb(153, 199, 198)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},title:\"Border\",type:ControlType.Border}});addFonts(FramervfdOKw5is,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"},{family:\"Arvore Sans Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/6iDK8Eri9vCEnT2o7qUBU3oo4GA.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervfdOKw5is\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xXy3Yh6_1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"66\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"235\",\"framerVariables\":\"{\\\"vBnyA7TiN\\\":\\\"texto\\\",\\\"amdM3By72\\\":\\\"link2\\\",\\\"Yo4Fnsi0v\\\":\\\"newTab\\\",\\\"RlZm0f_dd\\\":\\\"click\\\",\\\"MMeALfBGT\\\":\\\"border\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vfdOKw5is.map","// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/plBjvwFTcy26lcUjPCZ3/jkdCGWpzeZcZKB5ZuumB/bhHMGZ4jb.js\";import SoluEs from\"https://framerusercontent.com/modules/pyjeIlo1kyGxWhjQOs2O/zdBNLKwsQucnsu9Al6Bc/aItL5GHHL.js\";import BotO from\"https://framerusercontent.com/modules/vmkA45W1JVRYpFjoJASN/AD46KsDLRUV1k0WVYkCb/bpLigr4RP.js\";import Botaoform from\"https://framerusercontent.com/modules/20BPVqEYJK8Rj7r2VzrC/MP4hXpTgYP4mkDsznyjn/vfdOKw5is.js\";const SoluEsFonts=getFonts(SoluEs);const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const BotaoformFonts=getFonts(Botaoform);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const BotOFonts=getFonts(BotO);const cycleOrder=[\"Ryn1zQgDs\",\"vce1xP_GD\",\"pIVT7VRGJ\"];const serializationHash=\"framer-UMpr3\";const variantClassNames={pIVT7VRGJ:\"framer-v-4s6wog\",Ryn1zQgDs:\"framer-v-fwqnpg\",vce1xP_GD:\"framer-v-1aont64\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation4={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 transition3={damping:14,delay:0,mass:1,stiffness:102,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const transition4={bounce:.2,delay:.3,duration:.4,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:.6,duration:.4,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Ryn1zQgDs\",\"Variant 2\":\"vce1xP_GD\",\"Variant 3\":\"pIVT7VRGJ\"};const getProps=({height,id,link2,ocultar,scrollSection,width,...props})=>{return{...props,gOiOZ36Cr:scrollSection??props.gOiOZ36Cr,UXKHLUJcb:link2??props.UXKHLUJcb,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ryn1zQgDs\",VGSmzcGOc:ocultar??props.VGSmzcGOc??true};};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,VGSmzcGOc,gOiOZ36Cr,UXKHLUJcb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ryn1zQgDs\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const TEsnJgbz5txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const x_tn4B2Ry1vike1r=activeVariantCallback(async(...args)=>{setVariant(\"pIVT7VRGJ\");});const RlZm0f_dd1w55yyu=activeVariantCallback(async(...args)=>{if(gOiOZ36Cr){const res=await gOiOZ36Cr(...args);if(res===false)return false;}});const QspOFcoNl12mn5y0=activeVariantCallback(async(...args)=>{setVariant(\"vce1xP_GD\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=value=>{if(baseVariant===\"pIVT7VRGJ\")return false;return value;};const ref2=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"vce1xP_GD\")return false;return true;};const ref3=React.useRef(null);const isDisplayed2=()=>{if(baseVariant===\"pIVT7VRGJ\")return false;return true;};const isDisplayed3=value=>{if(baseVariant===\"pIVT7VRGJ\")return true;return value;};const isDisplayed4=()=>{if(baseVariant===\"pIVT7VRGJ\")return true;return false;};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-fwqnpg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ryn1zQgDs\",ref:ref??ref1,style:{...style},...addPropertyOverrides({pIVT7VRGJ:{\"data-framer-name\":\"Variant 3\"},vce1xP_GD:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed(VGSmzcGOc)&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-l9pdz4\",\"data-framer-appear-id\":\"l9pdz4\",layoutDependency:layoutDependency,layoutId:\"gt1rllqLl\",...addPropertyOverrides({vce1xP_GD:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-styxzb\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"DwCS6R_Tk\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eq9ex2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"oYJsp1yp1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-29fe4cca-b72e-45d4-bc0b-a33f9d596171, rgb(76, 157, 157)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"JfX3x_zHA\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Home\"})})})}),className:\"framer-19u3ghl\",\"data-framer-name\":\"Home\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"JfX3x_zHA\",style:{\"--extracted-r6o4lv\":\"var(--token-29fe4cca-b72e-45d4-bc0b-a33f9d596171, rgb(76, 157, 157))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",whileHover:animation2,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed1(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+(0+((componentViewport?.height||66)-0-25)/2)+0,...addPropertyOverrides({vce1xP_GD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||237)-0-219)/2+0+0)+0+21}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1pt25uh-container\",id:`${layoutId}-1pt25uh`,layoutDependency:layoutDependency,layoutId:\"pI00XH6yQ-container\",nodeId:\"pI00XH6yQ\",ref:ref2,rendersWithMotion:true,scopeId:\"QhMx5rnan\",children:[/*#__PURE__*/_jsx(SoluEs,{height:\"100%\",id:\"pI00XH6yQ\",layoutId:\"pI00XH6yQ\",TEsnJgbz5:TEsnJgbz5txyyif({overlay}),variant:overlay.visible?\"kQEysGzwb\":\"MNYOiVFLw\",width:\"100%\",...addPropertyOverrides({vce1xP_GD:{x_tn4B2Ry:x_tn4B2Ry1vike1r}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1pt25uh`,offsetX:-.015635095522156917,offsetY:11.500005117151886,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-xxruwz\",\"data-border\":true,exit:animation3,initial:animation4,layoutDependency:layoutDependency,layoutId:\"QtKbFOwKD\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(154, 199, 198)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bJasWkXIp\"},motionChild:true,nodeId:\"AmDYx1_Oh\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Ler\"})})})}),className:\"framer-kxlv1c\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"AmDYx1_Oh\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dFUFhW_vG\"},motionChild:true,nodeId:\"tSsB9tBLv\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Sentir\"})})})}),className:\"framer-cue0hr\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"tSsB9tBLv\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aCbD7gB2X\"},motionChild:true,nodeId:\"WFZexWl4Z\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Comunicar \"})})})}),className:\"framer-17wr3nz\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"WFZexWl4Z\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"auyxdU4w1\"},motionChild:true,nodeId:\"F4ESAr7ER\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Criar \"})})})}),className:\"framer-94unaf\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"F4ESAr7ER\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})})})]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-54cmqa\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"sr6NnFBrW\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+(0+((componentViewport?.height||66)-0-66)/2)+0,...addPropertyOverrides({vce1xP_GD:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||237)-0-219)/2+46+29)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-1aqcpzp-container\",\"data-framer-appear-id\":\"1aqcpzp\",\"data-framer-name\":\"botaoform\",layoutDependency:layoutDependency,layoutId:\"KfEOTag9A-container\",name:\"botaoform\",nodeId:\"KfEOTag9A\",rendersWithMotion:true,scopeId:\"QhMx5rnan\",whileHover:animation5,...addPropertyOverrides({vce1xP_GD:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Botaoform,{amdM3By72:UXKHLUJcb,height:\"100%\",id:\"KfEOTag9A\",layoutId:\"KfEOTag9A\",MMeALfBGT:{borderBottomWidth:3,borderColor:\"rgb(151, 194, 193)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},name:\"botaoform\",RlZm0f_dd:RlZm0f_dd1w55yyu,vBnyA7TiN:\"Solicitar demonstra\\xe7\\xe3o\",width:\"100%\",Yo4Fnsi0v:false,...addPropertyOverrides({vce1xP_GD:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed3(VGSmzcGOc)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+(0+((componentViewport?.height||66)-0-66)/2)+0,...addPropertyOverrides({pIVT7VRGJ:{y:(componentViewport?.y||0)+18+(((componentViewport?.height||266)-36-230)/2+96+68)+0+0},vce1xP_GD:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||237)-0-219)/2+46+29)+0+78}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-eo7be0-container\",\"data-framer-appear-id\":\"eo7be0\",\"data-framer-name\":\"outro\",layoutDependency:layoutDependency,layoutId:\"uhkbJBly9-container\",name:\"outro\",nodeId:\"uhkbJBly9\",rendersWithMotion:true,scopeId:\"QhMx5rnan\",whileHover:animation5,...addPropertyOverrides({vce1xP_GD:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(BotO,{DbFoQ0I7J:{borderBottomWidth:3,borderColor:\"rgb(30, 135, 125)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},fYT4KH1S9:false,height:\"100%\",huGiNpbrq:\"rgb(76, 157, 157)\",id:\"uhkbJBly9\",layoutId:\"uhkbJBly9\",name:\"outro\",NHDJBwMWi:{borderBottomWidth:3,borderColor:\"rgba(30, 135, 125, 0.22)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},variant:\"VvbwVyVkq\",vqAV6R01Q:\"Entrar\",width:\"100%\",WNmAbxhp7:\"https://app.arvore.com.br/login\",zCKi9eVHQ:{borderBottomWidth:3,borderColor:\"rgba(154, 199, 198, 1)\",borderLeftWidth:1,borderRightWidth:1,borderStyle:\"solid\",borderTopWidth:1},zsdGXWCWT:\"var(--token-2e25ded1-11ae-4dc8-abf9-c10022c4ed76, rgb(67, 188, 175))\",...addPropertyOverrides({pIVT7VRGJ:{QspOFcoNl:QspOFcoNl12mn5y0,style:{width:\"100%\"},vqAV6R01Q:\"Voltar\",WNmAbxhp7:undefined},vce1xP_GD:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bJasWkXIp\"},motionChild:true,nodeId:\"bdXIZn6e1\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Ler\"})})})}),className:\"framer-5obt44\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bdXIZn6e1\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dFUFhW_vG\"},motionChild:true,nodeId:\"BVjk_Onus\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Sentir\"})})})}),className:\"framer-8ksb6x\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"BVjk_Onus\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aCbD7gB2X\"},motionChild:true,nodeId:\"Zv4lynY5T\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Comunicar \"})})})}),className:\"framer-yb4uci\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Zv4lynY5T\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Fydm9yZSBTYW5zIFNlbWlCb2xk\",\"--framer-font-family\":'\"Arvore Sans SemiBold\", \"Arvore Sans SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(76, 157, 157))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"auyxdU4w1\"},motionChild:true,nodeId:\"alsgkLCkk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-2xauuk\",\"data-styles-preset\":\"bhHMGZ4jb\",children:\"Criar \"})})})}),className:\"framer-y73ykc\",\"data-framer-name\":\"J\\xe1 tenho uma conta\",fonts:[\"CUSTOM;Arvore Sans SemiBold\"],layoutDependency:layoutDependency,layoutId:\"alsgkLCkk\",style:{\"--extracted-r6o4lv\":\"rgb(76, 157, 157)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UMpr3.framer-1bo8qzi, .framer-UMpr3 .framer-1bo8qzi { display: block; }\",\".framer-UMpr3.framer-fwqnpg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UMpr3 .framer-l9pdz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UMpr3 .framer-styxzb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UMpr3 .framer-eq9ex2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-UMpr3 .framer-19u3ghl, .framer-UMpr3 .framer-kxlv1c, .framer-UMpr3 .framer-cue0hr, .framer-UMpr3 .framer-17wr3nz, .framer-UMpr3 .framer-94unaf, .framer-UMpr3 .framer-5obt44, .framer-UMpr3 .framer-8ksb6x, .framer-UMpr3 .framer-yb4uci, .framer-UMpr3 .framer-y73ykc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UMpr3 .framer-1pt25uh-container, .framer-UMpr3 .framer-1aqcpzp-container, .framer-UMpr3 .framer-eo7be0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UMpr3 .framer-xxruwz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 34px 35px 34px 35px; position: relative; width: 265px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UMpr3 .framer-54cmqa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UMpr3.framer-fwqnpg, .framer-UMpr3 .framer-l9pdz4, .framer-UMpr3 .framer-styxzb, .framer-UMpr3 .framer-eq9ex2, .framer-UMpr3 .framer-xxruwz, .framer-UMpr3 .framer-54cmqa { gap: 0px; } .framer-UMpr3.framer-fwqnpg > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-UMpr3.framer-fwqnpg > :first-child, .framer-UMpr3 .framer-l9pdz4 > :first-child, .framer-UMpr3 .framer-styxzb > :first-child, .framer-UMpr3 .framer-54cmqa > :first-child { margin-left: 0px; } .framer-UMpr3.framer-fwqnpg > :last-child, .framer-UMpr3 .framer-l9pdz4 > :last-child, .framer-UMpr3 .framer-styxzb > :last-child, .framer-UMpr3 .framer-54cmqa > :last-child { margin-right: 0px; } .framer-UMpr3 .framer-l9pdz4 > * { margin: 0px; margin-left: calc(21px / 2); margin-right: calc(21px / 2); } .framer-UMpr3 .framer-styxzb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UMpr3 .framer-eq9ex2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UMpr3 .framer-eq9ex2 > :first-child, .framer-UMpr3 .framer-xxruwz > :first-child { margin-top: 0px; } .framer-UMpr3 .framer-eq9ex2 > :last-child, .framer-UMpr3 .framer-xxruwz > :last-child { margin-bottom: 0px; } .framer-UMpr3 .framer-xxruwz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-UMpr3 .framer-54cmqa > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-UMpr3.framer-v-1aont64.framer-fwqnpg, .framer-UMpr3.framer-v-1aont64 .framer-l9pdz4 { flex-direction: column; }\",\".framer-UMpr3.framer-v-1aont64 .framer-54cmqa { align-self: stretch; flex-direction: column; width: auto; }\",\".framer-UMpr3.framer-v-1aont64 .framer-1aqcpzp-container, .framer-UMpr3.framer-v-1aont64 .framer-eo7be0-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UMpr3.framer-v-1aont64.framer-fwqnpg, .framer-UMpr3.framer-v-1aont64 .framer-l9pdz4, .framer-UMpr3.framer-v-1aont64 .framer-54cmqa { gap: 0px; } .framer-UMpr3.framer-v-1aont64.framer-fwqnpg > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-UMpr3.framer-v-1aont64.framer-fwqnpg > :first-child, .framer-UMpr3.framer-v-1aont64 .framer-l9pdz4 > :first-child, .framer-UMpr3.framer-v-1aont64 .framer-54cmqa > :first-child { margin-top: 0px; } .framer-UMpr3.framer-v-1aont64.framer-fwqnpg > :last-child, .framer-UMpr3.framer-v-1aont64 .framer-l9pdz4 > :last-child, .framer-UMpr3.framer-v-1aont64 .framer-54cmqa > :last-child { margin-bottom: 0px; } .framer-UMpr3.framer-v-1aont64 .framer-l9pdz4 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-UMpr3.framer-v-1aont64 .framer-54cmqa > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-UMpr3.framer-v-4s6wog.framer-fwqnpg { flex-direction: column; gap: 17px; padding: 18px; }\",\".framer-UMpr3.framer-v-4s6wog .framer-54cmqa { flex-direction: column; order: 5; }\",\".framer-UMpr3.framer-v-4s6wog .framer-eo7be0-container { align-self: stretch; }\",\".framer-UMpr3.framer-v-4s6wog .framer-5obt44 { order: 1; }\",\".framer-UMpr3.framer-v-4s6wog .framer-8ksb6x { order: 2; }\",\".framer-UMpr3.framer-v-4s6wog .framer-yb4uci { order: 3; }\",\".framer-UMpr3.framer-v-4s6wog .framer-y73ykc { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UMpr3.framer-v-4s6wog.framer-fwqnpg, .framer-UMpr3.framer-v-4s6wog .framer-54cmqa { gap: 0px; } .framer-UMpr3.framer-v-4s6wog.framer-fwqnpg > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-UMpr3.framer-v-4s6wog.framer-fwqnpg > :first-child, .framer-UMpr3.framer-v-4s6wog .framer-54cmqa > :first-child { margin-top: 0px; } .framer-UMpr3.framer-v-4s6wog.framer-fwqnpg > :last-child, .framer-UMpr3.framer-v-4s6wog .framer-54cmqa > :last-child { margin-bottom: 0px; } .framer-UMpr3.framer-v-4s6wog .framer-54cmqa > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,'.framer-UMpr3[data-border=\"true\"]::after, .framer-UMpr3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 605\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vce1xP_GD\":{\"layout\":[\"auto\",\"auto\"]},\"pIVT7VRGJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"VGSmzcGOc\":\"ocultar\",\"gOiOZ36Cr\":\"scrollSection\",\"UXKHLUJcb\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQhMx5rnan=withCSS(Component,css,\"framer-UMpr3\");export default FramerQhMx5rnan;FramerQhMx5rnan.displayName=\"Dados\";FramerQhMx5rnan.defaultProps={height:66,width:605};addPropertyControls(FramerQhMx5rnan,{variant:{options:[\"Ryn1zQgDs\",\"vce1xP_GD\",\"pIVT7VRGJ\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},VGSmzcGOc:{defaultValue:true,title:\"Ocultar \",type:ControlType.Boolean},gOiOZ36Cr:{title:\"Scroll Section\",type:ControlType.EventHandler},UXKHLUJcb:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerQhMx5rnan,[{explicitInter:true,fonts:[{family:\"Arvore Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/iVSPm6MbxIFrJiRRN3S0Eig.woff2\"}]},...SoluEsFonts,...BotaoformFonts,...BotOFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQhMx5rnan\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"605\",\"framerVariables\":\"{\\\"VGSmzcGOc\\\":\\\"ocultar\\\",\\\"gOiOZ36Cr\\\":\\\"scrollSection\\\",\\\"UXKHLUJcb\\\":\\\"link2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"66\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vce1xP_GD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pIVT7VRGJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}