{"version":3,"file":"rtY4joLSEKcbO4oXqHIsVZDnyOiygYlVRQ0oGEuYhik.857FCKlz.mjs","names":["x","y","Footer","Navigation","metadata","PropertyOverrides"],"sources":["https:/framerusercontent.com/modules/MEtgnpMXxzB8oDkVxg0q/gRMHBsNt83jxYkz7mDkY/PromoHamburguesaCheddarMedallonForm.js","https:/framerusercontent.com/modules/7HZoguk7ndGyJOk7wPv0/lfzsHYbdqwEAi0nxx92i/LMgsYx3W0.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useState}from\"react\";export default function PromoHamburguesaCheddarMedallonForm(){const brandName=\"La esquina\";const menuName=\"Hamburguesa con Cheddar + Extra Medall\\xf3n\";const menuPrice=4200;const formRef=useRef();const[nombre,setNombre]=useState(\"\");const[apellido,setApellido]=useState(\"\");const[archivo,setArchivo]=useState(null);const[copied,setCopied]=useState(false);// Extras sin medallón (ya incluido)\nconst extrasList=[{key:\"Lechuga\",label:\"Lechuga\",price:200},{key:\"Tomate\",label:\"Tomate\",price:200},{key:\"Jam\\xf3n\",label:\"Jam\\xf3n\",price:300},{key:\"QuesoTybo\",label:\"Queso Tybo\",price:400},{key:\"Panceta\",label:\"Panceta\",price:1e3},{key:\"Cebolla\",label:\"Cebolla\",price:200},{key:\"Huevo\",label:\"Huevo\",price:400}];const[extras,setExtras]=useState(extrasList.reduce((a,e)=>({...a,[e.key]:false}),{}));const[showExtras,setShowExtras]=useState(false);const handleExtrasChange=e=>{const{name,checked}=e.target;setExtras(prev=>({...prev,[name]:checked}));};// Bebidas\nconst beveragesList=[{key:\"CocaCola500\",label:\"Coca-cola 500 ml\",price:1600},/* ...resto igual al anterior... */{key:\"AguaVilla500\",label:\"Agua Villamanaos 500 ml\",price:600}];const[beverages,setBeverages]=useState(beveragesList.reduce((a,b)=>({...a,[b.key]:false}),{}));const[showBeverages,setShowBeverages]=useState(false);const handleBeverageChange=e=>{const{name,checked}=e.target;setBeverages(prev=>({...prev,[name]:checked}));};// Horarios 11:00–15:00 c/30′\nconst timeSlots=[];for(let h=11;h<=15;h++){timeSlots.push(`${String(h).padStart(2,\"0\")}:00`);if(h<15)timeSlots.push(`${String(h).padStart(2,\"0\")}:30`);}const[showTimes,setShowTimes]=useState(false);const[selectedTime,setSelectedTime]=useState(\"\");const handleTimeChange=e=>setSelectedTime(e.target.value);// CVU\nconst cvu=\"0000184305010013853820\";const handleCopyCVU=async()=>{try{await navigator.clipboard.writeText(cvu);}catch{alert(`CVU: ${cvu}`);}setCopied(true);setTimeout(()=>setCopied(false),2e3);};// Calcular totales\nconst extrasTotal=extrasList.filter(x=>extras[x.key]).reduce((s,x)=>s+x.price,0);const beveragesTotal=beveragesList.filter(b=>beverages[b.key]).reduce((s,b)=>s+b.price,0);const totalPagar=menuPrice+extrasTotal+beveragesTotal;const isFormValid=nombre&&apellido&&archivo&&selectedTime;// helper blob→dataURL\nconst blobToDataURL=blob=>new Promise(res=>{const fr=new FileReader;fr.onloadend=()=>res(fr.result);fr.readAsDataURL(blob);});// Generar PDF e inyectar hidden antes de enviar\nconst handleEnviar=async()=>{if(!isFormValid)return;const ingrSel=extrasList.filter(x=>extras[x.key]).map(x=>x.label).join(\", \")||\"ninguno\";const bevSel=beveragesList.filter(b=>beverages[b.key]).map(b=>b.label).join(\", \")||\"ninguna\";const{jsPDF}=window.jspdf;const pageW=80,margin=5,usableW=pageW-2*margin,pageH=200;const doc=new jsPDF({unit:\"mm\",format:[pageH,pageW]});doc.setFontSize(12);const addText=(txt,x,y)=>{const lines=doc.splitTextToSize(txt,usableW);doc.text(lines,x,y);return y+lines.length*7;};let y=margin;y=addText(`Pedido: ${menuName}`,margin,y);y=addText(`Cliente: ${nombre} ${apellido}`,margin,y+5);y=addText(`Extras: ${ingrSel}`,margin,y+5);y=addText(`Bebidas: ${bevSel}`,margin,y+5);y=addText(`Horario: ${selectedTime}`,margin,y+5);y=addText(`Total: $${totalPagar}`,margin,y+5);if(y>pageH-margin){doc.addPage([pageH+50,pageW]);y=margin;}const blob=doc.output(\"blob\");const pdfData=await blobToDataURL(blob);const form=formRef.current;form.querySelector(\"input[name='PedidoPDFData']\").value=pdfData;form.querySelector(\"input[name='IngredientesSeleccionados']\").value=ingrSel;form.querySelector(\"input[name='BebidasSeleccionadas']\").value=bevSel;form.querySelector(\"input[name='HorarioSolicitado']\").value=selectedTime;form.querySelector(\"input[name='TotalAPagar']\").value=`$${totalPagar}`;form.submit();};return /*#__PURE__*/_jsxs(\"form\",{ref:formRef,onSubmit:e=>e.preventDefault(),action:\"https://formsubmit.co/pedido@laesquinafood.com\",method:\"POST\",encType:\"multipart/form-data\",style:{display:\"flex\",flexDirection:\"column\",gap:16,maxWidth:400,padding:20,border:\"1px solid #ddd\",borderRadius:12,background:\"#fafafa\"},children:[/*#__PURE__*/_jsx(\"h3\",{style:{margin:0},children:menuName}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,color:\"#555\",margin:0},children:\"Personaliza tu hamburguesa con extras y bebidas.\"}),/*#__PURE__*/_jsx(\"input\",{name:\"Nombre\",placeholder:\"Nombre\",value:nombre,onChange:e=>setNombre(e.target.value),style:{width:\"100%\",padding:8,borderRadius:8,border:\"1px solid #ddd\"},required:true}),/*#__PURE__*/_jsx(\"input\",{name:\"Apellido\",placeholder:\"Apellido\",value:apellido,onChange:e=>setApellido(e.target.value),style:{width:\"100%\",padding:8,borderRadius:8,border:\"1px solid #ddd\"},required:true}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",onClick:()=>setShowExtras(v=>!v),style:{padding:8,borderRadius:8,border:\"1px solid #333\",background:\"#fff\",cursor:\"pointer\"},children:showExtras?\"Ocultar extras\":\"Agregar extras\"}),showExtras&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:8},children:extrasList.map(x=>/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",gap:8},children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",name:x.key,checked:extras[x.key],onChange:handleExtrasChange}),x.label,\" (+$\",x.price,\")\"]},x.key))}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",onClick:()=>setShowBeverages(v=>!v),style:{padding:8,borderRadius:8,border:\"1px solid #333\",background:\"#fff\",cursor:\"pointer\"},children:showBeverages?\"Ocultar bebidas\":\"Agregar bebidas\"}),showBeverages&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:8},children:beveragesList.map(b=>/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",gap:8},children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",name:b.key,checked:beverages[b.key],onChange:handleBeverageChange}),b.label,\" (+$\",b.price,\")\"]},b.key))}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",onClick:()=>setShowTimes(v=>!v),style:{padding:8,borderRadius:8,border:\"1px solid #333\",background:\"#fff\",cursor:\"pointer\"},children:showTimes?\"Ocultar horario\":\"Seleccionar horario\"}),showTimes&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:8},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,color:\"#555\",margin:0},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\\xbfPara qu\\xe9 hora debe estar tu pedido?\"})}),timeSlots.map(slot=>/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",gap:8},children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",name:\"Horario\",value:slot,checked:selectedTime===slot,onChange:handleTimeChange,required:true}),slot]},slot))]}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,color:\"#555\",margin:0},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Copia el CVU para abonar:\"})}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",onClick:handleCopyCVU,style:{padding:8,borderRadius:8,border:\"1px solid #333\",background:\"#fff\",cursor:\"pointer\"},children:copied?\"\\xa1Copiado!\":\"Copiar CVU\"}),/*#__PURE__*/_jsxs(\"label\",{style:{display:\"flex\",flexDirection:\"column\",gap:8},children:[\"Adjuntar comprobante de pago:\",/*#__PURE__*/_jsx(\"input\",{type:\"file\",accept:\"image/*,application/pdf\",onChange:e=>setArchivo(e.target.files[0]),required:true})]}),/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Total a pagar:\"}),\" $\",totalPagar]}),/*#__PURE__*/_jsx(\"button\",{type:\"button\",onClick:handleEnviar,disabled:!isFormValid,style:{padding:12,borderRadius:8,background:isFormValid?\"#ff0000\":\"#888\",color:\"#fff\",border:\"none\",cursor:isFormValid?\"pointer\":\"not-allowed\"},children:\"Enviar Pedido\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"PedidoPDFData\",value:\"\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"IngredientesSeleccionados\",value:\"\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"BebidasSeleccionadas\",value:\"\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"HorarioSolicitado\",value:\"\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"TotalAPagar\",value:\"\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"_subject\",value:`${menuName} - ${brandName}`}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"_template\",value:\"table\"}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"_autoresponse\",value:`\\xa1Pedido recibido! 🍔✨\n${menuName} - $${totalPagar}\n\n✅ Tu comprobante est\\xe1 en revisi\\xf3n.\n\\xa1Gracias por tu compra!`}),/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"_next\",value:\"https://www.laesquinafood.com/pagar\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PromoHamburguesaCheddarMedallonForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PromoHamburguesaCheddarMedallonForm.map","// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navigation from\"#framer/local/canvasComponent/FwL4R7ArI/FwL4R7ArI.js\";import Footer from\"#framer/local/canvasComponent/Lyw9jarZ3/Lyw9jarZ3.js\";import PromoHamburguesaCheddarMedallonForm from\"#framer/local/codeFile/EYYF8jA/PromoHamburguesaCheddarMedallonForm.js\";import metadataProvider from\"#framer/local/webPageMetadata/LMgsYx3W0/LMgsYx3W0.js\";const PromoHamburguesaCheddarMedallonFormFonts=getFonts(PromoHamburguesaCheddarMedallonForm);const FooterFonts=getFonts(Footer);const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={KAQj946Lv:\"(min-width: 1200px)\",YOOXzKXOV:\"(max-width: 809px)\",zt5wJnofq:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-emmDr\";const variantClassNames={KAQj946Lv:\"framer-v-2te5gi\",YOOXzKXOV:\"framer-v-c41zgj\",zt5wJnofq:\"framer-v-1ozuxfo\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:40,delay:.8,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"KAQj946Lv\",Phone:\"YOOXzKXOV\",Tablet:\"zt5wJnofq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KAQj946Lv\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"hTqBXFa19\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"SGAuvR7l2\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KAQj946Lv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b475daa1-123e-4ac4-9203-afa2fe736f56, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-2te5gi\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-1d4x1oo\",\"data-framer-name\":\"Header\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Haz tu pedido aqu\\xed 👇\"})}),className:\"framer-cdjwd7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ubo2sc-container\",isAuthoredByUser:true,nodeId:\"IxECssFlo\",scopeId:\"LMgsYx3W0\",children:/*#__PURE__*/_jsx(PromoHamburguesaCheddarMedallonForm,{height:\"100%\",id:\"IxECssFlo\",layoutId:\"IxECssFlo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YOOXzKXOV:{y:(componentViewport?.y||0)+120+568},zt5wJnofq:{y:(componentViewport?.y||0)+120+469}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:703,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+120+489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jbgryt-container\",nodeId:\"sQ9fcIXLj\",scopeId:\"LMgsYx3W0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YOOXzKXOV:{variant:\"xJItLzuMv\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sQ9fcIXLj\",layoutId:\"sQ9fcIXLj\",style:{width:\"100%\"},variant:\"wkINp6mpQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YOOXzKXOV:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YOOXzKXOV:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-kn60kz-container\",\"data-framer-appear-id\":\"kn60kz\",id:elementId1,initial:animation1,layoutScroll:true,nodeId:\"SGAuvR7l2\",optimized:true,ref:ref2,rendersWithMotion:true,scopeId:\"LMgsYx3W0\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YOOXzKXOV:{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,variant:\"nFqlH34ZZ\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{height:\"100%\",id:\"SGAuvR7l2\",layoutId:\"SGAuvR7l2\",style:{width:\"100%\"},variant:\"deGWi2YwJ\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-emmDr.framer-1kcl21f, .framer-emmDr .framer-1kcl21f { display: block; }\",\".framer-emmDr.framer-2te5gi { align-content: center; align-items: center; background-color: var(--token-b475daa1-123e-4ac4-9203-afa2fe736f56, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-emmDr .framer-1d4x1oo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 129px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-emmDr .framer-cdjwd7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-emmDr .framer-1ubo2sc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-emmDr .framer-1jbgryt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-emmDr .framer-kn60kz-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-emmDr.framer-2te5gi, .framer-emmDr .framer-1d4x1oo { gap: 0px; } .framer-emmDr.framer-2te5gi > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-emmDr.framer-2te5gi > :first-child, .framer-emmDr .framer-1d4x1oo > :first-child { margin-top: 0px; } .framer-emmDr.framer-2te5gi > :last-child, .framer-emmDr .framer-1d4x1oo > :last-child { margin-bottom: 0px; } .framer-emmDr .framer-1d4x1oo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-emmDr.framer-2te5gi { width: 810px; } .framer-emmDr .framer-1d4x1oo { height: 109px; }}\",\"@media (max-width: 809px) { .framer-emmDr.framer-2te5gi { width: 390px; } .framer-emmDr .framer-1d4x1oo { height: 208px; padding: 60px; } .framer-emmDr .framer-kn60kz-container { left: 0px; right: 0px; transform: unset; width: unset; z-index: 2; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1672\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zt5wJnofq\":{\"layout\":[\"fixed\",\"auto\"]},\"YOOXzKXOV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"hTqBXFa19\":{\"pattern\":\":hTqBXFa19\",\"name\":\"pedido\"},\"SGAuvR7l2\":{\"pattern\":\":SGAuvR7l2\",\"name\":\"pedidoinicio\"}}\n * @framerResponsiveScreen\n */const FramerLMgsYx3W0=withCSS(Component,css,\"framer-emmDr\");export default FramerLMgsYx3W0;FramerLMgsYx3W0.displayName=\"Menu05\";FramerLMgsYx3W0.defaultProps={height:1672,width:1200};addFonts(FramerLMgsYx3W0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...PromoHamburguesaCheddarMedallonFormFonts,...FooterFonts,...NavigationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLMgsYx3W0\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"hTqBXFa19\\\":{\\\"pattern\\\":\\\":hTqBXFa19\\\",\\\"name\\\":\\\"pedido\\\"},\\\"SGAuvR7l2\\\":{\\\"pattern\\\":\\\":SGAuvR7l2\\\",\\\"name\\\":\\\"pedidoinicio\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zt5wJnofq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YOOXzKXOV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1672\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}