{"id":20203,"date":"2023-01-23T12:51:46","date_gmt":"2023-01-23T11:51:46","guid":{"rendered":"https:\/\/balispirit.es\/relaxing-massages-in-barcelona\/"},"modified":"2026-07-27T22:53:59","modified_gmt":"2026-07-27T21:53:59","slug":"relaxing-massages-in-barcelona","status":"publish","type":"page","link":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/","title":{"rendered":"Relaxing Massages in Barcelona"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"20203\" class=\"elementor elementor-20203 elementor-543\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9e5847d e-flex e-con-boxed e-con e-parent\" data-id=\"9e5847d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d5a731 elementor-widget elementor-widget-html\" data-id=\"2d5a731\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"cart-popup-overlay\" style=\"display:none\">\n  <div id=\"cart-popup-box\">\n    <button id=\"cart-popup-close\">\u00d7<\/button>\n    <div id=\"cart-popup-title\"><\/div>\n    <p id=\"cart-popup-desc\"><\/p>\n    <div id=\"cart-popup-buttons\"><\/div>\n    <div id=\"cart-popup-feedback\"><\/div>\n  <\/div>\n<\/div>\n\n<style>\n#cart-popup-overlay <span>\n  position: fixed; inset: 0;\n  background: rgba(0,0,0,.55);\n  z-index: 99999;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n<\/span>\n#cart-popup-box <span>\n  background: #fff;\n  border-radius: 12px;\n  padding: 36px 32px;\n  max-width: 480px;\n  width: 90%;\n  position: relative;\n  box-shadow: 0 8px 40px rgba(0,0,0,.18);\n<\/span>\n#cart-popup-close <span>\n  position: absolute; top: 12px; right: 16px;\n  background: none; border: none;\n  font-size: 24px; cursor: pointer; color: #666;\n<\/span>\n#cart-popup-title <span> margin: 0 0 10px; font-size: 1.3em; font-family: 'Cinzel'; <\/span>\n#cart-popup-desc  <span> color: #555; margin: 0 0 24px; line-height: 1.5; <\/span>\n#cart-popup-buttons <span> display: flex; flex-direction: column; gap: 10px; <\/span>\n.cart-popup-btn <span>\n  padding: 13px 20px;\n  border: 0;\n  border-radius: 0;\n  background: #b4a269 !important;\n  font-size: 1em;\n  cursor: pointer;\n  text-align: left;\n  transition: background .2s, color .2s;\n  color: #FFF;\n<\/span>\n.cart-popup-btn:hover <span> background: #222 !important; color: #fff; <\/span>\n.cart-popup-btn.loading <span> opacity: .6; pointer-events: none; <\/span>\n#cart-popup-feedback <span>\n  margin-top: 16px;\n  font-size: .92em;\n  min-height: 20px;\n  text-align: center;\n<\/span>\n.feedback-ok  <span> color: #2a7a2a; <\/span>\n.feedback-err <span> color: #c0392b; <\/span>\n<\/style>\n\n<script>\n(function() {\n  const overlay  = document.getElementById('cart-popup-overlay');\n  const title    = document.getElementById('cart-popup-title');\n  const desc     = document.getElementById('cart-popup-desc');\n  const btnsWrap = document.getElementById('cart-popup-buttons');\n  const feedback = document.getElementById('cart-popup-feedback');\n  const closeBtn = document.getElementById('cart-popup-close');\n\n  function openPopup(trigger) {\n    const cfg = JSON.parse(trigger.getAttribute('data-buttons'));\n    title.textContent    = trigger.getAttribute('data-title') || '';\n    desc.textContent     = trigger.getAttribute('data-description') || '';\n    feedback.textContent = '';\n    feedback.className   = '';\n    btnsWrap.innerHTML   = '';\n\n    cfg.forEach(function(item) {\n      const btn = document.createElement('button');\n      btn.className   = 'cart-popup-btn';\n      btn.textContent = item.label;\n      btn.addEventListener('click', function() <span>\n        addToCart(btn, item.product_id, item.variation_id || 0, item.quantity || 1);\n      <\/span>);\n      btnsWrap.appendChild(btn);\n    });\n\n    overlay.style.display = 'flex';\n  }\n\n  function closePopup() <span> overlay.style.display = 'none'; <\/span>\n\n  closeBtn.addEventListener('click', closePopup);\n  overlay.addEventListener('click', function(e) <span>\n    if (e.target === overlay) closePopup();\n  <\/span>);\n  document.addEventListener('keydown', function(e) <span>\n    if (e.key === 'Escape') closePopup();\n  <\/span>);\n\n  document.addEventListener('click', function(e) {\n    const trigger = e.target.closest('.js-open-cart-popup');\n    if (trigger) <span>\n      e.preventDefault();\n      openPopup(trigger);\n    <\/span>\n  });\n\n  function addToCart(btn, productId, variationId, quantity) {\n    btn.classList.add('loading');\n    feedback.textContent = '';\n\n    fetch(popupCartData.ajax_url, {\n      method: 'POST',\n      headers: <span> 'Content-Type': 'application\/x-www-form-urlencoded' <\/span>,\n      body: new URLSearchParams(<span>\n        action:       'popup_add_to_cart',\n        nonce:        popupCartData.nonce,\n        product_id:   productId,\n        variation_id: variationId,\n        quantity:     quantity,\n      <\/span>)\n    })\n    .then(r => r.json())\n    .then(function(data) {\n      btn.classList.remove('loading');\n      if (data.success) {\n        \/\/ \u2190 \u00daNICO CAMBIO: redirige al carrito tras 800ms\n        feedback.textContent = '\u2713 Producto a\u00f1adido, redirigiendo...';\n        feedback.className   = 'feedback-ok';\n        setTimeout(function() <span>\n          window.location.href = popupCartData.cart_url;\n        <\/span>, 800);\n      } else <span>\n        feedback.textContent = '\u2717 ' + data.data.message;\n        feedback.className   = 'feedback-err';\n      <\/span>\n    })\n    .catch(function() <span>\n      btn.classList.remove('loading');\n      feedback.textContent = 'Error de conexi\u00f3n. Int\u00e9ntalo de nuevo.';\n      feedback.className   = 'feedback-err';\n    <\/span>);\n  }\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-84f7c4d e-flex e-con-boxed e-con e-parent\" data-id=\"84f7c4d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4480aa4 elementor-widget elementor-widget-heading\" data-id=\"4480aa4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Relaxing Massage<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c4fd4c0 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"c4fd4c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Give your body what it&#8217;s asking for.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-96de5cc e-con-full e-flex e-con e-child\" data-id=\"96de5cc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c443f79 e-con-full e-flex e-con e-child\" data-id=\"c443f79\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2ff4193 e-con-full e-flex e-con e-child\" data-id=\"2ff4193\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/balicdn.webloading.es\\\/Bali_Spirit_Masajes_Dreamland_20230515-Compressed-with-FlexClip.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-ae4076b elementor-widget elementor-widget-heading\" data-id=\"ae4076b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">BY THE AUTHOR<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3807455 e-con-full e-flex e-con e-child\" data-id=\"3807455\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-06edb10 elementor-widget elementor-widget-heading\" data-id=\"06edb10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Tenderness \u2014 Dreamland Massage\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ca79f62 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"ca79f62\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>There are times when the body doesn&#8217;t need strength; it needs gentleness.<\/p><p>&#8220;Ternura&#8221; is a deeply comforting ritual created for those going through periods of emotional stress, or who simply feel the need to be cared for and pampered.<\/p><p>The gentle movements of this signature massage, combined with a special focus on pampering, create an immersive experience that invites you to let go, relax, and receive.<\/p><p>Because sometimes what transforms us most isn&#8217;t the intensity, but the feeling of being embraced and supported.<\/p><p><strong>The feeling that lingers<\/strong>: a sense of being cared for, supported, and deeply comforted.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-320fe91 elementor-widget elementor-widget-heading\" data-id=\"320fe91\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Options for this service<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3909f19 e-con-full e-flex e-con e-child\" data-id=\"3909f19\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cfee066 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"cfee066\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905856&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60 min \u2014 89\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0efe147 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"0efe147\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905855&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90 min \u2014 \u20ac129<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b12ba7 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"0b12ba7\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A28338258&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">120 min \u2014 159\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-4403cbb elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"4403cbb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d08306b elementor-widget elementor-widget-heading\" data-id=\"d08306b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">from<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d093ad9 elementor-widget elementor-widget-heading\" data-id=\"d093ad9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">89\u20ac<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-adb9a4e e-con-full e-grid e-con e-child\" data-id=\"adb9a4e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7498d50 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"7498d50\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"Ternura \u2014 Masaje Dreamland\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min&quot;,&quot;price&quot;:&quot;89\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905856&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;129\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905855&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;120 min&quot;,&quot;price&quot;:&quot;159\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A28338258&amp;share=true&amp;pId=2587099&quot;}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-size-sm\" role=\"button\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reservation<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c15c67f elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"c15c67f\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"Masaje Dreamland para regalar\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min \u2014 89\u20ac&quot;,&quot;product_id&quot;:435,&quot;variation_id&quot;:434},{&quot;label&quot;:&quot;90 min \u2014 129\u20ac&quot;,&quot;product_id&quot;:435,&quot;variation_id&quot;:451},{&quot;label&quot;:&quot;120 min \u2014 159\u20ac&quot;,&quot;product_id&quot;:435,&quot;variation_id&quot;:22298}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/balispirit.es\/en\/cart\/?add-to-cart=435\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">GIVE AS A GIFT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e2c4f0e e-con-full e-flex e-con e-child\" data-id=\"e2c4f0e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-af247ee e-con-full e-flex e-con e-child\" data-id=\"af247ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-561a852 elementor-widget elementor-widget-heading\" data-id=\"561a852\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">DEEP PEACE \u2013 Relaxing Massage at Shambala\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17eb033 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"17eb033\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong>When all you want is for everything to stop.<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c85cff4 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"c85cff4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>There are days when your mind just won&#8217;t stop racing. Thoughts pile up, tension builds in your body, and you have a constant feeling that you can&#8217;t switch off. <br><br>Paz Profunda is a signature massage designed to restore space for silence.<br><br>An experience that combines the essence of Californian massage, cranial and Ayurvedic techniques<br\/>, aromatherapy, and the exclusive <strong>\u201cMasaje de Autor\u201d by Raquel Jim\u00e9nez<\/strong>.<br><br>Slow, enveloping, and deeply mindful movements help release built-up tension, calm the mind, and restore a sense of serenity that lasts long after the massage is over.<br><br>It&#8217;s not just about relaxing. It&#8217;s about becoming yourself again. <br><br><strong>The lingering sensation<\/strong>: quieting the mind and finding deep peace<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6677f5d elementor-widget elementor-widget-heading\" data-id=\"6677f5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Options for this service<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-88027e1 e-con-full e-flex e-con e-child\" data-id=\"88027e1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fdde422 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"fdde422\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905878&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60 min \u2014 \u20ac149<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a43b8da boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"a43b8da\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905877&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90 min \u2014 \u20ac189<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-39bd674 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"39bd674\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A28338287&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">120 min \u2014 219\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-b531d06 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b531d06\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9fa7459 elementor-widget elementor-widget-heading\" data-id=\"9fa7459\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">from<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0dbe201 elementor-widget elementor-widget-heading\" data-id=\"0dbe201\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">149\u20ac<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c761439 e-con-full e-grid e-con e-child\" data-id=\"c761439\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d938299 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"d938299\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"PAZ PROFUNDA \u2013 Masaje Relax in Shambala\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min&quot;,&quot;price&quot;:&quot;149\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905878&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;189\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905877&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;120 min&quot;,&quot;price&quot;:&quot;219\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A28338287&amp;share=true&amp;pId=2587099&quot;}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905879&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reservation<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-819f59d elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"819f59d\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"Masaje Relax in Shambala\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min \u2014 149\u20ac&quot;,&quot;product_id&quot;:13705,&quot;variation_id&quot;:13704},{&quot;label&quot;:&quot;90 min \u2014 189\u20ac&quot;,&quot;product_id&quot;:13705,&quot;variation_id&quot;:13720},{&quot;label&quot;:&quot;120 min \u2014 224\u20ac&quot;,&quot;product_id&quot;:13705,&quot;variation_id&quot;:22330}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">GIVE AS A GIFT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bcdce7d e-con-full e-flex e-con e-child\" data-id=\"bcdce7d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-99f1a53 e-con-full e-flex e-con e-child\" data-id=\"99f1a53\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/balicdn.webloading.es\\\/Bali_Spirit_Masajes_Angora_20230525-Compressed-with-FlexClip.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-768a113 elementor-widget elementor-widget-heading\" data-id=\"768a113\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">BY THE AUTHOR<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b7f41ea e-con-full elementor-hidden-desktop elementor-hidden-laptop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"b7f41ea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dc8ed24 e-con-full e-flex e-con e-child\" data-id=\"dc8ed24\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b962952 e-con-full e-flex e-con e-child\" data-id=\"b962952\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c538fb1 elementor-widget elementor-widget-heading\" data-id=\"c538fb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">BY THE AUTHOR<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0f0a9b1 e-con-full e-flex e-con e-child\" data-id=\"0f0a9b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9386fdf elementor-widget elementor-widget-heading\" data-id=\"9386fdf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">FisioTantra Lombok<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fd27cf1 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"fd27cf1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>A massage experience that combines manual physical therapy techniques with a holistic, sensory approach inspired by the tranquility of the island of Lombok.<br\/>A treatment designed for those seeking deep well-being, mindful relaxation, and a connection with their bodies.<\/p><p>This massage works on different levels:<\/p><p>\u2022 Gentle muscle relief to relieve accumulated tension.<br>\u2022 Exercises inspired by Eastern techniques that promote mental calm. Mindful physical practice focused on breathing and inner balance. <br><br>The result is an immersive, respectful, and <br\/>professional experience, designed to help you reconnect with yourself, reduce stress, and restore your natural sense of well-being.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3e0c9b elementor-widget elementor-widget-heading\" data-id=\"a3e0c9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Options for this service<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e321c59 e-con-full e-flex e-con e-child\" data-id=\"e321c59\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-767dde9 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"767dde9\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"7\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A25695115&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60'<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3303d6c boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"3303d6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"8\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A25695115&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90'<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-e592b6c elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"e592b6c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18b015e elementor-widget elementor-widget-heading\" data-id=\"18b015e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">from<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b1bddf elementor-widget elementor-widget-heading\" data-id=\"0b1bddf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">89\u20ac<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-edd3ffc e-con-full e-grid e-con e-child\" data-id=\"edd3ffc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c74c07 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"6c74c07\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"7\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A25695115&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reservation<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-09f9671 elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"09f9671\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"Fisiotantra Lombok\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min \u2014 154\u20ac&quot;,&quot;product_id&quot;:20777,&quot;variation_id&quot;:21077},{&quot;label&quot;:&quot;90 min \u2014 189\u20ac&quot;,&quot;product_id&quot;:20777,&quot;variation_id&quot;:21078}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">GIVE AS A GIFT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f8f9386 e-con-full e-flex e-con e-child\" data-id=\"f8f9386\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-edecbb9 e-con-full e-flex e-con e-child\" data-id=\"edecbb9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8e82744 e-con-full e-flex e-con e-child\" data-id=\"8e82744\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-52e036d elementor-widget elementor-widget-heading\" data-id=\"52e036d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">BY THE AUTHOR<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3789147 e-con-full e-flex e-con e-child\" data-id=\"3789147\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-82a4012 elementor-widget elementor-widget-heading\" data-id=\"82a4012\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">RENACER \u2013 Customized Massage\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0caf9f6 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"0caf9f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong>Sometimes we need silence. That&#8217;s where Bali Spirit&#8217;s signature massage comes in: Tailor Made <\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-abd76f4 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"abd76f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>There are experiences that do more than just help you relax. They can turn your day around. <br><br>Renacer brings together the best of every massage in a single experience; it\u2019s a journey through the entire<br\/>menu. Plus: the center\u2019s most skilled therapists will be at your service. Every movement<br\/>has a purpose.  <br><br>At Tailor Made, we don&#8217;t follow set protocols. Each experience stems from a specific intention and is tailored to the individual receiving it. <br><br><strong>The lingering sensation<\/strong>: the body enters a deep state of well-being at<br\/>that\u2019s hard to let go of.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6960d38 elementor-widget elementor-widget-heading\" data-id=\"6960d38\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Options for this service<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b22b519 e-con-full e-flex e-con e-child\" data-id=\"b22b519\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4fbcf68 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"4fbcf68\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905830&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90 min \u2014 \u20ac259<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3ccaf17 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"3ccaf17\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905832&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">120 min \u2014 \u20ac299<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-f73ed99 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f73ed99\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f6dad31 elementor-widget elementor-widget-heading\" data-id=\"f6dad31\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">from<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-68312e0 elementor-widget elementor-widget-heading\" data-id=\"68312e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u20ac259<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fb91c50 e-con-full e-grid e-con e-child\" data-id=\"fb91c50\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bdcf6a6 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"bdcf6a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"RENACER \u2013 Masaje Tailor Made\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;259\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905830&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;120 min&quot;,&quot;price&quot;:&quot;299\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905832&amp;share=true&amp;pId=2587099&quot;}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-size-sm\" role=\"button\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reservation<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e951b7 elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"7e951b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"RENACER \u2013 Masaje Tailor Made\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;90 min \u2014 259\u20ac&quot;,&quot;product_id&quot;:414,&quot;variation_id&quot;:23128},{&quot;label&quot;:&quot;120 min \u2014 299\u20ac&quot;,&quot;product_id&quot;:414,&quot;variation_id&quot;:23129}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">GIVE AS A GIFT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1c97b33 e-con-full e-flex e-con e-child\" data-id=\"1c97b33\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e9f33b6 e-con-full e-flex e-con e-child\" data-id=\"e9f33b6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-489b27c elementor-widget elementor-widget-heading\" data-id=\"489b27c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">4 hands massage<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b1f850c elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"b1f850c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Signature massage that takes you to Paradise, to absolute disconnection. With four hands, two therapists, two energies totally focused on achieving your well-being. Feel an avalanche of peace flood your body receiving two very relaxing and heartfelt massages at the same time, in perfect synchrony, as if it were a slow dance.  <br><br>The lingering sensation: An invitation to awaken your vitality through a profound sensory experience.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b18ec0 elementor-widget elementor-widget-heading\" data-id=\"0b18ec0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Options for this service<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b490320 e-con-full e-flex e-con e-child\" data-id=\"b490320\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aea1ac4 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"aea1ac4\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905845&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60 min \u2014 \u20ac198<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0cb33f4 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"0cb33f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"1\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A28362108&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90 min \u2014 \u20ac248<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-fb77572 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"fb77572\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f80f40 elementor-widget elementor-widget-heading\" data-id=\"6f80f40\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u20ac198<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1e7d729 e-con-full e-grid e-con e-child\" data-id=\"1e7d729\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ecb6bfa elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"ecb6bfa\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"Masaje 4 manos\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min&quot;,&quot;price&quot;:&quot;198\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905845&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;248\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A28362108&amp;share=true&amp;pId=2587099&quot;}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=p%3A1646568&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reservation<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3b4da31 elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"3b4da31\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"Masaje 4 manos\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min \u2014 198\u20ac&quot;,&quot;product_id&quot;:299,&quot;variation_id&quot;:13482},{&quot;label&quot;:&quot;90 min \u2014 248\u20ac&quot;,&quot;product_id&quot;:299,&quot;variation_id&quot;:13610}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">GIVE AS A GIFT<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2bc3a69 e-con-full e-flex e-con e-child\" data-id=\"2bc3a69\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-96e4809 e-con-full e-flex e-con e-child\" data-id=\"96e4809\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-315ea75 elementor-widget elementor-widget-heading\" data-id=\"315ea75\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">BY THE AUTHOR<\/div>\t\t\t\t<\/div>\n\t\t\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3b30b12 e-con-full e-flex e-con e-parent\" data-id=\"3b30b12\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e320bb6 e-grid animated-slow e-con-boxed elementor-invisible e-con e-child\" data-id=\"e320bb6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-274450f e-con-full e-flex e-con e-child\" data-id=\"274450f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c4e1ad1 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c4e1ad1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp\" class=\"attachment-large size-large wp-image-23335\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp 1000w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer-300x200.webp 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer-768x513.webp 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer-600x401.webp 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ec0fcf1 e-con-full e-flex e-con e-child\" data-id=\"ec0fcf1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d81de95 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"d81de95\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div class=\"header\" data-v-9e586f3c=\"\"><p>Sometimes our pace is so fast that we don\u2019t hear what our bodies are telling us. And our physical and mental health give us more signals than we realize. Something as simple, yet as rejuvenating and magical as a relaxing massage is all you\u2019ll need to recharge your energy and get back to everything else. On the other hand, not taking a break and not taking care of yourself causes you to build up more tension than you can handle.   <\/p><p>At Bali Spirit, we want to be your source of support. A place of well-being where, when you need it most, you can achieve a state of complete relaxation\u2014for both your mind and your body.  <\/p><p>Why choose the gentle hands of our therapists? The massage they\u2019ll give you\u2014or, in other words, the journey through paradise you\u2019ll take without leaving Barcelona, while lying on one of our massage tables\u2014is tailored just for you. We\u2019ll listen to you and tailor the massage to your needs.  <\/p><p>How will you feel after the massage? All these sensations are waiting for you. <\/p><\/div>\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-55233e6 e-con-full e-flex e-con e-parent\" data-id=\"55233e6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d2353b4 e-grid animated-slow e-con-boxed elementor-invisible e-con e-child\" data-id=\"d2353b4\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5321c19 e-con-full e-flex e-con e-child\" data-id=\"5321c19\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a0787d elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"5a0787d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong>Say goodbye to stress and anxiety<\/strong>: The gentle, rhythmic movements activate the parasympathetic nervous system, reducing cortisol levels and filling your body and mind with calm.<br><br><strong>Less muscle tension<\/strong>: You&#8217;ll no longer feel that stiffness in your back and neck, and your muscle knots will be relieved. A relaxing massage helps release tension and restores your muscles&#8217; natural elasticity. <br><strong><br\/>Improved blood circulation<\/strong>: By stimulating blood flow, tissues receive more oxygen and toxins are eliminated, promoting cell regeneration.<\/p><p><strong>You&#8217;ll enjoy a restful night&#8217;s sleep<\/strong>: You&#8217;ll leave our little piece of Bali right in the heart of the city feeling relaxed, so falling into a deep, restful sleep will be a breeze.<\/p><p><strong>Balance Between Your Body and Mind<\/strong>: Beyond physical relief, a relaxing massage harmonizes <strong>your<\/strong> emotions and creates a sense of overall well-being.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39060fa e-con-full e-flex e-con e-child\" data-id=\"39060fa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-099be09 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"099be09\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1-1024x683.jpeg\" class=\"attachment-large size-large wp-image-23401\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1-1024x683.jpeg 1024w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1-300x200.jpeg 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1-768x512.jpeg 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1-600x400.jpeg 600w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Masaje-Tradicional-Balines-OK-1.jpeg 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5743b4a e-flex e-con-boxed e-con e-parent\" data-id=\"5743b4a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57dcb36 elementor-widget elementor-widget-heading\" data-id=\"57dcb36\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Relax in Barcelona<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5a5bcaa elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"5a5bcaa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Let our therapists fill your being with calm, peace, and tranquility. Through these massages, feel your stress and anxiety melt away, making way for a calm mind. Disconnect from it all.  <\/p><p>Treat yourself to a much-needed break at this emotional oasis. And recharge your energy. <\/p><p>Day-to-day life moves at a fast pace, and this can leave your body and mind feeling tense. But there\u2019s a sanctuary where everything comes to a halt and the only thing that matters is your well-being\u2014and that place is Bali Spirit, where, if you\u2019d like, you can enjoy a relaxing massage in Barcelona. Right in the heart of the city, we\u2019ve created a sanctuary of calm so you can regain your balance.  <\/p><p>Find peace through the ancient art of relaxing massage. Take a moment to savor every movement, every scent, and every sound in this oasis. Here, every movement, every scent, and every sound is designed to envelop your body and mind in a sense of deep peace.  <\/p><p>Feel the magic of Bali; enjoy this journey for all your senses.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-537d0f9 e-flex e-con-boxed e-con e-parent\" data-id=\"537d0f9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b04770a elementor-widget elementor-widget-heading\" data-id=\"b04770a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Recommended Experiences<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bdf3f21 elementor-widget elementor-widget-template\" data-id=\"bdf3f21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"page\" data-elementor-id=\"22795\" class=\"elementor elementor-22795\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3f8a306 e-grid e-con-full e-con e-child\" data-id=\"3f8a306\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-655959a e-con-full e-flex e-con e-child\" data-id=\"655959a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-9d1c3ae e-con-full e-flex e-con e-child\" data-id=\"9d1c3ae\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ebd688 elementor-widget elementor-widget-heading\" data-id=\"2ebd688\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">Descontracturante<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4674844 elementor-widget elementor-widget-heading\" data-id=\"4674844\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Masaje Para\u00edso para dos<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-be846c9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"be846c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a2d0ca elementor-widget elementor-widget-heading\" data-id=\"3a2d0ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Masaje personalizado para dos inspirado en los rituales de Bali. Aromas ex\u00f3ticos, aceites c\u00e1lidos y movimientos envolventes que los transportan a un verdadero para\u00edso de conexi\u00f3n y serenidad.\n\n<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42c3bb7 elementor-widget elementor-widget-heading\" data-id=\"42c3bb7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Opciones de este servicio<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39d6e8a e-con-full e-flex e-con e-child\" data-id=\"39d6e8a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-47a80c9 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"47a80c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"43\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=p%3A1695589&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60 min \u2014 238\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d9a2e6 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"5d9a2e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"44\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=p%3A1695592&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">90 min \u2014 300\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-b5394d3 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b5394d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d62f5ef e-con-full e-flex e-con e-child\" data-id=\"d62f5ef\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-32a7c16 elementor-widget elementor-widget-heading\" data-id=\"32a7c16\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">desde<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b42a7f3 elementor-widget elementor-widget-heading\" data-id=\"b42a7f3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">119\u20ac<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e5905d9 elementor-widget elementor-widget-heading\" data-id=\"e5905d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">por persona<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b18ae29 e-con-full e-grid e-con e-child\" data-id=\"b18ae29\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-92c5efd elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"92c5efd\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"Masaje Para\u00edso para dos\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min&quot;,&quot;price&quot;:&quot;238\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=p%3A1695589&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;114\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=p%3A1695592&amp;share=true&amp;pId=2587099&quot;}]\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reserva<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e29039f elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"e29039f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/balispirit.es\/carrito\/?add-to-cart=19935\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">REGALA<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7ed3c36 e-con-full e-flex e-con e-child\" data-id=\"7ed3c36\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1c63a1b e-con-full e-flex e-con e-child\" data-id=\"1c63a1b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e503d58 elementor-widget elementor-widget-heading\" data-id=\"e503d58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">Descontracturante<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f8ea261 elementor-widget elementor-widget-heading\" data-id=\"f8ea261\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mimo de luxe<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-410a519 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"410a519\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de9a2ac elementor-widget elementor-widget-heading\" data-id=\"de9a2ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">D\u00e9jate envolver por un viaje de bienestar dise\u00f1ado para despertar todos tus sentidos y regalarte un profundo estado de relajaci\u00f3n.\nMasaje Dreamland, acompa\u00f1ado de un Ritual de T\u00e9 Verde (exfoliaci\u00f3n).\nBa\u00f1o Balin\u00e9s con un C\u00f3ctel Jimbar\u00e1n. \nHidrataci\u00f3n Deluxe Tai Chi, seguido de Royal Facial Express o Masaje Craneal antiestr\u00e9s.\n<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ecc262e elementor-widget elementor-widget-heading\" data-id=\"ecc262e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Opciones de este servicio<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c8b688d e-con-full e-flex e-con e-child\" data-id=\"c8b688d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c29eb46 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"c29eb46\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"44\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905871&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">120 min \u2014 198\u20ac<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-0ccee4b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"0ccee4b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7c967d5 e-con-full e-flex e-con e-child\" data-id=\"7c967d5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8faa32f elementor-widget elementor-widget-heading\" data-id=\"8faa32f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">desde<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-766d93e elementor-widget elementor-widget-heading\" data-id=\"766d93e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">198\u20ac<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-489b089 elementor-widget elementor-widget-heading\" data-id=\"489b089\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">por persona<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5df69bb e-con-full e-grid e-con e-child\" data-id=\"5df69bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bc17442 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"bc17442\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"43\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=sv%3A23905871&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reserva<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba81625 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"ba81625\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/balispirit.es\/carrito\/?add-to-cart=22397\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">REGALA<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c52e408 e-con-full e-flex e-con e-child\" data-id=\"c52e408\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5369614 e-con-full e-flex e-con e-child\" data-id=\"5369614\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5843c1a elementor-widget elementor-widget-heading\" data-id=\"5843c1a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">personalizado<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ca16fd elementor-widget elementor-widget-heading\" data-id=\"2ca16fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">TREINTA M\u00c1S TREINTA<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-da5db00 elementor-widget elementor-widget-heading\" data-id=\"da5db00\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">100% adaptado a t\u00ed<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-933799c elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"933799c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bdd2d62 elementor-widget elementor-widget-heading\" data-id=\"bdd2d62\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">La desconexi\u00f3n entre amigas en el Para\u00edso ya es posible.\nHaz sentir a\u00fan m\u00e1s especial a la persona homenajeada y mejora su experiencia con varias opciones una vez a\u00f1adido el tratamiento al carrito de compra.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd84659 elementor-widget elementor-widget-heading\" data-id=\"dd84659\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Opciones de este servicio<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02a8feb e-con-full e-flex e-con e-child\" data-id=\"02a8feb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9e5830f boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"9e5830f\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"60\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=p%3A1663977&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">60 min \u2014 256\u20ac ( 64\u20ac por persona )<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\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-26fdc8e elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"26fdc8e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9bde43d e-con-full e-flex e-con e-child\" data-id=\"9bde43d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-07e9638 elementor-widget elementor-widget-heading\" data-id=\"07e9638\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">desde<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-89f8a5b elementor-widget elementor-widget-heading\" data-id=\"89f8a5b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">64\u20ac<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7559451 elementor-widget elementor-widget-heading\" data-id=\"7559451\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">por persona<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3799fd8 e-con-full e-grid e-con e-child\" data-id=\"3799fd8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74e9464 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"74e9464\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"60\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&#038;oiid=p%3A1663977&#038;share=true&#038;pId=2587099\" target=\"_blank\" rel=\"nofollow\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">reserva<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3ab2651 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"3ab2651\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/balispirit.es\/carrito\/?add-to-cart=22472\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">REGALA<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1873e2f e-con-full e-flex e-con e-parent\" data-id=\"1873e2f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5fdae84 e-grid e-con-boxed e-con e-child\" data-id=\"5fdae84\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-206fb1c e-con-full e-flex e-con e-child\" data-id=\"206fb1c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8cc5cce elementor-widget elementor-widget-image\" data-id=\"8cc5cce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1.png\" class=\"attachment-large size-large wp-image-23263\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1.png 1024w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1-300x300.png 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1-150x150.png 150w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1-768x768.png 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1-600x600.png 600w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BUDA-1024x1024-1-100x100.png 100w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd04a7b elementor-widget elementor-widget-heading\" data-id=\"cd04a7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">A Sanctuary of Sensations<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1d868dc elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"1d868dc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>As you cross the threshold of Bali Spirit, the noise of Barcelona fades away and your senses reconnect with a natural instinct that honors you. Here, words are unnecessary, giving way to the language of the soul through a body that feels safe, cared for, and at home. Just open your heart to this transformative experience and let the essence of the temple do the rest for you.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2012eae e-con-full e-flex e-con e-child\" data-id=\"2012eae\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d71914d elementor-widget elementor-widget-image\" data-id=\"d71914d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1.png\" class=\"attachment-large size-large wp-image-23264\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1.png 1024w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1-300x300.png 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1-150x150.png 150w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1-768x768.png 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1-600x600.png 600w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BEST-1024x1024-1-100x100.png 100w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ed59d46 elementor-widget elementor-widget-heading\" data-id=\"ed59d46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Best Spa Concept 2024<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dcb0cc6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"dcb0cc6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>As you cross the threshold of Bali Spirit, the noise of Barcelona fades away and your senses reconnect with a natural instinct that honors you. Here, words are unnecessary, giving way to the language of the soul through a body that feels safe, cared for, and at home. Just open your heart to this transformative experience and let the essence of the temple do the rest for you.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f8ddd7e e-con-full e-flex e-con e-child\" data-id=\"f8ddd7e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c537a45 elementor-widget elementor-widget-image\" data-id=\"c537a45\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"800\" src=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1.png\" class=\"attachment-large size-large wp-image-23265\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1.png 1024w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1-300x300.png 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1-150x150.png 150w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1-768x768.png 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1-600x600.png 600w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/BALI-1024x1024-1-100x100.png 100w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7b4f55a elementor-widget elementor-widget-heading\" data-id=\"7b4f55a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">The Only Traditional Balinese Spa in Spain<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e4b259a elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"e4b259a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>As you cross the threshold of Bali Spirit, the noise of Barcelona fades away and your senses reconnect with a natural instinct that honors you. Here, words are unnecessary, giving way to the language of the soul through a body that feels safe, cared for, and at home. Just open your heart to this transformative experience and let the essence of the temple do the rest for you.  <\/p>\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-980cd15 e-con-full e-flex e-con e-parent\" data-id=\"980cd15\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7fa38e6 elementor-widget elementor-widget-heading\" data-id=\"7fa38e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Share Relaxation<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-339bb16 elementor-widget elementor-widget-heading\" data-id=\"339bb16\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Give the Gift of Balispirit<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ffcd529 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"ffcd529\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Sharing the Balispirit Experience means sharing a unique sensation. It\u2019s the perfect way to make the people who truly matter feel special. Share the Balispirit Experience, a unique experience of relaxation.  <\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b593bfa e-flex e-con-boxed e-con e-parent\" data-id=\"b593bfa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d00d0e elementor-widget elementor-widget-heading\" data-id=\"6d00d0e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Customer Reviews<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bced660 elementor-widget elementor-widget-shortcode\" data-id=\"bced660\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><pre class=\"ti-widget\" style=\"display: none\"><template id=\"trustindex-google-widget-html\"><div class=\" ti-widget  ti-goog ti-disable-font ti-show-rating-text ti-review-text-mode-readmore ti-text-align-left\" data-no-translation=\"true\" data-time-locale=\"hace %d %s|hoy|d\u00eda|d\u00edas|semana|semanas|mes|meses|a\u00f1o|a\u00f1os\" data-plugin-version=\"13.3.1\" data-layout-id=\"5\" data-layout-category=\"slider\" data-set-id=\"light-background\" data-pid=\"\" data-language=\"es\" data-close-locale=\"Cerca\" data-review-target-width=\"275\" data-css-version=\"2\" data-reply-by-locale=\"Respuesta del propietario\" data-only-rating-locale=\"Este usuario solo dej\u00f3 una calificaci\u00f3n.\" data-pager-autoplay-timeout=\"6\"> <div class=\"ti-widget-container ti-col-4\"> <div class=\"ti-footer ti-footer-grid source-Google\"> <div class=\"ti-fade-container\"> <div class=\"ti-rating-text\"> <strong class=\"ti-rating ti-rating-large\"> BUENO <\/strong> <\/div> <span class=\"ti-stars star-lg\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/h.svg\" alt=\"Google star 5.0.4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><\/span> <div class=\"ti-rating-text\"> <span class=\"nowrap\">A base de <strong>659 rese\u00f1as<\/strong><\/span> <\/div> <div class=\"ti-large-logo\"> <div class=\"ti-v-center\"> <trustindex-image class=\"ti-logo-fb\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/logo.svg\" width=\"150\" height=\"25\" loading=\"lazy\" alt=\"Google\"><\/trustindex-image> <\/div> <\/div> <\/div> <\/div> <div class=\"ti-reviews-container\"> <div class=\"ti-controls\"> <div class=\"ti-next\" aria-label=\"Siguiente rese\u00f1a\" role=\"button\" tabindex=\"0\"><\/div> <div class=\"ti-prev\" aria-label=\"Rese\u00f1a anterior\" role=\"button\" tabindex=\"0\"><\/div> <\/div> <div class=\"ti-reviews-container-wrapper\">  <div data-empty=\"0\" data-time=\"1780704000\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocJsRPQs6BUNDRUmnb5v2MbUtdMY5qiPpme0w9HIi7hOK0Z9mQ=w40-h40-c-rp-mo-br100\" alt=\"Lidia Romero G\u00f3mez profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Lidia Romero G\u00f3mez <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Nos regalaron la experiencia de Baby Spa y todo ha sido de 10! Desde la chica de recepci\u00f3n super agradable, la terapeuta Fiorella un encanto, atenta a todo y un masaje espectacular. El espacio te traslada completamente a la energ\u00eda de Bali, cuidando todos los detalles. Volveremos sin duda!<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1780185600\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjUupvitsGNmOZrD0wbWKnkYl22X5oPgHiRW_Yc4tvwMORF3U-U=w40-h40-c-rp-mo-ba12-br100\" alt=\"Nuria Fernandez profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Nuria Fernandez <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/e.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Hemos venido a realizar un masaje en pareja con ba\u00f1o previo. La experiencia ha sido muy relajante y el trato del personal ha sido muy cercano y nos han hecho sentir c\u00f3modos desde el principio. Tanto la recepcionista, como las masajistas. Desde que entras ya conectas con los aromas y el ambiente balin\u00e9s, y cuando te llevan a la habitaci\u00f3n t\u00fa cuerpo ya sintoniza con el relax.\nVolveremos seguro \u2764\ufe0f\ud83d\ude4f<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1779494400\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocK2Wmw-743U5ITME5KHY5NIwIXcl3g9EaJRWgd8TMAEKzZPcw=w40-h40-c-rp-mo-br100\" alt=\"Toni Cuenca Garcia profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Toni Cuenca Garcia <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Ha sido genial. Lo recomiendo 100X100<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1777680000\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a-\/ALV-UjU2wfjN75IQNpWDqhRWVYzrEkCL9cAc3SFfX2XWs5eNhaVEDOQc1g=w40-h40-c-rp-mo-ba12-br100\" alt=\"Dusk Bright profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Dusk Bright <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Un precioso lugar en Barcelona<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1777334400\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocIAc2WXNupWhOUNg7UoE_CZz6OqQx5JJNnoBmGHLS3gPuyD-A=w40-h40-c-rp-mo-br100\" alt=\"Izan Llorens profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Izan Llorens <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Mica y Rafael no s\u00e9 qu\u00e9 tienen en las manos pero son m\u00e1gicas !!! 1000 de 10 !! Super recomendado<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <div data-empty=\"0\" data-time=\"1777075200\" class=\"ti-review-item source-Google ti-image-layout-thumbnail\" data-id=\"cfcd208495d565ef66e7dff9f98764da\" data-language=\"\"> <div class=\"ti-inner\"> <div class=\"ti-review-header\"> <div class=\"ti-platform-icon ti-with-tooltip\"> <span class=\"ti-tooltip\">Publicado en Google<\/span> <trustindex-image data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/icon.svg\" alt=\"Google\" width=\"20\" height=\"20\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-img\"> <trustindex-image data-imgurl=\"https:\/\/lh3.googleusercontent.com\/a\/ACg8ocJKW7zTQ6RZU0KunncoTnJKTohs6OO5v0uHrEgMSBN6iLZ-xw=w40-h40-c-rp-mo-ba12-br100\" alt=\"Ana Alferaru profile picture\" loading=\"lazy\"><\/trustindex-image> <\/div> <div class=\"ti-profile-details\"> <div class=\"ti-name\"> Ana Alferaru <\/div> <div class=\"ti-date\"><\/div> <\/div> <\/div> <span class=\"ti-stars\"><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 1\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 2\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 3\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 4\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><trustindex-image class=\"ti-star\" data-imgurl=\"https:\/\/cdn.trustindex.io\/assets\/platform\/Google\/star\/f.svg\" alt=\"Google star 5\" width=\"17\" height=\"17\" loading=\"lazy\"><\/trustindex-image><span class=\"ti-verified-review ti-verified-platform\"><span class=\"ti-verified-tooltip\">Trustindex verifica que la fuente original de la rese\u00f1a sea Google.<\/span><\/span><\/span> <div class=\"ti-review-text-container ti-review-content\"><!-- R-CONTENT -->Amazingg deep tissue! Sandra was the best<!-- R-CONTENT --><\/div> <span class=\"ti-read-more\" data-container=\".ti-review-content\" data-collapse-text=\"Ocultar\" data-open-text=\"Leer m\u00e1s\"><\/span> <\/div> <\/div>  <\/div> <div class=\"ti-controls-line\"> <div class=\"dot\"><\/div> <\/div>   <\/div> <\/div> <\/div> <\/template><\/pre><div data-src=\"https:\/\/cdn.trustindex.io\/loader.js?wp-widget\" data-template-id=\"trustindex-google-widget-html\" data-css-url=\"https:\/\/balispirit.es\/wp-content\/uploads\/trustindex-google-widget.css?1784610156\"><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u00d7 Relaxing Massage Give your body what it&#8217;s asking for. BY THE AUTHOR Tenderness \u2014 Dreamland Massage There are times when the body doesn&#8217;t need strength; it needs gentleness. &#8220;Ternura&#8221; is a deeply comforting ritual created for those going through periods of emotional stress, or who simply feel the need to be cared for and [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"_joinchat":[],"footnotes":""},"class_list":["post-20203","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Relaxing Massage in Barcelona - Bali Spirit<\/title>\n<meta name=\"description\" content=\"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Relaxing Massage in Barcelona - Bali Spirit\" \/>\n<meta property=\"og:description\" content=\"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/\" \/>\n<meta property=\"og:site_name\" content=\"Bali Spirit\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-27T21:53:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/\",\"url\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/\",\"name\":\"Relaxing Massage in Barcelona - Bali Spirit\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mujer.webp\",\"datePublished\":\"2023-01-23T11:51:46+00:00\",\"dateModified\":\"2026-07-27T21:53:59+00:00\",\"description\":\"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/#primaryimage\",\"url\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mujer.webp\",\"contentUrl\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mujer.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/relaxing-massages-in-barcelona\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/balispirit.es\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Relaxing Massages in Barcelona\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/balispirit.es\\\/en\\\/\",\"name\":\"Bali Spirit\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/balispirit.es\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#organization\",\"name\":\"Bali Spirit\",\"url\":\"https:\\\/\\\/balispirit.es\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/banner-logo.png\",\"contentUrl\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/banner-logo.png\",\"width\":709,\"height\":251,\"caption\":\"Bali Spirit\"},\"image\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Relaxing Massage in Barcelona - Bali Spirit","description":"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/","og_locale":"en_US","og_type":"article","og_title":"Relaxing Massage in Barcelona - Bali Spirit","og_description":"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!","og_url":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/","og_site_name":"Bali Spirit","article_modified_time":"2026-07-27T21:53:59+00:00","og_image":[{"url":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/","url":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/","name":"Relaxing Massage in Barcelona - Bali Spirit","isPartOf":{"@id":"https:\/\/balispirit.es\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/#primaryimage"},"image":{"@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/#primaryimage"},"thumbnailUrl":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp","datePublished":"2023-01-23T11:51:46+00:00","dateModified":"2026-07-27T21:53:59+00:00","description":"Relaxing massage in Barcelona. Bali Spirit, an oasis of calm for your wellbeing in the Eixample. Book your session online!","breadcrumb":{"@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/#primaryimage","url":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp","contentUrl":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/balispirit.es\/en\/relaxing-massages-in-barcelona\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/balispirit.es\/en\/"},{"@type":"ListItem","position":2,"name":"Relaxing Massages in Barcelona"}]},{"@type":"WebSite","@id":"https:\/\/balispirit.es\/en\/#website","url":"https:\/\/balispirit.es\/en\/","name":"Bali Spirit","description":"","publisher":{"@id":"https:\/\/balispirit.es\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/balispirit.es\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/balispirit.es\/en\/#organization","name":"Bali Spirit","url":"https:\/\/balispirit.es\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/balispirit.es\/en\/#\/schema\/logo\/image\/","url":"https:\/\/balispirit.es\/wp-content\/uploads\/2023\/01\/banner-logo.png","contentUrl":"https:\/\/balispirit.es\/wp-content\/uploads\/2023\/01\/banner-logo.png","width":709,"height":251,"caption":"Bali Spirit"},"image":{"@id":"https:\/\/balispirit.es\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages\/20203","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/comments?post=20203"}],"version-history":[{"count":15,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages\/20203\/revisions"}],"predecessor-version":[{"id":23504,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages\/20203\/revisions\/23504"}],"wp:attachment":[{"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/media?parent=20203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}