{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/4CXKfQNd5UIrgZW0AEp7/NjzR9fnfCvbYrc9dgQ22/lbZ0UdgUE.js", "ssg:https://framerusercontent.com/modules/365kSFX6FBCEjQPIqnP1/T1FQhy1TDBIHpwx7yI2g/x4xKLRJyr.js"],
  "sourcesContent": ["import { MotionValue } from \"framer\"; // Basic MotionValue check\nexport const isMotionValue = v => v instanceof MotionValue;\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"isMotionValue\": {\n      \"type\": \"variable\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { useMotionValueEvent } from \"framer-motion\";\nimport { useRef, useEffect, useMemo, useCallback, memo } from \"react\";\nimport { ControlType, addPropertyControls, useIsInCurrentNavigationTarget } from \"framer\";\nimport { useOnEnter, useOnExit, defaultEvents, useIsOnCanvas, useIsBrowserSafari, useRadius, borderRadiusControl } from \"https://framer.com/m/framer/default-utils.js@^0.45.0\";\nimport { useAutoMotionValue } from \"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";\nvar ObjectFitType;\n(function (ObjectFitType) {\n  ObjectFitType[\"Fill\"] = \"fill\";\n  ObjectFitType[\"Contain\"] = \"contain\";\n  ObjectFitType[\"Cover\"] = \"cover\";\n  ObjectFitType[\"None\"] = \"none\";\n  ObjectFitType[\"ScaleDown\"] = \"scale-down\";\n})(ObjectFitType || (ObjectFitType = {}));\nvar SrcType;\n(function (SrcType) {\n  SrcType[\"Video\"] = \"Upload\";\n  SrcType[\"Url\"] = \"URL\";\n})(SrcType || (SrcType = {})); // Reduce renders\nfunction getProps(props) {\n  const {\n    width,\n    height,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    id,\n    children,\n    ...rest\n  } = props;\n  return rest;\n} /**\n  * VIDEO\n  *\n  * @framerIntrinsicWidth 200\n  * @framerIntrinsicHeight 112\n  *\n  * @framerSupportedLayoutWidth fixed\n  * @framerSupportedLayoutHeight any-prefer-fixed\n  */\nexport function Video(props) {\n  const newProps = getProps(props);\n  return /*#__PURE__*/_jsx(VideoMemo, {\n    ...newProps\n  });\n} /**\n  * For the useEffect hook to change progress of the video on state change.\n  * It was causing the video to restart on hydration\n  */\nlet isMountedAndReadyForProgressChanges = false;\nconst VideoMemo = /*#__PURE__*/memo(function VideoInner(props) {\n  const {\n    srcType,\n    srcFile,\n    srcUrl,\n    playing,\n    canvasPlay,\n    muted,\n    playsinline,\n    controls,\n    progress,\n    objectFit,\n    backgroundColor,\n    radius,\n    topLeft,\n    topRight,\n    bottomRight,\n    bottomLeft,\n    isMixed,\n    onSeeked,\n    onPause,\n    onPlay,\n    onEnd,\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    poster,\n    restartOnEnter,\n    posterEnabled,\n    startTime: startTimeProp,\n    volume,\n    loop\n  } = props;\n  const isInCurrentNavigationTarget = useIsInCurrentNavigationTarget();\n  const videoRef = useRef();\n  const isSafari = useIsBrowserSafari();\n  const requestingPlay = useRef(false);\n  const wasPausedOnLeave = useRef(null);\n  const wasEndedOnLeave = useRef(null);\n  const isOnCanvas = useIsOnCanvas();\n  const borderRadius = useRadius(props); // Video elements behave oddly at 100% duration\n  const startTime = useMemo(() => startTimeProp === 100 ? 99.9 : startTimeProp, [startTimeProp]);\n  const shouldPlay = !isOnCanvas || canvasPlay;\n  const autoPlay = useMemo(() => playing, []);\n  const isMuted = useMemo(() => isOnCanvas ? true : muted, [isOnCanvas, muted]);\n  const setProgress = useCallback(rawProgress => {\n    if (!videoRef.current) return;\n    const newProgress = (rawProgress === 1 ? .999 : rawProgress) * videoRef.current.duration;\n    const isAlreadySet = Math.abs(videoRef.current.currentTime - newProgress) < .1;\n    if (videoRef.current.duration > 0 && !isAlreadySet) {\n      videoRef.current.currentTime = newProgress;\n    }\n  }, []);\n  const play = useCallback(() => {\n    const isPlaying = videoRef.current.currentTime > 0 && videoRef.current.onplaying && !videoRef.current.paused && !videoRef.current.ended && videoRef.current.readyState > videoRef.current.HAVE_CURRENT_DATA;\n    if (!isPlaying && videoRef.current && !requestingPlay.current && isInCurrentNavigationTarget) {\n      requestingPlay.current = true;\n      videoRef.current.play().catch(e => {}) // It's likely fine, swallow error\n      .finally(() => requestingPlay.current = false);\n    }\n  }, []);\n  const pause = useCallback(() => {\n    if (!videoRef.current || requestingPlay.current) return;\n    videoRef.current.pause();\n  }, []); // Pause/play via props\n  useEffect(() => {\n    if (playing && shouldPlay) play();else pause();\n  }, [playing, canvasPlay]); // Change progress via prop\n  useEffect(() => {\n    if (isMountedAndReadyForProgressChanges) setProgress(startTime * .01);else isMountedAndReadyForProgressChanges = true;\n  }, [startTime, srcFile, srcUrl]);\n  const videoProgress = useAutoMotionValue(progress, {\n    transform: value => value * .01,\n    onChange: newValue => {\n      setProgress(newValue);\n    }\n  }); // Allow scrubbing with MotionValue\n  useMotionValueEvent(videoProgress, \"change\", latest => {\n    if (!isOnCanvas) setProgress(latest);\n  }); // (Prototyping) Checking if we need to play on navigation enter\n  useOnEnter(() => {\n    if (wasPausedOnLeave.current === null) return;\n    if (videoRef.current) {\n      // if (restartOnEnter) setProgress(0)\n      if (!wasEndedOnLeave && loop || !wasPausedOnLeave.current) play();\n    }\n  }); // (Prototyping) Pausing & saving playing state on navigation exit\n  useOnExit(() => {\n    if (videoRef.current) {\n      wasEndedOnLeave.current = videoRef.current.ended;\n      wasPausedOnLeave.current = videoRef.current.paused;\n      pause();\n    }\n  });\n  const src = useMemo(() => {\n    let fragment = \"\"; // if (\n    //     startTime > 0 &&\n    //     videoRef.current &&\n    //     !isNaN(videoRef.current.duration) &&\n    //     !isOnCanvas\n    // ) {\n    //     console.log(startTime, videoRef.current.duration)\n    //     fragment = `#t=${startTime * videoRef.current.duration}`\n    // }\n    if (srcType === SrcType.Url) return srcUrl + fragment;\n    if (srcType === SrcType.Video) return srcFile + fragment;\n  }, [srcType, srcFile, srcUrl, startTime]); // Autoplay via JS to work in Safari\n  useEffect(() => {\n    if (isSafari && videoRef.current && autoPlay) {\n      setTimeout(() => play(), 50);\n    }\n  }, []); // Volume Control\n  useEffect(() => {\n    if (videoRef.current && !muted) videoRef.current.volume = volume / 100;\n  }, [volume]); // When video is ready, set start-time, then autoplay if needed\n  const handleReady = () => {\n    if (videoRef.current && videoRef.current.currentTime < .3) setProgress(startTime * .01);\n    if (shouldPlay && videoRef.current && autoPlay) play();\n  };\n  return /*#__PURE__*/_jsx(\"video\", {\n    onClick,\n    onMouseEnter,\n    onMouseLeave,\n    onMouseDown,\n    onMouseUp,\n    src: src,\n    loop: loop,\n    ref: videoRef,\n    onSeeked: e => {\n      return onSeeked === null || onSeeked === void 0 ? void 0 : onSeeked(e);\n    },\n    onPause: e => {\n      return onPause === null || onPause === void 0 ? void 0 : onPause(e);\n    },\n    onPlay: e => {\n      return onPlay === null || onPlay === void 0 ? void 0 : onPlay(e);\n    },\n    onEnded: e => {\n      return onEnd === null || onEnd === void 0 ? void 0 : onEnd(e);\n    },\n    autoPlay: autoPlay && shouldPlay,\n    poster: posterEnabled ? poster : undefined,\n    onLoadedData: handleReady,\n    controls: controls,\n    muted: isMuted,\n    playsInline: playsinline,\n    style: {\n      cursor: !!onClick ? \"pointer\" : \"auto\",\n      width: \"100%\",\n      height: \"100%\",\n      borderRadius,\n      display: \"block\",\n      objectFit: objectFit,\n      backgroundColor: backgroundColor,\n      objectPosition: \"50% 50%\"\n    }\n  });\n});\nVideo.displayName = \"Video\";\nVideo.defaultProps = {\n  srcType: SrcType.Url,\n  srcUrl: \"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",\n  srcFile: \"\",\n  posterEnabled: false,\n  controls: false,\n  autoPlay: true,\n  canvasPlay: false,\n  loop: true,\n  muted: true,\n  playsinline: true,\n  restartOnEnter: false,\n  objectFit: ObjectFitType.Cover,\n  backgroundColor: \"rgba(0,0,0,0)\",\n  radius: 0,\n  volume: 25,\n  startTime: 0\n};\naddPropertyControls(Video, {\n  srcType: {\n    type: ControlType.Enum,\n    displaySegmentedControl: true,\n    title: \"Source\",\n    options: [SrcType.Url, SrcType.Video]\n  },\n  srcUrl: {\n    type: ControlType.String,\n    title: \" \",\n    placeholder: \"../example.mp4\",\n    hidden(props) {\n      return props.srcType === SrcType.Video;\n    },\n    description: \"Hosted video file URL. For Youtube, use the Youtube component.\"\n  },\n  srcFile: {\n    type: ControlType.File,\n    title: \" \",\n    allowedFileTypes: [\"mp4\"],\n    hidden(props) {\n      return props.srcType === SrcType.Url;\n    }\n  },\n  playing: {\n    type: ControlType.Boolean,\n    title: \"Playing\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  posterEnabled: {\n    type: ControlType.Boolean,\n    title: \"Poster\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  poster: {\n    type: ControlType.Image,\n    title: \" \",\n    hidden: ({\n      posterEnabled\n    }) => !posterEnabled\n  },\n  backgroundColor: {\n    type: ControlType.Color,\n    title: \"Background\"\n  },\n  ...borderRadiusControl,\n  startTime: {\n    title: \"Start Time\",\n    type: ControlType.Number,\n    min: 0,\n    max: 100,\n    step: .1,\n    unit: \"%\"\n  },\n  loop: {\n    type: ControlType.Boolean,\n    title: \"Loop\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  objectFit: {\n    type: ControlType.Enum,\n    title: \"Fit\",\n    options: [ObjectFitType.Cover, ObjectFitType.Fill, ObjectFitType.Contain, ObjectFitType.ScaleDown, ObjectFitType.None]\n  },\n  canvasPlay: {\n    type: ControlType.Boolean,\n    title: \"On Canvas\",\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n    hidden(props) {\n      return props.autoPlay === false;\n    }\n  },\n  // restartOnEnter: {\n  //     type: ControlType.Boolean,\n  //     title: \"On ReEnter\",\n  //     enabledTitle: \"Restart\",\n  //     disabledTitle: \"Resume\",\n  // },\n  controls: {\n    type: ControlType.Boolean,\n    title: \"Controls\",\n    enabledTitle: \"Show\",\n    disabledTitle: \"Hide\"\n  },\n  muted: {\n    type: ControlType.Boolean,\n    title: \"Muted\",\n    enabledTitle: \"Yes\",\n    disabledTitle: \"No\"\n  },\n  volume: {\n    type: ControlType.Number,\n    max: 100,\n    min: 0,\n    unit: \"%\",\n    hidden: ({\n      muted\n    }) => muted\n  },\n  onEnd: {\n    type: ControlType.EventHandler\n  },\n  onSeeked: {\n    type: ControlType.EventHandler\n  },\n  onPause: {\n    type: ControlType.EventHandler\n  },\n  onPlay: {\n    type: ControlType.EventHandler\n  },\n  ...defaultEvents\n});\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"VideoProps\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"Video\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Video\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerSupportedLayoutHeight\": \"any-prefer-fixed\",\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicWidth\": \"200\",\n        \"framerIntrinsicHeight\": \"112\",\n        \"framerSupportedLayoutWidth\": \"fixed\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./Video.map", "// Generated by Framer (bdd6aa1)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, addPropertyControls, ControlType, cx, getFonts, Image, resolveLink, RichText, useActiveVariantCallback, useLocaleInfo, useRouter, useVariantState, withCSS } from \"framer\";\nimport { LayoutGroup, motion, MotionConfigContext } from \"framer-motion\";\nimport * as React from \"react\";\nimport { Video } from \"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";\nimport * as sharedStyle1 from \"https://framerusercontent.com/modules/xSVz1oYpJG64cP721nQO/anTB8Wzy4uzemYLYKxqW/puB8kY46u.js\";\nimport * as sharedStyle from \"https://framerusercontent.com/modules/oEeQYyYQzCHGgdH3zLRu/GB5yZWsHrINZd23gvI3G/qW7yqrxL2.js\";\nimport Button from \"https://framerusercontent.com/modules/k8eyIOjEKDKO96jXUggo/icsgzgi7u0fx0uecxIIW/Tnz4seCKc.js\";\nconst ButtonFonts = getFonts(Button);\nconst VideoFonts = getFonts(Video);\nconst cycleOrder = [\"m3a4Qd0XX\", \"iZFSOOjRY\", \"q28jYWMDP\", \"ZzYIYf5Qr\", \"RjRexVC_g\", \"KLzNkQAlv\", \"Sm4iECdwh\", \"B0bNKXEEY\", \"ZFSVC_KgD\"];\nconst variantClassNames = {\n  B0bNKXEEY: \"framer-v-poi8oe\",\n  iZFSOOjRY: \"framer-v-l39cq9\",\n  KLzNkQAlv: \"framer-v-1zco67\",\n  m3a4Qd0XX: \"framer-v-1p90mzr\",\n  q28jYWMDP: \"framer-v-l0wj7t\",\n  RjRexVC_g: \"framer-v-1ht5hc9\",\n  Sm4iECdwh: \"framer-v-lma77k\",\n  ZFSVC_KgD: \"framer-v-19j7mwf\",\n  ZzYIYf5Qr: \"framer-v-13rxxmu\"\n};\nfunction addPropertyOverrides(overrides, ...variants) {\n  const nextOverrides = {};\n  variants === null || variants === void 0 ? void 0 : variants.forEach(variant => variant && Object.assign(nextOverrides, overrides[variant]));\n  return nextOverrides;\n}\nconst transitions = {\n  default: {\n    damping: 60,\n    delay: 0,\n    mass: 1,\n    stiffness: 500,\n    type: \"spring\"\n  }\n};\nconst transformTemplate = (_, t) => `translateY(-50%) ${t}`;\nconst Transition = ({\n  value,\n  children\n}) => {\n  const config = React.useContext(MotionConfigContext);\n  const transition = value !== null && value !== void 0 ? value : config.transition;\n  const contextValue = React.useMemo(() => ({\n    ...config,\n    transition\n  }), [JSON.stringify(transition)]);\n  return /*#__PURE__*/_jsx(MotionConfigContext.Provider, {\n    value: contextValue,\n    children: children\n  });\n};\nconst humanReadableVariantMap = {\n  \"Variant 1 - Desktop\": \"m3a4Qd0XX\",\n  \"Variant 1 - Mobile\": \"Sm4iECdwh\",\n  \"Variant 1 - Tablet\": \"ZzYIYf5Qr\",\n  \"Variant 2 - Desktop\": \"iZFSOOjRY\",\n  \"Variant 2 - Mobile\": \"B0bNKXEEY\",\n  \"Variant 2 - Tablet\": \"RjRexVC_g\",\n  \"Variant 3 - Desktop\": \"q28jYWMDP\",\n  \"Variant 3 - Mobile\": \"ZFSVC_KgD\",\n  \"Variant 3 - Tablet\": \"KLzNkQAlv\"\n};\nconst getProps = ({\n  height,\n  id,\n  text,\n  width,\n  ...props\n}) => {\n  var ref, _variant, ref1;\n  return {\n    ...props,\n    sVZzVfM4L: (ref = text !== null && text !== void 0 ? text : props.sVZzVfM4L) !== null && ref !== void 0 ? ref : \"Forma parte de la comunidad tech de habla hispana que te conecta con todo el mundo.\",\n    variant: (ref1 = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref1 !== void 0 ? ref1 : \"m3a4Qd0XX\"\n  };\n};\nconst createLayoutDependency = (props, variants) => variants.join(\"-\") + props.layoutDependency;\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    sVZzVfM4L,\n    ...restProps\n  } = getProps(props);\n  const {\n    baseVariant,\n    classNames,\n    gestureVariant,\n    setGestureState,\n    setVariant,\n    transition,\n    variants\n  } = useVariantState({\n    cycleOrder,\n    defaultVariant: \"m3a4Qd0XX\",\n    transitions,\n    variant,\n    variantClassNames\n  });\n  const layoutDependency = createLayoutDependency(props, variants);\n  const {\n    activeVariantCallback,\n    delay\n  } = useActiveVariantCallback(baseVariant);\n  const onMouseEnterc794fm = activeVariantCallback(async (...args) => {\n    setVariant(\"iZFSOOjRY\");\n  });\n  const onTapStart14c61bq = activeVariantCallback(async (...args) => {\n    setVariant(\"RjRexVC_g\");\n  });\n  const onMouseEnter1e7xjgm = activeVariantCallback(async (...args) => {\n    setVariant(\"B0bNKXEEY\");\n  });\n  const onMouseEnter10w9vpp = activeVariantCallback(async (...args) => {\n    setVariant(\"q28jYWMDP\");\n  });\n  const onTapStart587ohe = activeVariantCallback(async (...args) => {\n    setVariant(\"KLzNkQAlv\");\n  });\n  const onMouseEnter1uivkno = activeVariantCallback(async (...args) => {\n    setVariant(\"ZFSVC_KgD\");\n  });\n  const router = useRouter();\n  const isDisplayed = () => {\n    if ([\"iZFSOOjRY\", \"q28jYWMDP\", \"RjRexVC_g\", \"KLzNkQAlv\", \"B0bNKXEEY\", \"ZFSVC_KgD\"].includes(baseVariant)) return false;\n    return true;\n  };\n  const isDisplayed1 = () => {\n    if ([\"q28jYWMDP\", \"KLzNkQAlv\", \"ZFSVC_KgD\"].includes(baseVariant)) return true;\n    return false;\n  };\n  const isDisplayed2 = () => {\n    if ([\"iZFSOOjRY\", \"RjRexVC_g\", \"B0bNKXEEY\"].includes(baseVariant)) return true;\n    return false;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(LayoutGroup, {\n    id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n    children: /*#__PURE__*/_jsx(motion.div, {\n      initial: variant,\n      animate: variants,\n      onHoverStart: () => setGestureState({\n        isHovered: true\n      }),\n      onHoverEnd: () => setGestureState({\n        isHovered: false\n      }),\n      onTapStart: () => setGestureState({\n        isPressed: true\n      }),\n      onTap: () => setGestureState({\n        isPressed: false\n      }),\n      onTapCancel: () => setGestureState({\n        isPressed: false\n      }),\n      className: cx(\"framer-tfFAA\", sharedStyle.className, sharedStyle1.className, classNames),\n      style: {\n        display: \"contents\"\n      },\n      children: /*#__PURE__*/_jsx(Transition, {\n        value: transition,\n        children: /*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-1p90mzr\", className),\n          \"data-framer-name\": \"Variant 1 - Desktop\",\n          layoutDependency: layoutDependency,\n          layoutId: \"m3a4Qd0XX\",\n          ref: ref,\n          style: {\n            backgroundColor: \"rgb(255, 255, 255)\",\n            ...style\n          },\n          ...addPropertyOverrides({\n            B0bNKXEEY: {\n              \"data-framer-name\": \"Variant 2 - Mobile\"\n            },\n            iZFSOOjRY: {\n              \"data-framer-name\": \"Variant 2 - Desktop\"\n            },\n            KLzNkQAlv: {\n              \"data-framer-name\": \"Variant 3 - Tablet\"\n            },\n            q28jYWMDP: {\n              \"data-framer-name\": \"Variant 3 - Desktop\"\n            },\n            RjRexVC_g: {\n              \"data-framer-name\": \"Variant 2 - Tablet\"\n            },\n            Sm4iECdwh: {\n              \"data-framer-name\": \"Variant 1 - Mobile\"\n            },\n            ZFSVC_KgD: {\n              \"data-framer-name\": \"Variant 3 - Mobile\"\n            },\n            ZzYIYf5Qr: {\n              \"data-framer-name\": \"Variant 1 - Tablet\"\n            }\n          }, baseVariant, gestureVariant),\n          children: [/*#__PURE__*/_jsx(motion.div, {\n            className: \"framer-175l5oe\",\n            layoutDependency: layoutDependency,\n            layoutId: \"vuxnInjIb\",\n            children: /*#__PURE__*/_jsxs(motion.div, {\n              className: \"framer-1tkagss\",\n              \"data-framer-name\": \"Content\",\n              layoutDependency: layoutDependency,\n              layoutId: \"PI_6kgcH1\",\n              children: [/*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsxs(React.Fragment, {\n                  children: [/*#__PURE__*/_jsx(motion.h1, {\n                    className: \"framer-styles-preset-mnqs8d\",\n                    \"data-styles-preset\": \"qW7yqrxL2\",\n                    children: /*#__PURE__*/_jsxs(motion.span, {\n                      \"data-text-fill\": \"true\",\n                      style: {\n                        backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                      },\n                      children: [/*#__PURE__*/_jsx(motion.span, {\n                        style: {\n                          \"--framer-text-color\": \"var(--extracted-mei48c)\"\n                        },\n                        children: \"Crea, \"\n                      }), /*#__PURE__*/_jsx(motion.br, {}), /*#__PURE__*/_jsx(motion.span, {\n                        style: {\n                          \"--framer-text-color\": \"var(--extracted-1g7k0xo)\"\n                        },\n                        children: \"crece y\"\n                      })]\n                    })\n                  }), /*#__PURE__*/_jsx(motion.h1, {\n                    className: \"framer-styles-preset-mnqs8d\",\n                    \"data-styles-preset\": \"qW7yqrxL2\",\n                    style: {\n                      \"--framer-text-color\": \"var(--extracted-1bqba7n)\"\n                    },\n                    children: /*#__PURE__*/_jsx(motion.span, {\n                      \"data-text-fill\": \"true\",\n                      style: {\n                        backgroundImage: \"linear-gradient(306deg, var(--token-c6ad4137-f14f-4e14-87e0-d228c2e504d6, rgb(251, 9, 223)) 0%, var(--token-cf7818bb-a899-4b61-9c19-9e4940b41c80, rgb(231, 90, 38)) 100%)\"\n                      },\n                      children: \"encuentra. \"\n                    })\n                  })]\n                }),\n                className: \"framer-qwm3lu\",\n                layoutDependency: layoutDependency,\n                layoutId: \"JAFHQKG0N\",\n                style: {\n                  \"--extracted-1bqba7n\": \"rgb(0, 0, 0)\",\n                  \"--extracted-1g7k0xo\": \"rgb(0, 0, 0)\",\n                  \"--extracted-mei48c\": \"rgb(0, 0, 0)\",\n                  \"--framer-link-text-color\": \"rgb(0, 153, 255)\",\n                  \"--framer-link-text-decoration\": \"underline\",\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(RichText, {\n                __fromCanvasComponent: true,\n                children: /*#__PURE__*/_jsx(React.Fragment, {\n                  children: /*#__PURE__*/_jsx(motion.p, {\n                    className: \"framer-styles-preset-11ru2ty\",\n                    \"data-styles-preset\": \"puB8kY46u\",\n                    children: \"Forma parte de la primera comunidad .dev global de habla hispana.\"\n                  })\n                }),\n                className: \"framer-163g5o8\",\n                layoutDependency: layoutDependency,\n                layoutId: \"qoYVPXA5O\",\n                style: {\n                  \"--framer-paragraph-spacing\": \"0px\"\n                },\n                text: sVZzVfM4L,\n                verticalAlignment: \"top\",\n                withExternalLayout: true\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-vbgtcy\",\n                \"data-highlight\": true,\n                layoutDependency: layoutDependency,\n                layoutId: \"RJCLHq5Db\",\n                onMouseEnter: onMouseEnterc794fm,\n                style: {\n                  backgroundColor: \"rgba(153, 238, 255, 0)\"\n                },\n                ...addPropertyOverrides({\n                  B0bNKXEEY: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  KLzNkQAlv: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  RjRexVC_g: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  Sm4iECdwh: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  ZFSVC_KgD: {\n                    onMouseEnter: onMouseEnter1e7xjgm\n                  },\n                  ZzYIYf5Qr: {\n                    onMouseEnter: undefined,\n                    onTapStart: onTapStart14c61bq\n                  }\n                }, baseVariant, gestureVariant),\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-1drd3g0-container\",\n                  layoutDependency: layoutDependency,\n                  layoutId: \"mQuh0eI6g-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(Button, {\n                    height: \"100%\",\n                    icon: false,\n                    icon1: \"ArrowArcRight\",\n                    id: \"mQuh0eI6g\",\n                    layoutId: \"mQuh0eI6g\",\n                    link: resolveLink({\n                      webPageId: \"L_0aU_c9q\"\n                    }, router),\n                    title: \"Tengo una empresa\",\n                    variant: \"ppjSootSl\",\n                    width: \"100%\"\n                  })\n                })\n              }), /*#__PURE__*/_jsx(motion.div, {\n                className: \"framer-1wms9lo\",\n                \"data-highlight\": true,\n                layoutDependency: layoutDependency,\n                layoutId: \"d3h3Imvaf\",\n                onMouseEnter: onMouseEnter10w9vpp,\n                style: {\n                  backgroundColor: \"rgba(153, 238, 255, 0)\"\n                },\n                ...addPropertyOverrides({\n                  B0bNKXEEY: {\n                    onMouseEnter: onMouseEnter1uivkno\n                  },\n                  KLzNkQAlv: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  RjRexVC_g: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  Sm4iECdwh: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  ZFSVC_KgD: {\n                    \"data-highlight\": undefined,\n                    onMouseEnter: undefined\n                  },\n                  ZzYIYf5Qr: {\n                    onMouseEnter: undefined,\n                    onTapStart: onTapStart587ohe\n                  }\n                }, baseVariant, gestureVariant),\n                children: /*#__PURE__*/_jsx(motion.div, {\n                  className: \"framer-mreoxi-container\",\n                  layoutDependency: layoutDependency,\n                  layoutId: \"lLgMzrIGF-container\",\n                  transformTemplate: transformTemplate,\n                  children: /*#__PURE__*/_jsx(Button, {\n                    height: \"100%\",\n                    icon: false,\n                    icon1: \"ArrowArcRight\",\n                    id: \"lLgMzrIGF\",\n                    layoutId: \"lLgMzrIGF\",\n                    link: resolveLink({\n                      webPageId: \"augiA20Il\"\n                    }, router),\n                    title: \"Soy profesional\",\n                    variant: \"ppjSootSl\",\n                    width: \"100%\"\n                  })\n                })\n              })]\n            })\n          }), /*#__PURE__*/_jsxs(motion.div, {\n            className: \"framer-21m21j\",\n            layoutDependency: layoutDependency,\n            layoutId: \"xQu_Unx2r\",\n            children: [isDisplayed() && /*#__PURE__*/_jsx(motion.div, {\n              className: \"framer-1xm76p7-container\",\n              \"data-framer-name\": \"Video-general\",\n              layoutDependency: layoutDependency,\n              layoutId: \"TBYi7OELg-container\",\n              name: \"Video-general\",\n              children: /*#__PURE__*/_jsx(Video, {\n                backgroundColor: \"rgba(0, 0, 0, 0)\",\n                borderRadius: 0,\n                bottomLeftRadius: 0,\n                bottomRightRadius: 0,\n                canvasPlay: false,\n                controls: false,\n                height: \"100%\",\n                id: \"TBYi7OELg\",\n                isMixedBorderRadius: false,\n                layoutId: \"TBYi7OELg\",\n                loop: true,\n                muted: true,\n                name: \"Video-general\",\n                objectFit: \"cover\",\n                playing: true,\n                posterEnabled: false,\n                srcFile: new URL(\"https://framerusercontent.com/modules/assets/XADREclY72F4J9pAX6Rm2kxK5g~MzIQkfHbmskFOxNuk69LINgSPF_k5fBHNp3UmgeSHtk.mp4\").href,\n                srcType: \"Upload\",\n                srcUrl: \"\",\n                startTime: 0,\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                topLeftRadius: 0,\n                topRightRadius: 0,\n                volume: 25,\n                width: \"100%\"\n              })\n            }), isDisplayed1() && /*#__PURE__*/_jsx(Image, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 720,\n                intrinsicWidth: 960,\n                src: new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg\").href} 1920w`\n              },\n              className: \"framer-1yr1p0e\",\n              \"data-framer-name\": \"Imagen-techies\",\n              layoutDependency: layoutDependency,\n              layoutId: \"JfjI4kKgl\",\n              ...addPropertyOverrides({\n                KLzNkQAlv: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 720,\n                    intrinsicWidth: 960,\n                    sizes: \"max(min(810px, 100vw) / 2, 0px)\",\n                    src: new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg\").href} 1920w`\n                  }\n                },\n                q28jYWMDP: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 720,\n                    intrinsicWidth: 960,\n                    sizes: \"640px\",\n                    src: new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg\").href} 1920w`\n                  }\n                },\n                ZFSVC_KgD: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 720,\n                    intrinsicWidth: 960,\n                    sizes: \"640px\",\n                    src: new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=512\").href} 512w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg?scale-down-to=1024\").href} 1024w, ${new URL(\"https://framerusercontent.com/images/kkz4Mv6eAybRnsVM882iRnJRkAE.jpg\").href} 1920w`\n                  }\n                }\n              }, baseVariant, gestureVariant)\n            }), isDisplayed2() && /*#__PURE__*/_jsx(Image, {\n              background: {\n                alt: \"\",\n                fit: \"fill\",\n                intrinsicHeight: 2880,\n                intrinsicWidth: 1920,\n                pixelHeight: 2880,\n                pixelWidth: 1920,\n                src: new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href,\n                srcSet: `${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href} 1920w`\n              },\n              className: \"framer-3pahuk\",\n              \"data-framer-name\": \"Imagen-empresas\",\n              layoutDependency: layoutDependency,\n              layoutId: \"zOFCZW_Gn\",\n              ...addPropertyOverrides({\n                B0bNKXEEY: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 2880,\n                    intrinsicWidth: 1920,\n                    pixelHeight: 2880,\n                    pixelWidth: 1920,\n                    sizes: \"640px\",\n                    src: new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href} 1920w`\n                  }\n                },\n                iZFSOOjRY: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 2880,\n                    intrinsicWidth: 1920,\n                    pixelHeight: 2880,\n                    pixelWidth: 1920,\n                    sizes: \"640px\",\n                    src: new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href} 1920w`\n                  }\n                },\n                RjRexVC_g: {\n                  background: {\n                    alt: \"\",\n                    fit: \"fill\",\n                    intrinsicHeight: 2880,\n                    intrinsicWidth: 1920,\n                    pixelHeight: 2880,\n                    pixelWidth: 1920,\n                    sizes: \"max(min(811px, 100vw) / 2, 0px)\",\n                    src: new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href,\n                    srcSet: `${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=512\").href} 341w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=1024\").href} 682w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg?scale-down-to=2048\").href} 1365w, ${new URL(\"https://framerusercontent.com/images/wBlEB2M5owdIkHOHcSL3oC1pQMI.jpg\").href} 1920w`\n                  }\n                }\n              }, baseVariant, gestureVariant)\n            })]\n          })]\n        })\n      })\n    })\n  });\n});\nconst css = ['.framer-tfFAA [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", \".framer-tfFAA .framer-3kcn4v { display: block; }\", \".framer-tfFAA .framer-1p90mzr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\", \".framer-tfFAA .framer-175l5oe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1138px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 640px; }\", \".framer-tfFAA .framer-1tkagss { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1280px; padding: 0px 0px 0px 0px; position: relative; width: 530px; }\", \".framer-tfFAA .framer-qwm3lu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\", \".framer-tfFAA .framer-163g5o8 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\", \".framer-tfFAA .framer-vbgtcy { flex: none; height: 66px; overflow: visible; position: relative; width: 212px; }\", \".framer-tfFAA .framer-1drd3g0-container, .framer-tfFAA .framer-mreoxi-container { flex: none; height: auto; left: 0px; position: absolute; top: 50%; width: auto; }\", \".framer-tfFAA .framer-1wms9lo { flex: none; height: 66px; overflow: visible; position: relative; width: 243px; }\", \".framer-tfFAA .framer-21m21j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1138px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 640px; }\", \".framer-tfFAA .framer-1xm76p7-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\", \".framer-tfFAA .framer-1yr1p0e, .framer-tfFAA .framer-3pahuk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tfFAA .framer-1p90mzr, .framer-tfFAA .framer-175l5oe, .framer-tfFAA .framer-1tkagss, .framer-tfFAA .framer-21m21j, .framer-tfFAA .framer-1yr1p0e, .framer-tfFAA .framer-3pahuk { gap: 0px; } .framer-tfFAA .framer-1p90mzr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tfFAA .framer-1p90mzr > :first-child, .framer-tfFAA .framer-175l5oe > :first-child, .framer-tfFAA .framer-21m21j > :first-child { margin-left: 0px; } .framer-tfFAA .framer-1p90mzr > :last-child, .framer-tfFAA .framer-175l5oe > :last-child, .framer-tfFAA .framer-21m21j > :last-child { margin-right: 0px; } .framer-tfFAA .framer-175l5oe > *, .framer-tfFAA .framer-21m21j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tfFAA .framer-1tkagss > *, .framer-tfFAA .framer-1yr1p0e > *, .framer-tfFAA .framer-3pahuk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tfFAA .framer-1tkagss > :first-child, .framer-tfFAA .framer-1yr1p0e > :first-child, .framer-tfFAA .framer-3pahuk > :first-child { margin-top: 0px; } .framer-tfFAA .framer-1tkagss > :last-child, .framer-tfFAA .framer-1yr1p0e > :last-child, .framer-tfFAA .framer-3pahuk > :last-child { margin-bottom: 0px; } }\", \".framer-tfFAA.framer-v-l39cq9 .framer-1tkagss, .framer-tfFAA.framer-v-l0wj7t .framer-175l5oe { order: 0; }\", \".framer-tfFAA.framer-v-l39cq9 .framer-vbgtcy { width: 209px; }\", \".framer-tfFAA.framer-v-l39cq9 .framer-3pahuk, .framer-tfFAA.framer-v-l0wj7t .framer-21m21j { order: 1; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-1p90mzr, .framer-tfFAA.framer-v-1zco67 .framer-1p90mzr { height: 1138px; min-width: 810px; width: 810px; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-175l5oe, .framer-tfFAA.framer-v-1ht5hc9 .framer-175l5oe, .framer-tfFAA.framer-v-1zco67 .framer-175l5oe { flex: 1 0 0px; order: 0; width: 1px; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-1tkagss, .framer-tfFAA.framer-v-1ht5hc9 .framer-1tkagss, .framer-tfFAA.framer-v-1zco67 .framer-1tkagss { width: 80%; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-163g5o8 { width: 85%; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-vbgtcy, .framer-tfFAA.framer-v-13rxxmu .framer-1wms9lo { cursor: pointer; }\", \".framer-tfFAA.framer-v-13rxxmu .framer-21m21j, .framer-tfFAA.framer-v-1ht5hc9 .framer-21m21j, .framer-tfFAA.framer-v-1zco67 .framer-21m21j { flex: 1 0 0px; height: 100%; order: 1; width: 1px; }\", \".framer-tfFAA.framer-v-1ht5hc9 .framer-1p90mzr { height: 1138px; min-width: 810px; width: 811px; }\", \".framer-tfFAA.framer-v-1ht5hc9 .framer-163g5o8, .framer-tfFAA.framer-v-1zco67 .framer-163g5o8, .framer-tfFAA.framer-v-lma77k .framer-163g5o8, .framer-tfFAA.framer-v-poi8oe .framer-163g5o8, .framer-tfFAA.framer-v-19j7mwf .framer-163g5o8 { width: 100%; }\", \".framer-tfFAA.framer-v-lma77k .framer-1p90mzr, .framer-tfFAA.framer-v-poi8oe .framer-1p90mzr, .framer-tfFAA.framer-v-19j7mwf .framer-1p90mzr { flex-direction: column; min-width: 390px; }\", \".framer-tfFAA.framer-v-lma77k .framer-175l5oe, .framer-tfFAA.framer-v-poi8oe .framer-175l5oe, .framer-tfFAA.framer-v-19j7mwf .framer-175l5oe { height: min-content; order: 0; padding: 40px 20px 40px 20px; width: 390px; }\", \".framer-tfFAA.framer-v-lma77k .framer-1tkagss, .framer-tfFAA.framer-v-poi8oe .framer-1tkagss, .framer-tfFAA.framer-v-19j7mwf .framer-1tkagss { flex: 1 0 0px; max-width: 500px; width: 1px; }\", \".framer-tfFAA.framer-v-lma77k .framer-21m21j, .framer-tfFAA.framer-v-poi8oe .framer-21m21j, .framer-tfFAA.framer-v-19j7mwf .framer-21m21j { align-content: flex-start; align-items: flex-start; height: 569px; order: 1; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tfFAA.framer-v-lma77k .framer-1p90mzr { gap: 0px; } .framer-tfFAA.framer-v-lma77k .framer-1p90mzr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tfFAA.framer-v-lma77k .framer-1p90mzr > :first-child { margin-top: 0px; } .framer-tfFAA.framer-v-lma77k .framer-1p90mzr > :last-child { margin-bottom: 0px; } }\", \".framer-tfFAA.framer-v-poi8oe .framer-3pahuk { height: 100%; }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tfFAA.framer-v-poi8oe .framer-1p90mzr { gap: 0px; } .framer-tfFAA.framer-v-poi8oe .framer-1p90mzr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tfFAA.framer-v-poi8oe .framer-1p90mzr > :first-child { margin-top: 0px; } .framer-tfFAA.framer-v-poi8oe .framer-1p90mzr > :last-child { margin-bottom: 0px; } }\", \"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tfFAA.framer-v-19j7mwf .framer-1p90mzr { gap: 0px; } .framer-tfFAA.framer-v-19j7mwf .framer-1p90mzr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tfFAA.framer-v-19j7mwf .framer-1p90mzr > :first-child { margin-top: 0px; } .framer-tfFAA.framer-v-19j7mwf .framer-1p90mzr > :last-child { margin-bottom: 0px; } }\", ...sharedStyle.css, ...sharedStyle1.css]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerIntrinsicHeight 1138\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerIntrinsicWidth 1280\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iZFSOOjRY\":{\"layout\":[\"auto\",\"auto\"]},\"q28jYWMDP\":{\"layout\":[\"auto\",\"auto\"]},\"ZzYIYf5Qr\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"810px\",null,null,null]},\"RjRexVC_g\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"810px\",null,null,null]},\"KLzNkQAlv\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"810px\",null,null,null]},\"Sm4iECdwh\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"390px\",null,null,null]},\"B0bNKXEEY\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"390px\",null,null,null]},\"ZFSVC_KgD\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"390px\",null,null,null]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  * @framerVariables {\"sVZzVfM4L\":\"text\"}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  */\nconst FramerlbZ0UdgUE = withCSS(Component, css, \"framer-tfFAA\");\nexport default FramerlbZ0UdgUE;\nFramerlbZ0UdgUE.displayName = \"2 Columns Text Image\";\nFramerlbZ0UdgUE.defaultProps = {\n  height: 1138,\n  width: 1280\n};\naddPropertyControls(FramerlbZ0UdgUE, {\n  variant: {\n    options: [\"m3a4Qd0XX\", \"iZFSOOjRY\", \"q28jYWMDP\", \"ZzYIYf5Qr\", \"RjRexVC_g\", \"KLzNkQAlv\", \"Sm4iECdwh\", \"B0bNKXEEY\", \"ZFSVC_KgD\"],\n    optionTitles: [\"Variant 1 - Desktop\", \"Variant 2 - Desktop\", \"Variant 3 - Desktop\", \"Variant 1 - Tablet\", \"Variant 2 - Tablet\", \"Variant 3 - Tablet\", \"Variant 1 - Mobile\", \"Variant 2 - Mobile\", \"Variant 3 - Mobile\"],\n    title: \"Variant\",\n    type: ControlType.Enum\n  },\n  sVZzVfM4L: {\n    defaultValue: \"Forma parte de la comunidad tech de habla hispana que te conecta con todo el mundo.\",\n    displayTextArea: true,\n    placeholder: \"\",\n    title: \"Text\",\n    type: ControlType.String\n  }\n});\naddFonts(FramerlbZ0UdgUE, [...ButtonFonts, ...VideoFonts, ...sharedStyle.fonts, ...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"FramerlbZ0UdgUE\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerIntrinsicWidth\": \"1280\",\n        \"framerVariables\": \"{\\\"sVZzVfM4L\\\":\\\"text\\\"}\",\n        \"framerContractVersion\": \"1\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iZFSOOjRY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q28jYWMDP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZzYIYf5Qr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"810px\\\",null,null,null]},\\\"RjRexVC_g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"810px\\\",null,null,null]},\\\"KLzNkQAlv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"810px\\\",null,null,null]},\\\"Sm4iECdwh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"390px\\\",null,null,null]},\\\"B0bNKXEEY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"390px\\\",null,null,null]},\\\"ZFSVC_KgD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"390px\\\",null,null,null]}}}\",\n        \"framerIntrinsicHeight\": \"1138\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};\n//# sourceMappingURL=./lbZ0UdgUE.map", "// Generated by Framer (2372734)\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { addFonts, Container, cx, GeneratedComponentContext, getFonts, PropertyOverrides, removeHiddenBreakpointLayers, resolveLink, useHydratedBreakpointVariants, useLocaleInfo, useRouter, withCSS } from \"framer\";\nimport { LayoutGroup, motion } from \"framer-motion\";\nimport * as React from \"react\";\nimport CookiesBanner from \"https://framerusercontent.com/modules/1kZutLuKnsFwynXuzenR/B7KNh6bTVR4Ckr4y48Hj/dUdtlYpYf.js\";\nimport ColumnsTextImage from \"https://framerusercontent.com/modules/4CXKfQNd5UIrgZW0AEp7/NjzR9fnfCvbYrc9dgQ22/lbZ0UdgUE.js\";\nimport Topbar from \"https://framerusercontent.com/modules/6GyFvqyrplqVgTw5NNy3/oJw60hOqXEqx6T1RBCKT/lWUcIJP0H.js\";\nimport Footer from \"https://framerusercontent.com/modules/8VbC3MjeAE8kqCzbMaWH/TkwP0otdqEVCRTCWa9iy/M82dauGNX.js\";\nimport { getCookieStatus } from \"https://framerusercontent.com/modules/C6ffqpE0oPad1iIUW1c4/XfFMAQGkruYuQiED0MI7/Cookie.js\";\nimport metadataProvider from \"https://framerusercontent.com/modules/2hJglfvENloXAlfh69wq/X6WcDvvajs27kU3bFKfl/x4xKLRJyr.js\";\nconst TopbarFonts = getFonts(Topbar);\nconst ColumnsTextImageFonts = getFonts(ColumnsTextImage);\nconst CookiesBannerFonts = getFonts(CookiesBanner);\nconst CookiesBannerGetCookieStatus = getCookieStatus(CookiesBanner);\nconst FooterFonts = getFonts(Footer);\nconst cycleOrder = [\"a1YsouBIm\", \"DCfRQF4_e\", \"CX4wHne3o\"];\nconst breakpoints = {\n  a1YsouBIm: \"(min-width: 1280px)\",\n  CX4wHne3o: \"(max-width: 809px)\",\n  DCfRQF4_e: \"(min-width: 810px) and (max-width: 1279px)\"\n};\nconst isBrowser = () => typeof document !== \"undefined\";\nconst variantClassNames = {\n  a1YsouBIm: \"framer-v-11eeybk\",\n  CX4wHne3o: \"framer-v-16eganq\",\n  DCfRQF4_e: \"framer-v-4k0b8x\"\n};\nif (isBrowser()) {\n  removeHiddenBreakpointLayers(\"a1YsouBIm\", breakpoints, variantClassNames);\n}\nconst transitions = {\n  default: {\n    duration: 0\n  }\n};\nconst metadata = metadataProvider();\nconst humanReadableVariantMap = {\n  Desktop: \"a1YsouBIm\",\n  Phone: \"CX4wHne3o\",\n  Tablet: \"DCfRQF4_e\"\n};\nconst getProps = ({\n  height,\n  id,\n  width,\n  ...props\n}) => {\n  var _variant, ref;\n  return {\n    ...props,\n    variant: (ref = (_variant = humanReadableVariantMap[props.variant]) !== null && _variant !== void 0 ? _variant : props.variant) !== null && ref !== void 0 ? ref : \"a1YsouBIm\"\n  };\n};\nconst Component = /*#__PURE__*/React.forwardRef(function (props, ref) {\n  const {\n    activeLocale\n  } = useLocaleInfo();\n  const {\n    style,\n    className,\n    layoutId,\n    variant,\n    ...restProps\n  } = getProps(props);\n  React.useLayoutEffect(() => {\n    const metadata1 = metadataProvider();\n    document.title = metadata1.title || \"\";\n    if (metadata1.viewport) {\n      var ref;\n      (ref = document.querySelector('meta[name=\"viewport\"]')) === null || ref === void 0 ? void 0 : ref.setAttribute(\"content\", metadata1.viewport);\n    }\n    if (metadata1.bodyClassName) {\n      Array.from(document.body.classList).filter(c => c.startsWith(\"framer-body-\")).map(c => document.body.classList.remove(c));\n      document.body.classList.add(metadata1.bodyClassName);\n    }\n  }, []);\n  const [baseVariant, hydratedBaseVariant] = useHydratedBreakpointVariants(variant, breakpoints, false);\n  const gestureVariant = undefined;\n  const transition = transitions.default;\n  const router = useRouter();\n  const isDisplayed = () => {\n    if (baseVariant === \"DCfRQF4_e\") return !isBrowser();\n    return true;\n  };\n  const defaultLayoutId = React.useId();\n  return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider, {\n    value: {\n      primaryVariantId: \"a1YsouBIm\",\n      variantClassNames\n    },\n    children: /*#__PURE__*/_jsx(LayoutGroup, {\n      id: layoutId !== null && layoutId !== void 0 ? layoutId : defaultLayoutId,\n      children: /*#__PURE__*/_jsxs(motion.div, {\n        className: cx(\"framer-jXMIa\"),\n        style: {\n          display: \"contents\"\n        },\n        children: [/*#__PURE__*/_jsxs(motion.div, {\n          ...restProps,\n          className: cx(\"framer-11eeybk\", className),\n          ref: ref,\n          style: {\n            ...style\n          },\n          children: [/*#__PURE__*/_jsx(Container, {\n            className: \"framer-80vpxo-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                CX4wHne3o: {\n                  variant: \"ZQwaB4_p3\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Topbar, {\n                height: \"100%\",\n                id: \"tBKWoxjqm\",\n                layoutId: \"tBKWoxjqm\",\n                link: resolveLink({\n                  webPageId: \"i7n6RYo8b\"\n                }, router),\n                style: {\n                  width: \"100%\"\n                },\n                title: \"Contrata The Array\",\n                variant: \"jRXICbciv\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-rcvqr6-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                CX4wHne3o: {\n                  style: {\n                    width: \"100%\"\n                  },\n                  variant: \"Sm4iECdwh\"\n                },\n                DCfRQF4_e: {\n                  variant: \"ZzYIYf5Qr\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(ColumnsTextImage, {\n                height: \"100%\",\n                id: \"OTwFFY17f\",\n                layoutId: \"OTwFFY17f\",\n                style: {\n                  height: \"100%\",\n                  width: \"100%\"\n                },\n                text: \"Forma parte de la comunidad tech de habla hispana que te conecta con todo el mundo.\",\n                variant: \"m3a4Qd0XX\",\n                width: \"100%\"\n              })\n            })\n          }), isDisplayed() && /*#__PURE__*/_jsx(Container, {\n            className: \"framer-wibat-container hidden-4k0b8x\",\n            layoutScroll: true,\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                CX4wHne3o: {\n                  variant: \"Jk4aITLAo\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(CookiesBannerGetCookieStatus, {\n                height: \"100%\",\n                id: \"E9jguUySM\",\n                layoutId: \"E9jguUySM\",\n                variant: \"QahLQSfyK\",\n                width: \"100%\"\n              })\n            })\n          }), /*#__PURE__*/_jsx(Container, {\n            className: \"framer-1qfeg6p-container\",\n            children: /*#__PURE__*/_jsx(PropertyOverrides, {\n              breakpoint: baseVariant,\n              overrides: {\n                CX4wHne3o: {\n                  variant: \"hV5Eqd_XG\"\n                }\n              },\n              children: /*#__PURE__*/_jsx(Footer, {\n                height: \"100%\",\n                id: \"nkwDEY1H_\",\n                layoutId: \"nkwDEY1H_\",\n                style: {\n                  width: \"100%\"\n                },\n                variant: \"NWDLXXgiF\",\n                width: \"100%\"\n              })\n            })\n          })]\n        }), /*#__PURE__*/_jsx(\"div\", {\n          id: \"overlay\"\n        })]\n      })\n    })\n  });\n});\nconst css = ['.framer-jXMIa [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; }', \"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\", `.${metadata.bodyClassName} { background: white; }`, \".framer-jXMIa .framer-16gtp35 { display: block; }\", \".framer-jXMIa .framer-11eeybk { 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 0px 0px 0px; position: relative; width: 1280px; }\", \".framer-jXMIa .framer-80vpxo-container, .framer-jXMIa .framer-1qfeg6p-container { flex: none; height: auto; position: relative; width: 100%; }\", \".framer-jXMIa .framer-rcvqr6-container { flex: none; height: 80vh; position: relative; width: 100%; }\", \".framer-jXMIa .framer-wibat-container { bottom: 20px; flex: none; height: auto; min-width: 350px; position: fixed; right: 20px; width: auto; z-index: 1; }\", \"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jXMIa .framer-11eeybk { gap: 0px; } .framer-jXMIa .framer-11eeybk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jXMIa .framer-11eeybk > :first-child { margin-top: 0px; } .framer-jXMIa .framer-11eeybk > :last-child { margin-bottom: 0px; } }\", \"@media (min-width: 1280px) { .framer-jXMIa .hidden-11eeybk { display: none !important; } }\", `@media (min-width: 810px) and (max-width: 1279px) { .framer-jXMIa .hidden-4k0b8x { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-jXMIa .framer-11eeybk { width: 810px; }}`, `@media (max-width: 809px) { .framer-jXMIa .hidden-16eganq { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-jXMIa .framer-11eeybk { width: 390px; } .framer-jXMIa .framer-rcvqr6-container { height: auto; } .framer-jXMIa .framer-wibat-container { bottom: 0px; left: 0px; min-width: 100%; right: unset; width: 381px; }}`]; /**\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * This is a generated Framer component.\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicHeight 848\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerIntrinsicWidth 1280\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DCfRQF4_e\":{\"layout\":[\"fixed\",\"auto\"]},\"CX4wHne3o\":{\"layout\":[\"fixed\",\"auto\"]}}}\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             * @framerResponsiveScreen\n                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             */\nconst Framerx4xKLRJyr = withCSS(Component, css, \"framer-jXMIa\");\nexport default Framerx4xKLRJyr;\nFramerx4xKLRJyr.displayName = \"Home\";\nFramerx4xKLRJyr.defaultProps = {\n  height: 848,\n  width: 1280\n};\naddFonts(Framerx4xKLRJyr, [...TopbarFonts, ...ColumnsTextImageFonts, ...CookiesBannerFonts, ...FooterFonts]);\nexport const __FramerMetadata__ = {\n  \"exports\": {\n    \"default\": {\n      \"type\": \"reactComponent\",\n      \"name\": \"Framerx4xKLRJyr\",\n      \"slots\": [],\n      \"annotations\": {\n        \"framerContractVersion\": \"1\",\n        \"framerIntrinsicHeight\": \"848\",\n        \"framerResponsiveScreen\": \"\",\n        \"framerCanvasComponentVariantDetails\": \"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DCfRQF4_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CX4wHne3o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\n        \"framerIntrinsicWidth\": \"1280\"\n      }\n    },\n    \"Props\": {\n      \"type\": \"tsType\",\n      \"annotations\": {\n        \"framerContractVersion\": \"1\"\n      }\n    },\n    \"__FramerMetadata__\": {\n      \"type\": \"variable\"\n    }\n  }\n};"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ButtonFonts", "getFonts", "Tnz4seCKc_default", "VideoFonts", "Video", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "ref", "_variant", "ref1", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "sVZzVfM4L", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterc794fm", "args", "onTapStart14c61bq", "onMouseEnter1e7xjgm", "onMouseEnter10w9vpp", "onTapStart587ohe", "onMouseEnter1uivkno", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText", "x", "resolveLink", "Image2", "css", "FramerlbZ0UdgUE", "withCSS", "lbZ0UdgUE_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "ColumnsTextImageFonts", "lbZ0UdgUE_default", "CookiesBannerFonts", "dUdtlYpYf_default", "CookiesBannerGetCookieStatus", "getCookieStatus", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "variantClassNames", "removeHiddenBreakpointLayers", "transitions", "metadata", "x4xKLRJyr_default", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides", "lWUcIJP0H_default", "resolveLink", "lbZ0UdgUE_default", "CookiesBannerGetCookieStatus", "M82dauGNX_default", "css", "Framerx4xKLRJyr", "withCSS", "addFonts", "TopbarFonts", "ColumnsTextImageFonts", "CookiesBannerFonts", "FooterFonts", "__FramerMetadata__"]
}
