{"id":23327,"date":"2023-02-02T18:00:09","date_gmt":"2023-02-02T17:00:09","guid":{"rendered":"https:\/\/balispirit.es\/spa-packages\/"},"modified":"2026-07-21T07:55:11","modified_gmt":"2026-07-21T06:55:11","slug":"spa-packages","status":"publish","type":"page","link":"https:\/\/balispirit.es\/en\/spa-packages\/","title":{"rendered":"Spa Packages"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"23327\" class=\"elementor elementor-23327 elementor-745\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e7ace8a e-flex e-con-boxed e-con e-parent\" data-id=\"e7ace8a\" 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-fa68876 elementor-widget elementor-widget-html\" data-id=\"fa68876\" 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    <h2 id=\"cart-popup-title\"><\/h2>\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-c6aaca3 e-flex e-con-boxed e-con e-parent\" data-id=\"c6aaca3\" 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-3802607 elementor-widget elementor-widget-heading\" data-id=\"3802607\" 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\">SPA Packages in Barcelona<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-05adb0d e-con-full e-flex e-con e-child\" data-id=\"05adb0d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2124154 e-con-full e-flex e-con e-child\" data-id=\"2124154\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2cfd956 e-con-full e-flex e-con e-child\" data-id=\"2cfd956\" 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-3b4acde elementor-widget elementor-widget-heading\" data-id=\"3b4acde\" 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\">TRADITION<\/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-7606cb2 e-con-full e-flex e-con e-child\" data-id=\"7606cb2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c16ecd1 elementor-widget elementor-widget-heading\" data-id=\"c16ecd1\" 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\">Deluxe Pampering Package<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-87b4b68 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"87b4b68\" 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>One-hour Dreamland Massage.<br\/>Lulur Exfoliation Ritual (ground rice powder blended with 7 spices)<br\/>Moisturizing yogurt mask.<br\/>Relaxing Bath.<br\/>Deluxe Moisturizing Treatment using Tai Chi techniques.<br\/>Royal Facial or Cranial Massage with cervical osteopathy and TMJ therapy: jaws and skull.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a55c063 elementor-widget elementor-widget-heading\" data-id=\"a55c063\" 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-049075c e-con-full e-flex e-con e-child\" data-id=\"049075c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d88ecff boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"d88ecff\" 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%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-bd18e9b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"bd18e9b\" 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-ab46be5 elementor-widget elementor-widget-heading\" data-id=\"ab46be5\" 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-512c171 elementor-widget elementor-widget-heading\" data-id=\"512c171\" 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-2765953 e-con-full e-grid e-con e-child\" data-id=\"2765953\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5553992 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"5553992\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"32\" 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\">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-fca0cb9 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"fca0cb9\" 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\/en\/cart\/?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\">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-cd5d39c e-con-full e-flex e-con e-child\" data-id=\"cd5d39c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8d11ddb e-con-full e-flex e-con e-child\" data-id=\"8d11ddb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ac5daa5 elementor-widget elementor-widget-heading\" data-id=\"ac5daa5\" 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\">Traditional Lulur Ritual<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e7bc09 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"6e7bc09\" 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>Originating in the Royal Palaces of Java, the Lulur is a traditional Balinese ritual that includes a Traditional Balinese Massage, an exfoliation with homemade Lulur (fragrant and beautifying), and a layer of moisturizing yogurt. We\u2019ll finish with a rose bath, accompanied by a Balinese herbal tea, and, once completed, a deep moisturizing treatment with passion fruit milk. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-144968e elementor-widget elementor-widget-heading\" data-id=\"144968e\" 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-b2ea85f e-con-full e-flex e-con e-child\" data-id=\"b2ea85f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3972e8 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"e3972e8\" 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%3A25063571&#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 154\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-5cc07f4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"5cc07f4\" 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-33e50a4 elementor-widget elementor-widget-heading\" data-id=\"33e50a4\" 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-6eedd91 elementor-widget elementor-widget-heading\" data-id=\"6eedd91\" 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\">\u20ac154<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f810d85 e-con-full e-grid e-con e-child\" data-id=\"f810d85\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f0df8a elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"1f0df8a\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"33\" 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%3A25063571&#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-10b45cb elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"10b45cb\" 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\/en\/cart\/?add-to-cart=345\">\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-7705e0f e-con-full e-flex e-con e-child\" data-id=\"7705e0f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9d64f17 e-con-full e-flex e-con e-child\" data-id=\"9d64f17\" 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-c09efb5 elementor-widget elementor-widget-heading\" data-id=\"c09efb5\" 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-f46af57 e-con-full e-flex e-con e-child\" data-id=\"f46af57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d6d2ecf e-con-full e-flex e-con e-child\" data-id=\"d6d2ecf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f671b23 e-con-full e-flex e-con e-child\" data-id=\"f671b23\" 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-1b9d080 elementor-widget elementor-widget-heading\" data-id=\"1b9d080\" 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\">TRADITION<\/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-3fb3265 e-con-full e-flex e-con e-child\" data-id=\"3fb3265\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fabbb25 elementor-widget elementor-widget-heading\" data-id=\"fabbb25\" 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\">Candlelit Facial Treatment<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9874263 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"9874263\" 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>The warm oil produced by the melting of a Balinese herbal candle allows us to provide a Royal Facial treatment with aromatherapy and a warm touch of energetic light. The ritual includes a Balinese scalp and facial massage and, to conclude, a chakra balancing session to promote the healthy flow of energy throughout your body. <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c096683 elementor-widget elementor-widget-heading\" data-id=\"c096683\" 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-600cc28 e-con-full e-flex e-con e-child\" data-id=\"600cc28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b56cc65 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"b56cc65\" 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%3A23905923&#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 \u20ac127<\/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-d06a7cf elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"d06a7cf\" 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-20994ed elementor-widget elementor-widget-heading\" data-id=\"20994ed\" 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-88c1a4e elementor-widget elementor-widget-heading\" data-id=\"88c1a4e\" 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\">127\u20ac<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a1a58c6 e-con-full e-grid e-con e-child\" data-id=\"a1a58c6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0bd7877 elementor-align-justify elementor-widget__width-inherit boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"0bd7877\" data-element_type=\"widget\" data-e-type=\"widget\" data-bookly-id=\"34\" 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%3A23905923&#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-6f8f821 elementor-align-justify elementor-widget elementor-widget-button\" data-id=\"6f8f821\" 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\/en\/cart\/?add-to-cart=343\">\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-8d46ce8 e-con-full e-flex e-con e-child\" data-id=\"8d46ce8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cc43dd1 e-con-full e-flex e-con e-child\" data-id=\"cc43dd1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f1aee8c elementor-widget elementor-widget-heading\" data-id=\"f1aee8c\" 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\">Women's Muse Special<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cf96755 elementor-widget__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"cf96755\" 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>Without a doubt one of the ideal massages for you, woman, since it is &#8220;Made to measure&#8221;. Tell us how you feel TODAY, what you like, your emotional state, what is in an ideal massage for you and we will build an on-site massage 100% adapted to your needs that day, mixed, if you wish, with personalized aesthetic treatments or energy rituals. We put at your disposal all our knowledge and all our feelings so that you receive exactly what you need today: A massage inspired by you, MUSA.  <\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d251895 elementor-widget elementor-widget-heading\" data-id=\"d251895\" 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-c6b7497 e-con-full e-flex e-con e-child\" data-id=\"c6b7497\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cfc7b63 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"cfc7b63\" 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%3A25063645&#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 \u20ac119<\/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-99c3327 boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"99c3327\" 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%3A23905843&#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 152\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-750168c boton-reserva-dinamica elementor-widget elementor-widget-button\" data-id=\"750168c\" 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%3A23905844&#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 189\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-8762c0f elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"8762c0f\" 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-b9cd8ca elementor-widget elementor-widget-heading\" data-id=\"b9cd8ca\" 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-2f0090e elementor-widget elementor-widget-heading\" data-id=\"2f0090e\" 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<div class=\"elementor-element elementor-element-7c4a81e e-con-full e-grid e-con e-child\" data-id=\"7c4a81e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-56dceea elementor-align-justify elementor-widget__width-inherit boton-reserva-diamica elementor-widget elementor-widget-button\" data-id=\"56dceea\" data-element_type=\"widget\" data-e-type=\"widget\" data-popup-fresha=\"true\" data-title=\"Especial Musa Mujer\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min&quot;,&quot;price&quot;:&quot;119\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A25063645&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;90 min&quot;,&quot;price&quot;:&quot;152\u20ac&quot;,&quot;url&quot;:&quot;https:\/\/www.fresha.com\/book-now\/bali-spirit-luxury-art-spa-t5dy5qbp\/services?lid=2672612&amp;oiid=sv%3A23905843&amp;share=true&amp;pId=2587099&quot;},{&quot;label&quot;:&quot;120 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%3A23905844&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\">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-70f23b2 elementor-align-justify js-open-cart-popup elementor-widget elementor-widget-button\" data-id=\"70f23b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-title=\"Especial Musa Mujer\" data-description=\"Selecciona la duraci\u00f3n\" data-buttons=\"[{&quot;label&quot;:&quot;60 min \u2014 119\u20ac&quot;,&quot;product_id&quot;:13774,&quot;variation_id&quot;:17405},{&quot;label&quot;:&quot;90 min \u2014 152\u20ac&quot;,&quot;product_id&quot;:13775,&quot;variation_id&quot;:13781},{&quot;label&quot;:&quot;120 min \u2014 182\u20ac&quot;,&quot;product_id&quot;:22378,&quot;variation_id&quot;:13781}]\" 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=345\">\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-5d09678 e-con-full e-flex e-con e-child\" data-id=\"5d09678\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4e09ebb e-con-full e-flex e-con e-child\" data-id=\"4e09ebb\" 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-fd0e50a elementor-widget elementor-widget-heading\" data-id=\"fd0e50a\" 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-27fd66f e-con-full e-flex e-con e-parent\" data-id=\"27fd66f\" 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-acadeab e-grid animated-slow e-con-boxed elementor-invisible e-con e-child\" data-id=\"acadeab\" 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-13ce891 e-con-full e-flex e-con e-child\" data-id=\"13ce891\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b050c7b elementor-invisible elementor-widget elementor-widget-image\" data-id=\"b050c7b\" 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-0f45e29 e-con-full e-flex e-con e-child\" data-id=\"0f45e29\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9eb2421 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"9eb2421\" 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>A luxury spa with a Balinese feel in the heart of Barcelona.<\/p><p>We\u2019ve brought a little piece of the island of Bali to the artistic city of Barcelona. Our Luxury Art Spa draws inspiration from ancient Balinese traditions, blending the senses with art, and blossoming from the minds and hearts of the creators of Bali Spirit Spa Lounge. <\/p><p>At our idyllic facility, we offer our clients a holistic transformation: with our hands, we reach the soul, filling it with positivity and peace, purifying the body and mind, and achieving a beautiful physical, mental, and spiritual balance. A true journey to Bali. <\/p><p>We have won international awards for our artistic creations and our innovative signature massages, which are full of emotion and warmth. Furthermore, Bali Spirit is committed to ensuring and improving its quality management system by working toward \u201cISO 9001\u201d certification and implementing the \u201cISO 14001\u201d and \u201cEMAS\u201d environmental management systems, thereby further enhancing our customers\u2019 satisfaction and the excellence of our services. <\/p><p>In 2024, we were also awarded the title of Best Spa Concept. Bali Spirit Luxury Art Spa, created by artists and musicians, is regarded in the artistic city of Barcelona as a Balinese spa-museum. This heavenly sanctuary draws inspiration from ancient Balinese traditions, blending the senses with art, blossoming from the mind and heart.  <\/p><p>Give it a try.<\/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-fc7b376 e-con-full e-flex e-con e-parent\" data-id=\"fc7b376\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e31c4f6 e-grid animated-slow e-con-boxed elementor-invisible e-con e-child\" data-id=\"e31c4f6\" 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-862acb3 e-con-full e-flex e-con e-child\" data-id=\"862acb3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-398d98a elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"398d98a\" 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>Massages that transport you to another place. We take care of every aspect of the experience you\u2019re about to enjoy so that it remains etched in your body and mind as one of the best experiences of your life. At Bali Spirit, every massage is a work of art, created to envelop you in a sense of well-being. And you\u2019ll only know this if you try them. Choose yours.    <\/p><p>The massages we present below are designed for those who like to get the best of every aspect. These spa packages combine excellent treatments with the simple goal of enjoying them. Without a doubt, combining the best results in something excellent, and excellence is what we aim to offer with this mix of therapies.  <\/p><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ed71a67 e-con-full e-flex e-con e-child\" data-id=\"ed71a67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74474a7 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"74474a7\" 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\/Tailor-Made-1024x683.webp\" class=\"attachment-large size-large wp-image-23336\" alt=\"\" srcset=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Tailor-Made-1024x683.webp 1024w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Tailor-Made-300x200.webp 300w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Tailor-Made-768x512.webp 768w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Tailor-Made-600x400.webp 600w, https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/Tailor-Made.webp 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-5274e00 e-flex e-con-boxed e-con e-parent\" data-id=\"5274e00\" 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-b43729f elementor-widget elementor-widget-heading\" data-id=\"b43729f\" 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\">Spa Center in Downtown Barcelona<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fbf884c elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"fbf884c\" 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>Step into our spa in the heart of Barcelona. Without even boarding a plane, you can experience the unique sensations of the island of Bali firsthand. <\/p><p>You&#8217;ll find this paradise on earth at 59 Aribau Street in Barcelona.<\/p><p>This place is like an oasis of peace amid the hustle and bustle of the city. It&#8217;s the kind of place we all need to visit to find relaxation and calm, and to recharge our batteries so we can keep going. <\/p><p>Our facilities, designed with great care, transport you to the exotic island of Bali. The d\u00e9cor, a fusion of traditional and contemporary elements, creates a warm and welcoming atmosphere. With soft music and aromas that invite you to relax, this is the perfect setting for wellness.  <\/p><p>For all these reasons\u2014and for those we\u2019re not revealing so you can discover them for yourself\u2014Bali Spirit is one of the most prestigious spas in Barcelona. Our commitment to excellence is reflected in every aspect of our services. From the warm welcome to your final farewell, we want you to remember your visit as a unique experience\u2014one you\u2019ll be eager to repeat.   <\/p><p>Immerse yourself in a world of sensations. We look forward to welcoming you to this sanctuary where the art of massage becomes a transformative experience. Come enjoy a sensory escape that renews, revitalizes, and reconnects you with the very essence of your being.  <\/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-c82c656 e-flex e-con-boxed e-con e-parent\" data-id=\"c82c656\" 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-0b1d05e elementor-widget elementor-widget-heading\" data-id=\"0b1d05e\" 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\">OTHER EXPERIENCES TO ENJOY IN BARCELONA<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c457172 elementor-widget elementor-widget-template\" data-id=\"c457172\" 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-d04b0de e-con-full e-flex e-con e-parent\" data-id=\"d04b0de\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bcc1d17 e-grid e-con-boxed e-con e-child\" data-id=\"bcc1d17\" 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-5928373 e-con-full e-flex e-con e-child\" data-id=\"5928373\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf8dae5 elementor-widget elementor-widget-image\" data-id=\"bf8dae5\" 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-2926417 elementor-widget elementor-widget-heading\" data-id=\"2926417\" 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-a0589b6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"a0589b6\" 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-6c3d3a1 e-con-full e-flex e-con e-child\" data-id=\"6c3d3a1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3de29b5 elementor-widget elementor-widget-image\" data-id=\"3de29b5\" 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-eddb7bb elementor-widget elementor-widget-heading\" data-id=\"eddb7bb\" 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-7ff0139 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7ff0139\" 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-5a4cb47 e-con-full e-flex e-con e-child\" data-id=\"5a4cb47\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-34515f7 elementor-widget elementor-widget-image\" data-id=\"34515f7\" 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-f8d4ea4 elementor-widget elementor-widget-heading\" data-id=\"f8d4ea4\" 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-8729aa7 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"8729aa7\" 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-72fb818 e-con-full e-flex e-con e-parent\" data-id=\"72fb818\" 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-5ffe1dd elementor-widget elementor-widget-heading\" data-id=\"5ffe1dd\" 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-c64371c elementor-widget elementor-widget-heading\" data-id=\"c64371c\" 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-f7202cd elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"f7202cd\" 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-7ebc2a7 e-flex e-con-boxed e-con e-parent\" data-id=\"7ebc2a7\" 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-3ca9062 elementor-widget elementor-widget-heading\" data-id=\"3ca9062\" 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\">Customer Reviews<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-131d56a elementor-widget elementor-widget-shortcode\" data-id=\"131d56a\" 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 SPA Packages in Barcelona TRADITION Deluxe Pampering Package One-hour Dreamland Massage.Lulur Exfoliation Ritual (ground rice powder blended with 7 spices)Moisturizing yogurt mask.Relaxing Bath.Deluxe Moisturizing Treatment using Tai Chi techniques.Royal Facial or Cranial Massage with cervical osteopathy and TMJ therapy: jaws and skull. Options for this service 120 min \u2014 198\u20ac from \u20ac198 reservation GIVE [&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-23327","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Spa in Barcelona - Bali Spirit<\/title>\n<meta name=\"description\" content=\"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.\" \/>\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\/spa-packages\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spa in Barcelona - Bali Spirit\" \/>\n<meta property=\"og:description\" content=\"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/balispirit.es\/en\/spa-packages\/\" \/>\n<meta property=\"og:site_name\" content=\"Bali Spirit\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-21T06:55:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/\",\"url\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/\",\"name\":\"Spa in Barcelona - Bali Spirit\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/balispirit.es\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/mujer.webp\",\"datePublished\":\"2023-02-02T17:00:09+00:00\",\"dateModified\":\"2026-07-21T06:55:11+00:00\",\"description\":\"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/balispirit.es\\\/en\\\/spa-packages\\\/#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\\\/spa-packages\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/balispirit.es\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spa Packages\"}]},{\"@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":"Spa in Barcelona - Bali Spirit","description":"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.","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\/spa-packages\/","og_locale":"en_US","og_type":"article","og_title":"Spa in Barcelona - Bali Spirit","og_description":"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.","og_url":"https:\/\/balispirit.es\/en\/spa-packages\/","og_site_name":"Bali Spirit","article_modified_time":"2026-07-21T06:55:11+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/balispirit.es\/en\/spa-packages\/","url":"https:\/\/balispirit.es\/en\/spa-packages\/","name":"Spa in Barcelona - Bali Spirit","isPartOf":{"@id":"https:\/\/balispirit.es\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/balispirit.es\/en\/spa-packages\/#primaryimage"},"image":{"@id":"https:\/\/balispirit.es\/en\/spa-packages\/#primaryimage"},"thumbnailUrl":"https:\/\/balispirit.es\/wp-content\/uploads\/2026\/06\/mujer.webp","datePublished":"2023-02-02T17:00:09+00:00","dateModified":"2026-07-21T06:55:11+00:00","description":"A luxury Balinese spa in Barcelona. Bali Spirit, an award-winning spa in 2024, offers unique massages and holistic peace in an artistic sanctuary in the heart of the city.","breadcrumb":{"@id":"https:\/\/balispirit.es\/en\/spa-packages\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/balispirit.es\/en\/spa-packages\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/balispirit.es\/en\/spa-packages\/#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\/spa-packages\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/balispirit.es\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Spa Packages"}]},{"@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\/23327","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=23327"}],"version-history":[{"count":3,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages\/23327\/revisions"}],"predecessor-version":[{"id":23350,"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/pages\/23327\/revisions\/23350"}],"wp:attachment":[{"href":"https:\/\/balispirit.es\/en\/wp-json\/wp\/v2\/media?parent=23327"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}