{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/7sfaOQqa6Q8ZA3VIdwI7/NUgQj8VJUjYeS5HwXPrU/Form.js", "ssg:https://framerusercontent.com/modules/wgAN5RqceDoTw558RJNO/Pr6iaAw0eztwpVq1BGSG/Attributer.js", "ssg:https://framerusercontent.com/modules/sh8diDJjcYbLD0quCltP/pyJzlW9AHZLySxhKBazq/PhoneInput_.js", "ssg:https://framerusercontent.com/modules/tUWaf7MA0Y1KS95P6Is6/OL9JX9u9w5SypYqJrL3L/sIENefUHm-0.js", "ssg:https://framerusercontent.com/modules/tUWaf7MA0Y1KS95P6Is6/OL9JX9u9w5SypYqJrL3L/sIENefUHm.js", "ssg:https://framerusercontent.com/modules/Dz5eAstCgtBKqJVFSs7s/qNzvbrJj4n7YCdkV0O7n/FJuUBKNFJ.js", "ssg:https://framerusercontent.com/modules/jD9I7X9OFmQIVRbhgOPA/2dr95uLrU98nWlCoC72E/sIENefUHm.js", "ssg:https://framerusercontent.com/modules/V0geJBIG5DCe4gKSFfvH/AZq3lgU5uEZ5MCTuGrsC/CjDUJYLbJ.js", "ssg:https://framerusercontent.com/modules/Dd5yxRmx5PeZOlDlL0V8/iivL614gvBT4ducfZONP/PhoneInput.js", "ssg:https://framerusercontent.com/modules/xZNR7u5zvJiYxJBpwowg/1cVFLLDMnqtYvfBdOA8o/GwMLStJ83-0.js", "ssg:https://framerusercontent.com/modules/xZNR7u5zvJiYxJBpwowg/1cVFLLDMnqtYvfBdOA8o/GwMLStJ83.js", "ssg:https://framerusercontent.com/modules/BriONEITOtGTC0WjsFFr/LYQnuUtnENKS9voEniYs/BKSLbx2la-0.js", "ssg:https://framerusercontent.com/modules/BriONEITOtGTC0WjsFFr/LYQnuUtnENKS9voEniYs/BKSLbx2la.js", "ssg:https://framerusercontent.com/modules/ceirLc7Z8XsdKOOpcZny/7m1sxJJZx3YdWScgWImu/BKSLbx2la.js", "ssg:https://framerusercontent.com/modules/u0z7jXvRjeXxz4NtX81D/kobG1XJoxgKFMscTzvPX/GwMLStJ83.js"],
  "sourcesContent": ["import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function withAllParams(Component){return props=>{useEffect(()=>{if(typeof window!==\"undefined\"){const page_name=window.location.pathname||\"home\";const params=new URLSearchParams(window.location.search);const form=document.querySelector(`form.${props.className}`);if(form){// Adicionar os par\u00E2metros da URL ao formul\u00E1rio\nparams.forEach((value,key)=>{const input=document.createElement(\"input\");input.type=\"hidden\";input.name=key;input.value=value;form.appendChild(input);});// Adicionar o link da p\u00E1gina ao formul\u00E1rio\nconst pageInput=document.createElement(\"input\");pageInput.type=\"hidden\";pageInput.name=\"page_link\";pageInput.value=page_name;form.appendChild(pageInput);}}},[props.className]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withAllParams2(Component){return props=>{useEffect(()=>{if(typeof window!==\"undefined\"){const page_name=window.location.pathname||\"home\";const params=new URLSearchParams(window.location.search);// Selecionar o formul\u00E1rio corretamente\nconst form=document.querySelector(`form.${props.className}`)||document.querySelector(\"form\");if(form){console.log(\"\u2705 Formul\\xe1rio encontrado:\",form);// Adicionar os par\u00E2metros da URL ao formul\u00E1rio\nparams.forEach((value,key)=>{let input=form.querySelector(`input[name=\"${key}\"]`);if(!input){input=document.createElement(\"input\");input.type=\"hidden\";input.name=key;form.appendChild(input);}input.value=value;});// Adicionar o link da p\u00E1gina ao formul\u00E1rio\nlet pageInput=form.querySelector(`input[name=\"page_link\"]`);if(!pageInput){pageInput=document.createElement(\"input\");pageInput.type=\"hidden\";pageInput.name=\"page_link\";form.appendChild(pageInput);}pageInput.value=page_name;}else{console.log(\"\u274C Formul\\xe1rio n\\xe3o encontrado!\");}}},[props.className]);return /*#__PURE__*/_jsx(Component,{...props});};}export function OverrideFormButton(Component){return props=>{const handleClick=event=>{event.preventDefault()// Evita o envio padr\u00E3o do formul\u00E1rio\n;if(typeof window!==\"undefined\"){const form=document.querySelector(\"form\")||document.querySelector(`form.${props.className}`);if(form){const inputs=form.querySelectorAll(\"input[name]\");const params=new URLSearchParams;// Pegar valores dos inputs do formul\u00E1rio\ninputs.forEach(input=>{params.append(input.name,input.value)// Adiciona mesmo se estiver vazio\n;});// Pegar os valores das UTMs do Framer\nif(window.framer&&window.framer.variables){console.log(\"\u274C windo.framer.\");Object.entries(window.framer.variables).forEach(([key,value])=>{params.append(key,value);console.log(\"\u274C key\",key);});}console.log(\"\uD83D\uDCCC Todos os par\\xe2metros enviados:\",Object.fromEntries(params));// Construir o link final com os par\u00E2metros\nconst redirectURL=`http://localhost:9001/#/new-register-user?${params.toString()}`;// Abrir o link em uma nova aba\nwindow.open(redirectURL,\"_blank\");}else{console.log(\"\u274C Formul\\xe1rio n\\xe3o encontrado. Verifique a classe correta.\");}}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick,type:\"button\"});};}export function redirecionarComUTM(event){// Previne o redirecionamento autom\u00E1tico\nevent.preventDefault();// Obt\u00E9m a URL base do bot\u00E3o (atributo href)\nconst baseUrl=event.currentTarget?.href;console.log;if(!baseUrl){console.error(\"Href n\\xe3o encontrado no bot\\xe3o.\");return;}// Obt\u00E9m os par\u00E2metros da URL atual\nconst currentParams=new URLSearchParams(window.location.search);// Constr\u00F3i a URL de destino com UTMs\nconst queryString=currentParams.toString();const finalUrl=queryString?`${baseUrl}?${queryString}`:baseUrl;console.log(\"FinalUrl:\",finalUrl);console.log(\"queryString:\",queryString);// Redireciona para o novo destino\nwindow.location.href=finalUrl;}function FormContratarAgora(){return /*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"form_name\",value:\"form_trocar_contador\"});}export function OverrideFormContratarAgora(Component){return props=>/*#__PURE__*/_jsx(OptimizationFriendly,{loading:/*#__PURE__*/_jsx(Empty,{}),loaded:/*#__PURE__*/_jsx(FormContratarAgora,{})});}export function OverrideSendUTMButton(Component){return props=>{const[utmLink,setUtmLink]=useState(\"\");useEffect(()=>{if(typeof window!==\"undefined\"){const params=new URLSearchParams(window.location.search);// Capturar inputs ocultos do Attributer\ndocument.querySelectorAll(\"input[name^='[attributer-']\").forEach(input=>{const el=input;if(el.name&&el.value){params.set(el.name.replace(/\\[|\\]/g,\"\"),el.value)// Remove colchetes do nome\n;}});// Capturar dados do Attributer do localStorage (se dispon\u00EDveis)\nconst attributerData=JSON.parse(localStorage.getItem(\"attributer\")||\"{}\");Object.entries(attributerData).forEach(([key,value])=>{params.set(key,String(value));});// Capturar dados do GTM no dataLayer\nif(window.dataLayer){window.dataLayer.forEach(data=>{Object.entries(data).forEach(([key,value])=>{if(typeof value===\"string\"){params.set(key,value);}});});}const fullURL=`http://localhost:9001/#/new-register-user?${params.toString()}`;setUtmLink(fullURL);}},[]);const handleClick=()=>{if(typeof window!==\"undefined\"){console.log(\"Par\\xe2metros enviados:\",utmLink);window.location.href=utmLink;}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}// CUSTOM OVERRIDE FOR FORM custom hidden fields\nfunction OptimizationFriendly({loading,loaded}){const[isLoading,setLoading]=useState(true);useEffect(()=>setLoading(false),[]);return isLoading?loading:loaded;}function Empty(){return /*#__PURE__*/_jsx(_Fragment,{});}function FormAbrirEmpresa(){return /*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"form_name\",value:\"form_abrir_empresa\"});}export function OverrideFormAbrirEmpresa(Component){return props=>/*#__PURE__*/_jsx(OptimizationFriendly,{loading:/*#__PURE__*/_jsx(Empty,{}),loaded:/*#__PURE__*/_jsx(FormAbrirEmpresa,{})});}function FormTrocarContador(){return /*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"form_name\",value:\"form_trocar_contador\"});}export function OverrideFormTrocarContador(Component){return props=>/*#__PURE__*/_jsx(OptimizationFriendly,{loading:/*#__PURE__*/_jsx(Empty,{}),loaded:/*#__PURE__*/_jsx(FormTrocarContador,{})});}function FormPadrao(){return /*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"form_name\",value:\"form_padrao\"});}export function OverrideFormPadrao(Component){return props=>/*#__PURE__*/_jsx(OptimizationFriendly,{loading:/*#__PURE__*/_jsx(Empty,{}),loaded:/*#__PURE__*/_jsx(FormPadrao,{})});}function FormWhatsApp(){return /*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"form_name\",value:\"form_whats_app\"});}export function OverrideFormWhatsApp(Component){return props=>/*#__PURE__*/_jsx(OptimizationFriendly,{loading:/*#__PURE__*/_jsx(Empty,{}),loaded:/*#__PURE__*/_jsx(FormWhatsApp,{})});}export function OverrideFormWhatsAppFinal(Component){return props=>{useEffect(()=>{if(typeof window!==\"undefined\"){const page_name=window.location.pathname||\"home\";const params=new URLSearchParams(window.location.search);const form=document.querySelector(`form.${props.className}`);if(form){// Adicionar UTM parameters\nparams.forEach((value,key)=>{const input=document.createElement(\"input\");input.type=\"hidden\";input.name=key;input.value=value;form.appendChild(input);});// Adicionar page_link\nconst pageInput=document.createElement(\"input\");pageInput.type=\"hidden\";pageInput.name=\"page_link\";pageInput.value=page_name;form.appendChild(pageInput);// Adicionar form_name\nconst nameInput=document.createElement(\"input\");nameInput.type=\"hidden\";nameInput.name=\"form_name\";nameInput.value=\"form_whats_app\";form.appendChild(nameInput);}}},[props.className]);return /*#__PURE__*/_jsx(Component,{...props});};}//END CUSTOM OVERRIDE FORM CODE\n\nexport const __FramerMetadata__ = {\"exports\":{\"OverrideSendUTMButton\":{\"type\":\"reactHoc\",\"name\":\"OverrideSendUTMButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormWhatsApp\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormWhatsApp\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormAbrirEmpresa\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormAbrirEmpresa\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAllParams\":{\"type\":\"reactHoc\",\"name\":\"withAllParams\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAllParams2\":{\"type\":\"reactHoc\",\"name\":\"withAllParams2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormTrocarContador\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormTrocarContador\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormWhatsAppFinal\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormWhatsAppFinal\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormButton\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormPadrao\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormPadrao\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OverrideFormContratarAgora\":{\"type\":\"reactHoc\",\"name\":\"OverrideFormContratarAgora\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"redirecionarComUTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Form.map", "/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";export default function Attributer(props){const style={display:\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:style,children:[/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channel]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown1]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown2]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown3]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown4]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-landingpagegroup]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-landingpage]\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Attributer\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Attributer.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{useState}from\"react\";const countries=[{code:\"+55\",flag:\"\uD83C\uDDE7\uD83C\uDDF7\",name:\"Brazil\"},{code:\"+49\",flag:\"\uD83C\uDDE9\uD83C\uDDEA\",name:\"Germany\"},{code:\"+33\",flag:\"\uD83C\uDDEB\uD83C\uDDF7\",name:\"France\"},{code:\"+34\",flag:\"\uD83C\uDDEA\uD83C\uDDF8\",name:\"Spain\"},{code:\"+39\",flag:\"\uD83C\uDDEE\uD83C\uDDF9\",name:\"Italy\"},{code:\"+31\",flag:\"\uD83C\uDDF3\uD83C\uDDF1\",name:\"Netherlands\"},{code:\"+351\",flag:\"\uD83C\uDDF5\uD83C\uDDF9\",name:\"Portugal\"},{code:\"+44\",flag:\"\uD83C\uDDEC\uD83C\uDDE7\",name:\"United Kingdom\"},{code:\"+1\",flag:\"\uD83C\uDDFA\uD83C\uDDF8\",name:\"United States\"}];export default function PhoneInput(props){const{font,background,borderRadius,borderColor,textColor,placeholderColor,dropdownBackground,hoverColor,dividerColor,style,placeholder,label,isRequired,labelColor,requiredColor,labelFont,labelSpacing}=props;const[isOpen,setIsOpen]=useState(false);const[selectedCountry,setSelectedCountry]=useState(countries[0]);const[phoneNumber,setPhoneNumber]=useState(\"\");const formatPhoneNumber=value=>{const numbers=value.replace(/\\D/g,\"\");if(numbers.length<=11){return numbers.replace(/(\\d{2})(\\d{5})(\\d{4})/,\"($1) $2-$3\");}return numbers;};return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",...style},children:[/*#__PURE__*/_jsxs(\"label\",{style:{display:\"block\",marginBottom:labelSpacing,color:labelColor,...labelFont},children:[label,isRequired&&/*#__PURE__*/_jsx(\"span\",{style:{color:requiredColor,marginLeft:\"4px\"},children:\"*\"})]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"flex\",alignItems:\"center\",backgroundColor:background,borderRadius:borderRadius,padding:\"8px 12px\",border:`1px solid ${borderColor}`},children:[/*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",alignItems:\"center\",gap:\"4px\",cursor:\"pointer\",padding:\"4px 8px\",borderRight:`1px solid ${dividerColor}`},whileHover:{opacity:.8},onClick:()=>setIsOpen(!isOpen),children:[/*#__PURE__*/_jsx(\"span\",{children:selectedCountry.flag}),/*#__PURE__*/_jsx(\"span\",{style:{color:textColor},children:selectedCountry.code})]}),/*#__PURE__*/_jsx(\"input\",{type:\"tel\",name:\"Whatsapp\",required:true,value:phoneNumber,onChange:event=>setPhoneNumber(formatPhoneNumber(event.target.value)),placeholder:placeholder,style:{flex:1,background:\"none\",border:\"none\",color:textColor,padding:\"4px 8px\",outline:\"none\",...font,\"::placeholder\":{color:placeholderColor}}})]}),isOpen&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0,y:-10},animate:{opacity:1,y:0},style:{position:\"absolute\",top:\"100%\",left:0,width:\"100%\",backgroundColor:dropdownBackground,borderRadius:borderRadius,marginTop:\"4px\",boxShadow:\"0 2px 8px rgba(0,0,0,0.2)\",zIndex:1e3,maxHeight:\"200px\",overflowY:\"auto\",border:`1px solid ${borderColor}`},children:countries.map(country=>/*#__PURE__*/_jsxs(motion.div,{style:{padding:\"8px 12px\",display:\"flex\",alignItems:\"center\",gap:\"8px\",cursor:\"pointer\",color:textColor,...font},whileHover:{backgroundColor:hoverColor},onClick:()=>{setSelectedCountry(country);setIsOpen(false);},children:[/*#__PURE__*/_jsx(\"span\",{children:country.flag}),/*#__PURE__*/_jsx(\"span\",{children:country.code}),/*#__PURE__*/_jsx(\"span\",{children:country.name})]},country.code))})]});}PhoneInput.defaultProps={background:\"#1E1E1E\",borderRadius:4,borderColor:\"rgba(255,255,255,0.1)\",textColor:\"#FFFFFF\",placeholderColor:\"rgba(255,255,255,0.5)\",dropdownBackground:\"#1E1E1E\",hoverColor:\"rgba(255,255,255,0.1)\",dividerColor:\"rgba(255,255,255,0.1)\",placeholder:\"(12) 12345-1234\",font:{fontSize:16,fontFamily:\"Inter\",fontWeight:400},label:\"Whataspp\",isRequired:true,labelColor:\"#FFFFFF\",requiredColor:\"#FF0000\",labelFont:{fontSize:14,fontFamily:\"Inter\",fontWeight:400,lineHeight:1.5},labelSpacing:8};addPropertyControls(PhoneInput,{font:{type:ControlType.Object,title:\"Input Font\",controls:{fontSize:{type:ControlType.Number,title:\"Size\",min:8,max:96,unit:\"px\"},fontFamily:{type:ControlType.String,title:\"Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400}}},background:{type:ControlType.Color,title:\"Background\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",min:0,max:100,unit:\"px\"},borderColor:{type:ControlType.Color,title:\"Border Color\"},textColor:{type:ControlType.Color,title:\"Text Color\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder Color\"},dropdownBackground:{type:ControlType.Color,title:\"Dropdown Background\"},hoverColor:{type:ControlType.Color,title:\"Hover Color\"},dividerColor:{type:ControlType.Color,title:\"Divider Color\"},placeholder:{type:ControlType.String,title:\"Placeholder\"},label:{type:ControlType.String,title:\"Label Text\",defaultValue:\"WhatsApp de contato\"},isRequired:{type:ControlType.Boolean,title:\"Required\",defaultValue:true},labelColor:{type:ControlType.Color,title:\"Label Color\"},requiredColor:{type:ControlType.Color,title:\"Required Asterisk Color\"},labelFont:{type:ControlType.Object,title:\"Label Font\",controls:{fontSize:{type:ControlType.Number,title:\"Size\",min:8,max:96,unit:\"px\"},fontFamily:{type:ControlType.String,title:\"Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400},lineHeight:{type:ControlType.Number,title:\"Line Height\",min:.5,max:3,step:.1,defaultValue:1.5}}},labelSpacing:{type:ControlType.Number,title:\"Label Spacing\",min:0,max:100,unit:\"px\",defaultValue:8}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneInput_.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Name\"})});export const v1=\"Your name\";export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"WhatsApp\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport*as localizedValues from\"./sIENefUHm-0.js\";const valuesByLocaleId={VWbwkJAeK:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}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\";import{useRef}from\"react\";const enabledGestures={xdotOQRn9:{hover:true,pressed:true}};const cycleOrder=[\"xdotOQRn9\",\"xttIwkQMF\",\"vW72HdUh9\",\"pkRCrZE7T\",\"tqi1PnTqu\"];const serializationHash=\"framer-w4feY\";const variantClassNames={pkRCrZE7T:\"framer-v-1gfamgh\",tqi1PnTqu:\"framer-v-bszb05\",vW72HdUh9:\"framer-v-lq4kch\",xdotOQRn9:\"framer-v-h3yomw\",xttIwkQMF:\"framer-v-76jqzs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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={Disabled:\"vW72HdUh9\",Error:\"tqi1PnTqu\",Loading:\"xttIwkQMF\",Success:\"pkRCrZE7T\",Wpp:\"xdotOQRn9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xdotOQRn9\"};};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:\"xdotOQRn9\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h3yomw\",className,classNames),\"data-framer-name\":\"Wpp\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"xdotOQRn9\",ref:refBinding,style:{backgroundColor:\"rgb(37, 211, 102)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,opacity:1,...style},variants:{\"xdotOQRn9-hover\":{backgroundColor:\"var(--token-25c5cea7-a812-433d-ac56-6d2199a3982f, rgb(59, 148, 237))\",opacity:1},\"xdotOQRn9-pressed\":{backgroundColor:\"var(--token-a009bbfd-f933-4dfd-8ee7-ee0783f52009, rgb(4, 23, 47))\",opacity:1},pkRCrZE7T:{opacity:1},tqi1PnTqu:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},vW72HdUh9:{opacity:.5}},...addPropertyOverrides({\"xdotOQRn9-hover\":{\"data-framer-name\":undefined},\"xdotOQRn9-pressed\":{\"data-framer-name\":undefined},pkRCrZE7T:{\"data-framer-name\":\"Success\"},tqi1PnTqu:{\"data-framer-name\":\"Error\"},vW72HdUh9:{\"data-framer-name\":\"Disabled\"},xttIwkQMF:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.button,{className:\"framer-16z8zh2\",\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"RKqcDJ0xp\",style:{backgroundColor:\"rgb(37, 211, 102)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},variants:{\"xdotOQRn9-hover\":{backgroundColor:\"rgb(59, 148, 237)\"},\"xdotOQRn9-pressed\":{backgroundColor:\"rgb(4, 23, 47)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enviar\"})}),className:\"framer-6pauwc\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"RKqcDJ0xpyLnil8ogM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xdotOQRn9-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Obrigado\"})})},pkRCrZE7T:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enviado\"})})},xttIwkQMF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enviando\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w4feY.framer-8yu1co, .framer-w4feY .framer-8yu1co { display: block; }\",\".framer-w4feY.framer-h3yomw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 43px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-w4feY .framer-16z8zh2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-w4feY .framer-6pauwc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w4feY.framer-h3yomw, .framer-w4feY .framer-16z8zh2 { gap: 0px; } .framer-w4feY.framer-h3yomw > *, .framer-w4feY .framer-16z8zh2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-w4feY.framer-h3yomw > :first-child, .framer-w4feY .framer-16z8zh2 > :first-child { margin-left: 0px; } .framer-w4feY.framer-h3yomw > :last-child, .framer-w4feY .framer-16z8zh2 > :last-child { margin-right: 0px; } }\",\".framer-w4feY.framer-v-76jqzs.framer-h3yomw, .framer-w4feY.framer-v-lq4kch.framer-h3yomw, .framer-w4feY.framer-v-1gfamgh.framer-h3yomw, .framer-w4feY.framer-v-bszb05.framer-h3yomw { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xttIwkQMF\":{\"layout\":[\"fixed\",\"fixed\"]},\"vW72HdUh9\":{\"layout\":[\"fixed\",\"fixed\"]},\"pkRCrZE7T\":{\"layout\":[\"fixed\",\"fixed\"]},\"tqi1PnTqu\":{\"layout\":[\"fixed\",\"fixed\"]},\"m5G1o0MPW\":{\"layout\":[\"fixed\",\"fixed\"]},\"ddmF2_zDk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFJuUBKNFJ=withCSS(Component,css,\"framer-w4feY\");export default FramerFJuUBKNFJ;FramerFJuUBKNFJ.displayName=\"Button Wpp\";FramerFJuUBKNFJ.defaultProps={height:43,width:240};addPropertyControls(FramerFJuUBKNFJ,{variant:{options:[\"xdotOQRn9\",\"xttIwkQMF\",\"vW72HdUh9\",\"pkRCrZE7T\",\"tqi1PnTqu\"],optionTitles:[\"Wpp\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFJuUBKNFJ,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFJuUBKNFJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xttIwkQMF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vW72HdUh9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pkRCrZE7T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tqi1PnTqu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m5G1o0MPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ddmF2_zDk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"43\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FJuUBKNFJ.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Attributer from\"https://framerusercontent.com/modules/wgAN5RqceDoTw558RJNO/Pr6iaAw0eztwpVq1BGSG/Attributer.js\";import{OverrideFormWhatsApp,withAllParams}from\"https://framerusercontent.com/modules/7sfaOQqa6Q8ZA3VIdwI7/NUgQj8VJUjYeS5HwXPrU/Form.js\";import PhoneInput from\"https://framerusercontent.com/modules/sh8diDJjcYbLD0quCltP/pyJzlW9AHZLySxhKBazq/PhoneInput_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aHlJFk0Nlwgr300k1bXu/EgcPhTnJBRYlBdYXGY0h/Umy9X6t09.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/tUWaf7MA0Y1KS95P6Is6/OL9JX9u9w5SypYqJrL3L/sIENefUHm.js\";import ButtonWpp from\"https://framerusercontent.com/modules/Dz5eAstCgtBKqJVFSs7s/qNzvbrJj4n7YCdkV0O7n/FJuUBKNFJ.js\";const PhoneInputFonts=getFonts(PhoneInput);const ButtonWppFonts=getFonts(ButtonWpp);const FormPlainTextInputOverrideFormWhatsAppntwfpo=withCodeBoundaryForOverrides(FormPlainTextInput,{nodeId:\"BHJCBZGvH\",override:OverrideFormWhatsApp,scopeId:\"sIENefUHm\"});const AttributerFonts=getFonts(Attributer);const FormContainerWithAllParams15cmacu=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"I87k7Fwh6\",override:withAllParams,scopeId:\"sIENefUHm\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"BmI9moNgE\",\"bd0h9aNOP\"];const serializationHash=\"framer-W8D6C\";const variantClassNames={bd0h9aNOP:\"framer-v-2moxdg\",BmI9moNgE:\"framer-v-19p4dj8\"};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:.5,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};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={Phone:\"bd0h9aNOP\",WhatsApp:\"BmI9moNgE\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BmI9moNgE\",zTxy9eyGm:click??props.zTxy9eyGm};};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,zTxy9eyGm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BmI9moNgE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10ps6n7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zTxy9eyGm){const res=await zTxy9eyGm(...args);if(res===false)return false;}});const onTapvk3xq3=activeVariantCallback(async(...args)=>{setVariant(\"BmI9moNgE\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-19p4dj8\",className,classNames),\"data-framer-appear-id\":\"19p4dj8\",\"data-framer-name\":\"WhatsApp\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BmI9moNgE\",onTap:onTap10ps6n7,optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},...addPropertyOverrides({bd0h9aNOP:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FormContainerWithAllParams15cmacu,{action:\"https://api.framer.com/forms/v1/forms/82865b56-c233-4b1f-a72d-2b0cec676bdd/submit\",className:\"framer-15cmacu\",layoutDependency:layoutDependency,layoutId:\"I87k7Fwh6\",nodeId:\"I87k7Fwh6\",redirectUrl:{webPageId:\"zeViNgcrN\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-16q7ct9\",layoutDependency:layoutDependency,layoutId:\"mUebOZj8h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Nome\"})}),className:\"framer-xzxvzf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bdtvYaGMo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-der2i8\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"vBLnpE50S\",placeholder:getLocalizedValue(\"v1\",activeLocale)??\"Seu nome\",required:true,style:{\"--framer-input-background\":\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"32px\",\"--framer-input-border-radius-bottom-right\":\"32px\",\"--framer-input-border-radius-top-left\":\"32px\",\"--framer-input-border-radius-top-right\":\"32px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2c8d1013-58f4-4150-b39b-f0901b661a9c, rgb(115, 114, 115))\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-11szh5k\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wFxMwI7vX\",onTap:onTapvk3xq3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Whatsapp\"})}),className:\"framer-1yvskqx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mg9Dmd0uC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-29lyhg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"dAc_Zcq0y-container\",nodeId:\"dAc_Zcq0y\",rendersWithMotion:true,scopeId:\"sIENefUHm\",children:/*#__PURE__*/_jsx(PhoneInput,{background:\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",borderColor:\"rgba(255, 255, 255, 0.1)\",borderRadius:32,dividerColor:\"rgba(255, 255, 255, 0.1)\",dropdownBackground:\"rgb(255, 255, 255)\",font:{fontFamily:\"Recoleta Regular\",fontSize:16,fontWeight:400},height:\"100%\",hoverColor:\"rgba(255, 255, 255, 0.1)\",id:\"dAc_Zcq0y\",isRequired:false,label:\"Whatsapp\",labelColor:\"rgb(255, 255, 255)\",labelFont:{fontFamily:\"Recoleta Regular\",fontSize:8,fontWeight:400,lineHeight:1.5},labelSpacing:8,layoutId:\"dAc_Zcq0y\",placeholder:\"(12) 12345-1234\",placeholderColor:\"rgba(255, 255, 255, 0.5)\",requiredColor:\"rgb(255, 0, 0)\",style:{height:\"100%\",width:\"100%\"},textColor:\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"414px\",y:(componentViewport?.y||0)+32+0+0+234.4,...addPropertyOverrides({bd0h9aNOP:{height:(Math.max(0,((componentViewport?.height||466)-64-0)/1)*1-0)*.2,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+0+0+(0+(Math.max(0,(Math.max(0,((componentViewport?.height||466)-64-0)/1)*1-0-(0+(Math.max(0,((componentViewport?.height||466)-64-0)/1)*1-0)*.2+200+0))/3)*1+Math.max(0,(Math.max(0,((componentViewport?.height||466)-64-0)/1)*1-0-(0+(Math.max(0,((componentViewport?.height||466)-64-0)/1)*1-0)*.2+200+0))/3)*1)+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dnum5b-container\",layoutDependency:layoutDependency,layoutId:\"Y1W8ST4YZ-container\",nodeId:\"Y1W8ST4YZ\",rendersWithMotion:true,scopeId:\"sIENefUHm\",children:/*#__PURE__*/_jsx(ButtonWpp,{height:\"100%\",id:\"Y1W8ST4YZ\",layoutId:\"Y1W8ST4YZ\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"tqi1PnTqu\",pending:\"xttIwkQMF\",success:\"pkRCrZE7T\"},\"xdotOQRn9\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(FormPlainTextInputOverrideFormWhatsAppntwfpo,{className:\"framer-ntwfpo\",inputName:\"FORM_WHATSAPP\",layoutDependency:layoutDependency,layoutId:\"BHJCBZGvH\",placeholder:\"n\\xe3o remover este campo!!\",required:true,style:{\"--framer-input-background\":\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"32px\",\"--framer-input-border-radius-bottom-right\":\"32px\",\"--framer-input-border-radius-top-left\":\"32px\",\"--framer-input-border-radius-top-right\":\"32px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2c8d1013-58f4-4150-b39b-f0901b661a9c, rgb(115, 114, 115))\"},type:\"text\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-20xqsu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"FHu6rmxJT-container\",nodeId:\"FHu6rmxJT\",rendersWithMotion:true,scopeId:\"sIENefUHm\",children:/*#__PURE__*/_jsx(Attributer,{height:\"100%\",id:\"FHu6rmxJT\",layoutId:\"FHu6rmxJT\",width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W8D6C.framer-eefn1h, .framer-W8D6C .framer-eefn1h { display: block; }\",\".framer-W8D6C.framer-19p4dj8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 478px; }\",\".framer-W8D6C .framer-15cmacu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 414px; }\",\".framer-W8D6C .framer-16q7ct9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-W8D6C .framer-xzxvzf, .framer-W8D6C .framer-1yvskqx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-W8D6C .framer-der2i8, .framer-W8D6C .framer-ntwfpo { --framer-input-focused-border-color: var(--token-7ac93704-7223-49c5-910e-882d4de6cb97, #1371ec); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Raleway\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 17px; --framer-input-font-weight: 400; --framer-input-padding: 8px 24px 8px 24px; flex: none; height: 64px; position: relative; width: 100%; }',\".framer-W8D6C .framer-11szh5k { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-W8D6C .framer-29lyhg-container { flex: none; height: 72px; position: relative; width: 100%; }\",\".framer-W8D6C .framer-1dnum5b-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-W8D6C .framer-20xqsu-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W8D6C.framer-19p4dj8, .framer-W8D6C .framer-15cmacu, .framer-W8D6C .framer-16q7ct9, .framer-W8D6C .framer-11szh5k { gap: 0px; } .framer-W8D6C.framer-19p4dj8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-W8D6C.framer-19p4dj8 > :first-child, .framer-W8D6C .framer-15cmacu > :first-child, .framer-W8D6C .framer-16q7ct9 > :first-child, .framer-W8D6C .framer-11szh5k > :first-child { margin-top: 0px; } .framer-W8D6C.framer-19p4dj8 > :last-child, .framer-W8D6C .framer-15cmacu > :last-child, .framer-W8D6C .framer-16q7ct9 > :last-child, .framer-W8D6C .framer-11szh5k > :last-child { margin-bottom: 0px; } .framer-W8D6C .framer-15cmacu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-W8D6C .framer-16q7ct9 > *, .framer-W8D6C .framer-11szh5k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-W8D6C.framer-v-2moxdg.framer-19p4dj8 { height: 466px; }\",\".framer-W8D6C.framer-v-2moxdg .framer-15cmacu { flex: 1 0 0px; gap: 0px; height: 1px; width: 100%; }\",\".framer-W8D6C.framer-v-2moxdg .framer-16q7ct9, .framer-W8D6C.framer-v-2moxdg .framer-11szh5k, .framer-W8D6C.framer-v-2moxdg .framer-29lyhg-container, .framer-W8D6C.framer-v-2moxdg .framer-ntwfpo { flex: 1 0 0px; height: 1px; }\",\".framer-W8D6C.framer-v-2moxdg .framer-der2i8 { height: 60%; }\",\".framer-W8D6C.framer-v-2moxdg .framer-1dnum5b-container { height: 20%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W8D6C.framer-v-2moxdg .framer-15cmacu { gap: 0px; } .framer-W8D6C.framer-v-2moxdg .framer-15cmacu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W8D6C.framer-v-2moxdg .framer-15cmacu > :first-child { margin-top: 0px; } .framer-W8D6C.framer-v-2moxdg .framer-15cmacu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 466\n * @framerIntrinsicWidth 478\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bd0h9aNOP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zTxy9eyGm\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersIENefUHm=withCSS(Component,css,\"framer-W8D6C\");export default FramersIENefUHm;FramersIENefUHm.displayName=\"Form WhatsApp\";FramersIENefUHm.defaultProps={height:466,width:478};addPropertyControls(FramersIENefUHm,{variant:{options:[\"BmI9moNgE\",\"bd0h9aNOP\"],optionTitles:[\"WhatsApp\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},zTxy9eyGm:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramersIENefUHm,[{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\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2YCK276JNUIIHMRWISQCDGWXNOKAXSCG/6OIJIEVI2ZSNHVU6RZ6WV47LHUN2T4MN/ZYCN4M673NULYB4BOICEICFLQAPDYBRK.woff2\",weight:\"400\"}]},...PhoneInputFonts,...ButtonWppFonts,...AttributerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersIENefUHm\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"478\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bd0h9aNOP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"466\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"zTxy9eyGm\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,SmartComponentScopedContainer,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\";import FormWhatsApp from\"https://framerusercontent.com/modules/jD9I7X9OFmQIVRbhgOPA/2dr95uLrU98nWlCoC72E/sIENefUHm.js\";const FormWhatsAppFonts=getFonts(FormWhatsApp);const MotionDivWithFX=withFX(motion.div);const enabledGestures={aMlSizJZv:{hover:true},PpqYXpYzt:{hover:true,pressed:true}};const cycleOrder=[\"PpqYXpYzt\",\"aMlSizJZv\"];const serializationHash=\"framer-N0Oyi\";const variantClassNames={aMlSizJZv:\"framer-v-1f6w8r8\",PpqYXpYzt:\"framer-v-jl9pgf\"};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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,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={M:\"aMlSizJZv\",XL:\"PpqYXpYzt\"};const getProps=({click,height,hover,id,width,...props})=>{return{...props,KgF2ZhGCc:click??props.KgF2ZhGCc,tmz4zkOEv:hover??props.tmz4zkOEv,variant:humanReadableVariantMap[props.variant]??props.variant??\"PpqYXpYzt\"};};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,KgF2ZhGCc,tmz4zkOEv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PpqYXpYzt\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfqxcv1=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KgF2ZhGCc){const res=await KgF2ZhGCc(...args);if(res===false)return false;}overlay.show();});const onMouseEnter1k3w8yf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(tmz4zkOEv){const res=await tmz4zkOEv(...args);if(res===false)return false;}});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-jl9pgf\",className,classNames),\"data-framer-name\":\"XL\",\"data-highlight\":true,id:`${layoutId}-jl9pgf`,layoutDependency:layoutDependency,layoutId:\"PpqYXpYzt\",onMouseEnter:onMouseEnter1k3w8yf,onTap:onTapfqxcv1({overlay}),ref:refBinding,style:{backgroundColor:\"rgb(37, 211, 102)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 5px 0px rgba(13, 13, 13, 0.3)\",...style},variants:{\"aMlSizJZv-hover\":{backgroundColor:\"rgb(21, 173, 77)\"},\"PpqYXpYzt-hover\":{backgroundColor:\"rgb(21, 173, 77)\"}},...addPropertyOverrides({\"aMlSizJZv-hover\":{\"data-framer-name\":undefined},\"PpqYXpYzt-hover\":{\"data-framer-name\":undefined},\"PpqYXpYzt-pressed\":{\"data-framer-name\":undefined},aMlSizJZv:{\"data-framer-name\":\"M\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1su7chz\",\"data-framer-name\":\"Whatsapp-icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vLcOfzzbb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 0 32 L 2.249 23.783 C 0.859 21.372 0.129 18.637 0.133 15.855 C 0.137 7.113 7.251 0 15.991 0 C 20.232 0.001 24.213 1.653 27.208 4.651 C 30.19 7.621 31.861 11.66 31.848 15.869 C 31.844 24.612 24.731 31.725 15.991 31.725 C 13.341 31.725 10.734 31.061 8.407 29.795 Z M 8.796 26.924 C 11.031 28.251 13.164 29.045 15.985 29.047 C 23.249 29.047 29.167 23.135 29.171 15.867 C 29.173 8.584 23.284 2.68 15.996 2.677 C 8.727 2.677 2.813 8.589 2.811 15.856 C 2.809 18.823 3.679 21.044 5.139 23.368 L 3.807 28.232 Z M 23.979 19.639 C 23.88 19.473 23.616 19.375 23.219 19.176 C 22.823 18.977 20.875 18.019 20.511 17.887 C 20.148 17.755 19.884 17.688 19.619 18.085 C 19.355 18.481 18.595 19.375 18.364 19.639 C 18.133 19.903 17.901 19.936 17.505 19.737 C 17.109 19.539 15.832 19.121 14.319 17.771 C 13.141 16.72 12.345 15.423 12.115 15.025 C 11.884 14.629 12.091 14.415 12.288 14.217 C 12.467 14.04 12.684 13.755 12.883 13.523 C 13.084 13.293 13.149 13.128 13.283 12.863 C 13.415 12.599 13.349 12.367 13.249 12.168 C 13.149 11.971 12.357 10.02 12.028 9.227 C 11.705 8.455 11.379 8.559 11.136 8.547 L 10.376 8.533 C 10.112 8.533 9.683 8.632 9.32 9.029 C 8.957 9.427 7.933 10.384 7.933 12.335 C 7.933 14.285 9.353 16.169 9.551 16.433 C 9.749 16.697 12.344 20.7 16.319 22.416 C 17.264 22.824 18.003 23.068 18.577 23.251 C 19.527 23.552 20.391 23.509 21.073 23.408 C 21.835 23.295 23.417 22.449 23.748 21.524 C 24.079 20.597 24.079 19.804 23.979 19.639 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9931458536,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}-jl9pgf`,offsetX:-481,offsetY:-215,onDismiss:overlay.hide,placement:\"right\",safeArea:false,zIndex:11,...addPropertyOverrides({aMlSizJZv:{offsetX:-355,offsetY:-180.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1fuh6n6\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"l0fGq5O61\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"449px\",...addPropertyOverrides({aMlSizJZv:{width:\"331px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ga75qi-container\",layoutDependency:layoutDependency,layoutId:\"LTXUpW7VX-container\",nodeId:\"LTXUpW7VX\",rendersWithMotion:true,scopeId:\"CjDUJYLbJ\",children:/*#__PURE__*/_jsx(FormWhatsApp,{height:\"100%\",id:\"LTXUpW7VX\",layoutId:\"LTXUpW7VX\",style:{height:\"100%\",width:\"100%\"},variant:\"BmI9moNgE\",width:\"100%\",...addPropertyOverrides({aMlSizJZv:{variant:\"bd0h9aNOP\"}},baseVariant,gestureVariant)})})})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N0Oyi.framer-ws6jp4, .framer-N0Oyi .framer-ws6jp4 { display: block; }\",\".framer-N0Oyi.framer-jl9pgf { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-N0Oyi .framer-1su7chz { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-N0Oyi .framer-1fuh6n6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 366px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 449px; will-change: var(--framer-will-change-override, transform); }\",\".framer-N0Oyi .framer-ga75qi-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-N0Oyi.framer-jl9pgf, .framer-N0Oyi .framer-1fuh6n6 { gap: 0px; } .framer-N0Oyi.framer-jl9pgf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-N0Oyi.framer-jl9pgf > :first-child { margin-left: 0px; } .framer-N0Oyi.framer-jl9pgf > :last-child { margin-right: 0px; } .framer-N0Oyi .framer-1fuh6n6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-N0Oyi .framer-1fuh6n6 > :first-child { margin-top: 0px; } .framer-N0Oyi .framer-1fuh6n6 > :last-child { margin-bottom: 0px; } }\",\".framer-N0Oyi.framer-v-1f6w8r8.framer-jl9pgf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-N0Oyi.framer-v-1f6w8r8 .framer-1fuh6n6 { height: 298px; width: min-content; }\",\".framer-N0Oyi.framer-v-1f6w8r8 .framer-ga75qi-container { width: 331px; }\",\".framer-N0Oyi.framer-v-jl9pgf.hover.framer-jl9pgf, .framer-N0Oyi.framer-v-jl9pgf.pressed.framer-jl9pgf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 64px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aMlSizJZv\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y9nspWjVv\":{\"layout\":[\"fixed\",\"fixed\"]},\"GvB1E1rOz\":{\"layout\":[\"fixed\",\"fixed\"]},\"jqxz6nRkQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KgF2ZhGCc\":\"click\",\"tmz4zkOEv\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCjDUJYLbJ=withCSS(Component,css,\"framer-N0Oyi\");export default FramerCjDUJYLbJ;FramerCjDUJYLbJ.displayName=\"Whatsapp-icon\";FramerCjDUJYLbJ.defaultProps={height:64,width:64};addPropertyControls(FramerCjDUJYLbJ,{variant:{options:[\"PpqYXpYzt\",\"aMlSizJZv\"],optionTitles:[\"XL\",\"M\"],title:\"Variant\",type:ControlType.Enum},KgF2ZhGCc:{title:\"Click\",type:ControlType.EventHandler},tmz4zkOEv:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerCjDUJYLbJ,[{explicitInter:true,fonts:[]},...FormWhatsAppFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCjDUJYLbJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"KgF2ZhGCc\\\":\\\"click\\\",\\\"tmz4zkOEv\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aMlSizJZv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y9nspWjVv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GvB1E1rOz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jqxz6nRkQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{useState}from\"react\";const countries=[{code:\"+55\",flag:\"\uD83C\uDDE7\uD83C\uDDF7\",name:\"Brazil\"},{code:\"+49\",flag:\"\uD83C\uDDE9\uD83C\uDDEA\",name:\"Germany\"},{code:\"+33\",flag:\"\uD83C\uDDEB\uD83C\uDDF7\",name:\"France\"},{code:\"+34\",flag:\"\uD83C\uDDEA\uD83C\uDDF8\",name:\"Spain\"},{code:\"+39\",flag:\"\uD83C\uDDEE\uD83C\uDDF9\",name:\"Italy\"},{code:\"+31\",flag:\"\uD83C\uDDF3\uD83C\uDDF1\",name:\"Netherlands\"},{code:\"+351\",flag:\"\uD83C\uDDF5\uD83C\uDDF9\",name:\"Portugal\"},{code:\"+44\",flag:\"\uD83C\uDDEC\uD83C\uDDE7\",name:\"United Kingdom\"},{code:\"+1\",flag:\"\uD83C\uDDFA\uD83C\uDDF8\",name:\"United States\"}];export default function PhoneInput(props){const{font,background,borderRadius,borderColor,textColor,placeholderColor,dropdownBackground,hoverColor,dividerColor,style,placeholder,label,isRequired,labelColor,requiredColor,labelFont,labelSpacing}=props;const[isOpen,setIsOpen]=useState(false);const[selectedCountry,setSelectedCountry]=useState(countries[0]);const[phoneNumber,setPhoneNumber]=useState(\"\");const formatPhoneNumber=value=>{const numbers=value.replace(/\\D/g,\"\");if(numbers.length<=11){return numbers.replace(/(\\d{2})(\\d{5})(\\d{4})/,\"($1) $2-$3\");}return numbers;};return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",...style},children:[/*#__PURE__*/_jsxs(\"label\",{style:{display:\"block\",marginBottom:labelSpacing,color:labelColor,...labelFont},children:[label,isRequired&&/*#__PURE__*/_jsx(\"span\",{style:{color:requiredColor,marginLeft:\"4px\"},children:\"*\"})]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",display:\"flex\",alignItems:\"center\",backgroundColor:background,borderRadius:borderRadius,padding:\"8px 12px\",border:`1px solid ${borderColor}`},children:[/*#__PURE__*/_jsxs(motion.div,{style:{display:\"flex\",alignItems:\"center\",gap:\"4px\",cursor:\"pointer\",padding:\"4px 8px\",borderRight:`1px solid ${dividerColor}`},whileHover:{opacity:.8},onClick:()=>setIsOpen(!isOpen),children:[/*#__PURE__*/_jsx(\"span\",{children:selectedCountry.flag}),/*#__PURE__*/_jsx(\"span\",{style:{color:textColor},children:selectedCountry.code})]}),/*#__PURE__*/_jsx(\"input\",{type:\"tel\",name:\"Whatsapp\",required:true,value:phoneNumber,onChange:event=>setPhoneNumber(formatPhoneNumber(event.target.value)),placeholder:placeholder,style:{flex:1,background:\"none\",border:\"none\",color:textColor,padding:\"4px 8px\",outline:\"none\",...font,\"::placeholder\":{color:placeholderColor}}})]}),isOpen&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:0,y:-10},animate:{opacity:1,y:0},style:{position:\"absolute\",top:\"100%\",left:0,width:\"100%\",backgroundColor:dropdownBackground,borderRadius:borderRadius,marginTop:\"4px\",boxShadow:\"0 2px 8px rgba(0,0,0,0.2)\",zIndex:1e3,maxHeight:\"200px\",overflowY:\"auto\",border:`1px solid ${borderColor}`},children:countries.map(country=>/*#__PURE__*/_jsxs(motion.div,{style:{padding:\"8px 12px\",display:\"flex\",alignItems:\"center\",gap:\"8px\",cursor:\"pointer\",color:textColor,...font},whileHover:{backgroundColor:hoverColor},onClick:()=>{setSelectedCountry(country);setIsOpen(false);},children:[/*#__PURE__*/_jsx(\"span\",{children:country.flag}),/*#__PURE__*/_jsx(\"span\",{children:country.code}),/*#__PURE__*/_jsx(\"span\",{children:country.name})]},country.code))})]});}PhoneInput.defaultProps={background:\"#1E1E1E\",borderRadius:4,borderColor:\"rgba(255,255,255,0.1)\",textColor:\"#FFFFFF\",placeholderColor:\"rgba(255,255,255,0.5)\",dropdownBackground:\"#1E1E1E\",hoverColor:\"rgba(255,255,255,0.1)\",dividerColor:\"rgba(255,255,255,0.1)\",placeholder:\"(12) 12345-1234\",font:{fontSize:16,fontFamily:\"Inter\",fontWeight:400},label:\"WhatsApp de contato\",isRequired:true,labelColor:\"#FFFFFF\",requiredColor:\"#FF0000\",labelFont:{fontSize:14,fontFamily:\"Inter\",fontWeight:400,lineHeight:1.5},labelSpacing:8};addPropertyControls(PhoneInput,{font:{type:ControlType.Object,title:\"Input Font\",controls:{fontSize:{type:ControlType.Number,title:\"Size\",min:8,max:96,unit:\"px\"},fontFamily:{type:ControlType.String,title:\"Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400}}},background:{type:ControlType.Color,title:\"Background\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",min:0,max:100,unit:\"px\"},borderColor:{type:ControlType.Color,title:\"Border Color\"},textColor:{type:ControlType.Color,title:\"Text Color\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder Color\"},dropdownBackground:{type:ControlType.Color,title:\"Dropdown Background\"},hoverColor:{type:ControlType.Color,title:\"Hover Color\"},dividerColor:{type:ControlType.Color,title:\"Divider Color\"},placeholder:{type:ControlType.String,title:\"Placeholder\"},label:{type:ControlType.String,title:\"Label Text\",defaultValue:\"WhatsApp de contato\"},isRequired:{type:ControlType.Boolean,title:\"Required\",defaultValue:true},labelColor:{type:ControlType.Color,title:\"Label Color\"},requiredColor:{type:ControlType.Color,title:\"Required Asterisk Color\"},labelFont:{type:ControlType.Object,title:\"Label Font\",controls:{fontSize:{type:ControlType.Number,title:\"Size\",min:8,max:96,unit:\"px\"},fontFamily:{type:ControlType.String,title:\"Family\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400},lineHeight:{type:ControlType.Number,title:\"Line Height\",min:.5,max:3,step:.1,defaultValue:1.5}}},labelSpacing:{type:ControlType.Number,title:\"Label Spacing\",min:0,max:100,unit:\"px\",defaultValue:8}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneInput.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Name\"})});export const v1=\"Your name\";export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"WhatsApp\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Email\"})});export const v4=\"jane@framer.com\";export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Como voc\\xea prefere ser contactado?\"})});export const v6=\"Enviar\";\nexport const __FramerMetadata__ = {\"exports\":{\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport*as localizedValues from\"./GwMLStJ83-0.js\";const valuesByLocaleId={VWbwkJAeK:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11s1t7m\",\"data-styles-preset\":\"dZyihh9uF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255)))\"},children:\"Thank you\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11s1t7m\",\"data-styles-preset\":\"dZyihh9uF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something wrong isn't right\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport*as localizedValues from\"./BKSLbx2la-0.js\";const valuesByLocaleId={VWbwkJAeK:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xBzlBuQfDfyAaDiGeqqg/gwDJ9zp6Jge0WAEAMDoR/dZyihh9uF.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/BriONEITOtGTC0WjsFFr/LYQnuUtnENKS9voEniYs/BKSLbx2la.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={FCsS5Ce1W:{hover:true,pressed:true}};const cycleOrder=[\"FCsS5Ce1W\",\"DOQA2zrKq\",\"LGf0ZqVRm\",\"d3FvKgADM\",\"ber0OFWZK\"];const serializationHash=\"framer-61clo\";const variantClassNames={ber0OFWZK:\"framer-v-1eotsli\",d3FvKgADM:\"framer-v-kdj4s8\",DOQA2zrKq:\"framer-v-te4mw1\",FCsS5Ce1W:\"framer-v-j6p80e\",LGf0ZqVRm:\"framer-v-1dssv06\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,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={Default:\"FCsS5Ce1W\",Disabled:\"LGf0ZqVRm\",Error:\"ber0OFWZK\",Loading:\"DOQA2zrKq\",Success:\"d3FvKgADM\"};const getProps=({height,id,label,width,...props})=>{return{...props,KGshjvMiJ:label??props.KGshjvMiJ??\"Submit\",variant:humanReadableVariantMap[props.variant]??props.variant??\"FCsS5Ce1W\"};};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,KGshjvMiJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FCsS5Ce1W\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"DOQA2zrKq\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"DOQA2zrKq\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-j6p80e\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"FCsS5Ce1W\",ref:refBinding,style:{backgroundColor:\"var(--token-7ac93704-7223-49c5-910e-882d4de6cb97, rgb(19, 113, 236))\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,opacity:1,...style},variants:{\"FCsS5Ce1W-hover\":{backgroundColor:\"var(--token-25c5cea7-a812-433d-ac56-6d2199a3982f, rgb(59, 148, 237))\",opacity:1},\"FCsS5Ce1W-pressed\":{backgroundColor:\"var(--token-a009bbfd-f933-4dfd-8ee7-ee0783f52009, rgb(4, 23, 47))\",opacity:1},ber0OFWZK:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},d3FvKgADM:{opacity:1},LGf0ZqVRm:{opacity:.5}},...addPropertyOverrides({\"FCsS5Ce1W-hover\":{\"data-framer-name\":undefined},\"FCsS5Ce1W-pressed\":{\"data-framer-name\":undefined},ber0OFWZK:{\"data-framer-name\":\"Error\"},d3FvKgADM:{\"data-framer-name\":\"Success\"},DOQA2zrKq:{\"data-framer-name\":\"Loading\"},LGf0ZqVRm:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11s1t7m\",\"data-styles-preset\":\"dZyihh9uF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255)))\"},children:\"Submit\"})}),className:\"framer-1jq82yv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FkNuuwhRW\",style:{\"--extracted-r6o4lv\":\"var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KGshjvMiJ,variants:{ber0OFWZK:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ber0OFWZK:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11s1t7m\",\"data-styles-preset\":\"dZyihh9uF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Algo de errado n\\xe3o est\\xe1 certo\"})}),text:undefined},d3FvKgADM:{children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11s1t7m\",\"data-styles-preset\":\"dZyihh9uF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255)))\"},children:\"Obrigado\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lrtxoj\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"rPDcvxSqs\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rkf4e7\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"oozZLV3cp\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{DOQA2zrKq:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bpwupw\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"Qs68LNWRw\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-61clo.framer-1xxhiyp, .framer-61clo .framer-1xxhiyp { display: block; }\",\".framer-61clo.framer-j6p80e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-61clo .framer-1jq82yv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-61clo .framer-1lrtxoj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-61clo .framer-1rkf4e7 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-61clo .framer-bpwupw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-61clo.framer-j6p80e { gap: 0px; } .framer-61clo.framer-j6p80e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-61clo.framer-j6p80e > :first-child { margin-left: 0px; } .framer-61clo.framer-j6p80e > :last-child { margin-right: 0px; } }\",\".framer-61clo.framer-v-te4mw1.framer-j6p80e, .framer-61clo.framer-v-1dssv06.framer-j6p80e, .framer-61clo.framer-v-kdj4s8.framer-j6p80e, .framer-61clo.framer-v-1eotsli.framer-j6p80e { cursor: unset; }\",\".framer-61clo.framer-v-te4mw1 .framer-1rkf4e7 { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DOQA2zrKq\":{\"layout\":[\"fixed\",\"fixed\"]},\"LGf0ZqVRm\":{\"layout\":[\"fixed\",\"fixed\"]},\"d3FvKgADM\":{\"layout\":[\"fixed\",\"fixed\"]},\"ber0OFWZK\":{\"layout\":[\"fixed\",\"fixed\"]},\"unwa1oSF8\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZlGm5m_gN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KGshjvMiJ\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBKSLbx2la=withCSS(Component,css,\"framer-61clo\");export default FramerBKSLbx2la;FramerBKSLbx2la.displayName=\"Button Copy 2\";FramerBKSLbx2la.defaultProps={height:64,width:240};addPropertyControls(FramerBKSLbx2la,{variant:{options:[\"FCsS5Ce1W\",\"DOQA2zrKq\",\"LGf0ZqVRm\",\"d3FvKgADM\",\"ber0OFWZK\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},KGshjvMiJ:{defaultValue:\"Submit\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerBKSLbx2la,[{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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBKSLbx2la\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"KGshjvMiJ\\\":\\\"label\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"240\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DOQA2zrKq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LGf0ZqVRm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d3FvKgADM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ber0OFWZK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"unwa1oSF8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZlGm5m_gN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Attributer from\"https://framerusercontent.com/modules/wgAN5RqceDoTw558RJNO/Pr6iaAw0eztwpVq1BGSG/Attributer.js\";import{OverrideFormAbrirEmpresa,withAllParams}from\"https://framerusercontent.com/modules/7sfaOQqa6Q8ZA3VIdwI7/NUgQj8VJUjYeS5HwXPrU/Form.js\";import PhoneInput from\"https://framerusercontent.com/modules/Dd5yxRmx5PeZOlDlL0V8/iivL614gvBT4ducfZONP/PhoneInput.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aHlJFk0Nlwgr300k1bXu/EgcPhTnJBRYlBdYXGY0h/Umy9X6t09.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/xZNR7u5zvJiYxJBpwowg/1cVFLLDMnqtYvfBdOA8o/GwMLStJ83.js\";import ButtonCopy2 from\"https://framerusercontent.com/modules/ceirLc7Z8XsdKOOpcZny/7m1sxJJZx3YdWScgWImu/BKSLbx2la.js\";const PhoneInputFonts=getFonts(PhoneInput);const ButtonCopy2Fonts=getFonts(ButtonCopy2);const AttributerFonts=getFonts(Attributer);const FormPlainTextInputOverrideFormAbrirEmpresa6nils2=withCodeBoundaryForOverrides(FormPlainTextInput,{nodeId:\"M0KOGtWq6\",override:OverrideFormAbrirEmpresa,scopeId:\"GwMLStJ83\"});const FormContainerWithAllParams16l31ph=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"axbpPvsLS\",override:withAllParams,scopeId:\"GwMLStJ83\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const serializationHash=\"framer-wYNb8\";const variantClassNames={CZYGKSLXT:\"framer-v-1oio4jt\"};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:.5,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};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 getProps=({click,height,id,width,...props})=>{return{...props,zTxy9eyGm:click??props.zTxy9eyGm};};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,zTxy9eyGm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"CZYGKSLXT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10ps6n7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zTxy9eyGm){const res=await zTxy9eyGm(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1oio4jt\",className,classNames),\"data-framer-appear-id\":\"1oio4jt\",\"data-framer-name\":\"Abrir Empresa\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CZYGKSLXT\",onTap:onTap10ps6n7,optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-4bb2ac34-b849-402a-838f-fbeab080d2b9, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},children:/*#__PURE__*/_jsx(FormContainerWithAllParams16l31ph,{action:\"https://api.framer.com/forms/v1/forms/53b6cb85-78f8-4383-bfc4-37e2cdd76cb5/submit\",className:\"framer-16l31ph\",\"data-framer-name\":\"Form Contratar Agora\",layoutDependency:layoutDependency,layoutId:\"axbpPvsLS\",nodeId:\"axbpPvsLS\",redirectUrl:{webPageId:\"zeViNgcrN\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-rhho1d\",layoutDependency:layoutDependency,layoutId:\"tpmevl0oh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Nome\"})}),className:\"framer-qgyblt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nVp9VltiE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-y10kyh\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"cCQOKcu89\",placeholder:getLocalizedValue(\"v1\",activeLocale)??\"Seu nome\",required:true,style:{\"--framer-input-background\":\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"32px\",\"--framer-input-border-radius-bottom-right\":\"32px\",\"--framer-input-border-radius-top-left\":\"32px\",\"--framer-input-border-radius-top-right\":\"32px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2c8d1013-58f4-4150-b39b-f0901b661a9c, rgb(115, 114, 115))\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1wno6gp\",layoutDependency:layoutDependency,layoutId:\"Wwykx2LbV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"WhatsApp\"})}),className:\"framer-1naq9pl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gmv0lGS4W\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f89zj1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Ua6j8RaNT-container\",nodeId:\"Ua6j8RaNT\",rendersWithMotion:true,scopeId:\"GwMLStJ83\",children:/*#__PURE__*/_jsx(PhoneInput,{background:\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",borderColor:\"rgba(255, 255, 255, 0.1)\",borderRadius:32,dividerColor:\"rgba(255, 255, 255, 0.1)\",dropdownBackground:\"rgb(255, 255, 255)\",font:{fontFamily:\"Recoleta Regular\",fontSize:16,fontWeight:400},height:\"100%\",hoverColor:\"rgba(255, 255, 255, 0.1)\",id:\"Ua6j8RaNT\",isRequired:false,label:\"\",labelColor:\"rgb(255, 255, 255)\",labelFont:{fontFamily:\"Recoleta Regular\",fontSize:8,fontWeight:400,lineHeight:1.5},labelSpacing:8,layoutId:\"Ua6j8RaNT\",placeholder:\"(12) 12345-1234\",placeholderColor:\"rgba(255, 255, 255, 0.5)\",requiredColor:\"rgb(255, 0, 0)\",style:{height:\"100%\",width:\"100%\"},textColor:\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1ltrohp\",layoutDependency:layoutDependency,layoutId:\"W_CscLDPk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Email\"})}),className:\"framer-8tkikj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fhd_ZVxpw\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-osza3d\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"D_5IBXC7_\",placeholder:getLocalizedValue(\"v4\",activeLocale)??\"jane@framer.com\",required:true,style:{\"--framer-input-background\":\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"32px\",\"--framer-input-border-radius-bottom-right\":\"32px\",\"--framer-input-border-radius-top-left\":\"32px\",\"--framer-input-border-radius-top-right\":\"32px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2c8d1013-58f4-4150-b39b-f0901b661a9c, rgb(115, 114, 115))\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10v7yz\",\"data-framer-name\":\"Radio Group\",layoutDependency:layoutDependency,layoutId:\"vLXFQHnJs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Como voc\\xea prefere ser contactado?\"})}),className:\"framer-1t1ebsp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"euPVi8EUP\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-hpnixa\",layoutDependency:layoutDependency,layoutId:\"BNF3cP3ih\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-7csfwo\",defaultChecked:true,defaultValue:\"WhatsApp\",inputName:\"Radio\",layoutDependency:layoutDependency,layoutId:\"Co1oURNf8\",style:{\"--framer-input-background\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-boolean-checked-background\":\"rgb(255, 255, 255)\",\"--framer-input-boolean-checked-border-color\":\"rgb(0, 153, 255)\",\"--framer-input-boolean-checked-border-style\":\"solid\",\"--framer-input-boolean-checked-border-width\":\"1px\",\"--framer-input-boolean-checked-box-shadow\":\"inset 0px 0px 0px 5px rgb(0, 153, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-mask-image\":\"none\"},type:\"radio\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"WhatsApp\"})}),className:\"framer-put1ty\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bYDHnQNmQ\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-jbq2y9\",layoutDependency:layoutDependency,layoutId:\"Xps68M4UG\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1ve7m8x\",defaultChecked:false,defaultValue:\"E-mail\",inputName:\"Radio\",layoutDependency:layoutDependency,layoutId:\"Ez65HwULo\",style:{\"--framer-input-background\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-boolean-checked-background\":\"rgb(255, 255, 255)\",\"--framer-input-boolean-checked-border-color\":\"rgb(0, 153, 255)\",\"--framer-input-boolean-checked-border-style\":\"solid\",\"--framer-input-boolean-checked-border-width\":\"1px\",\"--framer-input-boolean-checked-box-shadow\":\"inset 0px 0px 0px 5px rgb(0, 153, 255)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-mask-image\":\"none\"},type:\"radio\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1w1o6ev\",\"data-styles-preset\":\"Umy9X6t09\",children:\"Email\"})}),className:\"framer-1930x70\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EWtuwElUc\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+32+0+0+498.6,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gy5nsw-container\",layoutDependency:layoutDependency,layoutId:\"qgZop13cB-container\",nodeId:\"qgZop13cB\",rendersWithMotion:true,scopeId:\"GwMLStJ83\",children:/*#__PURE__*/_jsx(ButtonCopy2,{height:\"100%\",id:\"qgZop13cB\",KGshjvMiJ:getLocalizedValue(\"v6\",activeLocale)??\"Enviar\",layoutId:\"qgZop13cB\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"DOQA2zrKq\",success:\"d3FvKgADM\"},\"FCsS5Ce1W\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19p8pf6-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"DPFEIBVqy-container\",nodeId:\"DPFEIBVqy\",rendersWithMotion:true,scopeId:\"GwMLStJ83\",children:/*#__PURE__*/_jsx(Attributer,{height:\"100%\",id:\"DPFEIBVqy\",layoutId:\"DPFEIBVqy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(FormPlainTextInputOverrideFormAbrirEmpresa6nils2,{className:\"framer-6nils2\",inputName:\"FORM_ABRIR_EMPRESA\",layoutDependency:layoutDependency,layoutId:\"M0KOGtWq6\",placeholder:\"n\\xe3o remover este campo!!\",required:true,style:{\"--framer-input-background\":\"var(--token-759b177f-15b5-454a-b3e6-e090bed506ac, rgb(249, 249, 249))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8e37963d-d41d-4c13-bfb0-e5c112aabab3, rgb(242, 242, 242))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"32px\",\"--framer-input-border-radius-bottom-right\":\"32px\",\"--framer-input-border-radius-top-left\":\"32px\",\"--framer-input-border-radius-top-right\":\"32px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-a4dddf1f-5147-43c4-9eb9-933c49eba67f, rgb(13, 13, 13))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2c8d1013-58f4-4150-b39b-f0901b661a9c, rgb(115, 114, 115))\"},type:\"text\"})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wYNb8.framer-138ssgn, .framer-wYNb8 .framer-138ssgn { display: block; }\",\".framer-wYNb8.framer-1oio4jt { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 478px; }\",\".framer-wYNb8 .framer-16l31ph { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wYNb8 .framer-rhho1d, .framer-wYNb8 .framer-1wno6gp, .framer-wYNb8 .framer-1ltrohp, .framer-wYNb8 .framer-10v7yz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-wYNb8 .framer-qgyblt, .framer-wYNb8 .framer-1naq9pl, .framer-wYNb8 .framer-8tkikj, .framer-wYNb8 .framer-1t1ebsp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-wYNb8 .framer-y10kyh, .framer-wYNb8 .framer-osza3d, .framer-wYNb8 .framer-6nils2 { --framer-input-focused-border-color: var(--token-7ac93704-7223-49c5-910e-882d4de6cb97, #1371ec); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Raleway\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 17px; --framer-input-font-weight: 400; --framer-input-padding: 8px 24px 8px 24px; flex: none; height: 64px; position: relative; width: 100%; }',\".framer-wYNb8 .framer-1f89zj1-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-wYNb8 .framer-hpnixa, .framer-wYNb8 .framer-jbq2y9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 12px; position: relative; width: 100%; }\",\".framer-wYNb8 .framer-7csfwo, .framer-wYNb8 .framer-1ve7m8x { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-wYNb8 .framer-put1ty, .framer-wYNb8 .framer-1930x70 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-wYNb8 .framer-gy5nsw-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-wYNb8 .framer-19p8pf6-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wYNb8.framer-1oio4jt, .framer-wYNb8 .framer-16l31ph, .framer-wYNb8 .framer-rhho1d, .framer-wYNb8 .framer-1wno6gp, .framer-wYNb8 .framer-1ltrohp, .framer-wYNb8 .framer-10v7yz, .framer-wYNb8 .framer-hpnixa, .framer-wYNb8 .framer-jbq2y9 { gap: 0px; } .framer-wYNb8.framer-1oio4jt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-wYNb8.framer-1oio4jt > :first-child, .framer-wYNb8 .framer-16l31ph > :first-child, .framer-wYNb8 .framer-rhho1d > :first-child, .framer-wYNb8 .framer-1wno6gp > :first-child, .framer-wYNb8 .framer-1ltrohp > :first-child, .framer-wYNb8 .framer-10v7yz > :first-child { margin-top: 0px; } .framer-wYNb8.framer-1oio4jt > :last-child, .framer-wYNb8 .framer-16l31ph > :last-child, .framer-wYNb8 .framer-rhho1d > :last-child, .framer-wYNb8 .framer-1wno6gp > :last-child, .framer-wYNb8 .framer-1ltrohp > :last-child, .framer-wYNb8 .framer-10v7yz > :last-child { margin-bottom: 0px; } .framer-wYNb8 .framer-16l31ph > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wYNb8 .framer-rhho1d > *, .framer-wYNb8 .framer-1wno6gp > *, .framer-wYNb8 .framer-1ltrohp > *, .framer-wYNb8 .framer-10v7yz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wYNb8 .framer-hpnixa > *, .framer-wYNb8 .framer-jbq2y9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wYNb8 .framer-hpnixa > :first-child, .framer-wYNb8 .framer-jbq2y9 > :first-child { margin-left: 0px; } .framer-wYNb8 .framer-hpnixa > :last-child, .framer-wYNb8 .framer-jbq2y9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 731\n * @framerIntrinsicWidth 478\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zTxy9eyGm\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGwMLStJ83=withCSS(Component,css,\"framer-wYNb8\");export default FramerGwMLStJ83;FramerGwMLStJ83.displayName=\"Form Abrir Empresa\";FramerGwMLStJ83.defaultProps={height:731,width:478};addPropertyControls(FramerGwMLStJ83,{zTxy9eyGm:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerGwMLStJ83,[{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\"},{family:\"Raleway\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2YCK276JNUIIHMRWISQCDGWXNOKAXSCG/6OIJIEVI2ZSNHVU6RZ6WV47LHUN2T4MN/ZYCN4M673NULYB4BOICEICFLQAPDYBRK.woff2\",weight:\"400\"}]},...PhoneInputFonts,...ButtonCopy2Fonts,...AttributerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGwMLStJ83\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"478\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"zTxy9eyGm\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"731\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["withAllParams", "Component", "props", "ue", "window", "page_name", "params", "form", "value", "key", "input", "pageInput", "p", "withAllParams2", "OptimizationFriendly", "loading", "loaded", "isLoading", "setLoading", "ye", "ue", "Empty", "p", "l", "FormAbrirEmpresa", "OverrideFormAbrirEmpresa", "Component", "props", "FormWhatsApp", "p", "OverrideFormWhatsApp", "Component", "props", "OptimizationFriendly", "Empty", "Attributer", "props", "u", "p", "countries", "PhoneInput", "props", "font", "background", "borderRadius", "borderColor", "textColor", "placeholderColor", "dropdownBackground", "hoverColor", "dividerColor", "style", "placeholder", "label", "isRequired", "labelColor", "requiredColor", "labelFont", "labelSpacing", "isOpen", "setIsOpen", "ye", "selectedCountry", "setSelectedCountry", "phoneNumber", "setPhoneNumber", "formatPhoneNumber", "value", "numbers", "u", "p", "motion", "event", "country", "addPropertyControls", "ControlType", "sIENefUHm_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "sIENefUHm_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "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", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerFJuUBKNFJ", "withCSS", "FJuUBKNFJ_default", "addPropertyControls", "ControlType", "addFonts", "PhoneInputFonts", "getFonts", "PhoneInput", "ButtonWppFonts", "FJuUBKNFJ_default", "FormPlainTextInputOverrideFormWhatsAppntwfpo", "withCodeBoundaryForOverrides", "FormPlainTextInput2", "OverrideFormWhatsApp", "AttributerFonts", "Attributer", "FormContainerWithAllParams15cmacu", "FormContainer", "withAllParams", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "zTxy9eyGm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10ps6n7", "args", "onTapvk3xq3", "scopingClassNames", "cx", "LayoutGroup", "formState", "u", "l", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramersIENefUHm", "withCSS", "sIENefUHm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CjDUJYLbJ_exports", "__export", "__FramerMetadata__", "CjDUJYLbJ_default", "FormWhatsAppFonts", "getFonts", "sIENefUHm_default", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KgF2ZhGCc", "tmz4zkOEv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfqxcv1", "overlay", "loadMore", "args", "onMouseEnter1k3w8yf", "scopingClassNames", "cx", "ref1", "LayoutGroup", "l", "u", "SVG", "AnimatePresence", "Floating", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCjDUJYLbJ", "withCSS", "CjDUJYLbJ_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "countries", "PhoneInput", "props", "font", "background", "borderRadius", "borderColor", "textColor", "placeholderColor", "dropdownBackground", "hoverColor", "dividerColor", "style", "placeholder", "label", "isRequired", "labelColor", "requiredColor", "labelFont", "labelSpacing", "isOpen", "setIsOpen", "ye", "selectedCountry", "setSelectedCountry", "phoneNumber", "setPhoneNumber", "formatPhoneNumber", "value", "numbers", "u", "p", "motion", "event", "country", "addPropertyControls", "ControlType", "GwMLStJ83_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "__FramerMetadata__", "valuesByLocaleId", "GwMLStJ83_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "BKSLbx2la_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "BKSLbx2la_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "KGshjvMiJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "getLocalizedValue", "css", "FramerBKSLbx2la", "withCSS", "BKSLbx2la_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhoneInputFonts", "getFonts", "PhoneInput", "ButtonCopy2Fonts", "BKSLbx2la_default", "AttributerFonts", "Attributer", "FormPlainTextInputOverrideFormAbrirEmpresa6nils2", "withCodeBoundaryForOverrides", "FormPlainTextInput2", "OverrideFormAbrirEmpresa", "FormContainerWithAllParams16l31ph", "FormContainer", "withAllParams", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "formVariants", "form", "variants", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "zTxy9eyGm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10ps6n7", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "MotionDivWithFXWithOptimizedAppearEffect", "FormContainerWithAllParams16l31ph", "formState", "u", "l", "RichText2", "getLocalizedValue", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "PhoneInput", "FormBooleanInput", "BKSLbx2la_default", "Attributer", "FormPlainTextInputOverrideFormAbrirEmpresa6nils2", "css", "FramerGwMLStJ83", "withCSS", "GwMLStJ83_default", "addPropertyControls", "ControlType", "addFonts", "PhoneInputFonts", "ButtonCopy2Fonts", "AttributerFonts", "getFontsFromSharedStyle", "fonts"]
}
