{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/auHALWle9kMAfiw8ki0d/JQJoDmqGixTTcOZFlesW/PlanSelectorForm.js", "ssg:https://framerusercontent.com/modules/IcK10peQNCa0l3mSxfUZ/9KEAkszMRbzXCe278038/JjGALPtux.js", "ssg:https://framerusercontent.com/modules/0337MPVYAFSyNExNTaQb/ndNMSH9Bf8oJ3QW1AAjk/ufMmsp5ig.js", "ssg:https://framerusercontent.com/modules/li8X0yaypLYclCGEh3Rk/g6pWYU7fK7PWCNMPqXtF/ufMmsp5ig.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";export function SubscriptionPlanSelector(){const[plans,setPlans]=useState([]);const[currentPlanId,setCurrentPlanId]=useState(null);const[cancelPending,setCancelPending]=useState(false);const[selectedPlanId,setSelectedPlanId]=useState(null);const[activeTab,setActiveTab]=useState(\"monthly\");const[loading,setLoading]=useState(false);const[fetching,setFetching]=useState(true);const[message,setMessage]=useState(\"\");const[error,setError]=useState(\"\");const userChangedTab=useRef(false);const initialTabSet=useRef(false);const userChangedPlanRef=useRef(false);const tapFromCard=useRef(false);useEffect(()=>{fetchData();},[]);const fetchData=async()=>{setFetching(true);const token=getTokenFromCookie();if(!token){setFetching(false);return;}try{const userRes=await fetch(\"https://api.endeuda2.com/users\",{headers:{\"Access-Token\":token}});const userData=await userRes.json();let planId=null;if(userRes.ok&&userData.response){planId=userData.response.subscription?.plan_id??null;setCurrentPlanId(planId);setSelectedPlanId(planId);setCancelPending(!!userData.response.subscription?.cancellation_requested);}const plansRes=await fetch(\"https://api.endeuda2.com/subscriptions/plans\",{headers:{\"Access-Token\":token}});const plansData=await plansRes.json();if(plansRes.ok&&plansData.response){setPlans(plansData.response);if(planId!==null&&!userChangedTab.current&&!userChangedPlanRef.current&&!initialTabSet.current){const current=plansData.response.find(p=>p.subscription_plan_id===planId);const billing=current?.subscription_plan_billing_cycle;initialTabSet.current=true;setActiveTab(billing===\"yearly\"?\"annual\":\"monthly\");}}}catch{setError(\"Error al cargar los planes de suscripci\\xf3n.\");}finally{setFetching(false);}};const handleSelect=async()=>{if(!selectedPlanId||selectedPlanId===currentPlanId)return;setLoading(true);setError(\"\");setMessage(\"\");const token=getTokenFromCookie();if(!token){setError(\"Token no encontrado. Inicia sesi\\xf3n nuevamente.\");setLoading(false);return;}const selectedPlan=plans.find(p=>p.subscription_plan_id===selectedPlanId);if(!selectedPlan){setError(\"El plan seleccionado no existe.\");setLoading(false);return;}if(selectedPlan.subscription_plan_price===\"0.00\"){try{const res=await fetch(\"https://api.endeuda2.com/subscriptions/user/switch-free\",{method:\"POST\",headers:{\"Access-Token\":token,\"Content-Type\":\"application/json\"},body:JSON.stringify({plan_id:selectedPlanId})});const data=await res.json();if(res.ok){setMessage(\"El cambio al plan Gratis se aplicar\\xe1 al finalizar tu periodo actual.\");setCancelPending(true);}else{setError(data.error?.error_msg||\"No se pudo programar el cambio al plan Gratis.\");}}catch{setError(\"Ocurri\\xf3 un error al cambiar al plan Gratis.\");}finally{setLoading(false);}return;}try{const res=await fetch(\"https://api.endeuda2.com/subscriptions/checkout-session\",{method:\"POST\",headers:{\"Access-Token\":token,\"Content-Type\":\"application/json\"},body:JSON.stringify({plan_id:selectedPlanId,success_url:window.location.origin+\"/user/profile\",cancel_url:window.location.href})});const data=await res.json();if(res.ok&&data.response?.url){window.location.href=data.response.url;}else{setError(data.error?.error_msg||\"No se pudo crear la sesi\\xf3n de pago con Stripe.\");}}catch{setError(\"Ocurri\\xf3 un error al procesar el pago.\");}finally{setLoading(false);}};const monthlyPlans=plans.filter(p=>p.subscription_plan_billing_cycle===\"monthly\");const annualPlans=plans.filter(p=>p.subscription_plan_billing_cycle===\"yearly\");const freePlan=plans.find(p=>p.subscription_plan_price===\"0.00\");const buttonEnabled=selectedPlanId!==null&&selectedPlanId!==currentPlanId&&!loading;const renderPlans=plansToRender=>/*#__PURE__*/_jsx(\"div\",{style:styles.plans,children:plansToRender.map(renderPlanCard)});const renderPlanCard=plan=>{const selected=plan.subscription_plan_id===selectedPlanId;return /*#__PURE__*/_jsxs(\"div\",{style:{...styles.card,borderColor:selected?\"#6366f1\":\"transparent\"},/* 1\uFE0F\u20E3  Framer usa TAP \u2013 bloqu\u00E9alo aqu\u00ED */onTapStartCapture:e=>{e.stopPropagation()// framer-motion escucha en bubble\n;e.nativeEvent?.stopImmediatePropagation?.();},/* 2\uFE0F\u20E3  tu selecci\u00F3n normal */onClick:()=>{tapFromCard.current=true// \u2B05\uFE0F  anuncia el tap\n;setTimeout(()=>tapFromCard.current=false,0)// \u2776 limpia en el pr\u00F3ximo tick\n;userChangedPlanRef.current=true;setSelectedPlanId(plan.subscription_plan_id);},children:[/*#__PURE__*/_jsx(\"div\",{style:styles.planName,children:plan.subscription_plan_name}),/*#__PURE__*/_jsx(\"div\",{style:styles.planPrice,children:plan.subscription_plan_price===\"0.00\"?\"Gratis\":`$${plan.subscription_plan_price} / ${plan.subscription_plan_billing_cycle}`}),plan.subscription_plan_id===currentPlanId&&/*#__PURE__*/_jsx(\"div\",{style:styles.badge,children:cancelPending?\"Cancelaci\\xf3n programada\":\"Plan actual\"})]},plan.subscription_plan_id);};return /*#__PURE__*/_jsxs(\"div\",{style:styles.container,children:[/*#__PURE__*/_jsx(\"h2\",{style:styles.title,children:\"Elige tu plan de suscripci\\xf3n\"}),fetching?/*#__PURE__*/_jsx(\"div\",{style:{color:\"white\"},children:\"Cargando planes\u2026\"}):/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{style:styles.tabs,children:[/*#__PURE__*/_jsx(\"button\",{/* TAB MENSUAL */style:{...styles.tab,backgroundColor:activeTab===\"monthly\"?\"#6366f1\":\"#444\"},onClick:()=>{if(tapFromCard.current)return;// \u2B05\uFE0F  ignora el tap fantasma\nuserChangedTab.current=true;setActiveTab(\"monthly\");},children:\"Mensual\"}),/*#__PURE__*/_jsx(\"button\",{/* TAB ANUAL */style:{...styles.tab,backgroundColor:activeTab===\"annual\"?\"#6366f1\":\"#444\"},onClick:()=>{if(tapFromCard.current)return;// \u2B05\uFE0F  ignora el tap fantasma\nuserChangedTab.current=true;setActiveTab(\"annual\");},children:\"Anual\"})]}),activeTab===\"monthly\"?renderPlans(monthlyPlans):renderPlans(annualPlans),freePlan&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{style:styles.divider}),renderPlanCard(freePlan)]}),error&&/*#__PURE__*/_jsx(\"div\",{style:styles.error,children:error}),message&&/*#__PURE__*/_jsx(\"div\",{style:styles.success,children:message}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",disabled:!buttonEnabled,onClick:handleSelect,style:{...styles.button,opacity:buttonEnabled?1:.5,cursor:buttonEnabled?\"pointer\":\"not-allowed\"},children:loading?\"Procesando\u2026\":\"Actualizar plan\"})]})]});}function getTokenFromCookie(){if(typeof document===\"undefined\")return null;const match=document.cookie.split(\"; \").find(row=>row.startsWith(\"endeuda2_api_token=\"));return match?.split(\"=\")[1]||null;}const styles={container:{maxWidth:\"600px\",margin:\"auto\",textAlign:\"center\"},title:{fontSize:\"20px\",fontWeight:\"bold\",marginBottom:\"20px\",color:\"rgb(113, 113, 122)\"},tabs:{display:\"flex\",justifyContent:\"center\",gap:\"10px\",marginBottom:\"20px\"},tab:{padding:\"10px 20px\",borderRadius:\"8px\",border:\"none\",color:\"white\",fontWeight:\"bold\",cursor:\"pointer\"},plans:{display:\"flex\",flexDirection:\"column\",gap:\"15px\",marginBottom:\"20px\"},card:{border:\"2px solid transparent\",padding:\"20px\",borderRadius:\"12px\",backgroundColor:\"rgba(187, 187, 187, 0.15)\",cursor:\"pointer\",textAlign:\"left\"},planName:{fontSize:\"16px\",fontWeight:\"bold\",color:\"var(--extracted-r6o4lv, var(--token-d5e59fe9-8dd8-45cb-a916-ef55fe1f1389, rgb(51, 51, 51)))\",marginBottom:\"5px\"},planPrice:{fontSize:\"14px\",color:\"rgb(113, 113, 122)\"},badge:{marginTop:\"10px\",fontSize:\"12px\",backgroundColor:\"#6366f1\",color:\"white\",padding:\"4px 8px\",borderRadius:\"8px\",display:\"inline-block\"},button:{marginTop:\"20px\",padding:\"12px\",fontSize:\"16px\",borderRadius:\"12px\",backgroundColor:\"var(--token-4818ee0d-4433-4e6d-8a40-82c8e4429d0a, rgb(204, 204, 204))\",color:\"var(--token-d5e59fe9-8dd8-45cb-a916-ef55fe1f1389, rgb(51, 51, 51))\",border:\"none\"},error:{color:\"red\",marginTop:\"10px\"},success:{color:\"green\",marginTop:\"10px\"},divider:{borderTop:\"1px solid rgba(255,255,255,0.2)\",margin:\"20px 0\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"SubscriptionPlanSelector\":{\"type\":\"reactComponent\",\"name\":\"SubscriptionPlanSelector\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PlanSelectorForm.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{SubscriptionPlanSelector}from\"https://framerusercontent.com/modules/auHALWle9kMAfiw8ki0d/JQJoDmqGixTTcOZFlesW/PlanSelectorForm.js\";const SubscriptionPlanSelectorFonts=getFonts(SubscriptionPlanSelector);const serializationHash=\"framer-qo8NY\";const variantClassNames={S4grdzkNj:\"framer-v-1gbkivi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"S4grdzkNj\",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.label,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gbkivi\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"S4grdzkNj\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xejo3m\",layoutDependency:layoutDependency,layoutId:\"cKFAEKeBv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9gy4lo-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"trd5469Uo-container\",nodeId:\"trd5469Uo\",rendersWithMotion:true,scopeId:\"JjGALPtux\",children:/*#__PURE__*/_jsx(SubscriptionPlanSelector,{height:\"100%\",id:\"trd5469Uo\",layoutId:\"trd5469Uo\",style:{width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qo8NY.framer-1i1awxw, .framer-qo8NY .framer-1i1awxw { display: block; }\",\".framer-qo8NY.framer-1gbkivi { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 538px; }\",\".framer-qo8NY .framer-xejo3m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qo8NY .framer-9gy4lo-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48.5\n * @framerIntrinsicWidth 537.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJjGALPtux=withCSS(Component,css,\"framer-qo8NY\");export default FramerJjGALPtux;FramerJjGALPtux.displayName=\"PlanSelector\";FramerJjGALPtux.defaultProps={height:48.5,width:537.5};addFonts(FramerJjGALPtux,[{explicitInter:true,fonts:[]},...SubscriptionPlanSelectorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJjGALPtux\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"537.5\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (570e25b)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={zxcgp3onr:new LazyValue(()=>import(\"./ufMmsp5ig-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (570e25b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ArrowLeft from\"https://framerusercontent.com/modules/SulpgVrT1bx1PbM4v6vQ/NlB2xVoOI0SXwkP7BzsM/XcIlicl6R.js\";import E2_Footer from\"#framer/local/canvasComponent/f2MMzNLAB/f2MMzNLAB.js\";import PlanSelector from\"#framer/local/canvasComponent/JjGALPtux/JjGALPtux.js\";import Header from\"#framer/local/canvasComponent/R59UUiNVK/R59UUiNVK.js\";import*as sharedStyle from\"#framer/local/css/ALE6yx_O9/ALE6yx_O9.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/ufMmsp5ig/ufMmsp5ig.js\";import metadataProvider from\"#framer/local/webPageMetadata/ufMmsp5ig/ufMmsp5ig.js\";const ArrowLeftFonts=getFonts(ArrowLeft);const PlanSelectorFonts=getFonts(PlanSelector);const HeaderFonts=getFonts(Header);const E2_FooterFonts=getFonts(E2_Footer);const breakpoints={fQYCNaEAy:\"(min-width: 480px) and (max-width: 809px)\",MTANuPVp3:\"(min-width: 810px) and (max-width: 1199px)\",smzyyJgeY:\"(max-width: 479px)\",ZZuTTlLVo:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oUC6u\";const variantClassNames={fQYCNaEAy:\"framer-v-xpqltu\",MTANuPVp3:\"framer-v-sag6g3\",smzyyJgeY:\"framer-v-lrwgwq\",ZZuTTlLVo:\"framer-v-ls96rd\"};const transition1={bounce:0,delay:0,duration:0,type:\"spring\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone 2\":\"smzyyJgeY\",Desktop:\"ZZuTTlLVo\",Phone:\"fQYCNaEAy\",Tablet:\"MTANuPVp3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZZuTTlLVo\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZZuTTlLVo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ac8f2661-2ef2-4b80-a3d6-84af5bb64631, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ls96rd\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mlvtze\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b6G5_j3wR\"},motionChild:true,nodeId:\"SiCo5fCKO\",openInNewTab:false,scopeId:\"ufMmsp5ig\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11btquk framer-m3v7kt\",whileHover:animation,children:[/*#__PURE__*/_jsx(ArrowLeft,{animated:false,className:\"framer-1fjpeha\",ezTt3ayMo:true,layoutId:\"gw2PALB_r\",lschgej4H:true,qxTvv_EBh:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1njlwr9\",\"data-styles-preset\":\"ALE6yx_O9\",style:{\"--framer-text-alignment\":\"center\"},children:\"Regresar a tu Perfil\"})}),className:\"framer-408d6e\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1owzdwo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yw5ar5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQYCNaEAy:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+178+0+0+38+0},MTANuPVp3:{y:(componentViewport?.y||0)+0+178+0+0+38+0},smzyyJgeY:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+178+0+0+38+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"469px\",y:(componentViewport?.y||0)+0+228+0+0+38+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h8bp6i-container\",nodeId:\"F6bDTOw2x\",scopeId:\"ufMmsp5ig\",children:/*#__PURE__*/_jsx(PlanSelector,{height:\"100%\",id:\"F6bDTOw2x\",layoutId:\"F6bDTOw2x\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y61U9Ppel\"},implicitPathVariables:undefined},{href:{webPageId:\"y61U9Ppel\"},implicitPathVariables:undefined},{href:{webPageId:\"y61U9Ppel\"},implicitPathVariables:undefined},{href:{webPageId:\"y61U9Ppel\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hs41p3-container\",layoutScroll:true,nodeId:\"fiIjgKqA9\",scopeId:\"ufMmsp5ig\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQYCNaEAy:{dbTkB554q:resolvedLinks[2],variant:\"g7fLVO5ml\"},MTANuPVp3:{dbTkB554q:resolvedLinks[1],variant:\"g7fLVO5ml\"},smzyyJgeY:{dbTkB554q:resolvedLinks[3],variant:\"g7fLVO5ml\"}},children:/*#__PURE__*/_jsx(Header,{BeZsA273t:true,Cof0RMUzO:\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",dbTkB554q:resolvedLinks[0],EdKYuwXXP:\"var(--token-ac8f2661-2ef2-4b80-a3d6-84af5bb64631, rgb(255, 255, 255))\",eGOhp_OqC:getLocalizedValue(\"v1\",activeLocale)??\"Iniciar Sesi\\xf3n\",FFcnuU4Ek:\"var(--token-ac8f2661-2ef2-4b80-a3d6-84af5bb64631, rgb(255, 255, 255))\",fjP7WXjeu:true,height:\"100%\",id:\"fiIjgKqA9\",KDPaGeBIL:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",layoutId:\"fiIjgKqA9\",ORnOR2pUN:{borderBottomWidth:1,borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},sGHTFWZo5:true,style:{width:\"100%\"},t4qtipNl7:20,UTTJR9foI:true,v06jigF6i:\"flex-start\",variant:\"BGu0Mgwf_\",width:\"100%\",zzroHIlLa:\"var(--token-859258dd-93b0-4f6d-8deb-ee5f517e9648, rgb(182, 72, 20))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQYCNaEAy:{y:(componentViewport?.y||0)+0+352},MTANuPVp3:{y:(componentViewport?.y||0)+0+352},smzyyJgeY:{y:(componentViewport?.y||0)+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:211,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+402,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zf19ph-container\",nodeId:\"t38kZ_nsX\",scopeId:\"ufMmsp5ig\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQYCNaEAy:{variant:\"VUiIRNeIy\"},MTANuPVp3:{variant:\"dHZYQRiF8\"},smzyyJgeY:{variant:\"VUiIRNeIy\"}},children:/*#__PURE__*/_jsx(E2_Footer,{height:\"100%\",id:\"t38kZ_nsX\",layoutId:\"t38kZ_nsX\",style:{width:\"100%\"},variant:\"xhBA39EV8\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oUC6u.framer-m3v7kt, .framer-oUC6u .framer-m3v7kt { display: block; }\",\".framer-oUC6u.framer-ls96rd { align-content: center; align-items: center; background-color: var(--token-ac8f2661-2ef2-4b80-a3d6-84af5bb64631, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-oUC6u .framer-1mlvtze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oUC6u .framer-11btquk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oUC6u .framer-1fjpeha { --1m6trwb: 1; --21h8s6: var(--token-d5e59fe9-8dd8-45cb-a916-ef55fe1f1389, #333333); --pgex8v: 1.5; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-oUC6u .framer-408d6e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oUC6u .framer-1owzdwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-oUC6u .framer-yw5ar5 { align-content: center; align-items: center; background-color: var(--token-b9d45934-0710-42e7-aeaf-3fbfaa3cfc8a, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 38px 25px 38px 25px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oUC6u .framer-h8bp6i-container { flex: none; height: auto; position: relative; width: 469px; }\",\".framer-oUC6u .framer-hs41p3-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-oUC6u .framer-zf19ph-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-oUC6u.framer-ls96rd { width: 810px; } .framer-oUC6u .framer-1mlvtze { padding: 100px 0px 0px 0px; }}\",\"@media (min-width: 480px) and (max-width: 809px) { .framer-oUC6u.framer-ls96rd { width: 480px; } .framer-oUC6u .framer-1mlvtze { padding: 100px 0px 0px 0px; } .framer-oUC6u .framer-1owzdwo { padding: 0px 15px 0px 15px; width: 100%; } .framer-oUC6u .framer-h8bp6i-container { width: 100%; }}\",\"@media (max-width: 479px) { .framer-oUC6u.framer-ls96rd { width: 320px; } .framer-oUC6u .framer-1mlvtze { flex-direction: column; padding: 100px 0px 0px 0px; } .framer-oUC6u .framer-1owzdwo { padding: 0px 15px 0px 15px; width: 100%; } .framer-oUC6u .framer-h8bp6i-container { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 761.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MTANuPVp3\":{\"layout\":[\"fixed\",\"auto\"]},\"fQYCNaEAy\":{\"layout\":[\"fixed\",\"auto\"]},\"smzyyJgeY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerufMmsp5ig=withCSS(Component,css,\"framer-oUC6u\");export default FramerufMmsp5ig;FramerufMmsp5ig.displayName=\"User / Profile\";FramerufMmsp5ig.defaultProps={height:761.5,width:1200};addFonts(FramerufMmsp5ig,[{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\"}]},...ArrowLeftFonts,...PlanSelectorFonts,...HeaderFonts,...E2_FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerufMmsp5ig\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MTANuPVp3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fQYCNaEAy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"smzyyJgeY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"761.5\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SubscriptionPlanSelector", "plans", "setPlans", "ye", "currentPlanId", "setCurrentPlanId", "cancelPending", "setCancelPending", "selectedPlanId", "setSelectedPlanId", "activeTab", "setActiveTab", "loading", "setLoading", "fetching", "setFetching", "message", "setMessage", "error", "setError", "userChangedTab", "pe", "initialTabSet", "userChangedPlanRef", "tapFromCard", "ue", "fetchData", "token", "getTokenFromCookie", "userRes", "userData", "planId", "plansRes", "plansData", "billing", "p", "handleSelect", "selectedPlan", "res", "data", "window", "monthlyPlans", "annualPlans", "freePlan", "buttonEnabled", "renderPlans", "plansToRender", "styles", "renderPlanCard", "plan", "selected", "e", "l", "row", "SubscriptionPlanSelectorFonts", "getFonts", "SubscriptionPlanSelector", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "SubscriptionPlanSelector", "css", "FramerJjGALPtux", "withCSS", "JjGALPtux_default", "addFonts", "SubscriptionPlanSelectorFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ArrowLeftFonts", "getFonts", "XcIlicl6R_default", "PlanSelectorFonts", "JjGALPtux_default", "HeaderFonts", "R59UUiNVK_default", "E2_FooterFonts", "f2MMzNLAB_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "Link", "XcIlicl6R_default", "RichText", "getLocalizedValue", "x", "PropertyOverrides2", "ComponentViewportProvider", "Container", "JjGALPtux_default", "ResolveLinks", "resolvedLinks", "R59UUiNVK_default", "f2MMzNLAB_default", "css", "FramerufMmsp5ig", "withCSS", "ufMmsp5ig_default", "addFonts", "ArrowLeftFonts", "PlanSelectorFonts", "HeaderFonts", "E2_FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
