{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/7ob4BGN6lyGvS8ZEbOsf/mKijpIZm6e5tqsSCBLQH/wjLyeKxY1-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as a}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as t,Link as r}from\"framer\";import{motion as s}from\"framer-motion\";import*as n from\"react\";import{Youtube as i}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";export const richText=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About Elbo\"}),/*#__PURE__*/a(\"p\",{children:[\"Elbo, a brand under the ADCOS Group, embodies the harmony between nature, science, and beauty, prioritizing naturalness and high dermatological performance. With a focus on research and innovation, ELBO offers ethically sourced and sustainably produced products developed by dermatologists and pharmacists. Understanding that skin needs evolve, the brand emphasizes ethical and efficient care, using biocompatible ingredients that promote healthy, balanced skin. ELBO transforms beauty routines into conscious and powerful experiences, combining carefully selected botanical ingredients with scientifically proven formulations, ensuring that all products are vegan and cruelty-free.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"My role\"}),/*#__PURE__*/e(\"p\",{children:\"For the Black Friday campaign, I served as a Senior Product Designer, creating a dedicated landing page for the Elbo brand. My responsibilities included developing the visual concepts, curating content, and ensuring the page aligned with the brand's aesthetics to engage our target audience effectively.\"}),/*#__PURE__*/e(\"p\",{children:\"I collaborated closely with cross-functional teams to align design strategies with marketing goals, utilizing my expertise in user experience to guide users toward conversion. By implementing data-driven conversion optimization strategies, I enhanced user engagement and ensured a seamless experience. My attention to detail and commitment to quality were essential in delivering a cohesive online presence for Elbo during the competitive Black Friday period.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PttG4RjYfhyAtZp0hwHC8UVnxoc.png\",\"data-framer-height\":\"1398\",\"data-framer-width\":\"1600\",height:\"699\",src:\"https://framerusercontent.com/images/PttG4RjYfhyAtZp0hwHC8UVnxoc.png\",srcSet:\"https://framerusercontent.com/images/PttG4RjYfhyAtZp0hwHC8UVnxoc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PttG4RjYfhyAtZp0hwHC8UVnxoc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PttG4RjYfhyAtZp0hwHC8UVnxoc.png 1600w\",style:{aspectRatio:\"1600 / 1398\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=P_OxQFCKa9I\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,d3Y9hJ0Pz9q7nwzZmOl1c35QlsM.png\",\"data-framer-height\":\"2064\",\"data-framer-width\":\"1600\",height:\"1032\",src:\"https://framerusercontent.com/images/d3Y9hJ0Pz9q7nwzZmOl1c35QlsM.png\",srcSet:\"https://framerusercontent.com/images/d3Y9hJ0Pz9q7nwzZmOl1c35QlsM.png?scale-down-to=1024 793w,https://framerusercontent.com/images/d3Y9hJ0Pz9q7nwzZmOl1c35QlsM.png?scale-down-to=2048 1587w,https://framerusercontent.com/images/d3Y9hJ0Pz9q7nwzZmOl1c35QlsM.png 1600w\",style:{aspectRatio:\"1600 / 2064\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,6id2mpEyMqtFQefWbRDlOCbns.png\",\"data-framer-height\":\"7408\",\"data-framer-width\":\"1600\",height:\"3704\",src:\"https://framerusercontent.com/images/6id2mpEyMqtFQefWbRDlOCbns.png\",srcSet:\"https://framerusercontent.com/images/6id2mpEyMqtFQefWbRDlOCbns.png?scale-down-to=4096 884w,https://framerusercontent.com/images/6id2mpEyMqtFQefWbRDlOCbns.png 1600w\",style:{aspectRatio:\"1600 / 7408\"},width:\"800\"}),/*#__PURE__*/a(\"h5\",{children:[/*#__PURE__*/e(\"br\",{}),\"Team project:\"]}),/*#__PURE__*/a(\"p\",{children:[\"Marketing Manager - Heloisa Coltro\",/*#__PURE__*/e(\"br\",{}),\"Marketing Designer - Mariana Silveira\",/*#__PURE__*/e(\"br\",{}),\"Digital Coordinator - Nathalia Pedroso\",/*#__PURE__*/e(\"br\",{}),\"E-commerce Coordinator - Gabriella Corsini\",/*#__PURE__*/e(\"br\",{}),\"Product Owner - Rebecca Salles\",/*#__PURE__*/e(\"br\",{}),\"Senior Product Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Art Director - Mariana Silveira\",/*#__PURE__*/e(\"br\",{}),\"Development - Corebiz Agency\"]})]});export const richText1=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/a(\"p\",{children:[\"ADCOS is a renowned Brazilian brand specializing in dermocosmetics, dedicated to delivering high-quality skincare solutions that blend dermatological science with cosmetic care. Established in 1993, ADCOS focuses on innovative formulations tailored to various skin types and concerns, emphasizing effective anti-aging, hydration, and sun protection. Committed to education and empowerment, ADCOS collaborates with dermatologists to ensure the safety and efficacy of its products, helping consumers achieve healthy, radiant skin.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"About the project\"}),/*#__PURE__*/e(\"p\",{children:\"The project involves developing the campaign for the launch of the new Vitamina C 15 Aqua Stick. In addition to creating engaging content for social media and other media platforms, it was essential to design a landing page to promote the product effectively.\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=8Zfz-jjWVm4\"})})}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/a(\"p\",{children:[\"The campaign was created by the agency DOJO, with further developments handled internally by the design team. My role included crafting the visual identity, designing key visuals, and creating engaging social media assets. As a Senior Product Designer, I focused on developing a user-friendly landing page that effectively highlights the innovative features and benefits of the Vitamina C 15 Aqua Stick. See the final result of the landing page \",/*#__PURE__*/e(r,{href:\"https://www.lojaadcos.com.br/vitamina-c-15-aqua-stick\",nodeId:\"wjLyeKxY1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,DTH9XxcZUg6W12eD6md06XhFqtE.png?originalFilename=Vitamina+C+15+Aqua+Stick_Image_01.png\",\"data-framer-height\":\"1053\",\"data-framer-width\":\"1600\",height:\"526\",src:\"https://framerusercontent.com/images/DTH9XxcZUg6W12eD6md06XhFqtE.png\",srcSet:\"https://framerusercontent.com/images/DTH9XxcZUg6W12eD6md06XhFqtE.png?scale-down-to=512 512w,https://framerusercontent.com/images/DTH9XxcZUg6W12eD6md06XhFqtE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DTH9XxcZUg6W12eD6md06XhFqtE.png 1600w\",style:{aspectRatio:\"1600 / 1053\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uiUJ8Y6JtjJVB8wC9uCVRgx8Qg.png?originalFilename=Vitamina+C+15+Aqua+Stick_Image_02.png\",\"data-framer-height\":\"1190\",\"data-framer-width\":\"1600\",height:\"595\",src:\"https://framerusercontent.com/images/uiUJ8Y6JtjJVB8wC9uCVRgx8Qg.png\",srcSet:\"https://framerusercontent.com/images/uiUJ8Y6JtjJVB8wC9uCVRgx8Qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uiUJ8Y6JtjJVB8wC9uCVRgx8Qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uiUJ8Y6JtjJVB8wC9uCVRgx8Qg.png 1600w\",style:{aspectRatio:\"1600 / 1190\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,aLceHCsZmYdkfr60qWlV9A3kV0.png\",\"data-framer-height\":\"1072\",\"data-framer-width\":\"1600\",height:\"536\",src:\"https://framerusercontent.com/images/aLceHCsZmYdkfr60qWlV9A3kV0.png\",srcSet:\"https://framerusercontent.com/images/aLceHCsZmYdkfr60qWlV9A3kV0.png?scale-down-to=512 512w,https://framerusercontent.com/images/aLceHCsZmYdkfr60qWlV9A3kV0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aLceHCsZmYdkfr60qWlV9A3kV0.png 1600w\",style:{aspectRatio:\"1600 / 1072\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=M-nTzQWR1v4\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,mYJxbTFPi6zkJfJQOs4h1jMcbdg.png\",\"data-framer-height\":\"6436\",\"data-framer-width\":\"1600\",height:\"3218\",src:\"https://framerusercontent.com/images/mYJxbTFPi6zkJfJQOs4h1jMcbdg.png\",srcSet:\"https://framerusercontent.com/images/mYJxbTFPi6zkJfJQOs4h1jMcbdg.png?scale-down-to=4096 1018w,https://framerusercontent.com/images/mYJxbTFPi6zkJfJQOs4h1jMcbdg.png 1600w\",style:{aspectRatio:\"1600 / 6436\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ExGwofA4jQ9uAjZXQvtCwF9IIfw.png\",\"data-framer-height\":\"4278\",\"data-framer-width\":\"1600\",height:\"2139\",src:\"https://framerusercontent.com/images/ExGwofA4jQ9uAjZXQvtCwF9IIfw.png\",srcSet:\"https://framerusercontent.com/images/ExGwofA4jQ9uAjZXQvtCwF9IIfw.png?scale-down-to=2048 765w,https://framerusercontent.com/images/ExGwofA4jQ9uAjZXQvtCwF9IIfw.png?scale-down-to=4096 1531w,https://framerusercontent.com/images/ExGwofA4jQ9uAjZXQvtCwF9IIfw.png 1600w\",style:{aspectRatio:\"1600 / 4278\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Marketing Manager - Camila Bacci e Aline Ciboto\",/*#__PURE__*/e(\"br\",{}),\"Marketing Analyst - Leticia Gasparini\",/*#__PURE__*/e(\"br\",{}),\"E-commerce Coordinator - Larissa Zanella e Gabriella Corsini\",/*#__PURE__*/e(\"br\",{}),\"Product Owner - Rebecca Salles\",/*#__PURE__*/e(\"br\",{}),\"Senior Product Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Web Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Web Designer - Juliana Ibrahim\",/*#__PURE__*/e(\"br\",{}),\"Scientific Communication - Djane Lobo\",/*#__PURE__*/e(\"br\",{}),\"Development - Corebiz Agency\",/*#__PURE__*/e(\"br\",{}),\"Concept Campaign - DOJO Agency\",/*#__PURE__*/e(\"br\",{}),\"Film - ARCA Agency\"]})]});export const richText2=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,h0v3gMcj1QU44j5eznPf2KHaCLE.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/h0v3gMcj1QU44j5eznPf2KHaCLE.mp4\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"About the brand\"]}),/*#__PURE__*/e(\"p\",{children:\"ADCOS PRO is a Brazilian brand of dermocosmetics under the ADCOS group that stands out for its innovation and high performance in skincare. Focused on beauty professionals, the brand offers products with advanced formulations and effective ingredients, developed through rigorous scientific research. Committed to quality and safety, ADCOS PRO is the ideal choice for those seeking effective and innovative solutions for skincare.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/a(\"p\",{children:[\"As a brand and senior product designer, I developed the visual concept for the launch campaign of Quartzo Peel. I curated content from scientific study dossiers, designed visuals for both the desktop and mobile versions of the landing page, and created all necessary graphics, ensuring alignment with the ADCOS PRO brand aesthetic. This project exemplifies my commitment to user-centric design and effective communication.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"See the final result \",/*#__PURE__*/e(r,{href:\"https://www.adcosprofissional.com.br/quartzo-peel\",nodeId:\"wjLyeKxY1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"here\"})}),\".\"]}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=uS0-2mdqufw&t=1s\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,O410wfa2mdDlFP19XYWq76pgw.png\",\"data-framer-height\":\"1520\",\"data-framer-width\":\"1600\",height:\"760\",src:\"https://framerusercontent.com/images/O410wfa2mdDlFP19XYWq76pgw.png\",srcSet:\"https://framerusercontent.com/images/O410wfa2mdDlFP19XYWq76pgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/O410wfa2mdDlFP19XYWq76pgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O410wfa2mdDlFP19XYWq76pgw.png 1600w\",style:{aspectRatio:\"1600 / 1520\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3wjeobaezN1lZ7loMSu7cKwmuU.png?originalFilename=Quartzo+Peel_Image_02.png\",\"data-framer-height\":\"875\",\"data-framer-width\":\"1600\",height:\"437\",src:\"https://framerusercontent.com/images/3wjeobaezN1lZ7loMSu7cKwmuU.png\",srcSet:\"https://framerusercontent.com/images/3wjeobaezN1lZ7loMSu7cKwmuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/3wjeobaezN1lZ7loMSu7cKwmuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3wjeobaezN1lZ7loMSu7cKwmuU.png 1600w\",style:{aspectRatio:\"1600 / 875\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nuTscGoJxnlXaRUUynIEdhDciQ.png?originalFilename=Quartzo+Peel_Image_03.png\",\"data-framer-height\":\"1314\",\"data-framer-width\":\"1600\",height:\"657\",src:\"https://framerusercontent.com/images/nuTscGoJxnlXaRUUynIEdhDciQ.png\",srcSet:\"https://framerusercontent.com/images/nuTscGoJxnlXaRUUynIEdhDciQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nuTscGoJxnlXaRUUynIEdhDciQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nuTscGoJxnlXaRUUynIEdhDciQ.png 1600w\",style:{aspectRatio:\"1600 / 1314\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,TO1lqPcjTnH0Kho6252PCSUdgQ.png?originalFilename=Quartzo+Peel_Image_04.png\",\"data-framer-height\":\"11634\",\"data-framer-width\":\"1600\",height:\"5817\",src:\"https://framerusercontent.com/images/TO1lqPcjTnH0Kho6252PCSUdgQ.png\",srcSet:\"https://framerusercontent.com/images/TO1lqPcjTnH0Kho6252PCSUdgQ.png?scale-down-to=4096 563w,https://framerusercontent.com/images/TO1lqPcjTnH0Kho6252PCSUdgQ.png 1600w\",style:{aspectRatio:\"1600 / 11634\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Marketing Manager - Nathalia Azevedo\",/*#__PURE__*/e(\"br\",{}),\"Marketing Analyst - Camila Penteado\",/*#__PURE__*/e(\"br\",{}),\"E-commerce Coordinator - Larissa Zanella\",/*#__PURE__*/e(\"br\",{}),\"Product Owner - Rebecca Salles\",/*#__PURE__*/e(\"br\",{}),\"Senior Product Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Web Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Web Designer - Juliana Ibrahim\",/*#__PURE__*/e(\"br\",{}),\"Scientific Communication - Nathalia Kapitzky\",/*#__PURE__*/e(\"br\",{}),\"Development - Corebiz Agency\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})]});export const richText3=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"ADCOS is a renowned Brazilian brand specializing in dermocosmetics, dedicated to delivering high-quality skincare solutions that blend dermatological science with cosmetic care. Established in 1993, ADCOS focuses on innovative formulations tailored to various skin types and concerns, emphasizing effective anti-aging, hydration, and sun protection. Committed to education and empowerment, ADCOS collaborates with dermatologists to ensure the safety and efficacy of its products, helping consumers achieve healthy, radiant skin.\"}),/*#__PURE__*/e(\"h3\",{children:\"My role\"}),/*#__PURE__*/e(\"p\",{children:\"This project centers on the launch of two exciting new products in the Hyalu Line. As a Senior Web Designer, I played a pivotal role in establishing the visual identity for the line, ensuring it resonated with the target audience and reflected the brand's values. I developed key design assets that would be used across various platforms, including social media and the website. Additionally, I created engaging email marketing campaigns aimed at driving customer interest and conversion. To enhance our online advertising efforts, I designed striking layouts for Google Ads that effectively communicated the benefits of the new products, contributing to a cohesive and compelling marketing strategy.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,14BgI3Jm5nffaNJVFt1rVWugVfY.png\",\"data-framer-height\":\"1660\",\"data-framer-width\":\"1600\",height:\"830\",src:\"https://framerusercontent.com/images/14BgI3Jm5nffaNJVFt1rVWugVfY.png\",srcSet:\"https://framerusercontent.com/images/14BgI3Jm5nffaNJVFt1rVWugVfY.png?scale-down-to=1024 986w,https://framerusercontent.com/images/14BgI3Jm5nffaNJVFt1rVWugVfY.png 1600w\",style:{aspectRatio:\"1600 / 1660\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=NVVR99QMDfM\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nWCg7BhCHFn7VEa9HzAo9L9CE4.png\",\"data-framer-height\":\"1264\",\"data-framer-width\":\"1600\",height:\"632\",src:\"https://framerusercontent.com/images/nWCg7BhCHFn7VEa9HzAo9L9CE4.png\",srcSet:\"https://framerusercontent.com/images/nWCg7BhCHFn7VEa9HzAo9L9CE4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nWCg7BhCHFn7VEa9HzAo9L9CE4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nWCg7BhCHFn7VEa9HzAo9L9CE4.png 1600w\",style:{aspectRatio:\"1600 / 1264\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=avzb4P8CGRU\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,tn5P42PHBL3R5Oh4WrX6oWDkVBE.png\",\"data-framer-height\":\"5096\",\"data-framer-width\":\"1600\",height:\"2548\",src:\"https://framerusercontent.com/images/tn5P42PHBL3R5Oh4WrX6oWDkVBE.png\",srcSet:\"https://framerusercontent.com/images/tn5P42PHBL3R5Oh4WrX6oWDkVBE.png?scale-down-to=2048 643w,https://framerusercontent.com/images/tn5P42PHBL3R5Oh4WrX6oWDkVBE.png?scale-down-to=4096 1286w,https://framerusercontent.com/images/tn5P42PHBL3R5Oh4WrX6oWDkVBE.png 1600w\",style:{aspectRatio:\"1600 / 5096\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Marketing Manager - Camila Bacci e Aline Ciboto\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Marketing Analyst - Leticia Gasparini\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"E-commerce Coordinator - Larissa Zanella\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Senior Web Designer - Camila Puccini\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Web Designer - Juliana Ibrahim\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Scientific Communication - Djane Lobo\",/*#__PURE__*/e(\"br\",{}),\"Film and photos - ARCA Agency\"]})]});export const richText4=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"ADCOS is a renowned Brazilian brand specializing in dermocosmetics, dedicated to delivering high-quality skincare solutions that blend dermatological science with cosmetic care. Established in 1993, ADCOS focuses on innovative formulations tailored to various skin types and concerns, emphasizing effective anti-aging, hydration, and sun protection. Committed to education and empowerment, ADCOS collaborates with dermatologists to ensure the safety and efficacy of its products, helping consumers achieve healthy, radiant skin.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/e(\"p\",{children:\"This project focused on developing the campaign for the launch of ADCOS Dermocosm\\xe9ticos new mineral sun protection products: Aqua Fluid and Stick. My role as a senior web designer included designing compelling content for social media and various digital platforms, with a key focus on creating visually engaging email campaigns to effectively communicate the brand\u2019s message and drive customer engagement.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,a9LSyRMW5ot8bqHlnti27JAEGSI.png\",\"data-framer-height\":\"2363\",\"data-framer-width\":\"1600\",height:\"1181\",src:\"https://framerusercontent.com/images/a9LSyRMW5ot8bqHlnti27JAEGSI.png\",srcSet:\"https://framerusercontent.com/images/a9LSyRMW5ot8bqHlnti27JAEGSI.png?scale-down-to=1024 693w,https://framerusercontent.com/images/a9LSyRMW5ot8bqHlnti27JAEGSI.png?scale-down-to=2048 1386w,https://framerusercontent.com/images/a9LSyRMW5ot8bqHlnti27JAEGSI.png 1600w\",style:{aspectRatio:\"1600 / 2363\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"Loop\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=HJBz83SHkKw\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,YB2guOJ4ApVbKgXNoVYhnmMp2o.png\",\"data-framer-height\":\"1086\",\"data-framer-width\":\"1600\",height:\"543\",src:\"https://framerusercontent.com/images/YB2guOJ4ApVbKgXNoVYhnmMp2o.png\",srcSet:\"https://framerusercontent.com/images/YB2guOJ4ApVbKgXNoVYhnmMp2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/YB2guOJ4ApVbKgXNoVYhnmMp2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YB2guOJ4ApVbKgXNoVYhnmMp2o.png 1600w\",style:{aspectRatio:\"1600 / 1086\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,o0WiqV7C7N0YBnvzizVCrd1dSU.png\",\"data-framer-height\":\"2735\",\"data-framer-width\":\"1600\",height:\"1367\",src:\"https://framerusercontent.com/images/o0WiqV7C7N0YBnvzizVCrd1dSU.png\",srcSet:\"https://framerusercontent.com/images/o0WiqV7C7N0YBnvzizVCrd1dSU.png?scale-down-to=1024 599w,https://framerusercontent.com/images/o0WiqV7C7N0YBnvzizVCrd1dSU.png?scale-down-to=2048 1198w,https://framerusercontent.com/images/o0WiqV7C7N0YBnvzizVCrd1dSU.png 1600w\",style:{aspectRatio:\"1600 / 2735\"},width:\"800\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(t,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:a=>/*#__PURE__*/e(i,{...a,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=EHy7v-R84ys\"})})}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oiL1Psb88S3Bo9NtzNE1wJtJck.png\",\"data-framer-height\":\"9092\",\"data-framer-width\":\"1600\",height:\"4546\",src:\"https://framerusercontent.com/images/oiL1Psb88S3Bo9NtzNE1wJtJck.png\",srcSet:\"https://framerusercontent.com/images/oiL1Psb88S3Bo9NtzNE1wJtJck.png?scale-down-to=4096 720w,https://framerusercontent.com/images/oiL1Psb88S3Bo9NtzNE1wJtJck.png 1600w\",style:{aspectRatio:\"1600 / 9092\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Marketing Manager - Fernanda Damasceno\",/*#__PURE__*/e(\"br\",{}),\"Marketing Analyst - Victoria Bassi\",/*#__PURE__*/e(\"br\",{}),\"E-commerce Coordinator - Larissa Zanella\",/*#__PURE__*/e(\"br\",{}),\"Communication Analyst - Carolina Paiva\\u2028\\u2028Senior\",/*#__PURE__*/e(\"br\",{}),\"Web Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Web Designer - Juliana Ibrahim\",/*#__PURE__*/e(\"br\",{}),\"Scientific Communication - Djane Lobo\",/*#__PURE__*/e(\"br\",{}),\"Film and photos - ARCA Agency\"]})]});export const richText5=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"Grendha is a prominent Brazilian footwear brand under the Grendene group, founded in 1994. Known for its stylish and comfortable women's shoes, Grendha combines vibrant designs with practicality, making its products ideal for various casual occasions. The brand emphasizes quality and sustainability, focusing on responsible manufacturing practices. With a strong presence in both domestic and international markets, Grendha continues to grow while upholding its commitment to comfort, style, and environmental responsibility.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),'Campaign Concept: \"Grendha Summer: Celebrate Yourself!\"']}),/*#__PURE__*/e(\"p\",{children:\"This year, Grendha has stood alongside women in their daily lives, addressing their concerns and inspiring their achievements. As we approach the end of a challenging year, it's time to take a moment to recognize and celebrate everything you\u2019ve accomplished.\"}),/*#__PURE__*/e(\"p\",{children:\"With summer upon us, we invite you to embrace this vibrant season as an opportunity to honor the incredible woman you are. Slip into a light, stylish outfit and step out in Grendha shoes, ready to celebrate yourself!\"}),/*#__PURE__*/e(\"p\",{children:\"Join us in this journey of self-appreciation and joy, because you deserve to shine.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/e(\"p\",{children:\"As a brand designer, I crafted the key visuals for the campaign centered on the slogan \u201CCelebrate Yourself.\u201D My contributions included designing unique custom lettering and developing engaging social media templates, all focused on amplifying the campaign's impact and deepening its connection with the audience. I also created a moodboard featuring visual references for photography, look and feel, lighting, and styling, ensuring a cohesive aesthetic throughout the campaign.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nLnEJcRggCIpWaTtaGUOqtjGOak.png\",\"data-framer-height\":\"858\",\"data-framer-width\":\"1600\",height:\"429\",src:\"https://framerusercontent.com/images/nLnEJcRggCIpWaTtaGUOqtjGOak.png\",srcSet:\"https://framerusercontent.com/images/nLnEJcRggCIpWaTtaGUOqtjGOak.png?scale-down-to=512 512w,https://framerusercontent.com/images/nLnEJcRggCIpWaTtaGUOqtjGOak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nLnEJcRggCIpWaTtaGUOqtjGOak.png 1600w\",style:{aspectRatio:\"1600 / 858\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Le2ocUKLMHMQpKMoxTGntpsYXTo.png\",\"data-framer-height\":\"1385\",\"data-framer-width\":\"1600\",height:\"692\",src:\"https://framerusercontent.com/images/Le2ocUKLMHMQpKMoxTGntpsYXTo.png\",srcSet:\"https://framerusercontent.com/images/Le2ocUKLMHMQpKMoxTGntpsYXTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Le2ocUKLMHMQpKMoxTGntpsYXTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Le2ocUKLMHMQpKMoxTGntpsYXTo.png 1600w\",style:{aspectRatio:\"1600 / 1385\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,4J6Drs0cH5h5bUeNCHcXAcJe0.png\",\"data-framer-height\":\"976\",\"data-framer-width\":\"1600\",height:\"488\",src:\"https://framerusercontent.com/images/4J6Drs0cH5h5bUeNCHcXAcJe0.png\",srcSet:\"https://framerusercontent.com/images/4J6Drs0cH5h5bUeNCHcXAcJe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4J6Drs0cH5h5bUeNCHcXAcJe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4J6Drs0cH5h5bUeNCHcXAcJe0.png 1600w\",style:{aspectRatio:\"1600 / 976\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,D2ii1iYmqfvgeG4gdzcCXUv2ME.png\",\"data-framer-height\":\"1659\",\"data-framer-width\":\"1600\",height:\"829\",src:\"https://framerusercontent.com/images/D2ii1iYmqfvgeG4gdzcCXUv2ME.png\",srcSet:\"https://framerusercontent.com/images/D2ii1iYmqfvgeG4gdzcCXUv2ME.png?scale-down-to=1024 987w,https://framerusercontent.com/images/D2ii1iYmqfvgeG4gdzcCXUv2ME.png 1600w\",style:{aspectRatio:\"1600 / 1659\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,aNdfMVaWNbqVFdLPXckHHZ25wQ.png\",\"data-framer-height\":\"1568\",\"data-framer-width\":\"1600\",height:\"784\",src:\"https://framerusercontent.com/images/aNdfMVaWNbqVFdLPXckHHZ25wQ.png\",srcSet:\"https://framerusercontent.com/images/aNdfMVaWNbqVFdLPXckHHZ25wQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/aNdfMVaWNbqVFdLPXckHHZ25wQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aNdfMVaWNbqVFdLPXckHHZ25wQ.png 1600w\",style:{aspectRatio:\"1600 / 1568\"},width:\"800\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jr0o7h2ZPstHRoNqDBwpdYM.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/jr0o7h2ZPstHRoNqDBwpdYM.mp4\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,igDBaASpbX0CdS6Am0Y77VR66Y.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/igDBaASpbX0CdS6Am0Y77VR66Y.mp4\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Account Manager - Thais Scheer\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Head of Creative and Content - Paola Ramos\"]})]});export const richText6=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/a(\"p\",{children:[\"Fogo de Ch\\xe3o is a Brazilian chain of rod\\xedzio-style steakhouses founded in 1979. The restaurant chain specializes in Southern Brazilian cuisine, primarily serving \u2018churrasco\u2019 - barbecued meats and traditional side dishes. First established in the Brazilian city of Porto Alegre, the chain currently has over 70 locations throughout Brazil, the United States, Saudi Arabia, the UAE and Mexico.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"My role\"}),/*#__PURE__*/e(\"p\",{children:\"I worked for a month as a senior brand designer for the Fogo de Ch\\xe3o account, where I created a range of content including email marketing campaigns, social media calendar posts, layouts for Google Ads, and video campaigns for Warner Channel and Discovery across Latin America. My contributions helped enhance the brand's visibility and engagement in the region.\"}),/*#__PURE__*/e(\"h4\",{children:\"Video Campaign for Warner Channel and Discovery\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,G0NJyzDPko3l4VckOIt9LlkGTqs.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/G0NJyzDPko3l4VckOIt9LlkGTqs.mp4\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,teDeUoJOgQL4nrdYWE0TOX5Vg0.png?originalFilename=Fogo+de+ch%C3%83%C2%A3o_Image_03.png\",\"data-framer-height\":\"5501\",\"data-framer-width\":\"1600\",height:\"2750\",src:\"https://framerusercontent.com/images/teDeUoJOgQL4nrdYWE0TOX5Vg0.png\",srcSet:\"https://framerusercontent.com/images/teDeUoJOgQL4nrdYWE0TOX5Vg0.png?scale-down-to=2048 595w,https://framerusercontent.com/images/teDeUoJOgQL4nrdYWE0TOX5Vg0.png?scale-down-to=4096 1191w,https://framerusercontent.com/images/teDeUoJOgQL4nrdYWE0TOX5Vg0.png 1600w\",style:{aspectRatio:\"1600 / 5501\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,fUUtvnwX9GU8mwQHWT2F0SK3sIQ.png?originalFilename=Fogo+de+ch%C3%83%C2%A3o_Image_04.png\",\"data-framer-height\":\"1266\",\"data-framer-width\":\"1600\",height:\"633\",src:\"https://framerusercontent.com/images/fUUtvnwX9GU8mwQHWT2F0SK3sIQ.png\",srcSet:\"https://framerusercontent.com/images/fUUtvnwX9GU8mwQHWT2F0SK3sIQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fUUtvnwX9GU8mwQHWT2F0SK3sIQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fUUtvnwX9GU8mwQHWT2F0SK3sIQ.png 1600w\",style:{aspectRatio:\"1600 / 1266\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,w8M5qxSeC9dyQPTK6uI4maIvms.png\",\"data-framer-height\":\"1001\",\"data-framer-width\":\"1600\",height:\"500\",src:\"https://framerusercontent.com/images/w8M5qxSeC9dyQPTK6uI4maIvms.png\",srcSet:\"https://framerusercontent.com/images/w8M5qxSeC9dyQPTK6uI4maIvms.png?scale-down-to=512 512w,https://framerusercontent.com/images/w8M5qxSeC9dyQPTK6uI4maIvms.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w8M5qxSeC9dyQPTK6uI4maIvms.png 1600w\",style:{aspectRatio:\"1600 / 1001\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,8982YAloycS9005qfKQEnEXVdg.png?originalFilename=Fogo+de+cha%C3%8C%C2%83o_Image_05.png\",\"data-framer-height\":\"1343\",\"data-framer-width\":\"1600\",height:\"671\",src:\"https://framerusercontent.com/images/8982YAloycS9005qfKQEnEXVdg.png\",srcSet:\"https://framerusercontent.com/images/8982YAloycS9005qfKQEnEXVdg.png?scale-down-to=512 512w,https://framerusercontent.com/images/8982YAloycS9005qfKQEnEXVdg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8982YAloycS9005qfKQEnEXVdg.png 1600w\",style:{aspectRatio:\"1600 / 1343\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JrPnEA47lWawRgxRyByUl4T8Aw.png?originalFilename=Fogo+de+ch%C3%83%C2%A3o_Image_07.png\",\"data-framer-height\":\"1053\",\"data-framer-width\":\"1600\",height:\"526\",src:\"https://framerusercontent.com/images/JrPnEA47lWawRgxRyByUl4T8Aw.png\",srcSet:\"https://framerusercontent.com/images/JrPnEA47lWawRgxRyByUl4T8Aw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JrPnEA47lWawRgxRyByUl4T8Aw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JrPnEA47lWawRgxRyByUl4T8Aw.png 1600w\",style:{aspectRatio:\"1600 / 1053\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Brand Strategist - Isadora Doria\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Web Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Verbal Analyst - Hugo Bombarda\",/*#__PURE__*/e(\"br\",{}),\"Media and AdTech Leader - Rodrigo Bueno\",/*#__PURE__*/e(\"br\",{}),\"Digital Team Leader - Rodrigo Alarcon\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]})]});export const richText7=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"Fundo Vale is a business promotion and investment fund dedicated to generating positive social and environmental impacts. Its mission is to foster a fairer and more inclusive economy by supporting social and environmental impact businesses that address critical challenges in their communities. By providing financial resources and strategic guidance, Fundo Vale aims to empower entrepreneurs and startups that prioritize sustainability and social equity. The fund focuses on sectors such as renewable energy, sustainable agriculture, and social enterprises, driving innovation while ensuring that economic growth benefits all stakeholders involved. Through its investments, Fundo Vale seeks to create lasting change and contribute to a more equitable future.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/a(\"p\",{children:[\"I managed the sections \",/*#__PURE__*/e(r,{href:\"https://www.fundovale.org/en/knowledge-space/latest-news/\",nodeId:\"wjLyeKxY1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"news\"})}),\", \",/*#__PURE__*/e(r,{href:\"https://www.fundovale.org/en/knowledge-space/newsletter/\",nodeId:\"wjLyeKxY1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"newsletters\"})}),\" and \",/*#__PURE__*/e(r,{href:\"https://www.fundovale.org/en/knowledge-space/in-the-media/\",nodeId:\"wjLyeKxY1\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"media\"})}),\" sections on the company\u2019s website, ensuring content was available in both Portuguese and English. I was responsible for creating engaging designs and uploading content online. Additionally, I developed email marketing campaigns, designed Zoom call backgrounds, and produced reports and internal team communications. I also conceptualized gift items to celebrate the company\u2019s 10th anniversary, helping to foster a sense of community and recognition within the team.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,0e6oAG0c8a71G0m7yQg17p38M.png?originalFilename=Fundo+Vale_Image_02.png\",\"data-framer-height\":\"6105\",\"data-framer-width\":\"1600\",height:\"3052\",src:\"https://framerusercontent.com/images/0e6oAG0c8a71G0m7yQg17p38M.png\",srcSet:\"https://framerusercontent.com/images/0e6oAG0c8a71G0m7yQg17p38M.png?scale-down-to=2048 536w,https://framerusercontent.com/images/0e6oAG0c8a71G0m7yQg17p38M.png?scale-down-to=4096 1073w,https://framerusercontent.com/images/0e6oAG0c8a71G0m7yQg17p38M.png 1600w\",style:{aspectRatio:\"1600 / 6105\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Sh1DHVMV3lv8a4lrBikRF334Y.png?originalFilename=Fundo+Vale_Image_03.png\",\"data-framer-height\":\"1287\",\"data-framer-width\":\"1600\",height:\"643\",src:\"https://framerusercontent.com/images/Sh1DHVMV3lv8a4lrBikRF334Y.png\",srcSet:\"https://framerusercontent.com/images/Sh1DHVMV3lv8a4lrBikRF334Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sh1DHVMV3lv8a4lrBikRF334Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sh1DHVMV3lv8a4lrBikRF334Y.png 1600w\",style:{aspectRatio:\"1600 / 1287\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,htBrPB3cA2NGIr69gdmsJj9TlA.png?originalFilename=Fundo+Vale_Image_04.png\",\"data-framer-height\":\"1093\",\"data-framer-width\":\"1600\",height:\"546\",src:\"https://framerusercontent.com/images/htBrPB3cA2NGIr69gdmsJj9TlA.png\",srcSet:\"https://framerusercontent.com/images/htBrPB3cA2NGIr69gdmsJj9TlA.png?scale-down-to=512 512w,https://framerusercontent.com/images/htBrPB3cA2NGIr69gdmsJj9TlA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/htBrPB3cA2NGIr69gdmsJj9TlA.png 1600w\",style:{aspectRatio:\"1600 / 1093\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,z1FdDU5Z8hxHX2OssUU75yhRo.png\",\"data-framer-height\":\"1093\",\"data-framer-width\":\"1600\",height:\"546\",src:\"https://framerusercontent.com/images/z1FdDU5Z8hxHX2OssUU75yhRo.png\",srcSet:\"https://framerusercontent.com/images/z1FdDU5Z8hxHX2OssUU75yhRo.png?scale-down-to=512 512w,https://framerusercontent.com/images/z1FdDU5Z8hxHX2OssUU75yhRo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z1FdDU5Z8hxHX2OssUU75yhRo.png 1600w\",style:{aspectRatio:\"1600 / 1093\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Er1R0BFarGwktrQy6soWHM0eTo.png\",\"data-framer-height\":\"1093\",\"data-framer-width\":\"1600\",height:\"546\",src:\"https://framerusercontent.com/images/Er1R0BFarGwktrQy6soWHM0eTo.png\",srcSet:\"https://framerusercontent.com/images/Er1R0BFarGwktrQy6soWHM0eTo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Er1R0BFarGwktrQy6soWHM0eTo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Er1R0BFarGwktrQy6soWHM0eTo.png 1600w\",style:{aspectRatio:\"1600 / 1093\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Creative Leader - Juliana Bezerra\",/*#__PURE__*/e(\"br\",{}),\"Account Executive - Thais Slomp\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Content Writer - Jana Coimbra\"]})]});export const richText8=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/a(\"p\",{children:[\"La Bobo\\xe1 is a charming French business that specializes in semi-jewelry crafted from Brazilian natural stones. In addition to its stunning accessories, the brand also offers a selection of precious stones, celebrating the unique beauty and diversity of Brazilian gemstones. The project aimed to elevate La Bobo\\xe1's visual identity and online presence, reflecting its commitment to quality and craftsmanship.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"My role\"}),/*#__PURE__*/a(\"p\",{children:[\"In this project, I worked as a brand designer, responsible for expanding La Bobo\\xe1's brand identity. My role included enhancing the color palette and illustrative elements to create a more vibrant and cohesive visual language. I also developed engaging content for social media, redesigned the Shopify e-commerce site for a more user-friendly experience, and crafted email marketing campaigns that effectively communicated the brand's values and offerings.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,sLiQ3VpIFWhfdKmYMYOlUmU7fE.png?originalFilename=La+Boboa_Image_02.png\",\"data-framer-height\":\"996\",\"data-framer-width\":\"1600\",height:\"498\",src:\"https://framerusercontent.com/images/sLiQ3VpIFWhfdKmYMYOlUmU7fE.png\",srcSet:\"https://framerusercontent.com/images/sLiQ3VpIFWhfdKmYMYOlUmU7fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sLiQ3VpIFWhfdKmYMYOlUmU7fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sLiQ3VpIFWhfdKmYMYOlUmU7fE.png 1600w\",style:{aspectRatio:\"1600 / 996\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nSSqBiwcsYs3SKq2hwmFfGgQ.png?originalFilename=La+Boboa_Image_03.png\",\"data-framer-height\":\"917\",\"data-framer-width\":\"1600\",height:\"458\",src:\"https://framerusercontent.com/images/nSSqBiwcsYs3SKq2hwmFfGgQ.png\",srcSet:\"https://framerusercontent.com/images/nSSqBiwcsYs3SKq2hwmFfGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSSqBiwcsYs3SKq2hwmFfGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nSSqBiwcsYs3SKq2hwmFfGgQ.png 1600w\",style:{aspectRatio:\"1600 / 917\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9EgWqEy8pcnIInHGahSJw1oFxE.png?originalFilename=La+Boboa_Image_04.png\",\"data-framer-height\":\"1302\",\"data-framer-width\":\"1600\",height:\"651\",src:\"https://framerusercontent.com/images/9EgWqEy8pcnIInHGahSJw1oFxE.png\",srcSet:\"https://framerusercontent.com/images/9EgWqEy8pcnIInHGahSJw1oFxE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9EgWqEy8pcnIInHGahSJw1oFxE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9EgWqEy8pcnIInHGahSJw1oFxE.png 1600w\",style:{aspectRatio:\"1600 / 1302\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,uAKTKXeZiOSzHlkdTsDSjY2BlnA.png?originalFilename=La+Boboa_Image_05.png\",\"data-framer-height\":\"2396\",\"data-framer-width\":\"1600\",height:\"1198\",src:\"https://framerusercontent.com/images/uAKTKXeZiOSzHlkdTsDSjY2BlnA.png\",srcSet:\"https://framerusercontent.com/images/uAKTKXeZiOSzHlkdTsDSjY2BlnA.png?scale-down-to=1024 683w,https://framerusercontent.com/images/uAKTKXeZiOSzHlkdTsDSjY2BlnA.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/uAKTKXeZiOSzHlkdTsDSjY2BlnA.png 1600w\",style:{aspectRatio:\"1600 / 2396\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,MLQIyChWUskaFvnWM7tSzHWmTI.png?originalFilename=La+Boboa_Image_06.png\",\"data-framer-height\":\"1877\",\"data-framer-width\":\"1600\",height:\"938\",src:\"https://framerusercontent.com/images/MLQIyChWUskaFvnWM7tSzHWmTI.png\",srcSet:\"https://framerusercontent.com/images/MLQIyChWUskaFvnWM7tSzHWmTI.png?scale-down-to=1024 872w,https://framerusercontent.com/images/MLQIyChWUskaFvnWM7tSzHWmTI.png 1600w\",style:{aspectRatio:\"1600 / 1877\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3YFaHFyNCANDiLJOfmslk7rgQ.png?originalFilename=La+Boboa_Image_07.png\",\"data-framer-height\":\"8310\",\"data-framer-width\":\"1600\",height:\"4155\",src:\"https://framerusercontent.com/images/3YFaHFyNCANDiLJOfmslk7rgQ.png\",srcSet:\"https://framerusercontent.com/images/3YFaHFyNCANDiLJOfmslk7rgQ.png?scale-down-to=4096 788w,https://framerusercontent.com/images/3YFaHFyNCANDiLJOfmslk7rgQ.png 1600w\",style:{aspectRatio:\"1600 / 8310\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,M4KwdlqvSI5g6N3m3VslQFollvc.png?originalFilename=La+Boboa_Image_08.png\",\"data-framer-height\":\"7232\",\"data-framer-width\":\"1600\",height:\"3616\",src:\"https://framerusercontent.com/images/M4KwdlqvSI5g6N3m3VslQFollvc.png\",srcSet:\"https://framerusercontent.com/images/M4KwdlqvSI5g6N3m3VslQFollvc.png?scale-down-to=4096 906w,https://framerusercontent.com/images/M4KwdlqvSI5g6N3m3VslQFollvc.png 1600w\",style:{aspectRatio:\"1600 / 7232\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Content Strategist - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Product Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Illustrator - Geovana Montagna\"]})]});export const richText9=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/a(\"p\",{children:[\"Ruts is a brand dedicated to providing natural teethers for pets, meticulously handcrafted without preservatives or chemicals. Committed to pet health and wellness, Ruts offers safe and wholesome products that pet owners can trust. The brand focuses on quality and sustainability, ensuring that each teether is made with care and attention to detail.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"My Role\"}),/*#__PURE__*/a(\"p\",{children:[\"As a visual designer, I played a key role in the project by developing the new logo, packaging, and content strategy for social media. My focus was on creating visually appealing designs that reflect the brand\u2019s identity and connect with the target audience. Through this work, I aimed to enhance Ruts' overall presence and support its mission of promoting natural pet products.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PPy9gmBjWdvc9tWxojmcu3PCQ.png?originalFilename=Ruts_Image_02.png\",\"data-framer-height\":\"842\",\"data-framer-width\":\"1600\",height:\"421\",src:\"https://framerusercontent.com/images/PPy9gmBjWdvc9tWxojmcu3PCQ.png\",srcSet:\"https://framerusercontent.com/images/PPy9gmBjWdvc9tWxojmcu3PCQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/PPy9gmBjWdvc9tWxojmcu3PCQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PPy9gmBjWdvc9tWxojmcu3PCQ.png 1600w\",style:{aspectRatio:\"1600 / 842\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:\"The lettering for Ruts was developed in lowercase to foster a sense of approachability and connection with the audience. The use of rounded corners evokes warmth, comfort, and the cuteness that the brand aims to convey. Additionally, bold typography enhances the brand's presence in the market, ensuring it stands out and resonates with pet owners.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,1mciuAmnIq8GFQ6kMAFRRMs2hV4.png?originalFilename=Ruts_Image_03.png\",\"data-framer-height\":\"537\",\"data-framer-width\":\"1600\",height:\"268\",src:\"https://framerusercontent.com/images/1mciuAmnIq8GFQ6kMAFRRMs2hV4.png\",srcSet:\"https://framerusercontent.com/images/1mciuAmnIq8GFQ6kMAFRRMs2hV4.png?scale-down-to=512 512w,https://framerusercontent.com/images/1mciuAmnIq8GFQ6kMAFRRMs2hV4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1mciuAmnIq8GFQ6kMAFRRMs2hV4.png 1600w\",style:{aspectRatio:\"1600 / 537\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ixC4pdYF1sw3UPJVAMwwypr7lY.png\",\"data-framer-height\":\"1117\",\"data-framer-width\":\"1600\",height:\"558\",src:\"https://framerusercontent.com/images/ixC4pdYF1sw3UPJVAMwwypr7lY.png\",srcSet:\"https://framerusercontent.com/images/ixC4pdYF1sw3UPJVAMwwypr7lY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ixC4pdYF1sw3UPJVAMwwypr7lY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ixC4pdYF1sw3UPJVAMwwypr7lY.png 1600w\",style:{aspectRatio:\"1600 / 1117\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,TWMbv769aTox4a124NJMofAk.png?originalFilename=Ruts_Image_04.png\",\"data-framer-height\":\"855\",\"data-framer-width\":\"1600\",height:\"427\",src:\"https://framerusercontent.com/images/TWMbv769aTox4a124NJMofAk.png\",srcSet:\"https://framerusercontent.com/images/TWMbv769aTox4a124NJMofAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/TWMbv769aTox4a124NJMofAk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TWMbv769aTox4a124NJMofAk.png 1600w\",style:{aspectRatio:\"1600 / 855\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HrUNZQnharP6tUz3mEnPehrCs.png?originalFilename=Ruts_Image_05.png\",\"data-framer-height\":\"855\",\"data-framer-width\":\"1600\",height:\"427\",src:\"https://framerusercontent.com/images/HrUNZQnharP6tUz3mEnPehrCs.png\",srcSet:\"https://framerusercontent.com/images/HrUNZQnharP6tUz3mEnPehrCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/HrUNZQnharP6tUz3mEnPehrCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HrUNZQnharP6tUz3mEnPehrCs.png 1600w\",style:{aspectRatio:\"1600 / 855\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FFqLbEb0QwTWATiTDYLrGLkdrA.png?originalFilename=Ruts_Image_06.png\",\"data-framer-height\":\"959\",\"data-framer-width\":\"1600\",height:\"479\",src:\"https://framerusercontent.com/images/FFqLbEb0QwTWATiTDYLrGLkdrA.png\",srcSet:\"https://framerusercontent.com/images/FFqLbEb0QwTWATiTDYLrGLkdrA.png?scale-down-to=512 512w,https://framerusercontent.com/images/FFqLbEb0QwTWATiTDYLrGLkdrA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FFqLbEb0QwTWATiTDYLrGLkdrA.png 1600w\",style:{aspectRatio:\"1600 / 959\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,C7GTazBHwFPNBXgmBTNFP2dxo.png\",\"data-framer-height\":\"855\",\"data-framer-width\":\"1600\",height:\"427\",src:\"https://framerusercontent.com/images/C7GTazBHwFPNBXgmBTNFP2dxo.png\",srcSet:\"https://framerusercontent.com/images/C7GTazBHwFPNBXgmBTNFP2dxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/C7GTazBHwFPNBXgmBTNFP2dxo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C7GTazBHwFPNBXgmBTNFP2dxo.png 1600w\",style:{aspectRatio:\"1600 / 855\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,npBALdDjDJZAnuFCorw9UsaTIQ.png\",\"data-framer-height\":\"855\",\"data-framer-width\":\"1600\",height:\"427\",src:\"https://framerusercontent.com/images/npBALdDjDJZAnuFCorw9UsaTIQ.png\",srcSet:\"https://framerusercontent.com/images/npBALdDjDJZAnuFCorw9UsaTIQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/npBALdDjDJZAnuFCorw9UsaTIQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/npBALdDjDJZAnuFCorw9UsaTIQ.png 1600w\",style:{aspectRatio:\"1600 / 855\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:\"To enhance brand visibility, stickers were designed for use across various materials, including shipping and product packaging, social media, and the website. These stickers serve as a playful and engaging element, reinforcing the brand identity and encouraging customer interaction.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JH3YYKM9BwYyY7UooabOYsgEQ9w.png?originalFilename=Ruts_Image_10.png\",\"data-framer-height\":\"798\",\"data-framer-width\":\"1600\",height:\"399\",src:\"https://framerusercontent.com/images/JH3YYKM9BwYyY7UooabOYsgEQ9w.png\",srcSet:\"https://framerusercontent.com/images/JH3YYKM9BwYyY7UooabOYsgEQ9w.png?scale-down-to=512 512w,https://framerusercontent.com/images/JH3YYKM9BwYyY7UooabOYsgEQ9w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JH3YYKM9BwYyY7UooabOYsgEQ9w.png 1600w\",style:{aspectRatio:\"1600 / 798\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,XtxCETK6SpwNyUKQvcSEP8qo.png\",\"data-framer-height\":\"900\",\"data-framer-width\":\"1600\",height:\"450\",src:\"https://framerusercontent.com/images/XtxCETK6SpwNyUKQvcSEP8qo.png\",srcSet:\"https://framerusercontent.com/images/XtxCETK6SpwNyUKQvcSEP8qo.png?scale-down-to=512 512w,https://framerusercontent.com/images/XtxCETK6SpwNyUKQvcSEP8qo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtxCETK6SpwNyUKQvcSEP8qo.png 1600w\",style:{aspectRatio:\"1600 / 900\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xUVg4L5t6gD8mxYDt2TOLnvM2XY.png?originalFilename=Ruts_Image_12.png\",\"data-framer-height\":\"1312\",\"data-framer-width\":\"1600\",height:\"656\",src:\"https://framerusercontent.com/images/xUVg4L5t6gD8mxYDt2TOLnvM2XY.png\",srcSet:\"https://framerusercontent.com/images/xUVg4L5t6gD8mxYDt2TOLnvM2XY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xUVg4L5t6gD8mxYDt2TOLnvM2XY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xUVg4L5t6gD8mxYDt2TOLnvM2XY.png 1600w\",style:{aspectRatio:\"1600 / 1312\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,tc0dFdhQ3v3vrX3iEWJXm0KEgE.png?originalFilename=Ruts_Image_13.png\",\"data-framer-height\":\"2396\",\"data-framer-width\":\"1600\",height:\"1198\",src:\"https://framerusercontent.com/images/tc0dFdhQ3v3vrX3iEWJXm0KEgE.png\",srcSet:\"https://framerusercontent.com/images/tc0dFdhQ3v3vrX3iEWJXm0KEgE.png?scale-down-to=1024 683w,https://framerusercontent.com/images/tc0dFdhQ3v3vrX3iEWJXm0KEgE.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/tc0dFdhQ3v3vrX3iEWJXm0KEgE.png 1600w\",style:{aspectRatio:\"1600 / 2396\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:\"For the product packaging, three brand identity colors (red, yellow, and green) were chosen to represent the most common proteins. Additionally, three new colors were defined to symbolize special proteins, creating a vibrant and appealing palette that enhances brand recognition while highlighting the unique features of each product.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jx6mRBYk9KhMQGWJ02llEoCc.png?originalFilename=Ruts_Image_14.png\",\"data-framer-height\":\"952\",\"data-framer-width\":\"1600\",height:\"476\",src:\"https://framerusercontent.com/images/jx6mRBYk9KhMQGWJ02llEoCc.png\",srcSet:\"https://framerusercontent.com/images/jx6mRBYk9KhMQGWJ02llEoCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jx6mRBYk9KhMQGWJ02llEoCc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jx6mRBYk9KhMQGWJ02llEoCc.png 1600w\",style:{aspectRatio:\"1600 / 952\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,QzWmr47XH804pamebDq6XYE4Q.png?originalFilename=Ruts_Image_15.png\",\"data-framer-height\":\"963\",\"data-framer-width\":\"1600\",height:\"481\",src:\"https://framerusercontent.com/images/QzWmr47XH804pamebDq6XYE4Q.png\",srcSet:\"https://framerusercontent.com/images/QzWmr47XH804pamebDq6XYE4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/QzWmr47XH804pamebDq6XYE4Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzWmr47XH804pamebDq6XYE4Q.png 1600w\",style:{aspectRatio:\"1600 / 963\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,R4dGujvjcfslYH11qSdArTEea54.png?originalFilename=Ruts_Image_16.png\",\"data-framer-height\":\"1021\",\"data-framer-width\":\"1600\",height:\"510\",src:\"https://framerusercontent.com/images/R4dGujvjcfslYH11qSdArTEea54.png\",srcSet:\"https://framerusercontent.com/images/R4dGujvjcfslYH11qSdArTEea54.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4dGujvjcfslYH11qSdArTEea54.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4dGujvjcfslYH11qSdArTEea54.png 1600w\",style:{aspectRatio:\"1600 / 1021\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,bEn9JyFycyjLgGWIqiHK4o0SBDI.png\",\"data-framer-height\":\"1005\",\"data-framer-width\":\"1600\",height:\"502\",src:\"https://framerusercontent.com/images/bEn9JyFycyjLgGWIqiHK4o0SBDI.png\",srcSet:\"https://framerusercontent.com/images/bEn9JyFycyjLgGWIqiHK4o0SBDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bEn9JyFycyjLgGWIqiHK4o0SBDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bEn9JyFycyjLgGWIqiHK4o0SBDI.png 1600w\",style:{aspectRatio:\"1600 / 1005\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,1Xi8I3lO3BPyoVUSDINQ0MbWTwI.png\",\"data-framer-height\":\"1005\",\"data-framer-width\":\"1600\",height:\"502\",src:\"https://framerusercontent.com/images/1Xi8I3lO3BPyoVUSDINQ0MbWTwI.png\",srcSet:\"https://framerusercontent.com/images/1Xi8I3lO3BPyoVUSDINQ0MbWTwI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Xi8I3lO3BPyoVUSDINQ0MbWTwI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Xi8I3lO3BPyoVUSDINQ0MbWTwI.png 1600w\",style:{aspectRatio:\"1600 / 1005\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Content Strategist - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini e Geovana Montagna\",/*#__PURE__*/e(\"br\",{}),\"Illustrator - Geovana Montagna\"]})]});export const richText10=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"Rollink is more than just a suitcase; it\u2019s a collapsible luggage solution designed to fit seamlessly into your lifestyle. With a focus on convenience and innovation, Rollink aims to redefine travel by providing a product that is both functional and stylish. \"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/e(\"p\",{children:\"As a brand designer, I developed numerous email marketing campaigns, layouts for Google Ads, and engaging posts for social media. My work involved creating cohesive visuals and messaging that aligned with Rollink's brand identity, ensuring that each piece effectively conveyed the benefits of the collapsible luggage. Through this role, I aimed to drive brand awareness and foster a connection with the target audience.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jhhZ4u7lQoZe9cMkLTmKpQtu5Y.png?originalFilename=Rollink_Image_02.png\",\"data-framer-height\":\"900\",\"data-framer-width\":\"1600\",height:\"450\",src:\"https://framerusercontent.com/images/jhhZ4u7lQoZe9cMkLTmKpQtu5Y.png\",srcSet:\"https://framerusercontent.com/images/jhhZ4u7lQoZe9cMkLTmKpQtu5Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/jhhZ4u7lQoZe9cMkLTmKpQtu5Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jhhZ4u7lQoZe9cMkLTmKpQtu5Y.png 1600w\",style:{aspectRatio:\"1600 / 900\"},width:\"800\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,xBzwRSJHNlDoiA6xC5sCsMAnE.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/xBzwRSJHNlDoiA6xC5sCsMAnE.mp4\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,fYuGtqSTaJ53Muli1v5mz5zmVUs.png?originalFilename=Rollink_Image_04.png\",\"data-framer-height\":\"8732\",\"data-framer-width\":\"1600\",height:\"4366\",src:\"https://framerusercontent.com/images/fYuGtqSTaJ53Muli1v5mz5zmVUs.png\",srcSet:\"https://framerusercontent.com/images/fYuGtqSTaJ53Muli1v5mz5zmVUs.png?scale-down-to=4096 750w,https://framerusercontent.com/images/fYuGtqSTaJ53Muli1v5mz5zmVUs.png 1600w\",style:{aspectRatio:\"1600 / 8732\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Uh786hBaHGOtylwEpkJONIgwZbI.png\",\"data-framer-height\":\"1568\",\"data-framer-width\":\"1600\",height:\"784\",src:\"https://framerusercontent.com/images/Uh786hBaHGOtylwEpkJONIgwZbI.png\",srcSet:\"https://framerusercontent.com/images/Uh786hBaHGOtylwEpkJONIgwZbI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uh786hBaHGOtylwEpkJONIgwZbI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uh786hBaHGOtylwEpkJONIgwZbI.png 1600w\",style:{aspectRatio:\"1600 / 1568\"},width:\"800\"}),/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,3wCuw5y8Xm1zc9V5PehoHnt0f0.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/3wCuw5y8Xm1zc9V5PehoHnt0f0.mp4\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,41ABdVAjrZxwyrFWtgQQLWvKnI.png?originalFilename=Rollink_Image_07.png\",\"data-framer-height\":\"1173\",\"data-framer-width\":\"1600\",height:\"586\",src:\"https://framerusercontent.com/images/41ABdVAjrZxwyrFWtgQQLWvKnI.png\",srcSet:\"https://framerusercontent.com/images/41ABdVAjrZxwyrFWtgQQLWvKnI.png?scale-down-to=512 512w,https://framerusercontent.com/images/41ABdVAjrZxwyrFWtgQQLWvKnI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/41ABdVAjrZxwyrFWtgQQLWvKnI.png 1600w\",style:{aspectRatio:\"1600 / 1173\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Digital Strategist - Gordana Bojanic and Selena Ivanovic\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand and Marketing Designer - Camila Puccini\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Email Marketer - Katarina Brajkovic\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Videos and 3D - XO3D\",/*#__PURE__*/e(\"br\",{}),\"Project Manager - Tijana Djurdjevic\"]})]});export const richText11=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h3\",{children:\"About the brand\"}),/*#__PURE__*/e(\"p\",{children:\"B.O.B., which stands for Bars Over Bottles, is a company dedicated to providing eco-friendly solid shampoos and hair care products. By offering innovative alternatives to traditional liquid shampoos, B.O.B. aims to reduce plastic waste while delivering high-quality, effective hair care solutions. The brand emphasizes natural ingredients and sustainable practices, appealing to environmentally conscious consumers who prioritize both hair health and sustainability. With a focus on promoting a greener lifestyle, B.O.B. inspires individuals to choose bars over bottles for their hair care needs.\"}),/*#__PURE__*/a(\"h3\",{children:[/*#__PURE__*/e(\"br\",{}),\"My role\"]}),/*#__PURE__*/e(\"p\",{children:\"In my role as a content strategist, I helped plan the social media content for the campaign, ensuring that each post resonated with the brand's messaging and engaged the audience effectively. Additionally, I worked as a graphic designer, creating visually appealing posts for Instagram during the Conscious Consumption Week campaign. I also redesigned the Conscious Consumption Guide to reflect the new branding materials, enhancing its appeal and usability for consumers seeking sustainable hair care solutions.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:\"Content Strategy\"}),/*#__PURE__*/a(\"p\",{children:[\"For the brand's Instagram, the content strategy included the development of eleven posts, featuring a mix of static art, carousels, reels, and videos. The Conscious Consumption Week campaign kicked off with a partnership announcement between B.O.B. and WFF Brazil, followed by a post detailing the brand's rationale for participating in Black Friday. To reinforce the brand's pillars, this content was also integrated into the newsletter. \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"Throughout the week, we addressed a variety of important topics, including Black Awareness Day, a conscious consumption checklist, programmed obsolescence, greenwashing, the ABC of beauty, the 7 R's of conscious consumption, and a packaging dossier, all aimed at educating and engaging the audience on sustainable practices.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,RVg1bT6rQPnlovKB26O56KYU.png?originalFilename=BOB_Image_03.png\",\"data-framer-height\":\"653\",\"data-framer-width\":\"1600\",height:\"326\",src:\"https://framerusercontent.com/images/RVg1bT6rQPnlovKB26O56KYU.png\",srcSet:\"https://framerusercontent.com/images/RVg1bT6rQPnlovKB26O56KYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/RVg1bT6rQPnlovKB26O56KYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RVg1bT6rQPnlovKB26O56KYU.png 1600w\",style:{aspectRatio:\"1600 / 653\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,RjKmyXQfwXAquOUHqIDMc6wFhco.png?originalFilename=BOB_Image_04.png\",\"data-framer-height\":\"528\",\"data-framer-width\":\"1600\",height:\"264\",src:\"https://framerusercontent.com/images/RjKmyXQfwXAquOUHqIDMc6wFhco.png\",srcSet:\"https://framerusercontent.com/images/RjKmyXQfwXAquOUHqIDMc6wFhco.png?scale-down-to=512 512w,https://framerusercontent.com/images/RjKmyXQfwXAquOUHqIDMc6wFhco.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RjKmyXQfwXAquOUHqIDMc6wFhco.png 1600w\",style:{aspectRatio:\"1600 / 528\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,01ItH0DNvoh8R3cOffdMmpjZ4Xk.png?originalFilename=BOB_Image_04.png\",\"data-framer-height\":\"1565\",\"data-framer-width\":\"1600\",height:\"782\",src:\"https://framerusercontent.com/images/01ItH0DNvoh8R3cOffdMmpjZ4Xk.png\",srcSet:\"https://framerusercontent.com/images/01ItH0DNvoh8R3cOffdMmpjZ4Xk.png?scale-down-to=512 512w,https://framerusercontent.com/images/01ItH0DNvoh8R3cOffdMmpjZ4Xk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/01ItH0DNvoh8R3cOffdMmpjZ4Xk.png 1600w\",style:{aspectRatio:\"1600 / 1565\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gb1nKjtvOzT29Jo4yrz57BuG8uI.png\",\"data-framer-height\":\"2396\",\"data-framer-width\":\"1600\",height:\"1198\",src:\"https://framerusercontent.com/images/gb1nKjtvOzT29Jo4yrz57BuG8uI.png\",srcSet:\"https://framerusercontent.com/images/gb1nKjtvOzT29Jo4yrz57BuG8uI.png?scale-down-to=1024 683w,https://framerusercontent.com/images/gb1nKjtvOzT29Jo4yrz57BuG8uI.png?scale-down-to=2048 1367w,https://framerusercontent.com/images/gb1nKjtvOzT29Jo4yrz57BuG8uI.png 1600w\",style:{aspectRatio:\"1600 / 2396\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,r8EMyK0iO9L3NTrvrFZGoda2g.png?originalFilename=BOB_Image_06.png\",\"data-framer-height\":\"2758\",\"data-framer-width\":\"1600\",height:\"1379\",src:\"https://framerusercontent.com/images/r8EMyK0iO9L3NTrvrFZGoda2g.png\",srcSet:\"https://framerusercontent.com/images/r8EMyK0iO9L3NTrvrFZGoda2g.png?scale-down-to=1024 594w,https://framerusercontent.com/images/r8EMyK0iO9L3NTrvrFZGoda2g.png?scale-down-to=2048 1188w,https://framerusercontent.com/images/r8EMyK0iO9L3NTrvrFZGoda2g.png 1600w\",style:{aspectRatio:\"1600 / 2758\"},width:\"800\"}),/*#__PURE__*/e(\"h4\",{children:\"Results:\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,iCORa7n5maCXoiD5EQajrrbon0.png\",\"data-framer-height\":\"425\",\"data-framer-width\":\"1600\",height:\"212\",src:\"https://framerusercontent.com/images/iCORa7n5maCXoiD5EQajrrbon0.png\",srcSet:\"https://framerusercontent.com/images/iCORa7n5maCXoiD5EQajrrbon0.png?scale-down-to=512 512w,https://framerusercontent.com/images/iCORa7n5maCXoiD5EQajrrbon0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iCORa7n5maCXoiD5EQajrrbon0.png 1600w\",style:{aspectRatio:\"1600 / 425\"},width:\"800\"}),/*#__PURE__*/a(\"p\",{children:[/*#__PURE__*/e(\"br\",{}),\"In addition I developed a redesigned version of the Conscious Consumption Guide. This guide serves as a valuable resource for consumers, offering insights and practical tips on making sustainable choices in their everyday lives. It is available for free \",/*#__PURE__*/e(r,{href:\"https://www.usebob.com.br/products/guia-do-consumo-consciente\",nodeId:\"wjLyeKxY1\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"on the company's website\"})}),\", reinforcing B.O.B.'s commitment to educating its audience about conscious consumption and eco-friendly practices.\"]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,XTVCqaa6OEpi0rZQRjU1bvi2ys8.png?originalFilename=BOB_Image_08.png\",\"data-framer-height\":\"1018\",\"data-framer-width\":\"1600\",height:\"509\",src:\"https://framerusercontent.com/images/XTVCqaa6OEpi0rZQRjU1bvi2ys8.png\",srcSet:\"https://framerusercontent.com/images/XTVCqaa6OEpi0rZQRjU1bvi2ys8.png?scale-down-to=512 512w,https://framerusercontent.com/images/XTVCqaa6OEpi0rZQRjU1bvi2ys8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XTVCqaa6OEpi0rZQRjU1bvi2ys8.png 1600w\",style:{aspectRatio:\"1600 / 1018\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,gfNVUFjQ9EGOEv68bYetYXC0lnM.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/gfNVUFjQ9EGOEv68bYetYXC0lnM.png\",srcSet:\"https://framerusercontent.com/images/gfNVUFjQ9EGOEv68bYetYXC0lnM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gfNVUFjQ9EGOEv68bYetYXC0lnM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gfNVUFjQ9EGOEv68bYetYXC0lnM.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZbS0VEGvIOqqLM7zjbX6nZf2RE.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/ZbS0VEGvIOqqLM7zjbX6nZf2RE.png\",srcSet:\"https://framerusercontent.com/images/ZbS0VEGvIOqqLM7zjbX6nZf2RE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZbS0VEGvIOqqLM7zjbX6nZf2RE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbS0VEGvIOqqLM7zjbX6nZf2RE.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,AuA1x2LI1JbrdFdPdiKIOBULoEY.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/AuA1x2LI1JbrdFdPdiKIOBULoEY.png\",srcSet:\"https://framerusercontent.com/images/AuA1x2LI1JbrdFdPdiKIOBULoEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/AuA1x2LI1JbrdFdPdiKIOBULoEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AuA1x2LI1JbrdFdPdiKIOBULoEY.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,PDxYYFAF89vKbGnR2v2vOWQoIw.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/PDxYYFAF89vKbGnR2v2vOWQoIw.png\",srcSet:\"https://framerusercontent.com/images/PDxYYFAF89vKbGnR2v2vOWQoIw.png?scale-down-to=512 512w,https://framerusercontent.com/images/PDxYYFAF89vKbGnR2v2vOWQoIw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PDxYYFAF89vKbGnR2v2vOWQoIw.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,w1BBFBPaboGcIs56eOKV7AbHpjM.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/w1BBFBPaboGcIs56eOKV7AbHpjM.png\",srcSet:\"https://framerusercontent.com/images/w1BBFBPaboGcIs56eOKV7AbHpjM.png?scale-down-to=512 512w,https://framerusercontent.com/images/w1BBFBPaboGcIs56eOKV7AbHpjM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/w1BBFBPaboGcIs56eOKV7AbHpjM.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jQslGkPVQFfpB0ZxZ37XRtCzI.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/jQslGkPVQFfpB0ZxZ37XRtCzI.png\",srcSet:\"https://framerusercontent.com/images/jQslGkPVQFfpB0ZxZ37XRtCzI.png?scale-down-to=512 512w,https://framerusercontent.com/images/jQslGkPVQFfpB0ZxZ37XRtCzI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jQslGkPVQFfpB0ZxZ37XRtCzI.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Senior Creative Manager - Thayse Hoffmann\",/*#__PURE__*/e(\"br\",{}),\"Content Strategist - Camila Puccini\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Marketing - Juliana Pastori\\u2028\\u2028\",/*#__PURE__*/e(\"br\",{}),\"Copywriter - \\xc1gatha Pedotte\"]})]});export const richText12=/*#__PURE__*/a(n.Fragment,{children:[/*#__PURE__*/e(\"h4\",{children:\"About the brand\"}),/*#__PURE__*/a(\"p\",{children:[\"Conceito Ada is a women's clothing brand that champions a new approach to consumption through its three guiding pillars: slow fashion, feminism, and veganism. The brand creates beautifully designed pieces that prioritize comfort and practicality, all produced in limited runs using high-quality materials sourced from 100% Brazilian suppliers. Each item is named after an influential woman in the feminist movement, highlighting significant struggles that have historically gone unnoticed and offering inspiration to those who wear them.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"h3\",{children:\"My Role\"}),/*#__PURE__*/e(\"p\",{children:\"The image and positioning of the brand was conveying were no longer aligned with its objectives and audience. For this project, I led the redesign of the visual identity and developed a comprehensive brand strategy to create a fresh identity. This included establishing a clear communication strategy, which enabled us to develop a cohesive photography aesthetic and a new website, enhancing the brand's overall presence and engagement with its audience.\"}),/*#__PURE__*/e(\"h4\",{children:\"Before\"}),/*#__PURE__*/e(\"p\",{children:\"Founded in 2015, Conceito Ada initially focused its visual identity on printed materials, including tags, business cards, packaging, and gift cards. At that time, digital assets were limited, primarily consisting of banners for the website and posts for the Instagram feed. This approach emphasized tangible branding, but the need for a more robust digital presence became increasingly evident as the brand grew.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Qe9hJTWdtWu1hWfS2e669swtFI.png?originalFilename=Conceito+Ada_Image_02.png\",\"data-framer-height\":\"683\",\"data-framer-width\":\"1600\",height:\"341\",src:\"https://framerusercontent.com/images/Qe9hJTWdtWu1hWfS2e669swtFI.png\",srcSet:\"https://framerusercontent.com/images/Qe9hJTWdtWu1hWfS2e669swtFI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Qe9hJTWdtWu1hWfS2e669swtFI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qe9hJTWdtWu1hWfS2e669swtFI.png 1600w\",style:{aspectRatio:\"1600 / 683\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,RQXYAfSOm8P2dmanZ1eFm8M5QE.png\",\"data-framer-height\":\"888\",\"data-framer-width\":\"1600\",height:\"444\",src:\"https://framerusercontent.com/images/RQXYAfSOm8P2dmanZ1eFm8M5QE.png\",srcSet:\"https://framerusercontent.com/images/RQXYAfSOm8P2dmanZ1eFm8M5QE.png?scale-down-to=512 512w,https://framerusercontent.com/images/RQXYAfSOm8P2dmanZ1eFm8M5QE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RQXYAfSOm8P2dmanZ1eFm8M5QE.png 1600w\",style:{aspectRatio:\"1600 / 888\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,JYAAU8vGgoCxmZ0ITZ1hGqIFI.png?originalFilename=Conceito+Ada_Image_04.png\",\"data-framer-height\":\"2463\",\"data-framer-width\":\"1600\",height:\"1231\",src:\"https://framerusercontent.com/images/JYAAU8vGgoCxmZ0ITZ1hGqIFI.png\",srcSet:\"https://framerusercontent.com/images/JYAAU8vGgoCxmZ0ITZ1hGqIFI.png?scale-down-to=1024 665w,https://framerusercontent.com/images/JYAAU8vGgoCxmZ0ITZ1hGqIFI.png?scale-down-to=2048 1330w,https://framerusercontent.com/images/JYAAU8vGgoCxmZ0ITZ1hGqIFI.png 1600w\",style:{aspectRatio:\"1600 / 2463\"},width:\"800\"}),/*#__PURE__*/e(\"h4\",{children:\"After\"}),/*#__PURE__*/e(\"p\",{children:\"With the growth of the brand and the rise of social media platforms like Instagram, particularly with the introduction of features like Stories, the brand recognized the need for an update. This involved redesigning its visual identity and developing a diverse range of digital materials to engage its audience more effectively. Below, you can view select pages from the brand book created for the company, showcasing the new identity and visual elements designed to enhance the brand\u2019s presence in the digital space.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,yUppJ4DTA0eUQDanq3CcSukIB0.png?originalFilename=Conceito+Ada_Image_05.png\",\"data-framer-height\":\"683\",\"data-framer-width\":\"1600\",height:\"341\",src:\"https://framerusercontent.com/images/yUppJ4DTA0eUQDanq3CcSukIB0.png\",srcSet:\"https://framerusercontent.com/images/yUppJ4DTA0eUQDanq3CcSukIB0.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUppJ4DTA0eUQDanq3CcSukIB0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUppJ4DTA0eUQDanq3CcSukIB0.png 1600w\",style:{aspectRatio:\"1600 / 683\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cKMNbvbLp7GbCJmgDBb64UynzYU.png\",\"data-framer-height\":\"1833\",\"data-framer-width\":\"1600\",height:\"916\",src:\"https://framerusercontent.com/images/cKMNbvbLp7GbCJmgDBb64UynzYU.png\",srcSet:\"https://framerusercontent.com/images/cKMNbvbLp7GbCJmgDBb64UynzYU.png?scale-down-to=1024 893w,https://framerusercontent.com/images/cKMNbvbLp7GbCJmgDBb64UynzYU.png 1600w\",style:{aspectRatio:\"1600 / 1833\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,jcYpLQUPmtOqW5gv1Z6EWPpOyqs.png?originalFilename=Conceito+Ada_Image_07.png\",\"data-framer-height\":\"1781\",\"data-framer-width\":\"1600\",height:\"890\",src:\"https://framerusercontent.com/images/jcYpLQUPmtOqW5gv1Z6EWPpOyqs.png\",srcSet:\"https://framerusercontent.com/images/jcYpLQUPmtOqW5gv1Z6EWPpOyqs.png?scale-down-to=1024 919w,https://framerusercontent.com/images/jcYpLQUPmtOqW5gv1Z6EWPpOyqs.png 1600w\",style:{aspectRatio:\"1600 / 1781\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:'The slogan \"Made with Love\" was updated to \"Wear Your Ideals,\" a phrase that had already been widely used in offline campaigns and established itself as a hallmark of the brand. This transition became the new slogan, effectively capturing the brand\\'s essence. '}),/*#__PURE__*/e(\"p\",{children:\"Additionally, the three main pillars (Slow Fashion, Feminism, and Veganism) were prominently featured on most printed materials and even incorporated into digital assets, such as the top of the newsletter, to reinforce the brand's positioning and values.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,FcvJsTLCyG6PbERfauMxCjBxzSo.png?originalFilename=Conceito+Ada_Image_08.png\",\"data-framer-height\":\"2395\",\"data-framer-width\":\"1600\",height:\"1197\",src:\"https://framerusercontent.com/images/FcvJsTLCyG6PbERfauMxCjBxzSo.png\",srcSet:\"https://framerusercontent.com/images/FcvJsTLCyG6PbERfauMxCjBxzSo.png?scale-down-to=1024 684w,https://framerusercontent.com/images/FcvJsTLCyG6PbERfauMxCjBxzSo.png?scale-down-to=2048 1368w,https://framerusercontent.com/images/FcvJsTLCyG6PbERfauMxCjBxzSo.png 1600w\",style:{aspectRatio:\"1600 / 2395\"},width:\"800\"}),/*#__PURE__*/e(\"p\",{children:\"In tandem with the new photographic language, the updated website was designed to have a lighter and more intuitive aesthetic. This version emphasizes clarity and accessibility, focusing on explaining the brand to the end consumer. It provides insights into the production process, guides users on how to take their measurements, and places a greater emphasis on showcasing the products compared to the previous version. This holistic approach enhances the overall user experience and aligns with the brand's core values.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,dhdkv2XLlGgJWTxDXxvRhg0Fx88.png?originalFilename=Conceito+Ada_Image_09.png\",\"data-framer-height\":\"5558\",\"data-framer-width\":\"1600\",height:\"2779\",src:\"https://framerusercontent.com/images/dhdkv2XLlGgJWTxDXxvRhg0Fx88.png\",srcSet:\"https://framerusercontent.com/images/dhdkv2XLlGgJWTxDXxvRhg0Fx88.png?scale-down-to=2048 589w,https://framerusercontent.com/images/dhdkv2XLlGgJWTxDXxvRhg0Fx88.png?scale-down-to=4096 1179w,https://framerusercontent.com/images/dhdkv2XLlGgJWTxDXxvRhg0Fx88.png 1600w\",style:{aspectRatio:\"1600 / 5558\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,nMKrwgOzJlASQdRTowRmn6K3geY.gif\",\"data-framer-height\":\"784\",\"data-framer-width\":\"1400\",height:\"392\",src:\"https://framerusercontent.com/images/nMKrwgOzJlASQdRTowRmn6K3geY.gif\",srcSet:\"https://framerusercontent.com/images/nMKrwgOzJlASQdRTowRmn6K3geY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/nMKrwgOzJlASQdRTowRmn6K3geY.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/nMKrwgOzJlASQdRTowRmn6K3geY.gif 1400w\",style:{aspectRatio:\"1400 / 784\"},width:\"700\"}),/*#__PURE__*/e(\"p\",{children:\"A launch strategy was developed for social media to introduce the new website and visual identity. This included creating templates specifically designed for use in Instagram Stories, allowing the brand to effectively communicate the updates and engage its audience. These templates were crafted to maintain a cohesive look while highlighting the brand\u2019s values and products, ensuring a smooth transition to the new visual identity across all platforms.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rRPpFL2EjGUmnuRiPh1toHTL9q4.png?originalFilename=Conceito+Ada_Image_10.png\",\"data-framer-height\":\"3356\",\"data-framer-width\":\"1600\",height:\"1678\",src:\"https://framerusercontent.com/images/rRPpFL2EjGUmnuRiPh1toHTL9q4.png\",srcSet:\"https://framerusercontent.com/images/rRPpFL2EjGUmnuRiPh1toHTL9q4.png?scale-down-to=2048 976w,https://framerusercontent.com/images/rRPpFL2EjGUmnuRiPh1toHTL9q4.png 1600w\",style:{aspectRatio:\"1600 / 3356\"},width:\"800\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WnCAm02gtAGCW8wjQW7NGGmP3zo.gif\",\"data-framer-height\":\"788\",\"data-framer-width\":\"1400\",height:\"394\",src:\"https://framerusercontent.com/images/WnCAm02gtAGCW8wjQW7NGGmP3zo.gif\",srcSet:\"https://framerusercontent.com/images/WnCAm02gtAGCW8wjQW7NGGmP3zo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/WnCAm02gtAGCW8wjQW7NGGmP3zo.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/WnCAm02gtAGCW8wjQW7NGGmP3zo.gif 1400w\",style:{aspectRatio:\"1400 / 788\"},width:\"700\"}),/*#__PURE__*/e(\"p\",{children:\"The photographic standard established for printed materials featured black-and-white images that highlighted the brand's visual identity in a rich burgundy tone.\"}),/*#__PURE__*/a(\"p\",{children:[\"The packaging was thoughtfully designed to minimize waste, utilizing a simple kraft paper box sealed with a printed adhesive. Each garment was accompanied by two tags: one introducing the brand and the other providing details about the product, including its name, inspiration, washing instructions, and care tips. This approach not only reinforced the brand's identity but also aligned with its commitment to sustainability.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,cgCMSMGFADq4y5jnmEkpwJUIvfA.png?originalFilename=Conceito+Ada_Image_11.png\",\"data-framer-height\":\"2897\",\"data-framer-width\":\"1600\",height:\"1448\",src:\"https://framerusercontent.com/images/cgCMSMGFADq4y5jnmEkpwJUIvfA.png\",srcSet:\"https://framerusercontent.com/images/cgCMSMGFADq4y5jnmEkpwJUIvfA.png?scale-down-to=1024 565w,https://framerusercontent.com/images/cgCMSMGFADq4y5jnmEkpwJUIvfA.png?scale-down-to=2048 1131w,https://framerusercontent.com/images/cgCMSMGFADq4y5jnmEkpwJUIvfA.png 1600w\",style:{aspectRatio:\"1600 / 2897\"},width:\"800\"}),/*#__PURE__*/e(\"h5\",{children:\"Team project:\"}),/*#__PURE__*/a(\"p\",{children:[\"Senior Product Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Web Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Senior Brand Designer - Camila Puccini\",/*#__PURE__*/e(\"br\",{}),\"Photographer - Melina Knolow\"]}),/*#__PURE__*/e(\"h2\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "motion", "ComponentPresetsConsumer", "Youtube", "richText1", "Link", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "__FramerMetadata__"]
}
