{"id":19,"date":"2024-09-26T14:04:35","date_gmt":"2024-09-26T14:04:35","guid":{"rendered":"https:\/\/dev.lucaoccelli.com\/?page_id=19"},"modified":"2024-10-16T08:54:32","modified_gmt":"2024-10-16T08:54:32","slug":"home","status":"publish","type":"page","link":"https:\/\/dev.lucaoccelli.com\/it\/","title":{"rendered":"HOME"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"19\" class=\"elementor elementor-19\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c53685 e-flex e-con-boxed e-con e-parent\" data-id=\"4c53685\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4b78c84 elementor-widget elementor-widget-spacer\" data-id=\"4b78c84\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0295cda e-flex e-con-boxed e-con e-parent\" data-id=\"0295cda\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16915af elementor-widget elementor-widget-heading\" data-id=\"16915af\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Costellazioni  Familiari  Sistemiche<\/h2>\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-79bf9b6 e-flex e-con-boxed e-con e-parent\" data-id=\"79bf9b6\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8525ce1 elementor-widget elementor-widget-text-editor\" data-id=\"8525ce1\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Processo efficace mediante il quale si possono risolvere una moltitudine di problemi andando a scoprire l\u2019origine di questi e ripristinando ordine nel sistema familiare dove questi sono stati originati.<\/p>\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-65d5d15 e-con-full e-flex e-con e-parent\" data-id=\"65d5d15\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-688dcb4 elementor-widget elementor-widget-html\" data-id=\"688dcb4\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<!-- Contenitore per le costellazioni -->\r\n<div class=\"constellation-container\">\r\n  <canvas id=\"constellation-canvas\"><\/canvas>\r\n<\/div>\r\n\r\n<!-- Stile per il contesto -->\r\n<style>\r\n.constellation-container {\r\n  width: 100%;\r\n  height: 300px;\r\n  position: relative;\r\n  background: rgba(0, 0, 0, 0); \/* Sfondo trasparente *\/\r\n}\r\n\r\n#constellation-canvas {\r\n  width: 100%;\r\n  height: 100%;\r\n  display: block;\r\n}\r\n\r\n<\/style>\r\n\r\n<!-- Script per generare l'animazione delle costellazioni -->\r\n<script>\r\nconst canvas = document.getElementById('constellation-canvas');\r\nconst ctx = canvas.getContext('2d');\r\n\r\ncanvas.width = canvas.offsetWidth;\r\ncanvas.height = canvas.offsetHeight;\r\n\r\nconst particles = [];\r\nconst maxParticles = 100;\r\n\r\nfunction Particle() {\r\n  this.x = Math.random() * canvas.width;\r\n  this.y = Math.random() * canvas.height;\r\n  this.radius = Math.random() * 2 + 1;\r\n  this.alpha = Math.random() * 0.5 + 0.5;\r\n  this.dx = (Math.random() - 0.5) * 1;\r\n  this.dy = (Math.random() - 0.5) * 1;\r\n}\r\n\r\nParticle.prototype.update = function() {\r\n  this.x += this.dx;\r\n  this.y += this.dy;\r\n\r\n  if (this.x < 0 || this.x > canvas.width) {\r\n    this.dx = -this.dx;\r\n  }\r\n\r\n  if (this.y < 0 || this.y > canvas.height) {\r\n    this.dy = -this.dy;\r\n  }\r\n\r\n  this.draw();\r\n};\r\n\r\nParticle.prototype.draw = function() {\r\n  ctx.beginPath();\r\n  ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2, false);\r\n  ctx.fillStyle = `rgba(255, 255, 255, ${this.alpha})`;\r\n  ctx.fill();\r\n  ctx.closePath();\r\n};\r\n\r\nfunction connectParticles() {\r\n  for (let i = 0; i < particles.length; i++) {\r\n    for (let j = i + 1; j < particles.length; j++) {\r\n      const distance = Math.sqrt((particles[i].x - particles[j].x) ** 2 + (particles[i].y - particles[j].y) ** 2);\r\n      if (distance < 100) {\r\n        ctx.beginPath();\r\n        ctx.moveTo(particles[i].x, particles[i].y);\r\n        ctx.lineTo(particles[j].x, particles[j].y);\r\n        ctx.strokeStyle = `rgba(255, 255, 255, 0.1)`;\r\n        ctx.stroke();\r\n        ctx.closePath();\r\n      }\r\n    }\r\n  }\r\n}\r\n\r\nfunction animate() {\r\n  ctx.clearRect(0, 0, canvas.width, canvas.height);\r\n\r\n  for (let i = 0; i < particles.length; i++) {\r\n    particles[i].update();\r\n  }\r\n\r\n  connectParticles();\r\n\r\n  requestAnimationFrame(animate);\r\n}\r\n\r\nfunction initParticles() {\r\n  for (let i = 0; i < maxParticles; i++) {\r\n    particles.push(new Particle());\r\n  }\r\n}\r\n\r\ninitParticles();\r\nanimate();\r\n\r\nwindow.addEventListener('resize', () => {\r\n  canvas.width = canvas.offsetWidth;\r\n  canvas.height = canvas.offsetHeight;\r\n  particles.length = 0;\r\n  initParticles();\r\n});\r\n<\/script>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-60fef4c e-flex e-con-boxed e-con e-parent\" data-id=\"60fef4c\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0f9ac3a elementor-widget elementor-widget-spacer\" data-id=\"0f9ac3a\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-dd4ccb8 e-grid e-con-boxed e-con e-parent\" data-id=\"dd4ccb8\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-53aa28e elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"53aa28e\" data-element_type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/dev.lucaoccelli.com\/costellazioni-familiari-sistemiche\/\" tabindex=\"-1\"><img fetchpriority=\"high\" decoding=\"async\" width=\"3525\" height=\"3404\" src=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1.png\" class=\"attachment-full size-full wp-image-144\" alt=\"\" srcset=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1.png 3525w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-300x290.png 300w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-1024x989.png 1024w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-768x742.png 768w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-1536x1483.png 1536w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-2048x1978.png 2048w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-12-1-600x579.png 600w\" sizes=\"(max-width: 3525px) 100vw, 3525px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\"><a href=\"https:\/\/dev.lucaoccelli.com\/costellazioni-familiari-sistemiche\/\">Costellazioni Familiari Sistemiche<\/a><\/h3><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-366a431 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"366a431\" data-element_type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/dev.lucaoccelli.com\/chi-e-il-counselor-metafisico\/\" tabindex=\"-1\"><img decoding=\"async\" width=\"3642\" height=\"3295\" src=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1.png\" class=\"attachment-full size-full wp-image-146\" alt=\"\" srcset=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1.png 3642w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-300x271.png 300w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-1024x926.png 1024w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-768x695.png 768w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-1536x1390.png 1536w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-2048x1853.png 2048w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-11-1-600x543.png 600w\" sizes=\"(max-width: 3642px) 100vw, 3642px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\"><a href=\"https:\/\/dev.lucaoccelli.com\/chi-e-il-counselor-metafisico\/\">Chi \u00e8 il Counselor Metafisico<\/a><\/h3><\/div><\/div>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15ad880 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"15ad880\" data-element_type=\"widget\" data-widget_type=\"image-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<div class=\"elementor-image-box-wrapper\"><figure class=\"elementor-image-box-img\"><a href=\"https:\/\/dev.lucaoccelli.com\/reconnective-healing\/\" tabindex=\"-1\"><img decoding=\"async\" width=\"3594\" height=\"3339\" src=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1.png\" class=\"attachment-full size-full wp-image-149\" alt=\"\" srcset=\"https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1.png 3594w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-300x279.png 300w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-1024x951.png 1024w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-768x714.png 768w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-1536x1427.png 1536w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-2048x1903.png 2048w, https:\/\/dev.lucaoccelli.com\/wp-content\/uploads\/2024\/09\/Untitled-Project-10-1-600x557.png 600w\" sizes=\"(max-width: 3594px) 100vw, 3594px\" \/><\/a><\/figure><div class=\"elementor-image-box-content\"><h3 class=\"elementor-image-box-title\"><a href=\"https:\/\/dev.lucaoccelli.com\/reconnective-healing\/\">Reconnective Healing<\/a><\/h3><\/div><\/div>\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-9659b47 e-flex e-con-boxed e-con e-parent\" data-id=\"9659b47\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-923c600 elementor-widget elementor-widget-spacer\" data-id=\"923c600\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Costellazioni Familiari Sistemiche Processo efficace mediante il quale si possono risolvere una moltitudine di problemi andando a scoprire l\u2019origine di questi e ripristinando ordine nel sistema familiare dove questi sono stati originati. Costellazioni Familiari Sistemiche Chi \u00e8 il Counselor Metafisico Reconnective Healing<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-19","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/pages\/19","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/comments?post=19"}],"version-history":[{"count":59,"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/pages\/19\/revisions"}],"predecessor-version":[{"id":12035,"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/pages\/19\/revisions\/12035"}],"wp:attachment":[{"href":"https:\/\/dev.lucaoccelli.com\/it\/wp-json\/wp\/v2\/media?parent=19"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}