{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/twFZnRYYXsWv4kvew2h2/7XKknyNIFXrh9Xn4mIgE/jmEoZiI3V.js", "ssg:https://framerusercontent.com/modules/yaxU7iesiP0Q8nCLkDfT/ktUejXmfIVDvgPMH4ywQ/DownloadlButton.js", "ssg:https://framerusercontent.com/modules/ou1SNz4vZK5XzZdz9KI5/oEuyXRaBd9aIER7sQQYw/An_WN6VGk.js", "ssg:https://framerusercontent.com/modules/aLlP6ocwFrv1f7AagQWG/Pn1u6SMOB1BWVtvFn5PJ/G_2ACUE_F.js", "ssg:https://framerusercontent.com/modules/pjkkakixvML0rZoaspuV/oX6TDoeIT6H4qpBmpgao/AhWAgNKPM.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 (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"eosCbmodw\",\"MCKWykAES\",\"MB3fMuHmr\",\"M_CmS4eqv\",\"gWt663Ztk\",\"BRuQ59ESF\",\"RDJ6zFZFr\",\"Da1RZ7GeD\",\"c9LtsfRsz\"];const serializationHash=\"framer-PvQX2\";const variantClassNames={BRuQ59ESF:\"framer-v-1hkiijr\",c9LtsfRsz:\"framer-v-15t31o2\",Da1RZ7GeD:\"framer-v-1yyhsrf\",eosCbmodw:\"framer-v-fgxz30\",gWt663Ztk:\"framer-v-1habcff\",M_CmS4eqv:\"framer-v-hgmg7j\",MB3fMuHmr:\"framer-v-1hm6os7\",MCKWykAES:\"framer-v-94v1zr\",RDJ6zFZFr:\"framer-v-yususm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Imagem 1\":\"eosCbmodw\",\"Imagem 2\":\"MCKWykAES\",\"Imagem 3\":\"MB3fMuHmr\",\"Imagem 4\":\"M_CmS4eqv\",\"Imagem 5\":\"gWt663Ztk\",\"Imagem 6\":\"BRuQ59ESF\",\"Video 1\":\"RDJ6zFZFr\",\"Video 2\":\"Da1RZ7GeD\",\"Video 3\":\"c9LtsfRsz\"};const getProps=({height,id,imagem1,imagem2,imagem3,imagem4,imagem5,imagem6,imgVideo1,imgVideo2,imgVideo3,video1,video2,video3,width,...props})=>{return{...props,aS_QuuhX6:imagem6??props.aS_QuuhX6,dPgtQZC6S:imagem3??props.dPgtQZC6S,EdnKCD42z:imagem4??props.EdnKCD42z,ErAVJArIJ:imgVideo2??props.ErAVJArIJ,FYcQtph02:video3??props.FYcQtph02??\"https://tecseed.nyc3.digitaloceanspaces.com/videos/depoimento-produtor-cebola-maju-2.mp4\",IsvWcrl_C:video1??props.IsvWcrl_C??\"https://tecseed.nyc3.digitaloceanspaces.com/videos/twixx-a-biofungicida.mp4\",JHXRnS6EV:imagem5??props.JHXRnS6EV,pj0HvAOAE:video2??props.pj0HvAOAE??\"https://tecseed.nyc3.digitaloceanspaces.com/videos/depoimento-tecseed-tomate-coronel-3.mp4\",variant:humanReadableVariantMap[props.variant]??props.variant??\"eosCbmodw\",VFhDd3ksZ:imgVideo3??props.VFhDd3ksZ,vNMM9wnr7:imagem2??props.vNMM9wnr7,yIM20dgLc:imgVideo1??props.yIM20dgLc,ztmMUOFJC:imagem1??props.ztmMUOFJC};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ztmMUOFJC,vNMM9wnr7,dPgtQZC6S,EdnKCD42z,JHXRnS6EV,aS_QuuhX6,yIM20dgLc,ErAVJArIJ,VFhDd3ksZ,IsvWcrl_C,pj0HvAOAE,FYcQtph02,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eosCbmodw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapx692u6=activeVariantCallback(async(...args)=>{setVariant(\"eosCbmodw\");});const onMouseEnteri4fyyw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"eosCbmodw\"),400);});const onTap1abf2tk=activeVariantCallback(async(...args)=>{setVariant(\"MCKWykAES\");});const onMouseEnter1bhsc45=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MCKWykAES\"),400);});const onTap44dwus=activeVariantCallback(async(...args)=>{setVariant(\"MB3fMuHmr\");});const onMouseEnter1tr25b3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MB3fMuHmr\"),400);});const onTapi2ka5t=activeVariantCallback(async(...args)=>{setVariant(\"M_CmS4eqv\");});const onMouseEnter1by6vez=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"M_CmS4eqv\"),400);});const onTapsr4ret=activeVariantCallback(async(...args)=>{setVariant(\"gWt663Ztk\");});const onMouseEnter1bds5qs=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gWt663Ztk\"),400);});const onTap1icnos7=activeVariantCallback(async(...args)=>{setVariant(\"BRuQ59ESF\");});const onMouseEnterxllff4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BRuQ59ESF\"),400);});const onTap1bmbcig=activeVariantCallback(async(...args)=>{setVariant(\"RDJ6zFZFr\");});const onMouseEnterxhqhup=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RDJ6zFZFr\"),400);});const onTap44zwnp=activeVariantCallback(async(...args)=>{setVariant(\"Da1RZ7GeD\");});const onMouseEnter11qo6am=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Da1RZ7GeD\"),400);});const onTap1xhvlvo=activeVariantCallback(async(...args)=>{setVariant(\"c9LtsfRsz\");});const onMouseEnter1obyrb1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"c9LtsfRsz\"),400);});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"RDJ6zFZFr\",\"Da1RZ7GeD\",\"c9LtsfRsz\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"RDJ6zFZFr\",\"Da1RZ7GeD\",\"c9LtsfRsz\"].includes(baseVariant))return false;return true;};const visible=isSet(ztmMUOFJC);const visible1=isSet(vNMM9wnr7);const visible2=isSet(dPgtQZC6S);const visible3=isSet(EdnKCD42z);const visible4=isSet(JHXRnS6EV);const visible5=isSet(aS_QuuhX6);const visible6=isSet(yIM20dgLc);const visible7=isSet(ErAVJArIJ);const visible8=isSet(VFhDd3ksZ);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fgxz30\",className,classNames),\"data-framer-name\":\"Imagem 1\",layoutDependency:layoutDependency,layoutId:\"eosCbmodw\",ref:refBinding,style:{...style},...addPropertyOverrides({BRuQ59ESF:{\"data-framer-name\":\"Imagem 6\"},c9LtsfRsz:{\"data-framer-name\":\"Video 3\"},Da1RZ7GeD:{\"data-framer-name\":\"Video 2\"},gWt663Ztk:{\"data-framer-name\":\"Imagem 5\"},M_CmS4eqv:{\"data-framer-name\":\"Imagem 4\"},MB3fMuHmr:{\"data-framer-name\":\"Imagem 3\"},MCKWykAES:{\"data-framer-name\":\"Imagem 2\"},RDJ6zFZFr:{\"data-framer-name\":\"Video 1\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-ytk5tl\",\"data-framer-name\":\"Media\",layoutDependency:layoutDependency,layoutId:\"PyRz3cYiW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wm8zl2-container\",\"data-framer-name\":\"video YT\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K76mgi5uO-container\",name:\"video YT\",nodeId:\"K76mgi5uO\",rendersWithMotion:true,scopeId:\"jmEoZiI3V\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"K76mgi5uO\",isMixedBorderRadius:false,isRed:true,layoutId:\"K76mgi5uO\",name:\"video YT\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:IsvWcrl_C,width:\"100%\",...addPropertyOverrides({c9LtsfRsz:{url:FYcQtph02},Da1RZ7GeD:{url:pj0HvAOAE}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ztmMUOFJC)},className:\"framer-7i8f63\",layoutDependency:layoutDependency,layoutId:\"mHFDxmKHG\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},...addPropertyOverrides({BRuQ59ESF:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(aS_QuuhX6)}},gWt663Ztk:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(JHXRnS6EV)}},M_CmS4eqv:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(EdnKCD42z)}},MB3fMuHmr:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(dPgtQZC6S)}},MCKWykAES:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(vNMM9wnr7)}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j6kyrl\",\"data-framer-name\":\"thumb\",layoutDependency:layoutDependency,layoutId:\"YF_P77P7a\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[visible&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(ztmMUOFJC)},className:\"framer-cl8213\",\"data-framer-name\":\"imagem 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vfFCEj2Uz\",onMouseEnter:onMouseEnteri4fyyw,onTap:onTapx692u6,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible1&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(vNMM9wnr7)},className:\"framer-1yqowju\",\"data-framer-name\":\"imagem 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HJjq54j1q\",onMouseEnter:onMouseEnter1bhsc45,onTap:onTap1abf2tk,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible2&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(dPgtQZC6S)},className:\"framer-1fvzziw\",\"data-framer-name\":\"imagem 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Yxp6phL3s\",onMouseEnter:onMouseEnter1tr25b3,onTap:onTap44dwus,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible3&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(EdnKCD42z)},className:\"framer-1xm5bao\",\"data-framer-name\":\"imagem 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x2ChQ34SR\",onMouseEnter:onMouseEnter1by6vez,onTap:onTapi2ka5t,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible4&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(JHXRnS6EV)},className:\"framer-8tckec\",\"data-framer-name\":\"imagem 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XBMrDiljm\",onMouseEnter:onMouseEnter1bds5qs,onTap:onTapsr4ret,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible5&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(aS_QuuhX6)},className:\"framer-q7u8fx\",\"data-framer-name\":\"imagem 6\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VB_jnxw4u\",onMouseEnter:onMouseEnterxllff4,onTap:onTap1icnos7,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible6&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(yIM20dgLc)},className:\"framer-17n5p5d\",\"data-framer-name\":\"video 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qFqiJPnfy\",onMouseEnter:onMouseEnterxhqhup,onTap:onTap1bmbcig,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible7&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(ErAVJArIJ)},className:\"framer-16f2bzj\",\"data-framer-name\":\"video 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"B2dh9dzdk\",onMouseEnter:onMouseEnter11qo6am,onTap:onTap44zwnp,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})}),visible8&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(VFhDd3ksZ)},className:\"framer-68ffoy\",\"data-framer-name\":\"video 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XoGf5t7lW\",onMouseEnter:onMouseEnter1obyrb1,onTap:onTap1xhvlvo,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PvQX2.framer-1xz3c1c, .framer-PvQX2 .framer-1xz3c1c { display: block; }\",\".framer-PvQX2.framer-fgxz30 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 556px; }\",\".framer-PvQX2 .framer-ytk5tl { align-content: center; align-items: center; aspect-ratio: 1.39 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 417px); justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-PvQX2 .framer-wm8zl2-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-PvQX2 .framer-7i8f63 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 417px); position: relative; width: 100%; }\",\".framer-PvQX2 .framer-j6kyrl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: center; min-height: 70px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PvQX2 .framer-cl8213, .framer-PvQX2 .framer-1yqowju, .framer-PvQX2 .framer-1fvzziw, .framer-PvQX2 .framer-1xm5bao, .framer-PvQX2 .framer-8tckec, .framer-PvQX2 .framer-q7u8fx, .framer-PvQX2 .framer-17n5p5d, .framer-PvQX2 .framer-16f2bzj, .framer-PvQX2 .framer-68ffoy { cursor: pointer; flex: none; height: 60px; position: relative; width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PvQX2.framer-fgxz30, .framer-PvQX2 .framer-ytk5tl, .framer-PvQX2 .framer-j6kyrl { gap: 0px; } .framer-PvQX2.framer-fgxz30 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PvQX2.framer-fgxz30 > :first-child, .framer-PvQX2 .framer-ytk5tl > :first-child { margin-top: 0px; } .framer-PvQX2.framer-fgxz30 > :last-child, .framer-PvQX2 .framer-ytk5tl > :last-child { margin-bottom: 0px; } .framer-PvQX2 .framer-ytk5tl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PvQX2 .framer-j6kyrl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PvQX2 .framer-j6kyrl > :first-child { margin-left: 0px; } .framer-PvQX2 .framer-j6kyrl > :last-child { margin-right: 0px; } }\",\".framer-PvQX2.framer-v-yususm .framer-ytk5tl, .framer-PvQX2.framer-v-1yyhsrf .framer-ytk5tl, .framer-PvQX2.framer-v-15t31o2 .framer-ytk5tl { height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 503\n * @framerIntrinsicWidth 556\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MCKWykAES\":{\"layout\":[\"fixed\",\"auto\"]},\"MB3fMuHmr\":{\"layout\":[\"fixed\",\"auto\"]},\"M_CmS4eqv\":{\"layout\":[\"fixed\",\"auto\"]},\"gWt663Ztk\":{\"layout\":[\"fixed\",\"auto\"]},\"BRuQ59ESF\":{\"layout\":[\"fixed\",\"auto\"]},\"RDJ6zFZFr\":{\"layout\":[\"fixed\",\"auto\"]},\"Da1RZ7GeD\":{\"layout\":[\"fixed\",\"auto\"]},\"c9LtsfRsz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ztmMUOFJC\":\"imagem1\",\"vNMM9wnr7\":\"imagem2\",\"dPgtQZC6S\":\"imagem3\",\"EdnKCD42z\":\"imagem4\",\"JHXRnS6EV\":\"imagem5\",\"aS_QuuhX6\":\"imagem6\",\"yIM20dgLc\":\"imgVideo1\",\"ErAVJArIJ\":\"imgVideo2\",\"VFhDd3ksZ\":\"imgVideo3\",\"IsvWcrl_C\":\"video1\",\"pj0HvAOAE\":\"video2\",\"FYcQtph02\":\"video3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjmEoZiI3V=withCSS(Component,css,\"framer-PvQX2\");export default FramerjmEoZiI3V;FramerjmEoZiI3V.displayName=\"Gallery - Sementes\";FramerjmEoZiI3V.defaultProps={height:503,width:556};addPropertyControls(FramerjmEoZiI3V,{variant:{options:[\"eosCbmodw\",\"MCKWykAES\",\"MB3fMuHmr\",\"M_CmS4eqv\",\"gWt663Ztk\",\"BRuQ59ESF\",\"RDJ6zFZFr\",\"Da1RZ7GeD\",\"c9LtsfRsz\"],optionTitles:[\"Imagem 1\",\"Imagem 2\",\"Imagem 3\",\"Imagem 4\",\"Imagem 5\",\"Imagem 6\",\"Video 1\",\"Video 2\",\"Video 3\"],title:\"Variant\",type:ControlType.Enum},ztmMUOFJC:{description:\"\",title:\"Imagem 1\",type:ControlType.ResponsiveImage},vNMM9wnr7:{title:\"Imagem 2\",type:ControlType.ResponsiveImage},dPgtQZC6S:{title:\"Imagem 3\",type:ControlType.ResponsiveImage},EdnKCD42z:{title:\"Imagem 4\",type:ControlType.ResponsiveImage},JHXRnS6EV:{title:\"Imagem 5\",type:ControlType.ResponsiveImage},aS_QuuhX6:{title:\"Imagem 6\",type:ControlType.ResponsiveImage},yIM20dgLc:{title:\"Img - Video 1\",type:ControlType.ResponsiveImage},ErAVJArIJ:{title:\"Img - Video 2\",type:ControlType.ResponsiveImage},VFhDd3ksZ:{title:\"Img - Video 3\",type:ControlType.ResponsiveImage},IsvWcrl_C:{defaultValue:\"https://tecseed.nyc3.digitaloceanspaces.com/videos/twixx-a-biofungicida.mp4\",title:\"Video 1\",type:ControlType.String},pj0HvAOAE:{defaultValue:\"https://tecseed.nyc3.digitaloceanspaces.com/videos/depoimento-tecseed-tomate-coronel-3.mp4\",title:\"Video 2\",type:ControlType.String},FYcQtph02:{defaultValue:\"https://tecseed.nyc3.digitaloceanspaces.com/videos/depoimento-produtor-cebola-maju-2.mp4\",title:\"Video 3\",type:ControlType.String}});addFonts(FramerjmEoZiI3V,[{explicitInter:true,fonts:[]},...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjmEoZiI3V\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MCKWykAES\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MB3fMuHmr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M_CmS4eqv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gWt663Ztk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BRuQ59ESF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RDJ6zFZFr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Da1RZ7GeD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c9LtsfRsz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"503\",\"framerVariables\":\"{\\\"ztmMUOFJC\\\":\\\"imagem1\\\",\\\"vNMM9wnr7\\\":\\\"imagem2\\\",\\\"dPgtQZC6S\\\":\\\"imagem3\\\",\\\"EdnKCD42z\\\":\\\"imagem4\\\",\\\"JHXRnS6EV\\\":\\\"imagem5\\\",\\\"aS_QuuhX6\\\":\\\"imagem6\\\",\\\"yIM20dgLc\\\":\\\"imgVideo1\\\",\\\"ErAVJArIJ\\\":\\\"imgVideo2\\\",\\\"VFhDd3ksZ\\\":\\\"imgVideo3\\\",\\\"IsvWcrl_C\\\":\\\"video1\\\",\\\"pj0HvAOAE\\\":\\\"video2\\\",\\\"FYcQtph02\\\":\\\"video3\\\"}\",\"framerIntrinsicWidth\":\"556\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jmEoZiI3V.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";export function DownloadButton({file,fileName}){const handleDownload=async()=>{if(!file){console.warn(\"Arquivo n\\xe3o definido.\");return;}try{const response=await fetch(file);const blob=await response.blob();const url=URL.createObjectURL(blob);const link=document.createElement(\"a\");link.href=url;link.download=`${fileName||\"arquivo\"}.pdf`;document.body.appendChild(link);link.click();document.body.removeChild(link);URL.revokeObjectURL(url);}catch(error){console.error(\"Erro ao baixar o arquivo:\",error);}};return /*#__PURE__*/_jsxs(\"button\",{onClick:handleDownload,style:{width:\"100%\",height:\"40px\",padding:\"0 20px\",background:\"#003333\",color:\"white\",border:\"none\",cursor:\"pointer\",fontSize:\"16px\",fontFamily:\"'Nunito', sans-serif\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",gap:\"8px\"},children:[/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"18\",height:\"18\",fill:\"white\",viewBox:\"0 0 256 256\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})}),\"FICHA T\\xc9CNICA\"]});}addPropertyControls(DownloadButton,{file:{title:\"Arquivo PDF\",type:ControlType.File,allowedFileTypes:[\"pdf\"]},fileName:{title:\"Nome do Arquivo\",type:ControlType.String,placeholder:\"ex: ficha-tecnica\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"DownloadButton\":{\"type\":\"reactComponent\",\"name\":\"DownloadButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DownloadlButton.map", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Nunito-regular\",\"FS;Nunito-semibold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TLYIEBMLK2WJ52NPZGXWE4JFG7QMD4YE/ZWEB6SEZRQRYG74CNM4GTGHBKMZNOJGI/JU4XHYYDF6C56R3QGL2R44ZSIUFUMIKR.woff2\",weight:\"400\"},{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LX36A2EOUCLIDVM4XR3ZIWY6CX4DQYKE/YM36K55HS52MFB6AKX3BB366JCLDQFJF/MKTS7VJCH3IMUVTV3MN54KOVFE4Y43BD.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-Z8qh9 .framer-styles-preset-6pt6mp:not(.rich-text-wrapper), .framer-Z8qh9 .framer-styles-preset-6pt6mp.rich-text-wrapper p { --framer-font-family: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 10px; --framer-text-alignment: start; --framer-text-color: var(--token-3d60ef1f-9518-4289-8c47-24eb6a961739, #212121); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Z8qh9 .framer-styles-preset-6pt6mp:not(.rich-text-wrapper), .framer-Z8qh9 .framer-styles-preset-6pt6mp.rich-text-wrapper p { --framer-font-family: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 10px; --framer-text-alignment: start; --framer-text-color: var(--token-3d60ef1f-9518-4289-8c47-24eb6a961739, #212121); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Z8qh9 .framer-styles-preset-6pt6mp:not(.rich-text-wrapper), .framer-Z8qh9 .framer-styles-preset-6pt6mp.rich-text-wrapper p { --framer-font-family: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold: \"Nunito\", \"Nunito Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 600; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 10px; --framer-text-alignment: start; --framer-text-color: var(--token-3d60ef1f-9518-4289-8c47-24eb6a961739, #212121); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Z8qh9\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-q02Rs .framer-styles-preset-co2vx8 { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-q02Rs\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e942a9a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button from\"#framer/local/canvasComponent/DFE_yjc22/DFE_yjc22.js\";import GallerySementes from\"#framer/local/canvasComponent/jmEoZiI3V/jmEoZiI3V.js\";import{DownloadButton}from\"#framer/local/codeFile/Ygo2Nt7/DownloadlButton.js\";import Sementes from\"#framer/local/collection/pjun0Yz5x/pjun0Yz5x.js\";import Linhas from\"#framer/local/collection/w7jog2xtl/w7jog2xtl.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle4 from\"#framer/local/css/An_WN6VGk/An_WN6VGk.js\";import*as sharedStyle5 from\"#framer/local/css/Fqd2ZM4cK/Fqd2ZM4cK.js\";import*as sharedStyle6 from\"#framer/local/css/G_2ACUE_F/G_2ACUE_F.js\";import*as sharedStyle2 from\"#framer/local/css/IqLtP5nLZ/IqLtP5nLZ.js\";import*as sharedStyle1 from\"#framer/local/css/nFyHQ1L66/nFyHQ1L66.js\";import*as sharedStyle3 from\"#framer/local/css/nTb4OvTRq/nTb4OvTRq.js\";import*as sharedStyle7 from\"#framer/local/css/VPXKKB2D8/VPXKKB2D8.js\";import*as sharedStyle from\"#framer/local/css/zJCtjcnPV/zJCtjcnPV.js\";import metadataProvider from\"#framer/local/webPageMetadata/AhWAgNKPM/AhWAgNKPM.js\";const ButtonFonts=getFonts(Button);const DownloadButtonFonts=getFonts(DownloadButton);const GallerySementesFonts=getFonts(GallerySementes);const breakpoints={K6GsCQXuE:\"(min-width: 810px) and (max-width: 1199px)\",Kc9q3HRYE:\"(max-width: 809px)\",Z9dBewC5m:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-p61vL\";const variantClassNames={K6GsCQXuE:\"framer-v-132z46o\",Kc9q3HRYE:\"framer-v-2r11cf\",Z9dBewC5m:\"framer-v-bvs4th\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"DXx5ba5KX\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Z9dBewC5m\",Phone:\"Kc9q3HRYE\",Tablet:\"K6GsCQXuE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Z9dBewC5m\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"AhWAgNKPM\",name:\"nYsng4ieX\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nYsng4ieX\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"AhWAgNKPM\",data:Sementes,type:\"Collection\"},right:{alias:\"nYsng4ieX\",data:Linhas,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"AhWAgNKPM\",name:\"id\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"zj5hEFX2u\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"BTrayHynq\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"QolJVbWV8\",type:\"Identifier\"},{alias:\"nYsng4ieX.gXE8JRy2n\",collection:\"nYsng4ieX\",name:\"gXE8JRy2n\",type:\"Identifier\"},{alias:\"nYsng4ieX.BodW11Vq2\",collection:\"nYsng4ieX\",name:\"BodW11Vq2\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"mpCX_uHO3\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"XmUPll6aj\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"uRkZs68FW\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"CnBzB_cdx\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"auLDqiZDk\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"cyfpcvrNa\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"bRH8Dt5OM\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"vnVF6QLWO\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"WpswcJtLB\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"eB9FuWq4j\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"e1YK3ZaLo\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"Wfk8xozYq\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"WMTnZ6UMS\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"MgVV11K54\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"o_ZJzBCgT\",type:\"Identifier\"},{collection:\"AhWAgNKPM\",name:\"fB0FFqsA0\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"AhWAgNKPM\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,nYsng4ieX_BodW11Vq2=getFromCurrentRouteData(\"nYsng4ieX.BodW11Vq2\")??\"\",nYsng4ieX_gXE8JRy2n=getFromCurrentRouteData(\"nYsng4ieX.gXE8JRy2n\")??\"\",zj5hEFX2u=getFromCurrentRouteData(\"zj5hEFX2u\")??\"\",XmUPll6aj=getFromCurrentRouteData(\"XmUPll6aj\")??\"\",auLDqiZDk=getFromCurrentRouteData(\"auLDqiZDk\"),BTrayHynq=getFromCurrentRouteData(\"BTrayHynq\")??\"\",mpCX_uHO3=getFromCurrentRouteData(\"mpCX_uHO3\")??\"\",uRkZs68FW=getFromCurrentRouteData(\"uRkZs68FW\")??\"\",CnBzB_cdx=getFromCurrentRouteData(\"CnBzB_cdx\")??\"\",QolJVbWV8=getFromCurrentRouteData(\"QolJVbWV8\"),cyfpcvrNa=getFromCurrentRouteData(\"cyfpcvrNa\"),bRH8Dt5OM=getFromCurrentRouteData(\"bRH8Dt5OM\"),vnVF6QLWO=getFromCurrentRouteData(\"vnVF6QLWO\"),WpswcJtLB=getFromCurrentRouteData(\"WpswcJtLB\"),eB9FuWq4j=getFromCurrentRouteData(\"eB9FuWq4j\"),e1YK3ZaLo=getFromCurrentRouteData(\"e1YK3ZaLo\"),Wfk8xozYq=getFromCurrentRouteData(\"Wfk8xozYq\"),WMTnZ6UMS=getFromCurrentRouteData(\"WMTnZ6UMS\"),MgVV11K54=getFromCurrentRouteData(\"MgVV11K54\")??\"\",o_ZJzBCgT=getFromCurrentRouteData(\"o_ZJzBCgT\")??\"\",fB0FFqsA0=getFromCurrentRouteData(\"fB0FFqsA0\")??\"\",BTrayHynqDXx5ba5KX,QolJVbWV8DXx5ba5KX,zj5hEFX2uDXx5ba5KX,idDXx5ba5KX,id=getFromCurrentRouteData(\"id\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const visible=isSet(auLDqiZDk);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Z9dBewC5m\",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-bvs4th\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w9vptc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhapi6\",\"data-framer-name\":\"Direita\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4jjbt\",\"data-framer-name\":\"Breadcrumb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xcyl4s\",\"data-styles-preset\":\"Vtno_2ycB\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"OvYhFTeVH\",openInNewTab:false,scopeId:\"AhWAgNKPM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gxelz3\",\"data-styles-preset\":\"zJCtjcnPV\",children:\"Home\"})})})}),className:\"framer-1oz7lhj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xcyl4s\",\"data-styles-preset\":\"Vtno_2ycB\",children:\">\"})}),className:\"framer-15yk2z2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xcyl4s\",\"data-styles-preset\":\"Vtno_2ycB\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oadjC9dpz\"},motionChild:true,nodeId:\"Mt9tTLOPG\",openInNewTab:false,scopeId:\"AhWAgNKPM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gxelz3\",\"data-styles-preset\":\"zJCtjcnPV\",children:\"Sementes\"})})})}),className:\"framer-1382uvi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xcyl4s\",\"data-styles-preset\":\"Vtno_2ycB\",children:\">\"})}),className:\"framer-w314ae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xcyl4s\",\"data-styles-preset\":\"Vtno_2ycB\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{BodW11Vq2:nYsng4ieX_BodW11Vq2},webPageId:\"JIgG0t6Ky\"},motionChild:true,nodeId:\"bKRjM_5tg\",openInNewTab:false,scopeId:\"AhWAgNKPM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gxelz3\",\"data-styles-preset\":\"zJCtjcnPV\",children:\"Linha Platina\"})})})}),className:\"framer-152ttff\",fonts:[\"Inter\"],text:nYsng4ieX_gXE8JRy2n,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wy3snb\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-zbswok\",\"data-styles-preset\":\"nFyHQ1L66\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ab\\xf3bora Canh\\xe3o Seca Gigante\"})}),className:\"framer-1titfkc\",fonts:[\"Inter\"],text:zj5hEFX2u,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a379vu\",\"data-styles-preset\":\"IqLtP5nLZ\",children:\"Ab\\xf3bora seca de planta vigorosa, com h\\xe1bito de crescimento em rama, frutos r\\xfasticos e uniformes.\"})}),className:\"framer-wtjeg5\",fonts:[\"Inter\"],text:XmUPll6aj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmp4nl\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GhSo7AGmr\"},implicitPathVariables:undefined},{href:{webPageId:\"GhSo7AGmr\"},implicitPathVariables:undefined},{href:{webPageId:\"GhSo7AGmr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K6GsCQXuE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px) / 2, 1px)`},Kc9q3HRYE:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,y:(componentViewport?.y||0)+0+0+40+0+0+272+0+-108}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+40+0+280+0+-108,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iq2m85-container\",\"data-framer-name\":\"onde comprar\",name:\"onde comprar\",nodeId:\"cYHBPNZPn\",scopeId:\"AhWAgNKPM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K6GsCQXuE:{MhAWDEWuJ:resolvedLinks[1]},Kc9q3HRYE:{MhAWDEWuJ:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{AhhDSO9Gc:true,CEinFlcDN:false,ebTiAMvKs:\"CBaiGCE56\",ELu9VlTPF:false,height:\"100%\",id:\"cYHBPNZPn\",layoutId:\"cYHBPNZPn\",M0eZr9d7K:\"Mais\\xa0Informa\\xe7\\xf5es\",MhAWDEWuJ:resolvedLinks[0],name:\"onde comprar\",style:{height:\"100%\",width:\"100%\"},variant:\"Msij2_L9D\",width:\"100%\"})})})})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-803nkl-container\",isAuthoredByUser:true,nodeId:\"sxm8mtR0K\",scopeId:\"AhWAgNKPM\",children:/*#__PURE__*/_jsx(DownloadButton,{file:auLDqiZDk,fileName:prefix(BTrayHynq,\"ficha-tecnica-\"),height:\"100%\",id:\"sxm8mtR0K\",layoutId:\"sxm8mtR0K\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x14epq\",\"data-framer-name\":\"Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q6z452\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-alw0ok\",\"data-styles-preset\":\"nTb4OvTRq\",children:\"Caracter\\xedsticas\"})}),className:\"framer-13p36ft\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/HTBsNkEMAb7TUGaO3DBy/CodeBlock.js:default\":componentPresets.props[\"mBHVwXuAD\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:mpCX_uHO3,className:\"framer-v5vcck\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-gxelz3\",code:\"framer-styles-preset-co2vx8\",h1:\"framer-styles-preset-mf9pje\",h2:\"framer-styles-preset-8ne1lw\",h3:\"framer-styles-preset-1cu2d2n\",h4:\"framer-styles-preset-x2qcab\",h5:\"framer-styles-preset-16jk8bm\",h6:\"framer-styles-preset-19wnwdr\",img:\"framer-styles-preset-1v5pz5r\",p:\"framer-styles-preset-6pt6mp\",table:\"framer-styles-preset-id661r\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15zamse\",\"data-border\":true,\"data-framer-name\":\"Ciclo M\\xe9dio\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-alw0ok\",\"data-styles-preset\":\"nTb4OvTRq\",children:\"Ciclo m\\xe9dio\"})}),className:\"framer-1dx0j00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a379vu\",\"data-styles-preset\":\"IqLtP5nLZ\",children:\"100 a 150 dias de ciclo\"})}),className:\"framer-lyil3h\",fonts:[\"Inter\"],text:uRkZs68FW,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bryfz0\",\"data-border\":true,\"data-framer-name\":\"Embalagens\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-alw0ok\",\"data-styles-preset\":\"nTb4OvTRq\",children:\"Embalagens\"})}),className:\"framer-h3twgq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a379vu\",\"data-styles-preset\":\"IqLtP5nLZ\",children:\"embalagem tipo 1\"})}),className:\"framer-1cjfoq3\",fonts:[\"Inter\"],text:CnBzB_cdx,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K6GsCQXuE:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+193.3},Kc9q3HRYE:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px)`,y:(componentViewport?.y||0)+0+0+40+857.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:503,width:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 88px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+213.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-amw9ou-container\",nodeId:\"jAPo6uGej\",scopeId:\"AhWAgNKPM\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kc9q3HRYE:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(GallerySementes,{aS_QuuhX6:toResponsiveImage(eB9FuWq4j),dPgtQZC6S:toResponsiveImage(bRH8Dt5OM),EdnKCD42z:toResponsiveImage(vnVF6QLWO),ErAVJArIJ:toResponsiveImage(Wfk8xozYq),FYcQtph02:fB0FFqsA0,height:\"100%\",id:\"jAPo6uGej\",IsvWcrl_C:MgVV11K54,JHXRnS6EV:toResponsiveImage(WpswcJtLB),layoutId:\"jAPo6uGej\",pj0HvAOAE:o_ZJzBCgT,style:{height:\"100%\",width:\"100%\"},variant:\"eosCbmodw\",VFhDd3ksZ:toResponsiveImage(WMTnZ6UMS),vNMM9wnr7:toResponsiveImage(cyfpcvrNa),width:\"100%\",yIM20dgLc:toResponsiveImage(e1YK3ZaLo),ztmMUOFJC:toResponsiveImage(QolJVbWV8)})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hw6muv\",\"data-framer-name\":\"Sementes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ijoqc\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-x2qcab\",\"data-styles-preset\":\"qhjw4QbL3\",style:{\"--framer-text-alignment\":\"center\"},children:\"PRODUTOS RELACIONADOS\"})}),className:\"framer-yv7dh4\",\"data-framer-name\":\"Produtos Relacionados\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5fu3n\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K6GsCQXuE:{pageSize:3,query:{from:{alias:\"DXx5ba5KX\",data:Sementes,type:\"Collection\"},orderBy:[{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"}],select:[{collection:\"DXx5ba5KX\",name:\"BTrayHynq\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"QolJVbWV8\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:id},operator:\"in\",right:{collection:\"DXx5ba5KX\",name:\"oKaBdV3ce\",type:\"Identifier\"},type:\"BinaryOperation\"}}},Kc9q3HRYE:{pageSize:3,query:{from:{alias:\"DXx5ba5KX\",data:Sementes,type:\"Collection\"},orderBy:[{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"}],select:[{collection:\"DXx5ba5KX\",name:\"BTrayHynq\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"QolJVbWV8\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:id},operator:\"in\",right:{collection:\"DXx5ba5KX\",name:\"oKaBdV3ce\",type:\"Identifier\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:4,query:{from:{alias:\"DXx5ba5KX\",data:Sementes,type:\"Collection\"},orderBy:[{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"}],select:[{collection:\"DXx5ba5KX\",name:\"BTrayHynq\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"QolJVbWV8\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"zj5hEFX2u\",type:\"Identifier\"},{collection:\"DXx5ba5KX\",name:\"id\",type:\"Identifier\"}],where:{left:{type:\"LiteralValue\",value:id},operator:\"in\",right:{collection:\"DXx5ba5KX\",name:\"oKaBdV3ce\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BTrayHynq:BTrayHynqDXx5ba5KX,id:idDXx5ba5KX,QolJVbWV8:QolJVbWV8DXx5ba5KX,zj5hEFX2u:zj5hEFX2uDXx5ba5KX},index)=>{BTrayHynqDXx5ba5KX??=\"\";zj5hEFX2uDXx5ba5KX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DXx5ba5KX-${idDXx5ba5KX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BTrayHynq:BTrayHynqDXx5ba5KX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{BTrayHynq:BTrayHynqDXx5ba5KX},webPageId:\"AhWAgNKPM\"},motionChild:true,nodeId:\"S8YInm9FU\",scopeId:\"AhWAgNKPM\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-tsjw0w framer-g6vvw9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K6GsCQXuE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+889.6+40+19.2+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 112px) / 3, 50px)`,...toResponsiveImage(QolJVbWV8DXx5ba5KX),...{positionX:\"center\",positionY:\"center\"}}},Kc9q3HRYE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1440.6+40+19.2+0+0+0+0),sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 32px, 50px)`,...toResponsiveImage(QolJVbWV8DXx5ba5KX),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+929.6+40+19.2+0+0+0+0),sizes:\"266px\",...toResponsiveImage(QolJVbWV8DXx5ba5KX),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ug8k7b\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a379vu\",\"data-styles-preset\":\"IqLtP5nLZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Abobrinha Caserta\"})}),className:\"framer-1olrna6\",\"data-framer-name\":\"Semente\",fonts:[\"Inter\"],text:zj5hEFX2uDXx5ba5KX,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idDXx5ba5KX);})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p61vL.framer-g6vvw9, .framer-p61vL .framer-g6vvw9 { display: block; }\",\".framer-p61vL.framer-bvs4th { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-p61vL .framer-w9vptc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-p61vL .framer-hhapi6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-p61vL .framer-1a4jjbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-1oz7lhj, .framer-p61vL .framer-1382uvi, .framer-p61vL .framer-152ttff { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p61vL .framer-15yk2z2, .framer-p61vL .framer-w314ae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p61vL .framer-1wy3snb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-1titfkc, .framer-p61vL .framer-wtjeg5, .framer-p61vL .framer-13p36ft, .framer-p61vL .framer-v5vcck, .framer-p61vL .framer-1dx0j00, .framer-p61vL .framer-lyil3h, .framer-p61vL .framer-h3twgq, .framer-p61vL .framer-1cjfoq3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p61vL .framer-cmp4nl, .framer-p61vL .framer-19ijoqc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-iq2m85-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-p61vL .framer-803nkl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-p61vL .framer-1x14epq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-q6z452, .framer-p61vL .framer-15zamse, .framer-p61vL .framer-1bryfz0 { --border-bottom-width: 1px; --border-color: var(--token-3d60ef1f-9518-4289-8c47-24eb6a961739, #212121); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-amw9ou-container { flex: 1 0 0px; height: 503px; position: relative; width: 1px; }\",\".framer-p61vL .framer-hw6muv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px 32px 40px 32px; position: relative; width: 1200px; }\",\".framer-p61vL .framer-yv7dh4 { --framer-paragraph-spacing: 26px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p61vL .framer-1q5fu3n { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-p61vL .framer-tsjw0w { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-p61vL .framer-ug8k7b { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-p61vL .framer-1olrna6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-p61vL[data-border=\"true\"]::after, .framer-p61vL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-p61vL.framer-bvs4th { width: 810px; } .framer-p61vL .framer-w9vptc { gap: 16px; padding: 40px 24px 0px 24px; } .framer-p61vL .framer-hhapi6 { padding: 0px; } .framer-p61vL .framer-hw6muv { width: 100%; } .framer-p61vL .framer-1q5fu3n { grid-template-columns: repeat(3, minmax(50px, 1fr)); } .framer-p61vL .framer-ug8k7b { height: 150px; }}\",\"@media (max-width: 809px) { .framer-p61vL.framer-bvs4th { width: 390px; } .framer-p61vL .framer-w9vptc { flex-direction: column; gap: 16px; padding: 40px 16px 0px 16px; } .framer-p61vL .framer-hhapi6 { flex: none; width: 100%; } .framer-p61vL .framer-1a4jjbt { order: 0; } .framer-p61vL .framer-1wy3snb { order: 1; padding: 16px 0px 24px 0px; } .framer-p61vL .framer-cmp4nl { order: 2; } .framer-p61vL .framer-1x14epq { order: 3; } .framer-p61vL .framer-amw9ou-container { flex: none; height: auto; width: 100%; } .framer-p61vL .framer-hw6muv { padding: 40px 16px 40px 16px; width: 100%; } .framer-p61vL .framer-1q5fu3n { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-p61vL .framer-ug8k7b { height: 180px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1412\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"K6GsCQXuE\":{\"layout\":[\"fixed\",\"auto\"]},\"Kc9q3HRYE\":{\"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 FramerAhWAgNKPM=withCSS(Component,css,\"framer-p61vL\");export default FramerAhWAgNKPM;FramerAhWAgNKPM.displayName=\"Page\";FramerAhWAgNKPM.defaultProps={height:1412,width:1200};addFonts(FramerAhWAgNKPM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...DownloadButtonFonts,...GallerySementesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...componentPresets.fonts?.[\"mBHVwXuAD\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"mBHVwXuAD\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAhWAgNKPM\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"1412\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K6GsCQXuE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kc9q3HRYE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"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", "YouTubeFonts", "getFonts", "Youtube", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "isSet", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "imagem1", "imagem2", "imagem3", "imagem4", "imagem5", "imagem6", "imgVideo1", "imgVideo2", "imgVideo3", "video1", "video2", "video3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ztmMUOFJC", "vNMM9wnr7", "dPgtQZC6S", "EdnKCD42z", "JHXRnS6EV", "aS_QuuhX6", "yIM20dgLc", "ErAVJArIJ", "VFhDd3ksZ", "IsvWcrl_C", "pj0HvAOAE", "FYcQtph02", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapx692u6", "args", "onMouseEnteri4fyyw", "onTap1abf2tk", "onMouseEnter1bhsc45", "onTap44dwus", "onMouseEnter1tr25b3", "onTapi2ka5t", "onMouseEnter1by6vez", "onTapsr4ret", "onMouseEnter1bds5qs", "onTap1icnos7", "onMouseEnterxllff4", "onTap1bmbcig", "onMouseEnterxhqhup", "onTap44zwnp", "onMouseEnter11qo6am", "onTap1xhvlvo", "onMouseEnter1obyrb1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramerjmEoZiI3V", "withCSS", "jmEoZiI3V_default", "addPropertyControls", "ControlType", "addFonts", "DownloadButton", "file", "fileName", "u", "blob", "url", "link", "error", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "DFE_yjc22_default", "DownloadButtonFonts", "DownloadButton", "GallerySementesFonts", "jmEoZiI3V_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "prefix", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "pjun0Yz5x_default", "w7jog2xtl_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "nYsng4ieX_BodW11Vq2", "nYsng4ieX_gXE8JRy2n", "zj5hEFX2u", "XmUPll6aj", "auLDqiZDk", "BTrayHynq", "mpCX_uHO3", "uRkZs68FW", "CnBzB_cdx", "QolJVbWV8", "cyfpcvrNa", "bRH8Dt5OM", "vnVF6QLWO", "WpswcJtLB", "eB9FuWq4j", "e1YK3ZaLo", "Wfk8xozYq", "WMTnZ6UMS", "MgVV11K54", "o_ZJzBCgT", "fB0FFqsA0", "BTrayHynqDXx5ba5KX", "QolJVbWV8DXx5ba5KX", "zj5hEFX2uDXx5ba5KX", "idDXx5ba5KX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "visible", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "Link", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "Container", "DFE_yjc22_default", "DownloadButton", "ComponentPresetsProvider", "jmEoZiI3V_default", "ChildrenCanSuspend", "collection", "l", "index", "PathVariablesContext", "getLoadingLazyAtYPosition", "Image2", "css", "FramerAhWAgNKPM", "withCSS", "AhWAgNKPM_default", "addFonts", "ButtonFonts", "DownloadButtonFonts", "GallerySementesFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
