{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/pqXDVwHe6jESTjCxEFnQ/6CgxSdc4Ak4dAwixB3LY/DJtuahcWd-0.js", "ssg:https://framerusercontent.com/modules/pqXDVwHe6jESTjCxEFnQ/6CgxSdc4Ak4dAwixB3LY/DJtuahcWd.js", "ssg:https://framerusercontent.com/modules/T2uqYpcjdRt4Ujg9c7G5/0xZfIiABbWfDdqpu7DdJ/YAVtiZu0v-0.js", "ssg:https://framerusercontent.com/modules/T2uqYpcjdRt4Ujg9c7G5/0xZfIiABbWfDdqpu7DdJ/YAVtiZu0v.js", "ssg:https://framerusercontent.com/modules/5Sf8e5gHFoykPwqTsRn6/4EOBhaJ5nA8yi28Gfm1t/YAVtiZu0v.js", "ssg:https://framerusercontent.com/modules/dLLmEO63PVR0en0UYoBL/okagQUUndoDE6uLR8L9O/DJtuahcWd.js", "ssg:https://framerusercontent.com/modules/4S4QtLlfPTb2r5FPoT2J/Pw0PmCSVfPkQZ2yXGh00/d4RFpaMGF.js", "ssg:https://framerusercontent.com/modules/hxXV792p9J3T80Qv2Yq3/4KiUl3FJr01CaJJrYv8T/d4RFpaMGF.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Menu\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Close\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"frIwpqk3D\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Studio\"})})})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OCTaA5Q9X\"},nodeId:\"lDaQylKvo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Tattoos\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t7awcHdnT\"},nodeId:\"elzP1QK45\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Manicures\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d4RFpaMGF\"},nodeId:\"t764Y1Y7t\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Booking\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/blackmoon_professionalstudio\",nodeId:\"UrHmEo7SF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"Instagram\"})})})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/p/Blackmoon-100063674734030/?locale=pt_BR&paipv=0&eav=AfaOd6cw8xaIwztr9oKHxz9PIgSegTbC8CHT-7hxVgVeTYb58j706tl3nV1-2VFCgjI&_rdr\",nodeId:\"WhhN6stWi\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"Facebook\"})})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport*as localizedValues from\"./DJtuahcWd-0.js\";const valuesByLocaleId={bxKcNnWkF: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,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Studio\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Tattoos\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Manicure\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Booking\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport*as localizedValues from\"./YAVtiZu0v-0.js\";const valuesByLocaleId={bxKcNnWkF: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 (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/T2uqYpcjdRt4Ujg9c7G5/0xZfIiABbWfDdqpu7DdJ/YAVtiZu0v.js\";const cycleOrder=[\"UEKhg4jp7\",\"C05MK8_Dq\",\"n3QxRcgCf\",\"OLz9kGnXU\"];const serializationHash=\"framer-1VU2j\";const variantClassNames={C05MK8_Dq:\"framer-v-1y2dbzw\",n3QxRcgCf:\"framer-v-hkdva\",OLz9kGnXU:\"framer-v-1129iyh\",UEKhg4jp7:\"framer-v-1d0msbv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"UEKhg4jp7\",\"Variant 2\":\"C05MK8_Dq\",\"Variant 3\":\"n3QxRcgCf\",\"Variant 4\":\"OLz9kGnXU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UEKhg4jp7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UEKhg4jp7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave169mlyn=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"OLz9kGnXU\");});const onMouseEnter1otxjn8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"UEKhg4jp7\"),100);});const onMouseEnter1u6sn87=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"C05MK8_Dq\"),100);});const onMouseEnter1d1q98g=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"n3QxRcgCf\"),100);});const onMouseEnterslq1ye=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OLz9kGnXU\"),100);});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"C05MK8_Dq\",\"n3QxRcgCf\",\"OLz9kGnXU\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"C05MK8_Dq\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"n3QxRcgCf\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"OLz9kGnXU\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d0msbv\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UEKhg4jp7\",onMouseLeave:onMouseLeave169mlyn,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({C05MK8_Dq:{\"data-framer-name\":\"Variant 2\"},n3QxRcgCf:{\"data-framer-name\":\"Variant 3\"},OLz9kGnXU:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"q4u5C6_ZD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e9459 framer-k0mxq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q4u5C6_ZD\",onMouseEnter:onMouseEnter1otxjn8,children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zd5ac\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"O5g5u2nBP\",style:{backgroundColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Est\\xfadio\"})}),className:\"framer-1pqaxe0\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"Yc9XhSL9B\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OCTaA5Q9X\"},nodeId:\"fMXFLRP6B\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1b480ln framer-k0mxq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fMXFLRP6B\",onMouseEnter:onMouseEnter1u6sn87,...addPropertyOverrides({C05MK8_Dq:{onMouseEnter:undefined}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b5dodz\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"I0INCtu4f\",style:{backgroundColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Tatuagens\"})}),className:\"framer-thh4dr\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"gKDjQbKiZ\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t7awcHdnT\"},nodeId:\"AK2VpcffF\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e04zjl framer-k0mxq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AK2VpcffF\",onMouseEnter:onMouseEnter1d1q98g,children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oyw0rz\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"sf_qvlkIS\",style:{backgroundColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Manicures\"})}),className:\"framer-1903nct\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"xlNvuhSVm\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d4RFpaMGF\"},nodeId:\"D71gt0Agz\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-wf2t0k framer-k0mxq5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"D71gt0Agz\",onMouseEnter:onMouseEnterslq1ye,children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hvjbm3\",\"data-framer-name\":\"Ellipse 1\",layoutDependency:layoutDependency,layoutId:\"cQ3fT6lA1\",style:{backgroundColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:\"Marca\\xe7\\xe3o\"})}),className:\"framer-1lpfity\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"dVC2duEpT\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1VU2j.framer-k0mxq5, .framer-1VU2j .framer-k0mxq5 { display: block; }\",\".framer-1VU2j.framer-1d0msbv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1VU2j .framer-1e9459 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1VU2j .framer-1zd5ac, .framer-1VU2j .framer-1b5dodz, .framer-1VU2j .framer-oyw0rz, .framer-1VU2j .framer-1hvjbm3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 7px; }\",\".framer-1VU2j .framer-1pqaxe0, .framer-1VU2j .framer-thh4dr, .framer-1VU2j .framer-1903nct, .framer-1VU2j .framer-1lpfity { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-1VU2j .framer-1b480ln { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1VU2j .framer-1e04zjl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 15px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1VU2j .framer-wf2t0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1VU2j.framer-1d0msbv, .framer-1VU2j .framer-1e9459, .framer-1VU2j .framer-1b480ln, .framer-1VU2j .framer-1e04zjl, .framer-1VU2j .framer-wf2t0k { gap: 0px; } .framer-1VU2j.framer-1d0msbv > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-1VU2j.framer-1d0msbv > :first-child, .framer-1VU2j .framer-1e9459 > :first-child, .framer-1VU2j .framer-1b480ln > :first-child, .framer-1VU2j .framer-1e04zjl > :first-child, .framer-1VU2j .framer-wf2t0k > :first-child { margin-left: 0px; } .framer-1VU2j.framer-1d0msbv > :last-child, .framer-1VU2j .framer-1e9459 > :last-child, .framer-1VU2j .framer-1b480ln > :last-child, .framer-1VU2j .framer-1e04zjl > :last-child, .framer-1VU2j .framer-wf2t0k > :last-child { margin-right: 0px; } .framer-1VU2j .framer-1e9459 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-1VU2j .framer-1b480ln > *, .framer-1VU2j .framer-1e04zjl > *, .framer-1VU2j .framer-wf2t0k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-1VU2j.framer-v-1y2dbzw .framer-1e9459, .framer-1VU2j.framer-v-hkdva .framer-1e9459, .framer-1VU2j.framer-v-1129iyh .framer-1e9459 { order: 0; }\",\".framer-1VU2j.framer-v-1y2dbzw .framer-1b480ln, .framer-1VU2j.framer-v-hkdva .framer-1b480ln, .framer-1VU2j.framer-v-1129iyh .framer-1b480ln { gap: 7px; justify-content: flex-start; order: 1; }\",\".framer-1VU2j.framer-v-1y2dbzw .framer-1e04zjl { height: min-content; order: 2; }\",\".framer-1VU2j.framer-v-1y2dbzw .framer-wf2t0k, .framer-1VU2j.framer-v-hkdva .framer-wf2t0k { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1VU2j.framer-v-1y2dbzw .framer-1b480ln { gap: 0px; } .framer-1VU2j.framer-v-1y2dbzw .framer-1b480ln > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-1VU2j.framer-v-1y2dbzw .framer-1b480ln > :first-child { margin-left: 0px; } .framer-1VU2j.framer-v-1y2dbzw .framer-1b480ln > :last-child { margin-right: 0px; } }\",\".framer-1VU2j.framer-v-hkdva .framer-1e04zjl, .framer-1VU2j.framer-v-1129iyh .framer-1e04zjl { gap: 7px; height: min-content; order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1VU2j.framer-v-hkdva .framer-1b480ln, .framer-1VU2j.framer-v-hkdva .framer-1e04zjl { gap: 0px; } .framer-1VU2j.framer-v-hkdva .framer-1b480ln > *, .framer-1VU2j.framer-v-hkdva .framer-1e04zjl > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-1VU2j.framer-v-hkdva .framer-1b480ln > :first-child, .framer-1VU2j.framer-v-hkdva .framer-1e04zjl > :first-child { margin-left: 0px; } .framer-1VU2j.framer-v-hkdva .framer-1b480ln > :last-child, .framer-1VU2j.framer-v-hkdva .framer-1e04zjl > :last-child { margin-right: 0px; } }\",\".framer-1VU2j.framer-v-1129iyh .framer-wf2t0k { gap: 7px; order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1VU2j.framer-v-1129iyh .framer-1b480ln, .framer-1VU2j.framer-v-1129iyh .framer-1e04zjl, .framer-1VU2j.framer-v-1129iyh .framer-wf2t0k { gap: 0px; } .framer-1VU2j.framer-v-1129iyh .framer-1b480ln > *, .framer-1VU2j.framer-v-1129iyh .framer-1e04zjl > *, .framer-1VU2j.framer-v-1129iyh .framer-wf2t0k > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-1VU2j.framer-v-1129iyh .framer-1b480ln > :first-child, .framer-1VU2j.framer-v-1129iyh .framer-1e04zjl > :first-child, .framer-1VU2j.framer-v-1129iyh .framer-wf2t0k > :first-child { margin-left: 0px; } .framer-1VU2j.framer-v-1129iyh .framer-1b480ln > :last-child, .framer-1VU2j.framer-v-1129iyh .framer-1e04zjl > :last-child, .framer-1VU2j.framer-v-1129iyh .framer-wf2t0k > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15\n * @framerIntrinsicWidth 344\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"C05MK8_Dq\":{\"layout\":[\"auto\",\"auto\"]},\"n3QxRcgCf\":{\"layout\":[\"auto\",\"auto\"]},\"OLz9kGnXU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYAVtiZu0v=withCSS(Component,css,\"framer-1VU2j\");export default FramerYAVtiZu0v;FramerYAVtiZu0v.displayName=\"Links - marca\\xe7ao\";FramerYAVtiZu0v.defaultProps={height:15,width:344};addPropertyControls(FramerYAVtiZu0v,{variant:{options:[\"UEKhg4jp7\",\"C05MK8_Dq\",\"n3QxRcgCf\",\"OLz9kGnXU\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYAVtiZu0v,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYAVtiZu0v\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"15\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"344\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"C05MK8_Dq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"n3QxRcgCf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OLz9kGnXU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/6bbItuSTyf8O1xhvK12k/Dz3T9jQXq4Sgt0DOiaVv/b1VlmTjSs.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hMlicp5BMv5iDuiCWV7F/JMfBZtymtcE9d7Qwiqlm/C62hPoJyU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8j7mqTaSElpxxdiZQBNu/StiediP4wLAY2OFPScUd/L79RMoFau.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/pqXDVwHe6jESTjCxEFnQ/6CgxSdc4Ak4dAwixB3LY/DJtuahcWd.js\";import LinksMarcaAo from\"https://framerusercontent.com/modules/5Sf8e5gHFoykPwqTsRn6/4EOBhaJ5nA8yi28Gfm1t/YAVtiZu0v.js\";const LinksMarcaAoFonts=getFonts(LinksMarcaAo);const LocaleSelectorFonts=getFonts(LocaleSelector);const MotionNavWithFX=withFX(motion.nav);const cycleOrder=[\"T1YhDrmyF\",\"CVnUCbtHz\",\"bVlfi1fmF\",\"CneaX5HxQ\"];const serializationHash=\"framer-anvhW\";const variantClassNames={bVlfi1fmF:\"framer-v-1k2tm67\",CneaX5HxQ:\"framer-v-7dh87x\",CVnUCbtHz:\"framer-v-1pgqpgj\",T1YhDrmyF:\"framer-v-18p9ta7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"phone nav open\":\"bVlfi1fmF\",Desktop:\"T1YhDrmyF\",Phone:\"CVnUCbtHz\",tablet:\"CneaX5HxQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"T1YhDrmyF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T1YhDrmyF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1utjp12=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"bVlfi1fmF\");});const onTapwbcn7w=activeVariantCallback(async(...args)=>{setVariant(\"CVnUCbtHz\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"CVnUCbtHz\",\"bVlfi1fmF\",\"CneaX5HxQ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"CVnUCbtHz\",\"bVlfi1fmF\",\"CneaX5HxQ\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"bVlfi1fmF\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionNavWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18p9ta7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"T1YhDrmyF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'linear-gradient(180deg, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)) /* {\"name\":\"black\"} */ 0%, rgb(7, 7, 7) 100%)',...style},...addPropertyOverrides({bVlfi1fmF:{__framer__styleAppearEffectEnabled:undefined,\"data-framer-name\":\"phone nav open\"},CneaX5HxQ:{\"data-framer-name\":\"tablet\",\"data-highlight\":true,onTap:onTap1utjp12},CVnUCbtHz:{\"data-framer-name\":\"Phone\",\"data-highlight\":true,onTap:onTap1utjp12}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||60)-0-15)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bhw2g4-container\",layoutDependency:layoutDependency,layoutId:\"A9TJIsWfa-container\",children:/*#__PURE__*/_jsx(LinksMarcaAo,{height:\"100%\",id:\"A9TJIsWfa\",layoutId:\"A9TJIsWfa\",variant:\"OLz9kGnXU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})}),className:\"framer-1t6akuv\",fonts:[\"FS;Khand-regular\"],layoutDependency:layoutDependency,layoutId:\"Ave6IHgp2\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVlfi1fmF:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})}),transformTemplate:undefined},CneaX5HxQ:{children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})}),transformTemplate:transformTemplate2},CVnUCbtHz:{children:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(245, 245, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"Ave6IHgp2\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"BLACKMOON\"})})})}),transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12roibj\",layoutDependency:layoutDependency,layoutId:\"jcGpPCV9E\",children:isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Menu\"})}),className:\"framer-18l6vfy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DGyI40ihr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVlfi1fmF:{\"data-highlight\":true,children:(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Close\"})}),onTap:onTapwbcn7w,transformTemplate:undefined},CneaX5HxQ:{transformTemplate:undefined},CVnUCbtHz:{transformTemplate:undefined}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b9gcq3\",layoutDependency:layoutDependency,layoutId:\"ZWF_BQ3Dn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3bb6q2\",layoutDependency:layoutDependency,layoutId:\"p8etgH3yp\",style:{backgroundColor:\"rgba(110, 110, 110, 0.5)\"}}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e405oa\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"AeTZkHkLr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-77r4sp\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"t8Bm0ri_h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"frIwpqk3D\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Est\\xfadio\"})})})}),className:\"framer-1004ii5\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"frIwpqk3D\",style:{\"--extracted-r6o4lv\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cjegj7\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"DvDV5s8GQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OCTaA5Q9X\"},nodeId:\"lDaQylKvo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Tatuagens\"})})})}),className:\"framer-z13e6m\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"lDaQylKvo\",style:{\"--extracted-r6o4lv\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d15d75\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"DRlKwq6Pt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t7awcHdnT\"},nodeId:\"elzP1QK45\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Manicures\"})})})}),className:\"framer-1mypw8m\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"elzP1QK45\",style:{\"--extracted-r6o4lv\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-omets1\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"trikysB63\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d4RFpaMGF\"},nodeId:\"t764Y1Y7t\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4c0oeh\",\"data-styles-preset\":\"b1VlmTjSs\",children:\"Marca\\xe7\\xe3o\"})})})}),className:\"framer-1d4q4hm\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"t764Y1Y7t\",style:{\"--extracted-r6o4lv\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jl4h3q\",layoutDependency:layoutDependency,layoutId:\"nkBqDmpv9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1knd32o\",\"data-framer-name\":\"Frame 101\",layoutDependency:layoutDependency,layoutId:\"r2iCEUsxh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1du7ezo\",\"data-framer-name\":\"Frame 85\",layoutDependency:layoutDependency,layoutId:\"yIOUTGSTe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/blackmoon_professionalstudio\",nodeId:\"UrHmEo7SF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"Instagram\"})})})}),className:\"framer-12g259z\",\"data-framer-name\":\"Instagram\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"UrHmEo7SF\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17ebxrg\",\"data-framer-name\":\"Frame 81\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"Faygxwxbu\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.15685 3.34315V5.34426H14.0552L5.44975 13.9497L6.86396 15.364L15.4695 6.75847L15.4694 14.6569L17.4706 14.6569V3.34315H6.15685Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1abmc93\",\"data-framer-name\":\"Frame 84\",layoutDependency:layoutDependency,layoutId:\"YHDuPiwX0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/p/Blackmoon-100063674734030/?locale=pt_BR&paipv=0&eav=AfaOd6cw8xaIwztr9oKHxz9PIgSegTbC8CHT-7hxVgVeTYb58j706tl3nV1-2VFCgjI&_rdr\",nodeId:\"WhhN6stWi\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-exwxnx\",\"data-styles-preset\":\"L79RMoFau\",children:\"Facebook\"})})})}),className:\"framer-kxht46\",\"data-framer-name\":\"Facebook\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"WhhN6stWi\",style:{\"--extracted-r6o4lv\":\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6h192k\",\"data-framer-name\":\"Frame 81\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"UTLVafGSx\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.15685 3.34315V5.34426H14.0552L5.44975 13.9497L6.86396 15.364L15.4695 6.75847L15.4694 14.6569L17.4706 14.6569V3.34315H6.15685Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7339wq\",layoutDependency:layoutDependency,layoutId:\"kWr9piXNm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e4tfc-container\",layoutDependency:layoutDependency,layoutId:\"am3ukogxd-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",size:12,type:\"default\"},font:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",size:18,type:\"default\"},id:\"am3ukogxd\",layoutId:\"am3ukogxd\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:7,hover:{textColor:\"var(--token-a063de3d-9d9a-4deb-ad25-a4f689f2d33f, rgb(176, 176, 176))\"},title:true},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgw0e1-container\",layoutDependency:layoutDependency,layoutId:\"TQqYv_KK3-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",size:12,type:\"default\"},font:{fontFamily:'\"Roboto\", \"Roboto Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",size:18,type:\"default\"},id:\"TQqYv_KK3\",layoutId:\"TQqYv_KK3\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:7,hover:{textColor:\"var(--token-a063de3d-9d9a-4deb-ad25-a4f689f2d33f, rgb(176, 176, 176))\"},title:true},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-anvhW.framer-14m79ve, .framer-anvhW .framer-14m79ve { display: block; }\",\".framer-anvhW.framer-18p9ta7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 60px; justify-content: space-between; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1200px; }\",\".framer-anvhW .framer-1bhw2g4-container, .framer-anvhW .framer-e4tfc-container, .framer-anvhW .framer-fgw0e1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-anvhW .framer-1t6akuv { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-anvhW .framer-12roibj { flex: none; height: 21px; overflow: visible; position: relative; width: 36px; }\",\".framer-anvhW .framer-18l6vfy { flex: none; height: auto; left: 50%; position: absolute; top: 48%; white-space: pre; width: auto; }\",\".framer-anvhW .framer-1b9gcq3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 45px 0px 30px 0px; position: relative; width: 1px; }\",\".framer-anvhW .framer-3bb6q2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; padding: 0px; position: relative; width: 100%; }\",\".framer-anvhW .framer-1e405oa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-anvhW .framer-77r4sp, .framer-anvhW .framer-1cjegj7, .framer-anvhW .framer-d15d75, .framer-anvhW .framer-omets1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-anvhW .framer-1004ii5, .framer-anvhW .framer-z13e6m, .framer-anvhW .framer-1mypw8m, .framer-anvhW .framer-1d4q4hm { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-anvhW .framer-jl4h3q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-anvhW .framer-1knd32o { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-anvhW .framer-1du7ezo, .framer-anvhW .framer-1abmc93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-anvhW .framer-12g259z, .framer-anvhW .framer-kxht46 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-anvhW .framer-17ebxrg, .framer-anvhW .framer-6h192k { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-anvhW .framer-7339wq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-anvhW .framer-1b9gcq3, .framer-anvhW .framer-1e405oa, .framer-anvhW .framer-77r4sp, .framer-anvhW .framer-1cjegj7, .framer-anvhW .framer-d15d75, .framer-anvhW .framer-omets1, .framer-anvhW .framer-jl4h3q, .framer-anvhW .framer-1knd32o, .framer-anvhW .framer-1du7ezo, .framer-anvhW .framer-1abmc93, .framer-anvhW .framer-7339wq { gap: 0px; } .framer-anvhW .framer-1b9gcq3 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-anvhW .framer-1b9gcq3 > :first-child, .framer-anvhW .framer-1e405oa > :first-child, .framer-anvhW .framer-jl4h3q > :first-child, .framer-anvhW .framer-1knd32o > :first-child { margin-top: 0px; } .framer-anvhW .framer-1b9gcq3 > :last-child, .framer-anvhW .framer-1e405oa > :last-child, .framer-anvhW .framer-jl4h3q > :last-child, .framer-anvhW .framer-1knd32o > :last-child { margin-bottom: 0px; } .framer-anvhW .framer-1e405oa > *, .framer-anvhW .framer-jl4h3q > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-anvhW .framer-77r4sp > *, .framer-anvhW .framer-1cjegj7 > *, .framer-anvhW .framer-d15d75 > *, .framer-anvhW .framer-omets1 > *, .framer-anvhW .framer-7339wq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-anvhW .framer-77r4sp > :first-child, .framer-anvhW .framer-1cjegj7 > :first-child, .framer-anvhW .framer-d15d75 > :first-child, .framer-anvhW .framer-omets1 > :first-child, .framer-anvhW .framer-1du7ezo > :first-child, .framer-anvhW .framer-1abmc93 > :first-child, .framer-anvhW .framer-7339wq > :first-child { margin-left: 0px; } .framer-anvhW .framer-77r4sp > :last-child, .framer-anvhW .framer-1cjegj7 > :last-child, .framer-anvhW .framer-d15d75 > :last-child, .framer-anvhW .framer-omets1 > :last-child, .framer-anvhW .framer-1du7ezo > :last-child, .framer-anvhW .framer-1abmc93 > :last-child, .framer-anvhW .framer-7339wq > :last-child { margin-right: 0px; } .framer-anvhW .framer-1knd32o > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-anvhW .framer-1du7ezo > *, .framer-anvhW .framer-1abmc93 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } }\",\".framer-anvhW.framer-v-1pgqpgj.framer-18p9ta7 { cursor: pointer; gap: 0px; justify-content: flex-end; padding: 0px 15px 0px 15px; width: 390px; }\",\".framer-anvhW.framer-v-1pgqpgj .framer-1t6akuv { left: 15px; }\",\".framer-anvhW.framer-v-1pgqpgj .framer-12roibj, .framer-anvhW.framer-v-7dh87x .framer-12roibj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-anvhW.framer-v-1pgqpgj .framer-18l6vfy, .framer-anvhW.framer-v-7dh87x .framer-18l6vfy { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-anvhW.framer-v-1pgqpgj.framer-18p9ta7, .framer-anvhW.framer-v-1pgqpgj .framer-12roibj { gap: 0px; } .framer-anvhW.framer-v-1pgqpgj.framer-18p9ta7 > *, .framer-anvhW.framer-v-1pgqpgj .framer-12roibj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-anvhW.framer-v-1pgqpgj.framer-18p9ta7 > :first-child, .framer-anvhW.framer-v-1pgqpgj .framer-12roibj > :first-child { margin-left: 0px; } .framer-anvhW.framer-v-1pgqpgj.framer-18p9ta7 > :last-child, .framer-anvhW.framer-v-1pgqpgj .framer-12roibj > :last-child { margin-right: 0px; } }\",\".framer-anvhW.framer-v-1k2tm67.framer-18p9ta7 { align-content: flex-end; align-items: flex-end; flex-direction: column; height: min-content; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 20px 15px 0px 15px; width: 390px; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-1t6akuv { left: 15px; order: 1; top: 15px; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-12roibj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 2; padding: 0px; width: min-content; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-18l6vfy { cursor: pointer; left: unset; position: relative; top: unset; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-1b9gcq3 { flex: none; order: 3; width: 100%; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-3bb6q2 { order: 1; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-1e405oa { order: 0; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-jl4h3q { order: 2; }\",\".framer-anvhW.framer-v-1k2tm67 .framer-7339wq { flex: none; order: 4; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-anvhW.framer-v-1k2tm67.framer-18p9ta7, .framer-anvhW.framer-v-1k2tm67 .framer-12roibj { gap: 0px; } .framer-anvhW.framer-v-1k2tm67.framer-18p9ta7 > *, .framer-anvhW.framer-v-1k2tm67.framer-18p9ta7 > :first-child, .framer-anvhW.framer-v-1k2tm67.framer-18p9ta7 > :last-child { margin: 0px; } .framer-anvhW.framer-v-1k2tm67 .framer-12roibj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-anvhW.framer-v-1k2tm67 .framer-12roibj > :first-child { margin-top: 0px; } .framer-anvhW.framer-v-1k2tm67 .framer-12roibj > :last-child { margin-bottom: 0px; } }\",\".framer-anvhW.framer-v-7dh87x.framer-18p9ta7 { cursor: pointer; gap: 0px; justify-content: flex-end; width: 390px; }\",\".framer-anvhW.framer-v-7dh87x .framer-1t6akuv { left: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-anvhW.framer-v-7dh87x.framer-18p9ta7, .framer-anvhW.framer-v-7dh87x .framer-12roibj { gap: 0px; } .framer-anvhW.framer-v-7dh87x.framer-18p9ta7 > *, .framer-anvhW.framer-v-7dh87x .framer-12roibj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-anvhW.framer-v-7dh87x.framer-18p9ta7 > :first-child, .framer-anvhW.framer-v-7dh87x .framer-12roibj > :first-child { margin-left: 0px; } .framer-anvhW.framer-v-7dh87x.framer-18p9ta7 > :last-child, .framer-anvhW.framer-v-7dh87x .framer-12roibj > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CVnUCbtHz\":{\"layout\":[\"fixed\",\"fixed\"]},\"bVlfi1fmF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"CneaX5HxQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDJtuahcWd=withCSS(Component,css,\"framer-anvhW\");export default FramerDJtuahcWd;FramerDJtuahcWd.displayName=\"Navigation - marca\\xe7ao\";FramerDJtuahcWd.defaultProps={height:60,width:1200};addPropertyControls(FramerDJtuahcWd,{variant:{options:[\"T1YhDrmyF\",\"CVnUCbtHz\",\"bVlfi1fmF\",\"CneaX5HxQ\"],optionTitles:[\"Desktop\",\"Phone\",\"phone nav open\",\"tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDJtuahcWd,[{explicitInter:true,fonts:[{family:\"Khand\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/W3Y5H2YKL6MOQTGCUAMPKATOJABZMV4O/MQBSYWRMA7OJASNSWBYTFP5TA4RBNCIM/YTT75TJYXORFPIPZ6WYD3MQBRBSX3RDB.woff2\",weight:\"400\"},{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:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"}]},...LinksMarcaAoFonts,...LocaleSelectorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDJtuahcWd\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CVnUCbtHz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bVlfi1fmF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"CneaX5HxQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={bxKcNnWkF:new LazyValue(()=>import(\"./d4RFpaMGF-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\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import NavigationMarcaAo from\"#framer/local/canvasComponent/DJtuahcWd/DJtuahcWd.js\";import*as sharedStyle from\"#framer/local/css/C62hPoJyU/C62hPoJyU.js\";import*as sharedStyle2 from\"#framer/local/css/f_KFw_yFw/f_KFw_yFw.js\";import*as sharedStyle5 from\"#framer/local/css/mzUSknwjq/mzUSknwjq.js\";import*as sharedStyle3 from\"#framer/local/css/Q0m5d9z50/Q0m5d9z50.js\";import*as sharedStyle4 from\"#framer/local/css/rKnxzJ8bg/rKnxzJ8bg.js\";import*as sharedStyle1 from\"#framer/local/css/WM85CobEF/WM85CobEF.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/d4RFpaMGF/d4RFpaMGF.js\";import metadataProvider from\"#framer/local/webPageMetadata/d4RFpaMGF/d4RFpaMGF.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const FeatherFonts=getFonts(Feather);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const NavigationMarcaAoFonts=getFonts(NavigationMarcaAo);const breakpoints={FCt7FoA_I:\"(max-width: 739px)\",gGlB8rgG6:\"(min-width: 740px) and (max-width: 1439px)\",NKpuN4qa7:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bPZte\";const variantClassNames={FCt7FoA_I:\"framer-v-el829g\",gGlB8rgG6:\"framer-v-1s881wr\",NKpuN4qa7:\"framer-v-v8e0kb\"};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,x:0,y:-30};const transition2={bounce:.1,delay:0,duration:.5,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition3={bounce:.1,delay:.2,duration:.5,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.1,delay:.3,duration:.5,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.1,delay:.6,duration:.5,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.1,delay:.5,duration:.5,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition7={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:20};const transition8={bounce:.1,delay:.7,duration:.5,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"NKpuN4qa7\",Phone:\"FCt7FoA_I\",Tablet:\"gGlB8rgG6\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"NKpuN4qa7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-bPZte`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-bPZte`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"FCt7FoA_I\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"FCt7FoA_I\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NKpuN4qa7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v8e0kb\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rbw0d2-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"z5x7DOHfi\",intensity:25,layoutId:\"z5x7DOHfi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCt7FoA_I:{__framer__styleAppearEffectEnabled:undefined},gGlB8rgG6:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pwk88g\",\"data-framer-name\":\"all\",name:\"all\",children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-187qbte\",\"data-framer-name\":\"Main Wrapper\",name:\"Main Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p3yd54\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCt7FoA_I:{background:{alt:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Contact\",fit:\"fill\",loading:getLoadingLazyAtYPosition(260),pixelHeight:867,pixelWidth:683,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/S9Md3e008cf14ttWMRyV0uFaYY.jpg\"}},gGlB8rgG6:{background:{alt:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Contact\",fit:\"fill\",loading:getLoadingLazyAtYPosition(260),pixelHeight:867,pixelWidth:683,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/S9Md3e008cf14ttWMRyV0uFaYY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:(_getLocalizedValue2=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Contact\",fit:\"fill\",loading:getLoadingLazyAtYPosition(260),pixelHeight:7222,pixelWidth:4815,src:\"https://framerusercontent.com/images/QMA7IX74L4wcf2wyQOBCQ2QEH1I.jpg?scale-down-to=1024\"},className:\"framer-1x58d70\",\"data-framer-appear-id\":\"1x58d70\",\"data-framer-name\":\"Image\",initial:animation2,name:\"Image\",optimized:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sl6q9a\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a8gp1g\",\"data-framer-name\":\"Frame 146\",name:\"Frame 146\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-color\":\"var(--token-a063de3d-9d9a-4deb-ad25-a4f689f2d33f, rgb(189, 189, 189))\"},children:\"Cria algo \\xfanico connosco\"})}),className:\"framer-18oca13\",\"data-framer-appear-id\":\"18oca13\",\"data-framer-name\":\"Sobre n\\xf3s\",fonts:[\"Inter\"],initial:animation2,name:\"Sobre n\\xf3s\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19gc520\",\"data-styles-preset\":\"WM85CobEF\",style:{\"--framer-text-alignment\":\"left\"},children:\"Entra em Contato e marca a tua consulta\"})}),className:\"framer-egmply\",\"data-framer-appear-id\":\"egmply\",\"data-framer-name\":\"No nosso est\\xfadio, cada cliente \\xe9 \\xfanico\",fonts:[\"Inter\"],initial:animation2,name:\"No nosso est\\xfadio, cada cliente \\xe9 \\xfanico\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-t5apcc-container\",\"data-framer-appear-id\":\"t5apcc\",initial:animation2,optimized:true,children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:'<iframe data-tally-src=\"https://tally.so/embed/wol9Db?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1\" loading=\"lazy\" width=\"100%\" height=\"518\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" title=\"Blackmoon form\"></iframe><script>var d=document,w=\"https://tally.so/widgets/embed.js\",v=function(){\"undefined\"!=typeof Tally?Tally.loadEmbeds():d.querySelectorAll(\"iframe[data-tally-src]:not([src])\").forEach((function(e){e.src=e.dataset.tallySrc}))};if(\"undefined\"!=typeof Tally)v();else if(d.querySelector(\\'script[src=\"\\'+w+\\'\"]\\')==null){var s=d.createElement(\"script\");s.src=w,s.onload=v,s.onerror=v,d.body.appendChild(s);}</script>',id:\"ChIyMBZso\",layoutId:\"ChIyMBZso\",style:{width:\"100%\"},type:\"html\",url:(_getLocalizedValue6=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"https://tally.so/embed/wb2QNL?alignLeft=1&transparentBackground=1&dynamicHeight=1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d661pz\",\"data-framer-name\":\"Line 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1382,name:\"Line 2\",svg:'<svg width=\"1382\" height=\"3\" viewBox=\"-1 -1 1382 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1380\" y1=\"0.5\" y2=\"0.5\" stroke=\"#999898\" stroke-opacity=\"0.55\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12lffsh\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1rb1dfe\",\"data-framer-appear-id\":\"1rb1dfe\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e1fb8f\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-140i65l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-uky792\",\"data-styles-preset\":\"f_KFw_yFw\",children:/*#__PURE__*/_jsx(Link,{href:\"https://informacoeseservicos.lisboa.pt/servicos/detalhe/horario-de-funcionamento-de-estabelecimento\",nodeId:\"HsoE7eTgm\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Hor\\xe1rio de funcionamento\"})})})}),className:\"framer-sauc5f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a063de3d-9d9a-4deb-ad25-a4f689f2d33f, rgb(204, 202, 202))\"},children:[\"Segunda - S\\xe1bado:\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\"},children:\" 10:30h \u2013 19:00h\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a063de3d-9d9a-4deb-ad25-a4f689f2d33f, rgb(204, 202, 202))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-weight\":\"500\"},children:\"Domingo:\"}),\" Encerrado\"]})]}),className:\"framer-c40s4k\",fonts:[\"GF;Roboto-500\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCt7FoA_I:{href:\"https://maps.google.com/\"},gGlB8rgG6:{href:\"https://maps.google.com/\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/FJhKRw1p2S5sGGNK8\",nodeId:\"h7wI_HPYh\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1f6rfmf framer-hmgr6j\",\"data-framer-name\":\"Components/Button 2\",name:\"Components/Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"Encontra-nos\"})}),className:\"framer-1atitom\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCt7FoA_I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1396.2),pixelHeight:1071,pixelWidth:1468,sizes:\"max((100vw - 90px) / 2, 1px)\",src:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png\",srcSet:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png 1468w\"}},gGlB8rgG6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1388.2),pixelHeight:1071,pixelWidth:1468,sizes:\"max(((100vw - 60px) * 0.65 - 30px) * 0.4796 - 65px, 1px)\",src:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png\",srcSet:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png 1468w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1043.2),pixelHeight:1071,pixelWidth:1468,sizes:\"max((max((100vw - 60px) * 0.5623 - 15px, 1px) * 0.65 - 30px) * 0.4796 - 65px, 1px)\",src:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png\",srcSet:\"https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u76sAvCJk8x3MVitqs11USeqrE.png 1468w\"},className:\"framer-dxr709\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6x64l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gGlB8rgG6:{href:\"mailto:blaackmooonstudio@gmail.com\"}},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+289 394 100\",nodeId:\"F4ua6UVHV\",openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation9,className:\"framer-12jrgat framer-hmgr6j\",\"data-framer-appear-id\":\"12jrgat\",\"data-framer-name\":\"Components/Card Social 3\",initial:animation2,name:\"Components/Card Social 3\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Telefone\"})}),className:\"framer-rhbvpv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1poycyl-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",height:\"100%\",iconSearch:(_getLocalizedValue11=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Home\",iconSelection:\"phone\",id:\"ALrUD2Wrd\",layoutId:\"ALrUD2Wrd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gGlB8rgG6:{href:\"tel:+289 394 100\"}},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:blaackmooonstudio@gmail.com\",nodeId:\"R9e6RwIGM\",openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation9,className:\"framer-n0kvkj framer-hmgr6j\",\"data-framer-appear-id\":\"n0kvkj\",\"data-framer-name\":\"Components/Card Social 3\",initial:animation2,name:\"Components/Card Social 3\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",children:\"Email\"})}),className:\"framer-1sy3xei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6hcro-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, rgb(227, 225, 225))\",height:\"100%\",iconSearch:(_getLocalizedValue13=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Home\",iconSelection:\"mail\",id:\"jHFqb3M0A\",layoutId:\"jHFqb3M0A\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})]})]})]})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cdmngv hidden-v8e0kb hidden-1s881wr\",\"data-framer-name\":\"footer\",name:\"footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pinxh1\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fuibol\",\"data-framer-name\":\"Frame 97\",name:\"Frame 97\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gyrjgn\",\"data-framer-name\":\"Frame 96\",name:\"Frame 96\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtNTAw\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-text-transform\":\"uppercase\"},children:\"Para Quem Tem Muita Tinta e Ainda Quer Mais\"})}),className:\"framer-3198vq\",\"data-framer-name\":\"Para Quem Tem Muita Tinta e Ainda Quer Mais\",fonts:[\"GF;Khand-500\"],name:\"Para Quem Tem Muita Tinta e Ainda Quer Mais\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l6c395\",\"data-framer-name\":\"footer info\",name:\"footer info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xaxeau\",\"data-framer-name\":\"contacto\",name:\"contacto\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Contacto\"})}),className:\"framer-10vmkqu\",\"data-framer-name\":\"Contacto\",fonts:[\"Inter\"],name:\"Contacto\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcnbqf\",\"data-framer-name\":\"Frame 99\",name:\"Frame 99\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:blaackmooonstudio@gmail.com\",nodeId:\"zszPXY8GT\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"blaackmooonstudio@gmail.com\"})})})}),className:\"framer-1i8hgbc\",\"data-framer-name\":\"blaackmooonstudio@gmail.com\",fonts:[\"Inter\"],name:\"blaackmooonstudio@gmail.com\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+289 394 100\",nodeId:\"EvUW1ct_T\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"289 394 100\"})})})}),className:\"framer-13hsr4g\",\"data-framer-name\":\"289 394 100\",fonts:[\"Inter\"],name:\"289 394 100\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11b4dxd\",\"data-framer-name\":\"endere\\xe7o\",name:\"endere\\xe7o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Endere\\xe7o\"})}),className:\"framer-1qrnar0\",\"data-framer-name\":\"Endere\\xe7o\",fonts:[\"Inter\"],name:\"Endere\\xe7o\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123f2pe\",\"data-framer-name\":\"Frame 100\",name:\"Frame 100\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"Almancil, Portugal\"})}),className:\"framer-rcwbs0\",\"data-framer-name\":\"Almancil, Portugal\",fonts:[\"Inter\"],name:\"Almancil, Portugal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\"})}),className:\"framer-1lpbqx3\",\"data-framer-name\":\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\",fonts:[\"Inter\"],name:\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azu4zp\",\"data-framer-name\":\"Frame 87\",name:\"Frame 87\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pm1k5w\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Redes Sociais\"})}),className:\"framer-1edqgt\",\"data-framer-name\":\"Redes Sociais\",fonts:[\"Inter\"],name:\"Redes Sociais\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rzubqt\",\"data-framer-name\":\"Frame 101\",name:\"Frame 101\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e180ev\",\"data-framer-name\":\"Frame 85\",name:\"Frame 85\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/blackmoon_professionalstudio\",nodeId:\"eu8JU0wgf\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"Instagram\"})})})}),className:\"framer-1t7xzf0\",\"data-framer-name\":\"Instagram\",fonts:[\"Inter\"],name:\"Instagram\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oabgjx\",\"data-framer-name\":\"Frame 81\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,name:\"Frame 81\",svg:'<svg width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.65685 3.34315V5.34426H13.5552L4.94975 13.9497L6.36396 15.364L14.9695 6.75847L14.9694 14.6569L16.9706 14.6569V3.34315H5.65685Z\" fill=\"#2E2E2E\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gcgbnj\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue23=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/p/Blackmoon-100063674734030/?locale=pt_BR&paipv=0&eav=AfaOd6cw8xaIwztr9oKHxz9PIgSegTbC8CHT-7hxVgVeTYb58j706tl3nV1-2VFCgjI&_rdr\",nodeId:\"WVeTBLI8H\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"Facebook\"})})})}),className:\"framer-1mh54ko\",\"data-framer-name\":\"Facebook\",fonts:[\"Inter\"],name:\"Facebook\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lqhtal\",\"data-framer-name\":\"Frame 81\",layout:\"position\",name:\"Frame 81\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 18\"><path d=\"M 5.657 3.343 L 5.657 5.344 L 13.555 5.344 L 4.95 13.95 L 6.364 15.364 L 14.97 6.758 L 14.969 14.657 L 16.971 14.657 L 16.971 3.343 Z\" fill=\"rgb(46,46,46)\"></path></svg>',svgContentId:12110396965,withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-97mcbf\",\"data-framer-name\":\"Line 2\",fill:'var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65)) /* {\"name\":\"bg dark\"} */',intrinsicHeight:3,intrinsicWidth:1322,name:\"Line 2\",svg:'<svg width=\"1322\" height=\"3\" viewBox=\"-1 -1 1322 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1320\" y1=\"0.5\" x2=\"-4.37115e-08\" y2=\"0.499885\" stroke=\"black\" stroke-opacity=\"0.4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3uvqb\",\"data-framer-name\":\"Frame 95\",name:\"Frame 95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"\\xa9 Blackmoon 2024\"})}),className:\"framer-1ihmo51\",\"data-framer-name\":\"\\xa9 Blackmoon 2024\",fonts:[\"GF;Roboto-regular\"],name:\"\\xa9 Blackmoon 2024\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4bafan\",\"data-framer-name\":\"Frame 102\",name:\"Frame 102\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-text-transform\":\"uppercase\"},children:\"Blackmoon\"})}),className:\"framer-puzwn8\",\"data-framer-name\":\"Blackmoon\",fonts:[\"GF;Khand-regular\"],name:\"Blackmoon\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QqESNXB83\"},nodeId:\"Y2wDwzDsu\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15neb8y\",\"data-styles-preset\":\"mzUSknwjq\",children:\"Termos e Condi\\xe7\\xf5es\"})})})}),className:\"framer-cov7rh\",\"data-framer-name\":\"Termos e Condi\\xe7\\xf5es\",fonts:[\"GF;Roboto-regular\"],name:\"Termos e Condi\\xe7\\xf5es\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1su89zk-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FCt7FoA_I:{variant:\"CVnUCbtHz\"},gGlB8rgG6:{variant:\"CneaX5HxQ\"}},children:/*#__PURE__*/_jsx(NavigationMarcaAo,{height:\"100%\",id:\"MGgkzhNlu\",layoutId:\"MGgkzhNlu\",style:{width:\"100%\"},variant:\"T1YhDrmyF\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adjz00 hidden-el829g\",\"data-framer-name\":\"footer\",name:\"footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zhgflf\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jnc4hx\",\"data-framer-name\":\"Frame 97\",name:\"Frame 97\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbjish\",\"data-framer-name\":\"Frame 96\",name:\"Frame 96\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-19gc520\",\"data-styles-preset\":\"WM85CobEF\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"Para Quem Tem Muita Tinta e Ainda Quer Mais\"})}),className:\"framer-1vquuq1\",\"data-framer-name\":\"Para Quem Tem Muita Tinta e Ainda Quer Mais\",fonts:[\"Inter\"],name:\"Para Quem Tem Muita Tinta e Ainda Quer Mais\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qsneor\",\"data-framer-name\":\"footer info\",name:\"footer info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131kugt\",\"data-framer-name\":\"contacto\",name:\"contacto\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Contacto\"})}),className:\"framer-1ftqmqu\",\"data-framer-name\":\"Contacto\",fonts:[\"Inter\"],name:\"Contacto\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ylauhn\",\"data-framer-name\":\"Frame 99\",name:\"Frame 99\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:blaackmooonstudio@gmail.com\",nodeId:\"TCBKN_KzS\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"blaackmooonstudio@gmail.com\"})})})}),className:\"framer-14ttb4m\",\"data-framer-name\":\"blaackmooonstudio@gmail.com\",fonts:[\"Inter\"],name:\"blaackmooonstudio@gmail.com\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue30=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+289 394 100\",nodeId:\"r831QgvG4\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"289 394 100\"})})})}),className:\"framer-o1k432\",\"data-framer-name\":\"289 394 100\",fonts:[\"Inter\"],name:\"289 394 100\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6o6bs\",\"data-framer-name\":\"endere\\xe7o\",name:\"endere\\xe7o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue31=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Endere\\xe7o\"})}),className:\"framer-1dym21i\",\"data-framer-name\":\"Endere\\xe7o\",fonts:[\"Inter\"],name:\"Endere\\xe7o\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2kmg4\",\"data-framer-name\":\"Frame 100\",name:\"Frame 100\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"Almancil, Portugal\"})}),className:\"framer-1l9oe7x\",\"data-framer-name\":\"Almancil, Portugal\",fonts:[\"Inter\"],name:\"Almancil, Portugal\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue33=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\"})}),className:\"framer-hs592\",\"data-framer-name\":\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\",fonts:[\"Inter\"],name:\"R. Manuel dos Santos Vaquinhas 52 RC B 8135-173\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2ze5o\",\"data-framer-name\":\"Frame 87\",name:\"Frame 87\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nikfm\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue34=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1a2giz9\",\"data-styles-preset\":\"Q0m5d9z50\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"Redes Sociais\"})}),className:\"framer-1hstg7f\",\"data-framer-name\":\"Redes Sociais\",fonts:[\"Inter\"],name:\"Redes Sociais\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1msys19\",\"data-framer-name\":\"Frame 101\",name:\"Frame 101\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6r6d7y\",\"data-framer-name\":\"Frame 85\",name:\"Frame 85\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue35=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/blackmoon_professionalstudio\",nodeId:\"zze4t_BQy\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"Instagram\"})})})}),className:\"framer-1u68tc1\",\"data-framer-name\":\"Instagram\",fonts:[\"Inter\"],name:\"Instagram\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m0rr1v\",\"data-framer-name\":\"Frame 81\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,name:\"Frame 81\",svg:'<svg width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.65685 3.34315V5.34426H13.5552L4.94975 13.9497L6.36396 15.364L14.9695 6.75847L14.9694 14.6569L16.9706 14.6569V3.34315H5.65685Z\" fill=\"#2E2E2E\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iuwch6\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue36=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm4gme\",\"data-styles-preset\":\"C62hPoJyU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/p/Blackmoon-100063674734030/?locale=pt_BR&paipv=0&eav=AfaOd6cw8xaIwztr9oKHxz9PIgSegTbC8CHT-7hxVgVeTYb58j706tl3nV1-2VFCgjI&_rdr\",nodeId:\"cVOI6xOb2\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1ltob5a\",\"data-styles-preset\":\"rKnxzJ8bg\",children:\"Facebook\"})})})}),className:\"framer-6fbpjs\",\"data-framer-name\":\"Facebook\",fonts:[\"Inter\"],name:\"Facebook\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b6bele\",\"data-framer-name\":\"Frame 81\",layout:\"position\",name:\"Frame 81\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 18\"><path d=\"M 5.657 3.343 L 5.657 5.344 L 13.555 5.344 L 4.95 13.95 L 6.364 15.364 L 14.97 6.758 L 14.969 14.657 L 16.971 14.657 L 16.971 3.343 Z\" fill=\"rgb(46,46,46)\"></path></svg>',svgContentId:12110396965,withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-91lu0w\",\"data-framer-name\":\"Line 2\",fill:'var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65)) /* {\"name\":\"bg dark\"} */',intrinsicHeight:3,intrinsicWidth:1322,name:\"Line 2\",svg:'<svg width=\"1322\" height=\"3\" viewBox=\"-1 -1 1322 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1320\" y1=\"0.5\" x2=\"-4.37115e-08\" y2=\"0.499885\" stroke=\"black\" stroke-opacity=\"0.4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixrisc\",\"data-framer-name\":\"Frame 95\",name:\"Frame 95\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwk5yr\",\"data-framer-name\":\"Frame 102\",name:\"Frame 102\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue37=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7S2hhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Khand\", \"Khand Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7))\",\"--framer-text-transform\":\"uppercase\"},children:\"Blackmoon\"})}),className:\"framer-1mhw0ce\",\"data-framer-name\":\"Blackmoon\",fonts:[\"GF;Khand-regular\"],name:\"Blackmoon\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue38=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:\"\\xa9 Blackmoon 2024\"})}),className:\"framer-klccwm\",\"data-framer-name\":\"\\xa9 Blackmoon 2024\",fonts:[\"GF;Roboto-regular\"],name:\"\\xa9 Blackmoon 2024\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue39=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QqESNXB83\"},nodeId:\"US2dkzC3L\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15neb8y\",\"data-styles-preset\":\"mzUSknwjq\",children:\"Termos e Condi\\xe7\\xf5es\"})})})}),className:\"framer-1x7yk0b\",\"data-framer-name\":\"Termos e Condi\\xe7\\xf5es\",fonts:[\"GF;Roboto-regular\"],name:\"Termos e Condi\\xe7\\xf5es\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-bPZte { background: var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)) /* {\"name\":\"black\"} */; }`,\".framer-bPZte.framer-hmgr6j, .framer-bPZte .framer-hmgr6j { display: block; }\",\".framer-bPZte.framer-v8e0kb { align-content: center; align-items: center; background-color: var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, #070707); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 30px 15px 30px; position: relative; width: 1440px; }\",\".framer-bPZte .framer-rbw0d2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bPZte .framer-pwk88g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-187qbte { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 15px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-bPZte .framer-1p3yd54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 96.05263157894737vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 45px; width: 44%; will-change: transform; z-index: 1; }\",\".framer-bPZte .framer-1x58d70 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-bPZte .framer-sl6q9a { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 250px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-bPZte .framer-a8gp1g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-bPZte .framer-18oca13, .framer-bPZte .framer-rhbvpv, .framer-bPZte .framer-1sy3xei, .framer-bPZte .framer-10vmkqu, .framer-bPZte .framer-1i8hgbc, .framer-bPZte .framer-13hsr4g, .framer-bPZte .framer-1qrnar0, .framer-bPZte .framer-rcwbs0, .framer-bPZte .framer-1edqgt, .framer-bPZte .framer-1t7xzf0, .framer-bPZte .framer-1mh54ko, .framer-bPZte .framer-1ihmo51, .framer-bPZte .framer-puzwn8, .framer-bPZte .framer-cov7rh, .framer-bPZte .framer-1ftqmqu, .framer-bPZte .framer-14ttb4m, .framer-bPZte .framer-o1k432, .framer-bPZte .framer-1dym21i, .framer-bPZte .framer-1l9oe7x, .framer-bPZte .framer-1hstg7f, .framer-bPZte .framer-1u68tc1, .framer-bPZte .framer-6fbpjs, .framer-bPZte .framer-1mhw0ce, .framer-bPZte .framer-klccwm, .framer-bPZte .framer-1x7yk0b { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bPZte .framer-egmply, .framer-bPZte .framer-sauc5f, .framer-bPZte .framer-1lpbqx3, .framer-bPZte .framer-hs592 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bPZte .framer-t5apcc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bPZte .framer-d661pz, .framer-bPZte .framer-97mcbf, .framer-bPZte .framer-91lu0w { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-bPZte .framer-12lffsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1rb1dfe { align-content: flex-end; align-items: flex-end; background-color: var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 65%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPZte .framer-e1fb8f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 52%; }\",\".framer-bPZte .framer-140i65l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-c40s4k { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bPZte .framer-1f6rfmf { align-content: center; align-items: center; background-color: var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, #e3e1e1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 45px; justify-content: center; overflow: visible; padding: 7px; position: relative; text-decoration: none; width: 100%; }\",\".framer-bPZte .framer-1atitom { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bPZte .framer-dxr709 { align-self: stretch; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-bPZte .framer-1s6x64l { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bPZte .framer-12jrgat, .framer-bPZte .framer-n0kvkj { align-content: center; align-items: center; background-color: var(--token-8d8bc8c6-d6d6-40eb-9c98-34ac92e72bc6, rgba(34, 34, 36, 0.65)); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 100%; }\",\".framer-bPZte .framer-1poycyl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 18px; }\",\".framer-bPZte .framer-b6hcro-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 18px; }\",\".framer-bPZte .framer-cdmngv { align-content: center; align-items: center; background-color: var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, #d6d6d6); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-pinxh1, .framer-bPZte .framer-zhgflf { aspect-ratio: 1 / 1; background-color: #000000; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 9px); left: 30px; position: absolute; top: 31px; width: 9px; z-index: 1; }\",\".framer-bPZte .framer-1fuibol, .framer-bPZte .framer-jnc4hx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-bPZte .framer-gyrjgn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-3198vq { --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bPZte .framer-l6c395 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-xaxeau, .framer-bPZte .framer-fcnbqf, .framer-bPZte .framer-11b4dxd, .framer-bPZte .framer-123f2pe, .framer-bPZte .framer-azu4zp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1pm1k5w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-rzubqt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1e180ev, .framer-bPZte .framer-1gcgbnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1oabgjx, .framer-bPZte .framer-lqhtal, .framer-bPZte .framer-m0rr1v, .framer-bPZte .framer-1b6bele { flex: none; height: 18px; position: relative; width: 17px; }\",\".framer-bPZte .framer-b3uvqb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-4bafan, .framer-bPZte .framer-ixrisc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1su89zk-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-bPZte .framer-adjz00 { align-content: center; align-items: center; background-color: var(--token-7d6f5969-871a-4e06-bc4a-526008b305a2, #d6d6d6); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-wbjish { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1vquuq1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 338px; word-break: break-word; word-wrap: break-word; }\",\".framer-bPZte .framer-1qsneor { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 115px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 68%; }\",\".framer-bPZte .framer-131kugt, .framer-bPZte .framer-1a6o6bs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bPZte .framer-1ylauhn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bPZte .framer-d2kmg4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 241px; }\",\".framer-bPZte .framer-d2ze5o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 97px; }\",\".framer-bPZte .framer-10nikfm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1msys19 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-6r6d7y, .framer-bPZte .framer-1iuwch6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPZte .framer-1hwk5yr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bPZte.framer-v8e0kb, .framer-bPZte .framer-pwk88g, .framer-bPZte .framer-187qbte, .framer-bPZte .framer-1p3yd54, .framer-bPZte .framer-sl6q9a, .framer-bPZte .framer-a8gp1g, .framer-bPZte .framer-12lffsh, .framer-bPZte .framer-1rb1dfe, .framer-bPZte .framer-e1fb8f, .framer-bPZte .framer-140i65l, .framer-bPZte .framer-1f6rfmf, .framer-bPZte .framer-1s6x64l, .framer-bPZte .framer-cdmngv, .framer-bPZte .framer-1fuibol, .framer-bPZte .framer-gyrjgn, .framer-bPZte .framer-l6c395, .framer-bPZte .framer-xaxeau, .framer-bPZte .framer-fcnbqf, .framer-bPZte .framer-11b4dxd, .framer-bPZte .framer-123f2pe, .framer-bPZte .framer-azu4zp, .framer-bPZte .framer-1pm1k5w, .framer-bPZte .framer-rzubqt, .framer-bPZte .framer-1e180ev, .framer-bPZte .framer-1gcgbnj, .framer-bPZte .framer-b3uvqb, .framer-bPZte .framer-adjz00, .framer-bPZte .framer-jnc4hx, .framer-bPZte .framer-1qsneor, .framer-bPZte .framer-131kugt, .framer-bPZte .framer-1ylauhn, .framer-bPZte .framer-1a6o6bs, .framer-bPZte .framer-d2kmg4, .framer-bPZte .framer-d2ze5o, .framer-bPZte .framer-10nikfm, .framer-bPZte .framer-1msys19, .framer-bPZte .framer-6r6d7y, .framer-bPZte .framer-1iuwch6 { gap: 0px; } .framer-bPZte.framer-v8e0kb > *, .framer-bPZte .framer-pwk88g > *, .framer-bPZte .framer-cdmngv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bPZte.framer-v8e0kb > :first-child, .framer-bPZte .framer-pwk88g > :first-child, .framer-bPZte .framer-sl6q9a > :first-child, .framer-bPZte .framer-a8gp1g > :first-child, .framer-bPZte .framer-e1fb8f > :first-child, .framer-bPZte .framer-140i65l > :first-child, .framer-bPZte .framer-1s6x64l > :first-child, .framer-bPZte .framer-cdmngv > :first-child, .framer-bPZte .framer-1fuibol > :first-child, .framer-bPZte .framer-gyrjgn > :first-child, .framer-bPZte .framer-l6c395 > :first-child, .framer-bPZte .framer-xaxeau > :first-child, .framer-bPZte .framer-fcnbqf > :first-child, .framer-bPZte .framer-11b4dxd > :first-child, .framer-bPZte .framer-123f2pe > :first-child, .framer-bPZte .framer-azu4zp > :first-child, .framer-bPZte .framer-rzubqt > :first-child, .framer-bPZte .framer-b3uvqb > :first-child, .framer-bPZte .framer-adjz00 > :first-child, .framer-bPZte .framer-jnc4hx > :first-child, .framer-bPZte .framer-131kugt > :first-child, .framer-bPZte .framer-1ylauhn > :first-child, .framer-bPZte .framer-1a6o6bs > :first-child, .framer-bPZte .framer-d2kmg4 > :first-child, .framer-bPZte .framer-d2ze5o > :first-child, .framer-bPZte .framer-1msys19 > :first-child { margin-top: 0px; } .framer-bPZte.framer-v8e0kb > :last-child, .framer-bPZte .framer-pwk88g > :last-child, .framer-bPZte .framer-sl6q9a > :last-child, .framer-bPZte .framer-a8gp1g > :last-child, .framer-bPZte .framer-e1fb8f > :last-child, .framer-bPZte .framer-140i65l > :last-child, .framer-bPZte .framer-1s6x64l > :last-child, .framer-bPZte .framer-cdmngv > :last-child, .framer-bPZte .framer-1fuibol > :last-child, .framer-bPZte .framer-gyrjgn > :last-child, .framer-bPZte .framer-l6c395 > :last-child, .framer-bPZte .framer-xaxeau > :last-child, .framer-bPZte .framer-fcnbqf > :last-child, .framer-bPZte .framer-11b4dxd > :last-child, .framer-bPZte .framer-123f2pe > :last-child, .framer-bPZte .framer-azu4zp > :last-child, .framer-bPZte .framer-rzubqt > :last-child, .framer-bPZte .framer-b3uvqb > :last-child, .framer-bPZte .framer-adjz00 > :last-child, .framer-bPZte .framer-jnc4hx > :last-child, .framer-bPZte .framer-131kugt > :last-child, .framer-bPZte .framer-1ylauhn > :last-child, .framer-bPZte .framer-1a6o6bs > :last-child, .framer-bPZte .framer-d2kmg4 > :last-child, .framer-bPZte .framer-d2ze5o > :last-child, .framer-bPZte .framer-1msys19 > :last-child { margin-bottom: 0px; } .framer-bPZte .framer-187qbte > *, .framer-bPZte .framer-1p3yd54 > *, .framer-bPZte .framer-12lffsh > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-bPZte .framer-187qbte > :first-child, .framer-bPZte .framer-1p3yd54 > :first-child, .framer-bPZte .framer-12lffsh > :first-child, .framer-bPZte .framer-1rb1dfe > :first-child, .framer-bPZte .framer-1f6rfmf > :first-child, .framer-bPZte .framer-1pm1k5w > :first-child, .framer-bPZte .framer-1e180ev > :first-child, .framer-bPZte .framer-1gcgbnj > :first-child, .framer-bPZte .framer-1qsneor > :first-child, .framer-bPZte .framer-10nikfm > :first-child, .framer-bPZte .framer-6r6d7y > :first-child, .framer-bPZte .framer-1iuwch6 > :first-child { margin-left: 0px; } .framer-bPZte .framer-187qbte > :last-child, .framer-bPZte .framer-1p3yd54 > :last-child, .framer-bPZte .framer-12lffsh > :last-child, .framer-bPZte .framer-1rb1dfe > :last-child, .framer-bPZte .framer-1f6rfmf > :last-child, .framer-bPZte .framer-1pm1k5w > :last-child, .framer-bPZte .framer-1e180ev > :last-child, .framer-bPZte .framer-1gcgbnj > :last-child, .framer-bPZte .framer-1qsneor > :last-child, .framer-bPZte .framer-10nikfm > :last-child, .framer-bPZte .framer-6r6d7y > :last-child, .framer-bPZte .framer-1iuwch6 > :last-child { margin-right: 0px; } .framer-bPZte .framer-sl6q9a > *, .framer-bPZte .framer-1s6x64l > *, .framer-bPZte .framer-1fuibol > *, .framer-bPZte .framer-jnc4hx > *, .framer-bPZte .framer-131kugt > *, .framer-bPZte .framer-1a6o6bs > *, .framer-bPZte .framer-d2ze5o > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-bPZte .framer-a8gp1g > *, .framer-bPZte .framer-140i65l > *, .framer-bPZte .framer-xaxeau > *, .framer-bPZte .framer-fcnbqf > *, .framer-bPZte .framer-11b4dxd > *, .framer-bPZte .framer-123f2pe > *, .framer-bPZte .framer-azu4zp > *, .framer-bPZte .framer-rzubqt > *, .framer-bPZte .framer-1ylauhn > *, .framer-bPZte .framer-d2kmg4 > *, .framer-bPZte .framer-1msys19 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-bPZte .framer-1rb1dfe > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } .framer-bPZte .framer-e1fb8f > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bPZte .framer-1f6rfmf > *, .framer-bPZte .framer-1pm1k5w > *, .framer-bPZte .framer-10nikfm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bPZte .framer-gyrjgn > *, .framer-bPZte .framer-l6c395 > *, .framer-bPZte .framer-b3uvqb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-bPZte .framer-1e180ev > *, .framer-bPZte .framer-1gcgbnj > *, .framer-bPZte .framer-6r6d7y > *, .framer-bPZte .framer-1iuwch6 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-bPZte .framer-adjz00 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bPZte .framer-1qsneor > * { margin: 0px; margin-left: calc(115px / 2); margin-right: calc(115px / 2); } }\",`@media (min-width: 740px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-bPZte { background: var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)) /* {\"name\":\"black\"} */; } .framer-bPZte.framer-v8e0kb { width: 740px; } .framer-bPZte .framer-187qbte { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; gap: 45px; } .framer-bPZte .framer-1p3yd54 { height: 55.00000000000001vh; order: 0; position: relative; top: unset; width: 100%; } .framer-bPZte .framer-sl6q9a { flex: none; order: 1; padding: 0px; width: 100%; } .framer-bPZte .framer-1f6rfmf { background-color: var(--token-5087bb56-e67b-4acc-afc9-0cb2e336d0c2, #f6f6f6); height: min-content; } .framer-bPZte .framer-b6hcro-container { height: var(--framer-aspect-ratio-supported, 20px); } .framer-bPZte .framer-adjz00 { gap: 0px; } .framer-bPZte .framer-jnc4hx { gap: 30px; } .framer-bPZte .framer-wbjish { flex-direction: column; gap: 30px; justify-content: flex-start; padding: 0px; } .framer-bPZte .framer-1vquuq1 { width: 67%; } .framer-bPZte .framer-1qsneor { gap: unset; justify-content: space-between; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bPZte .framer-187qbte, .framer-bPZte .framer-adjz00, .framer-bPZte .framer-jnc4hx, .framer-bPZte .framer-wbjish, .framer-bPZte .framer-1qsneor { gap: 0px; } .framer-bPZte .framer-187qbte > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bPZte .framer-187qbte > :first-child, .framer-bPZte .framer-adjz00 > :first-child, .framer-bPZte .framer-jnc4hx > :first-child, .framer-bPZte .framer-wbjish > :first-child { margin-top: 0px; } .framer-bPZte .framer-187qbte > :last-child, .framer-bPZte .framer-adjz00 > :last-child, .framer-bPZte .framer-jnc4hx > :last-child, .framer-bPZte .framer-wbjish > :last-child { margin-bottom: 0px; } .framer-bPZte .framer-adjz00 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bPZte .framer-jnc4hx > *, .framer-bPZte .framer-wbjish > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-bPZte .framer-1qsneor > *, .framer-bPZte .framer-1qsneor > :first-child, .framer-bPZte .framer-1qsneor > :last-child { margin: 0px; } }}`,`@media (max-width: 739px) { .${metadata.bodyClassName}-framer-bPZte { background: var(--token-1e193843-0f81-40e6-95ee-53b3fa6bc63b, rgb(7, 7, 7)) /* {\"name\":\"black\"} */; } .framer-bPZte.framer-v8e0kb { padding: 60px 15px 15px 15px; width: 390px; } .framer-bPZte .framer-187qbte { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex-direction: column; gap: 45px; } .framer-bPZte .framer-1p3yd54 { height: 55.00000000000001vh; order: 0; position: relative; top: unset; width: 100%; } .framer-bPZte .framer-sl6q9a { flex: none; order: 1; padding: 0px; width: 100%; } .framer-bPZte .framer-a8gp1g { gap: 15px; } .framer-bPZte .framer-12lffsh { flex-direction: column; } .framer-bPZte .framer-1rb1dfe { gap: 30px; width: 100%; } .framer-bPZte .framer-e1fb8f { flex: 1 0 0px; width: 1px; } .framer-bPZte .framer-c40s4k { --framer-text-wrap: balance; } .framer-bPZte .framer-1f6rfmf { background-color: var(--token-5087bb56-e67b-4acc-afc9-0cb2e336d0c2, #f6f6f6); height: min-content; } .framer-bPZte .framer-1s6x64l { align-self: unset; flex: none; height: 165px; width: 100%; } .framer-bPZte .framer-1poycyl-container, .framer-bPZte .framer-b6hcro-container { height: var(--framer-aspect-ratio-supported, 18px); } .framer-bPZte .framer-4bafan { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bPZte .framer-187qbte, .framer-bPZte .framer-a8gp1g, .framer-bPZte .framer-12lffsh, .framer-bPZte .framer-1rb1dfe { gap: 0px; } .framer-bPZte .framer-187qbte > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bPZte .framer-187qbte > :first-child, .framer-bPZte .framer-a8gp1g > :first-child, .framer-bPZte .framer-12lffsh > :first-child { margin-top: 0px; } .framer-bPZte .framer-187qbte > :last-child, .framer-bPZte .framer-a8gp1g > :last-child, .framer-bPZte .framer-12lffsh > :last-child { margin-bottom: 0px; } .framer-bPZte .framer-a8gp1g > *, .framer-bPZte .framer-12lffsh > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-bPZte .framer-1rb1dfe > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-bPZte .framer-1rb1dfe > :first-child { margin-left: 0px; } .framer-bPZte .framer-1rb1dfe > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1428\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gGlB8rgG6\":{\"layout\":[\"fixed\",\"auto\"]},\"FCt7FoA_I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerd4RFpaMGF=withCSS(Component,css,\"framer-bPZte\");export default Framerd4RFpaMGF;Framerd4RFpaMGF.displayName=\"Manicure\";Framerd4RFpaMGF.defaultProps={height:1428,width:1440};addFonts(Framerd4RFpaMGF,[{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:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmEU9vBh05IsDqlA.woff2\",weight:\"500\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Khand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/khand/v21/TwMN-IINQlQQ0bKhcVEyZwaH__-C.woff2\",weight:\"500\"},{family:\"Khand\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/khand/v21/TwMA-IINQlQQ0YpQWHU_TBqO.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...EmbedFonts,...FeatherFonts,...NavigationMarcaAoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd4RFpaMGF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"1428\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gGlB8rgG6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FCt7FoA_I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "DJtuahcWd_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "__FramerMetadata__", "valuesByLocaleId", "DJtuahcWd_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "YAVtiZu0v_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "valuesByLocaleId", "YAVtiZu0v_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave169mlyn", "args", "onMouseEnter1otxjn8", "onMouseEnter1u6sn87", "onMouseEnter1d1q98g", "onMouseEnterslq1ye", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "u", "cx", "Link", "RichText2", "getLocalizedValue", "css", "FramerYAVtiZu0v", "withCSS", "YAVtiZu0v_default", "addPropertyControls", "ControlType", "addFonts", "LinksMarcaAoFonts", "getFonts", "YAVtiZu0v_default", "LocaleSelectorFonts", "LocaleSelector_default", "MotionNavWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1utjp12", "args", "onTapwbcn7w", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "getLocalizedValue", "Link", "SVG", "css", "FramerDJtuahcWd", "withCSS", "DJtuahcWd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "RichTextWithOptimizedAppearEffect", "RichText2", "EmbedFonts", "Embed", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "FeatherFonts", "Icon", "MotionAWithOptimizedAppearEffect", "NavigationMarcaAoFonts", "DJtuahcWd_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "transition7", "animation8", "transition8", "animation9", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "usePreloadLocalizedValues", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "getLoadingLazyAtYPosition", "x", "SVG", "Link", "css", "Framerd4RFpaMGF", "withCSS", "d4RFpaMGF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
