{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/vIxMwwCI9vxtvAqdyvJq/kIwWqrAI7o1o2Ja04Qkc/VwK5V6Cvo.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={}));/**\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,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,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\"},role:\"presentation\",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(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__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===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",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 embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// 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\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (dc5e905)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js\";import Navigation5 from\"#framer/local/canvasComponent/oCLK4XCr_/oCLK4XCr_.js\";import metadataProvider from\"#framer/local/webPageMetadata/VwK5V6Cvo/VwK5V6Cvo.js\";const Navigation5Fonts=getFonts(Navigation5);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const YouTubeFonts=getFonts(YouTube);const SlideshowFonts=getFonts(Slideshow);const breakpoints={ASmJ7rGfF:\"(min-width: 1200px)\",h9uSKY9lL:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JEkyE\";const variantClassNames={ASmJ7rGfF:\"framer-v-pbt7j2\",h9uSKY9lL:\"framer-v-ddfhf7\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition1={bounce:.2,delay:.7,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:1.3,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition3={bounce:.2,delay:.6,duration:.4,type:\"spring\"};const animation5={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation6={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation9={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation9,tokenization:\"character\",transition:transition5,trigger:\"onInView\",type:\"appear\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-150,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:-150,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const transition7={bounce:.2,delay:1,duration:.4,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ASmJ7rGfF\",Phone:\"h9uSKY9lL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ASmJ7rGfF\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"h9uSKY9lL\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"h9uSKY9lL\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ASmJ7rGfF\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-pbt7j2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pzzouk-container\",nodeId:\"LplbGVRdS\",scopeId:\"VwK5V6Cvo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{variant:\"zBjwmBHs5\"}},children:/*#__PURE__*/_jsx(Navigation5,{height:\"100%\",id:\"LplbGVRdS\",layoutId:\"LplbGVRdS\",style:{width:\"100%\"},variant:\"XDKwDu_et\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pjgwtn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1leHRyYWJvbGQ=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"85px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"8.\",/*#__PURE__*/_jsx(\"br\",{}),\"Perfil do profissional CFP\\xae no Brasil\"]})}),className:\"framer-1dap83q hidden-ddfhf7\",\"data-framer-appear-id\":\"1dap83q\",fonts:[\"FS;Montserrat-extrabold\"],initial:animation1,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-169gnfw-container\",\"data-framer-appear-id\":\"169gnfw\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fpMBff5h2\",optimized:true,rendersWithMotion:true,scopeId:\"VwK5V6Cvo\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fpMBff5h2\",isMixedBorderRadius:false,layoutId:\"fpMBff5h2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/aBuG38Zf6EducyunpHYX4oGbU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1leHRyYWJvbGQ=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"8.\",/*#__PURE__*/_jsx(\"br\",{}),\"Perfil do profissional CFP\\xae no Brasil\"]})}),className:\"framer-w3n2eg hidden-pbt7j2\",\"data-framer-appear-id\":\"w3n2eg\",fonts:[\"FS;Montserrat-extrabold\"],initial:animation1,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+181),pixelHeight:199,pixelWidth:844,sizes:\"500px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",pixelHeight:199,pixelWidth:844,src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-1ic1ayy hidden-pbt7j2\",\"data-framer-appear-id\":\"1ic1ayy\",initial:animation4,optimized:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+638-422),pixelHeight:199,pixelWidth:844,sizes:\"500px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fill\",pixelHeight:199,pixelWidth:844,src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-f5qaxo hidden-pbt7j2\",\"data-framer-appear-id\":\"f5qaxo\",initial:animation4,optimized:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+201.5),pixelHeight:199,pixelWidth:844,sizes:\"500px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",pixelHeight:199,pixelWidth:844,src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-z5jxij hidden-pbt7j2\",\"data-framer-appear-id\":\"z5jxij\",initial:animation4,optimized:true,transformTemplate:transformTemplate1})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+201.5),pixelHeight:199,pixelWidth:844,sizes:\"844px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-4kodos hidden-ddfhf7\",\"data-framer-appear-id\":\"4kodos\",initial:animation4,optimized:true}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+638-347),pixelHeight:199,pixelWidth:844,sizes:\"844px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-12ubw0z hidden-ddfhf7\",\"data-framer-appear-id\":\"12ubw0z\",initial:animation4,optimized:true}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+91),pixelHeight:199,pixelWidth:844,sizes:\"844px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-bal4fx hidden-ddfhf7\",\"data-framer-appear-id\":\"bal4fx\",initial:animation4,optimized:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nbhhd2\",\"data-framer-name\":\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y1ht98\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[\"Em 2024, a Planejar registrou um crescimento de 13% na comunidade de certificados CFP\\xae no Brasil, encerrando o ano com 10.634 profissionais. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[\"Em 2024, a Planejar registrou um crescimento de 13% na comunidade de certificados CFP\\xae no Brasil, encerrando o ano com 10.634 profissionais. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1w0u0rm\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:[\"Profissionais CFP\\xae\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1576kcz\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+200.7695),pixelHeight:1121,pixelWidth:2728,positionX:\"center\",positionY:\"center\",sizes:\"371px\",src:\"https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=512 512w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png 2728w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+276),pixelHeight:1121,pixelWidth:2728,positionX:\"center\",positionY:\"center\",sizes:\"1079px\",src:\"https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=512 512w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YyGVZjqz8VFs5yoenfQKHuyyp4.png 2728w\"},className:\"framer-1jusrtg\",\"data-framer-name\":\"Image3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"As mulheres tiveram representatividade de 35,7%, parecida com a de anos anteriores, mas em n\\xfameros absolutos, j\\xe1 somam quase 3,8 mil planejadoras certificadas. O n\\xfamero de homens com a certifica\\xe7\\xe3o chegou a 6,8 mil.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"As mulheres tiveram representatividade de 35,7%, parecida com a de anos anteriores, mas em n\\xfameros absolutos, j\\xe1 somam quase 3,8 mil planejadoras certificadas. O n\\xfamero de homens com a certifica\\xe7\\xe3o chegou a 6,8 mil.\"})}),className:\"framer-2h86v0\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:[\"Profissionais CFP\\xae - Mulheres e Homens\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1qrdeuv\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:296.8,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+606.7695),pixelHeight:990,pixelWidth:962,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/MMojPR2rRrLTK6DieDCYf9fiJk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MMojPR2rRrLTK6DieDCYf9fiJk.png 962w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:296.8,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+1120),pixelHeight:990,pixelWidth:962,positionX:\"center\",positionY:\"center\",sizes:\"494px\",src:\"https://framerusercontent.com/images/MMojPR2rRrLTK6DieDCYf9fiJk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MMojPR2rRrLTK6DieDCYf9fiJk.png 962w\"},className:\"framer-2t3xxs\",\"data-framer-name\":\"Chart\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:296.8,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+1084.7695),pixelHeight:2006,pixelWidth:3324,sizes:\"325px\",src:\"https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png 3324w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:296.8,intrinsicWidth:480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+1686),pixelHeight:2006,pixelWidth:3324,sizes:\"1027px\",src:\"https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=512 512w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tZXuHQaMVohjo0ZRdYanRadc04U.png 3324w\"},className:\"framer-1lhufrk\",\"data-framer-name\":\"Total CFP\\xc2\\xae, Mulheres e Homens\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"O perfil et\\xe1rio dos profissionais CFP\\xae sofreu pequena modifica\\xe7\\xe3o nos \\xfaltimos anos. Destaque para o crescimento da faixa de 40 a 49 anos, que foi de 32% em 2023 para 36% em 2024, consolidando-se como a segunda maior representatividade. J\\xe1 a participa\\xe7\\xe3o dos profissionais de 30 a 39 anos, antes maioria absoluta, veio caindo nos \\xfaltimos anos, fechando 2024 com 45%:\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"br\",{})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"O perfil et\\xe1rio dos profissionais CFP\\xae sofreu pequena modifica\\xe7\\xe3o nos \\xfaltimos anos. Destaque para o crescimento da faixa de 40 a 49 anos, que foi de 32% em 2023 para 36% em 2024, consolidando-se como a segunda maior representatividade. J\\xe1 a participa\\xe7\\xe3o dos profissionais de 30 a 39 anos, antes maioria absoluta, veio caindo nos \\xfaltimos anos, fechando 2024 com 45%:\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})]}),className:\"framer-t7ad9n\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:[\"Acompanhamento por faixa et\\xe1ria\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-36973g\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+1654.2306),pixelHeight:1001,pixelWidth:2195,positionX:\"center\",positionY:\"center\",sizes:\"325px\",src:\"https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png 2195w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+2662),pixelHeight:1001,pixelWidth:2195,positionX:\"center\",positionY:\"center\",sizes:\"1029px\",src:\"https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mP42TEIkTKpPUi1uCUKDWWNRZlY.png 2195w\"},className:\"framer-fynkr7\",\"data-framer-name\":\"Image3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Em rela\\xe7\\xe3o \\xe0 distribui\\xe7\\xe3o geogr\\xe1fica dos profissionais CFP\\xae no Brasil, a Regi\\xe3o Sudeste segue como a mais representativa, concentrando 74% da base total. Destaque para o estado de S\\xe3o Paulo, onde a certifica\\xe7\\xe3o come\\xe7ou no Brasil e que sozinho re\\xfane 55% dos certificados. Apesar dessa concentra\\xe7\\xe3o, observa-se a presen\\xe7a crescente de profissionais em outras regi\\xf5es como o Sul (13%), o Nordeste (6%) e o Centro-Oeste (6%), indicando um avan\\xe7o gradual da certifica\\xe7\\xe3o pelo pa\\xeds.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"br\",{})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Em rela\\xe7\\xe3o \\xe0 distribui\\xe7\\xe3o geogr\\xe1fica dos profissionais CFP\\xae no Brasil, a Regi\\xe3o Sudeste segue como a mais representativa, concentrando 74% da base total. Destaque para o estado de S\\xe3o Paulo, onde a certifica\\xe7\\xe3o come\\xe7ou no Brasil e que sozinho re\\xfane 55% dos certificados. Apesar dessa concentra\\xe7\\xe3o, observa-se a presen\\xe7a crescente de profissionais em outras regi\\xf5es como o Sul (13%), o Nordeste (6%) e o Centro-Oeste (6%), indicando um avan\\xe7o gradual da certifica\\xe7\\xe3o pelo pa\\xeds.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})]}),className:\"framer-q028ns\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:[\"Acompanhamento por regi\\xe3o em 31/12\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-ryvov9\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+2390.2306),pixelHeight:1260,pixelWidth:1643,positionX:\"center\",positionY:\"center\",sizes:\"373px\",src:\"https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png 1643w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+3488),pixelHeight:1260,pixelWidth:1643,positionX:\"center\",positionY:\"center\",sizes:\"1012px\",src:\"https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YkKKpNtbGQNiNpwy0PVxmBTh0.png 1643w\"},className:\"framer-1bfo4hb\",\"data-framer-name\":\"Image3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Importante ressaltar o crescimento do n\\xfamero de certificados nos estados de Minas Gerais, Rio de Janeiro, Paran\\xe1, Santa Catarina, Distrito Federal, Pernambuco, Bahia e Goi\\xe1s. Junto \\xe0 S\\xe3o Paulo e ao Rio de Janeiro. Todas essas pra\\xe7as aumentaram a porcentagem de certificados entre 2019 e 2024, formando, junto \\xe0 S\\xe3o Paulo e ao Rio de Janeiro, os dez estados com mais profissionais CFP\\xae no Brasil. Em julho de 2025, quatro novas cidades passar\\xe3o a aplicar os exames, o que pode contribuir para acelerar a expans\\xe3o regional da certifica\\xe7\\xe3o: Bel\\xe9m, Fortaleza, Salvador e Florian\\xf3polis.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Importante ressaltar o crescimento do n\\xfamero de certificados nos estados de Minas Gerais, Rio de Janeiro, Paran\\xe1, Santa Catarina, Distrito Federal, Pernambuco, Bahia e Goi\\xe1s. Junto \\xe0 S\\xe3o Paulo e ao Rio de Janeiro. Todas essas pra\\xe7as aumentaram a porcentagem de certificados entre 2019 e 2024, formando, junto \\xe0 S\\xe3o Paulo e ao Rio de Janeiro, os dez estados com mais profissionais CFP\\xae no Brasil. Em julho de 2025, quatro novas cidades passar\\xe3o a aplicar os exames, o que pode contribuir para acelerar a expans\\xe3o regional da certifica\\xe7\\xe3o: Bel\\xe9m, Fortaleza, Salvador e Florian\\xf3polis.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})]}),className:\"framer-idinms\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:\"Base CFP\\xae por UF\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:\"(top 10)\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:\"Base CFP\\xae por UF (top 10)\"})}),className:\"framer-3ivv41\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+3224.2306),pixelHeight:1060,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:\"354px\",src:\"https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=512 512w,https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png 1863w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+4548),pixelHeight:1060,pixelWidth:1863,positionX:\"center\",positionY:\"center\",sizes:\"1029px\",src:\"https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=512 512w,https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OlvqxmnkqcBwUrOOvJqJCK1KE3A.png 1863w\"},className:\"framer-10lokq1\",\"data-framer-name\":\"Image3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Em rela\\xe7\\xe3o \\xe0 \\xe1rea de atua\\xe7\\xe3o, o Private Banking, que em 2019 reunia a maioria dos certificados, teve a participa\\xe7\\xe3o reduzida para 18%. A maioria dos profissionais CFP\\xae agora atua na \\xe1rea de Alta Renda, que aparece com 26%. J\\xe1 o Varejo ocupa o terceiro lugar, saindo de 8% para 16% em cinco anos. Os assessores de investimentos tamb\\xe9m cresceram em representatividade na base \u2013 se em 2019 havia 10% dos certificados trabalhando nessa \\xe1rea, em 2024 foram registrados 12%.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:\"Em rela\\xe7\\xe3o \\xe0 \\xe1rea de atua\\xe7\\xe3o, o Private Banking, que em 2019 reunia a maioria dos certificados, teve a participa\\xe7\\xe3o reduzida para 18%. A maioria dos profissionais CFP\\xae agora atua na \\xe1rea de Alta Renda, que aparece com 26%. J\\xe1 o Varejo ocupa o terceiro lugar, saindo de 8% para 16% em cinco anos. Os assessores de investimentos tamb\\xe9m cresceram em representatividade na base \u2013 se em 2019 havia 10% dos certificados trabalhando nessa \\xe1rea, em 2024 foram registrados 12%.\\xa0\"})}),className:\"framer-c64tuj\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84c7ee5e-62a4-40fc-9937-407394608855, rgb(0, 76, 108))\"},children:\"Base CFP\\xae por \\xe1rea de atua\\xe7\\xe3o (top 10)\"})}),className:\"framer-1mvgg8z\",effect:textEffect,fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+0+-2+0+3956.2306),pixelHeight:1146,pixelWidth:2761,positionX:\"center\",positionY:\"center\",sizes:\"346px\",src:\"https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png 2761w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:549.6,intrinsicWidth:935.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+-1.5+0+5473),pixelHeight:1146,pixelWidth:2761,positionX:\"center\",positionY:\"center\",sizes:\"1192px\",src:\"https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mYWuPqSinmVIEYkUUxqAJbaBXY.png 2761w\"},className:\"framer-15cycn9\",\"data-framer-name\":\"Image3\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-plgu5\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pjkd60\",\"data-framer-name\":\"Image\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[\"Em 2024, a Planejar celebrou a certifica\\xe7\\xe3o de novos profissionais CFP\\xae em dois momentos de emo\\xe7\\xe3o e reconhecimento que destacaram a import\\xe2ncia e o impacto dessa conquista na carreira desses planejadores financeiros. No total, 214 profissionais rec\\xe9m-certificados participaram dos eventos, realizados nos meses de abril e novembro. As Cerim\\xf4nias de Certifica\\xe7\\xe3o ocorreram no Insper, em S\\xe3o Paulo. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Como a certifica\\xe7\\xe3o possui alcance nacional, a Planejar transmitiu as cerim\\xf4nias ao vivo em seu canal no YouTube, permitindo que os certificados de outros estados e seus familiares acompanhassem a celebra\\xe7\\xe3o em tempo real.\"]})}),className:\"framer-1ak97os hidden-pbt7j2\",fonts:[\"FS;Montserrat-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4970+0+0+23),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6754+0+23),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-1xwua8w\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4970+0+0+59),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6754+0+59),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-1eywzlb\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4970+0+0+89),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation13,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6754+0+89),pixelHeight:199,pixelWidth:844,sizes:\"596px\",src:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png\",srcSet:\"https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png?scale-down-to=512 512w,https://framerusercontent.com/images/B295iqX37qYMbzVD61MaP3z8mk.png 844w\"},className:\"framer-11wdcb2\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zn53jj-container\",isModuleExternal:true,nodeId:\"hnWKn0EBO\",scopeId:\"VwK5V6Cvo\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"hnWKn0EBO\",intervalControl:1.5,itemAmount:1,layoutId:\"hnWKn0EBO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i05i20-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"AU18lRZuD\",rendersWithMotion:true,scopeId:\"VwK5V6Cvo\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"AU18lRZuD\",isMixedBorderRadius:false,isRed:true,layoutId:\"AU18lRZuD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/embed/mOvoKXcdCXc?si=7-0Of_lS44BDo1nc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8n81s-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"yD4Ia81zI\",rendersWithMotion:true,scopeId:\"VwK5V6Cvo\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"yD4Ia81zI\",isMixedBorderRadius:false,isRed:true,layoutId:\"yD4Ia81zI\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/embed/q8TeO-y4IhA?si=zL9RgQjqFEsgtaMb\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cerim\\xf4nias de Certifica\\xe7\\xe3o\"})}),className:\"framer-onbdf5\",fonts:[\"FS;Montserrat-black\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1slx22f hidden-ddfhf7\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-3f20630f-8924-4378-acc1-574d54f45b91, rgb(121, 121, 121))\"},children:[\"Em 2024, a Planejar celebrou a certifica\\xe7\\xe3o de novos profissionais CFP\\xae em dois momentos de emo\\xe7\\xe3o e reconhecimento que destacaram a import\\xe2ncia e o impacto dessa conquista na carreira desses planejadores financeiros. No total, 214 profissionais rec\\xe9m-certificados participaram dos eventos, realizados nos meses de abril e novembro. As Cerim\\xf4nias de Certifica\\xe7\\xe3o ocorreram no Insper, em S\\xe3o Paulo. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Como a certifica\\xe7\\xe3o possui alcance nacional, a Planejar transmitiu as cerim\\xf4nias ao vivo em seu canal no YouTube, permitindo que os certificados de outros estados e seus familiares acompanhassem a celebra\\xe7\\xe3o em tempo real.\"]})}),className:\"framer-zftpaf\",fonts:[\"FS;Montserrat-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9oh9w\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{h9uSKY9lL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5874+100+-69),pixelHeight:713,pixelWidth:2500,sizes:\"207px\",src:\"https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7354+31),pixelHeight:713,pixelWidth:2500,sizes:\"207px\",src:\"https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=512 512w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/oF6dtRgGnanUK3m2xKHdYjrAoZg.png 2500w\"},className:\"framer-1evqa2x\",\"data-framer-name\":\"Logo\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JEkyE.framer-fx1ljl, .framer-JEkyE .framer-fx1ljl { display: block; }\",\".framer-JEkyE.framer-pbt7j2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-JEkyE .framer-pzzouk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JEkyE .framer-pjgwtn { flex: none; height: 638px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JEkyE .framer-1dap83q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 88px; max-width: 100%; position: absolute; top: 45%; transform: translateY(-50%); white-space: pre-wrap; width: 726px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JEkyE .framer-169gnfw-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 2px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-w3n2eg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: absolute; right: 53px; top: 45%; transform: translateY(-50%); white-space: pre-wrap; width: 291px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JEkyE .framer-1ic1ayy { aspect-ratio: 4.241206030150754 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 199px); left: -345px; opacity: 0.5; overflow: hidden; position: absolute; top: 181px; width: 500px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-f5qaxo { aspect-ratio: 4.241206030150754 / 1; bottom: 223px; flex: none; height: var(--framer-aspect-ratio-supported, 199px); left: -235px; opacity: 0.5; overflow: hidden; position: absolute; width: 500px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-z5jxij { aspect-ratio: 4.241206030150754 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 199px); left: -120px; opacity: 0.5; overflow: hidden; position: absolute; top: 47%; transform: translateY(-50%); width: 500px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-4kodos { flex: none; height: 199px; left: 0px; opacity: 0.5; overflow: hidden; position: absolute; top: calc(47.17868338557996% - 199px / 2); width: 844px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-12ubw0z { bottom: 148px; flex: none; height: 199px; left: -65px; opacity: 0.5; overflow: hidden; position: absolute; width: 844px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-bal4fx { flex: none; height: 199px; left: -225px; opacity: 0.5; overflow: hidden; position: absolute; top: 91px; width: 844px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JEkyE .framer-1nbhhd2 { align-content: center; align-items: center; background-color: var(--token-84c7ee5e-62a4-40fc-9937-407394608855, #004c6c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 6052px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEkyE .framer-y1ht98 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 6055px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JEkyE .framer-1w0u0rm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 119px; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-1576kcz, .framer-JEkyE .framer-1qrdeuv, .framer-JEkyE .framer-36973g, .framer-JEkyE .framer-ryvov9, .framer-JEkyE .framer-3ivv41, .framer-JEkyE .framer-1mvgg8z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 39px; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-1jusrtg { flex: none; height: 545px; overflow: visible; position: relative; width: 1079px; }\",\".framer-JEkyE .framer-2h86v0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-2t3xxs { flex: none; height: 546px; overflow: visible; position: relative; width: 494px; }\",\".framer-JEkyE .framer-1lhufrk { aspect-ratio: 1.6172506738544474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 635px); overflow: visible; position: relative; width: 1027px; }\",\".framer-JEkyE .framer-t7ad9n, .framer-JEkyE .framer-q028ns { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 241px; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-fynkr7 { flex: none; height: 486px; overflow: visible; position: relative; width: 1029px; }\",\".framer-JEkyE .framer-1bfo4hb { flex: none; height: 669px; overflow: visible; position: relative; width: 1012px; }\",\".framer-JEkyE .framer-idinms { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 292px; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-10lokq1 { flex: none; height: 584px; overflow: visible; position: relative; width: 1029px; }\",\".framer-JEkyE .framer-c64tuj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 242px; position: relative; white-space: pre-wrap; width: 1042px; word-break: break-word; word-wrap: break-word; }\",\".framer-JEkyE .framer-15cycn9 { flex: none; height: 504px; overflow: visible; position: relative; width: 1192px; }\",\".framer-JEkyE .framer-plgu5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEkyE .framer-1pjkd60 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JEkyE .framer-1ak97os { bottom: 57px; flex: none; height: 374px; left: calc(50.00000000000002% - 314px / 2); position: absolute; white-space: pre-wrap; width: 314px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JEkyE .framer-1xwua8w { flex: none; height: 66px; left: -158px; opacity: 0.6; overflow: hidden; position: absolute; top: 23px; width: 596px; z-index: 1; }\",\".framer-JEkyE .framer-1eywzlb { flex: none; height: 65px; left: -88px; opacity: 0.6; overflow: hidden; position: absolute; top: 59px; width: 596px; z-index: 1; }\",\".framer-JEkyE .framer-11wdcb2 { flex: none; height: 65px; left: -128px; opacity: 0.6; overflow: hidden; position: absolute; top: 89px; width: 596px; z-index: 1; }\",\".framer-JEkyE .framer-zn53jj-container { bottom: 64px; flex: none; height: 350px; left: -1px; position: absolute; right: -1px; z-index: 1; }\",\".framer-JEkyE .framer-i05i20-container, .framer-JEkyE .framer-1k8n81s-container { height: 270px; position: relative; width: 480px; }\",\".framer-JEkyE .framer-onbdf5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 63px; left: 52px; position: absolute; top: 45px; white-space: pre-wrap; width: 409px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JEkyE .framer-1slx22f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEkyE .framer-zftpaf { bottom: 62px; flex: none; height: 391px; left: calc(50.00000000000002% - 510px / 2); position: absolute; white-space: pre-wrap; width: 510px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-JEkyE .framer-k9oh9w { align-content: center; align-items: center; background-color: #024d6d; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 132px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-JEkyE .framer-1evqa2x { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: hidden; position: relative; width: 207px; z-index: 1; }\",\"@media (max-width: 1199px) { .framer-JEkyE.framer-pbt7j2 { width: 390px; } .framer-JEkyE .framer-1ic1ayy, .framer-JEkyE .framer-f5qaxo, .framer-JEkyE .framer-z5jxij { height: var(--framer-aspect-ratio-supported, 118px); } .framer-JEkyE .framer-1nbhhd2 { flex-direction: column; height: 4268px; } .framer-JEkyE .framer-y1ht98 { flex: none; height: 4272px; width: 100%; } .framer-JEkyE .framer-1w0u0rm, .framer-JEkyE .framer-1576kcz, .framer-JEkyE .framer-2h86v0, .framer-JEkyE .framer-1qrdeuv, .framer-JEkyE .framer-36973g, .framer-JEkyE .framer-3ivv41 { width: 325px; } .framer-JEkyE .framer-1jusrtg { height: 187px; width: 371px; } .framer-JEkyE .framer-2t3xxs { height: 458px; width: 325px; } .framer-JEkyE .framer-1lhufrk { height: var(--framer-aspect-ratio-supported, 201px); width: 325px; } .framer-JEkyE .framer-t7ad9n { height: 240px; width: 325px; } .framer-JEkyE .framer-fynkr7 { height: 308px; width: 325px; } .framer-JEkyE .framer-q028ns { height: 289px; width: 325px; } .framer-JEkyE .framer-ryvov9 { height: 79px; width: 365px; } .framer-JEkyE .framer-1bfo4hb { height: 372px; width: 373px; } .framer-JEkyE .framer-idinms { height: 363px; width: 325px; } .framer-JEkyE .framer-10lokq1 { height: 300px; width: 354px; } .framer-JEkyE .framer-c64tuj { height: 285px; width: 325px; } .framer-JEkyE .framer-1mvgg8z { height: 87px; width: 369px; } .framer-JEkyE .framer-15cycn9 { height: 313px; width: 346px; } .framer-JEkyE .framer-plgu5, .framer-JEkyE .framer-k9oh9w { flex-direction: column; } .framer-JEkyE .framer-1pjkd60 { flex: none; height: 904px; width: 100%; } .framer-JEkyE .framer-zn53jj-container { aspect-ratio: 1.3986928104575163 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 232px); left: 50%; right: unset; top: 202px; transform: translateX(-50%); width: 325px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7554\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"h9uSKY9lL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVwK5V6Cvo=withCSS(Component,css,\"framer-JEkyE\");export default FramerVwK5V6Cvo;FramerVwK5V6Cvo.displayName=\"Relat\\xf3rio Anual / 7 Os Destaques De 2024\";FramerVwK5V6Cvo.defaultProps={height:7554,width:1200};addFonts(FramerVwK5V6Cvo,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JXYTN5EJMI2L5HT6DLJ6ADWEKWUDLIUL/RQGLUYA34WAGWBJDMV73S4VWJ3XX5S34/UKL6CY2W4IEGAEO6DES7XSSIJFRRXNXQ.woff2\",weight:\"800\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/M2RQDXLDLQ2S4ZZ66VQTDSO3OSHWKVY7/JAIF7WXHMOCSPDMQNJH4MHWPR2PHW2YE/C5NBF6PXS6YLHRF7TAQGFAEBX23GMCRA.woff2\",weight:\"900\"}]},...Navigation5Fonts,...VideoFonts,...YouTubeFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVwK5V6Cvo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"7554\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h9uSKY9lL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "Navigation5Fonts", "getFonts", "oCLK4XCr_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "Container", "ImageWithOptimizedAppearEffect", "Image2", "ImageWithFX", "withFX", "MotionDivWithFX", "motion", "RichTextWithFX", "YouTubeFonts", "Youtube", "SlideshowFonts", "Slideshow", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "animation8", "animation9", "transition5", "textEffect", "animation10", "animation11", "transition6", "animation12", "animation13", "animation14", "animation15", "animation16", "transition7", "animation17", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "css", "FramerVwK5V6Cvo", "withCSS", "VwK5V6Cvo_default", "addFonts", "__FramerMetadata__"]
}
