{"id":646,"date":"2024-08-08T13:56:15","date_gmt":"2024-08-08T11:56:15","guid":{"rendered":"https:\/\/babyfruitdancing.com\/?page_id=646"},"modified":"2024-08-08T13:57:02","modified_gmt":"2024-08-08T11:57:02","slug":"games","status":"publish","type":"page","link":"https:\/\/babyfruitdancing.com\/en\/printables\/games\/","title":{"rendered":"Games"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"646\" class=\"elementor elementor-646\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3a46086 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"3a46086\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e923902\" data-id=\"e923902\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8b31ee2 elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-html\" data-id=\"8b31ee2\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div id=\"falling-balls-container\"><\/div>\n\n\n<script>\n  document.addEventListener('DOMContentLoaded', function () {\n    const container = document.getElementById('falling-balls-container');\n    const ballSizes = [3, 6, 10, 12, 15, 20]; \/\/ Tama\u00f1os de las bolitas\n    const ballColors = ['#ff8a00', '#ffda00', '#00e01c', '#ff52ff']; \/\/ Colores de las bolitas\n    const minFallDuration = 20; \/\/ Duraci\u00f3n m\u00ednima de la ca\u00edda en segundos\n    const maxFallDuration = 30; \/\/ Duraci\u00f3n m\u00e1xima de la ca\u00edda en segundos\n    const fadeStartHeight = 880; \/\/ Altura en px donde empieza a desvanecerse\n\n    function createBall() {\n      const ball = document.createElement('div');\n      const size = ballSizes[Math.floor(Math.random() * ballSizes.length)];\n      const color = ballColors[Math.floor(Math.random() * ballColors.length)];\n      const fallDuration = minFallDuration + Math.random() * (maxFallDuration - minFallDuration); \/\/ Duraci\u00f3n de la ca\u00edda aleatoria\n\n      ball.style.width = `${size}px`;\n      ball.style.height = `${size}px`;\n      ball.style.backgroundColor = color;\n      ball.style.left = `${Math.random() * 100}%`;\n      ball.style.animationDuration = `${fallDuration}s, 1s`; \/\/ Duraci\u00f3n de la ca\u00edda y del desvanecimiento\n      ball.style.animationTimingFunction = `linear, ease-in`; \/\/ Timing de las animaciones\n      ball.style.animationDelay = `0s, ${fallDuration - (fadeStartHeight \/ window.innerHeight * fallDuration)}s`; \/\/ Retraso para empezar a desvanecerse\n\n      ball.classList.add('falling-ball');\n      container.appendChild(ball);\n\n      \/\/ Eliminar la bola del DOM cuando termine la animaci\u00f3n\n      ball.addEventListener('animationend', () => {\n        ball.remove();\n      });\n    }\n\n    \/\/ Crear bolas a intervalos regulares\n    const interval = 500; \/\/ Intervalo en milisegundos (ajustar seg\u00fan la cantidad deseada)\n    setInterval(createBall, interval);\n  });\n<\/script>\n\n<script>\n\ndocument.addEventListener('DOMContentLoaded', function() {\n    var downloadButton = document.querySelector('#download-button a');\n    if (downloadButton) {\n        downloadButton.setAttribute('download', '');\n    }\n});\n\n<\/script>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5382724 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"5382724\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5f37b4a\" data-id=\"5f37b4a\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7edea8e elementor-hidden-desktop elementor-widget elementor-widget-html\" data-id=\"7edea8e\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div id=\"falling-balls-container-mobile\"><\/div>\n\n\n<script>\n  document.addEventListener('DOMContentLoaded', function () {\n    const container = document.getElementById('falling-balls-container-mobile');\n    const ballSizes = [3, 6, 10, 12, 15]; \/\/ Tama\u00f1os de las bolitas\n    const ballColors = ['#ff8a00', '#ffda00', '#00e01c', '#ff52ff']; \/\/ Colores de las bolitas\n    const minFallDuration = 20; \/\/ Duraci\u00f3n m\u00ednima de la ca\u00edda en segundos\n    const maxFallDuration = 30; \/\/ Duraci\u00f3n m\u00e1xima de la ca\u00edda en segundos\n    const fadeStartHeight = 680; \/\/ Altura en px donde empieza a desvanecerse\n\n    function createBall() {\n      const ball = document.createElement('div');\n      const size = ballSizes[Math.floor(Math.random() * ballSizes.length)];\n      const color = ballColors[Math.floor(Math.random() * ballColors.length)];\n      const fallDuration = minFallDuration + Math.random() * (maxFallDuration - minFallDuration); \/\/ Duraci\u00f3n de la ca\u00edda aleatoria\n\n      ball.style.width = `${size}px`;\n      ball.style.height = `${size}px`;\n      ball.style.backgroundColor = color;\n      ball.style.left = `${Math.random() * 100}%`;\n      ball.style.animationDuration = `${fallDuration}s, 1s`; \/\/ Duraci\u00f3n de la ca\u00edda y del desvanecimiento\n      ball.style.animationTimingFunction = `linear, ease-in`; \/\/ Timing de las animaciones\n      ball.style.animationDelay = `0s, ${fallDuration - (fadeStartHeight \/ window.innerHeight * fallDuration)}s`; \/\/ Retraso para empezar a desvanecerse\n\n      ball.classList.add('falling-ball');\n      container.appendChild(ball);\n\n      \/\/ Eliminar la bola del DOM cuando termine la animaci\u00f3n\n      ball.addEventListener('animationend', () => {\n        ball.remove();\n      });\n    }\n\n    \/\/ Crear bolas a intervalos regulares\n    const interval = 500; \/\/ Intervalo en milisegundos (ajustar seg\u00fan la cantidad deseada)\n    setInterval(createBall, interval);\n  });\n<\/script>\n\n\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-090a396 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"090a396\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-6467cfb\" data-id=\"6467cfb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-acf25d2 elementor-widget-mobile__width-initial elementor-widget elementor-widget-image\" data-id=\"acf25d2\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}<\/style>\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/babyfruitdancing.com\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/elementor\/thumbs\/Logo-Baby-Fruit-Dancing-qs7msmmr934wip7dxnrzhbirvrfkb6ls8by0ddq46w.png\" title=\"Baby Fruit Dancing\" alt=\"Logo Baby Fruit Dancing\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-79f766d\" data-id=\"79f766d\" data-element_type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-60e6e31 elementor-nav-menu__align-right elementor-nav-menu--stretch elementor-widget-mobile__width-initial elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu\" data-id=\"60e6e31\" data-element_type=\"widget\" data-settings=\"{&quot;full_width&quot;:&quot;stretch&quot;,&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\\&quot;fas fa-caret-down\\&quot;&gt;&lt;\\\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/babyfruitdancing.com\/wp-content\/plugins\/pro-elements\/assets\/css\/widget-nav-menu.min.css\">\t\t\t<nav class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none\">\n\t\t\t\t<ul id=\"menu-1-60e6e31\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-127\"><a href=\"https:\/\/babyfruitdancing.com\/en\/\" class=\"elementor-item\">Home<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-299\"><a href=\"https:\/\/babyfruitdancing.com\/en\/printables\/\" class=\"elementor-item\">Printables<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1189\"><a href=\"https:\/\/babyfruitdancing.com\/en\/videos\/\" class=\"elementor-item\">Videos<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-979\"><a href=\"https:\/\/babyfruitdancing.com\/en\/blog\/\" class=\"elementor-item\">Blog<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-473\"><a target=\"_blank\" href=\"https:\/\/www.youtube.com\/@BabyFruitDancing\/streams\" class=\"elementor-item\"><span class=\"parpadeante\"><\/span>Live!<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open eicon-menu-bar\"><\/i><i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close eicon-close\"><\/i>\t\t\t<span class=\"elementor-screen-only\">Menu<\/span>\n\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-60e6e31\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-127\"><a href=\"https:\/\/babyfruitdancing.com\/en\/\" class=\"elementor-item\" tabindex=\"-1\">Home<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-299\"><a href=\"https:\/\/babyfruitdancing.com\/en\/printables\/\" class=\"elementor-item\" tabindex=\"-1\">Printables<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1189\"><a href=\"https:\/\/babyfruitdancing.com\/en\/videos\/\" class=\"elementor-item\" tabindex=\"-1\">Videos<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-979\"><a href=\"https:\/\/babyfruitdancing.com\/en\/blog\/\" class=\"elementor-item\" tabindex=\"-1\">Blog<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-473\"><a target=\"_blank\" href=\"https:\/\/www.youtube.com\/@BabyFruitDancing\/streams\" class=\"elementor-item\" tabindex=\"-1\"><span class=\"parpadeante\"><\/span>Live!<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-678b697 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"678b697\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-608ffd4\" data-id=\"608ffd4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-inner-section elementor-element elementor-element-1e1dcd8 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"1e1dcd8\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-2be15cc\" data-id=\"2be15cc\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-0fe4e6a elementor-widget elementor-widget-heading\" data-id=\"0fe4e6a\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.23.0 - 05-08-2024 *\/\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\/style><h1 class=\"elementor-heading-title elementor-size-default\"><i aria-hidden=\"true\" class=\"fas fa-laugh-beam\" ><\/i> Games<\/h1>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-2793136 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"2793136\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-718d81c\" data-id=\"718d81c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7a44ddc elementor-widget elementor-widget-image\" data-id=\"7a44ddc\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/elementor\/thumbs\/sandia-qsazuyuru8opflnkdpr0lp6f2vhf48e1r1kg6myyzk.jpg\" title=\"sandia\" alt=\"sandia\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c8a78d8 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"c8a78d8\" data-element_type=\"widget\" id=\"download-button\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/banana-platano-summer.jpg\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-arrow-circle-down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Download<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2cc40e5\" data-id=\"2cc40e5\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-586fd59 elementor-widget elementor-widget-image\" data-id=\"586fd59\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/elementor\/thumbs\/banana-platano-summer-qsazuyuru8opflnkdpr0lp6f2vhf48e1r1kg6myyzk.jpg\" title=\"banana-platano-summer\" alt=\"banana-platano-summer\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52bc916 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"52bc916\" data-element_type=\"widget\" id=\"download-button\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/banana-platano-summer.jpg\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-arrow-circle-down\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Download<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-93ccbe3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"93ccbe3\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-85d7d01\" data-id=\"85d7d01\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-57ae15a elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"57ae15a\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-73fcf43\" data-id=\"73fcf43\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-df67bee elementor-widget elementor-widget-image\" data-id=\"df67bee\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1457\" height=\"179\" src=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/fondo-pie-baby-fruit-dancing-01-PNG.png\" class=\"attachment-full size-full wp-image-553\" alt=\"\" srcset=\"https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/fondo-pie-baby-fruit-dancing-01-PNG.png 1457w, https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/fondo-pie-baby-fruit-dancing-01-PNG-300x37.png 300w, https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/fondo-pie-baby-fruit-dancing-01-PNG-1024x126.png 1024w, https:\/\/babyfruitdancing.com\/wp-content\/uploads\/2024\/08\/fondo-pie-baby-fruit-dancing-01-PNG-768x94.png 768w\" sizes=\"(max-width: 1457px) 100vw, 1457px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Games Download Download<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":294,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-646","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/pages\/646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/comments?post=646"}],"version-history":[{"count":4,"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/pages\/646\/revisions"}],"predecessor-version":[{"id":650,"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/pages\/646\/revisions\/650"}],"up":[{"embeddable":true,"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/pages\/294"}],"wp:attachment":[{"href":"https:\/\/babyfruitdancing.com\/en\/wp-json\/wp\/v2\/media?parent=646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}