{"id":12,"date":"2026-05-19T08:15:07","date_gmt":"2026-05-19T08:15:07","guid":{"rendered":"https:\/\/originalbarber.chillypills.es\/?page_id=12"},"modified":"2026-05-21T10:57:29","modified_gmt":"2026-05-21T10:57:29","slug":"inicio","status":"publish","type":"page","link":"https:\/\/originalbarber.chillypills.es\/","title":{"rendered":"Inicio"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"12\" class=\"elementor elementor-12\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-edab7d2 bloque-ola e-flex e-con-boxed e-con e-parent\" data-id=\"edab7d2\" 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-c2d4da7 elementor-widget__width-initial titulo-ola elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"c2d4da7\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"titulo-ola\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Esto no es s\u00f3lo cortarse el pelo mi rey, esto es una <span class=\"glow-familia\">familia<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f86750 elementor-widget__width-initial animated-slow texto-despues-ola elementor-widget-mobile__width-inherit elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"1f86750\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Una barber\u00eda hecha con esfuerzo, sudor y ganas de crear algo diferente. Un espacio donde todos son bienvenidos, no hace falta venir a cortarse el pelo, lo importante es compartir.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e820c29 elementor-widget elementor-widget-html\" data-id=\"e820c29\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* =========================\n   T\u00cdTULO PRINCIPAL - OLA\n========================= *\/\n\n.bloque-ola .titulo-ola,\n.bloque-ola .titulo-ola .elementor-heading-title {\n  overflow: visible;\n}\n\n.bloque-ola .titulo-ola .wave-word {\n  display: inline-block;\n  white-space: nowrap;\n}\n\n.bloque-ola .titulo-ola .wave-letter {\n  display: inline-block;\n  opacity: 0;\n  transform: translateY(42px) rotate(4deg) scale(0.96);\n  filter: blur(10px);\n  will-change: opacity, transform, filter;\n}\n\n.bloque-ola.is-visible .titulo-ola .wave-letter {\n  animation: tituloOlaIn 0.9s cubic-bezier(.16, 1, .3, 1) forwards;\n  animation-delay: calc(var(--i) * 0.035s);\n}\n\n@keyframes tituloOlaIn {\n  0% {\n    opacity: 0;\n    transform: translateY(42px) rotate(4deg) scale(0.96);\n    filter: blur(10px);\n  }\n\n  60% {\n    opacity: 1;\n    transform: translateY(-6px) rotate(-1deg) scale(1.02);\n    filter: blur(2px);\n  }\n\n  100% {\n    opacity: 1;\n    transform: translateY(0) rotate(0deg) scale(1);\n    filter: blur(0);\n  }\n}\n\n\n\/* =========================\n   TEXTO INFERIOR - ENTRADA LIMPIA\n========================= *\/\n\n.bloque-ola .texto-despues-ola {\n  opacity: 0;\n  transform: translateY(34px);\n  filter: none !important;\n  transition:\n    opacity 0.22s ease-out,\n    transform 0.85s cubic-bezier(.16, 1, .3, 1);\n  will-change: opacity, transform;\n}\n\n.bloque-ola .texto-despues-ola.is-visible {\n  opacity: 1;\n  transform: translateY(0);\n  filter: none !important;\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const bloques = document.querySelectorAll('.bloque-ola');\n\n  bloques.forEach(function (bloque) {\n    const tituloWrapper = bloque.querySelector('.titulo-ola');\n    const titulo = bloque.querySelector('.titulo-ola .elementor-heading-title');\n\n    if (!tituloWrapper || !titulo) return;\n\n    if (titulo.dataset.tituloOlaReady === 'true') return;\n\n    let index = 0;\n\n    function processNode(node) {\n      Array.from(node.childNodes).forEach(function (child) {\n        if (child.nodeType === Node.TEXT_NODE && child.textContent.trim() !== '') {\n          const text = child.textContent;\n          const fragment = document.createDocumentFragment();\n          const parts = text.split(\/(\\s+)\/);\n\n          parts.forEach(function (part) {\n            if (part.trim() === '') {\n              fragment.appendChild(document.createTextNode(part));\n            } else {\n              const word = document.createElement('span');\n              word.className = 'wave-word';\n\n              part.split('').forEach(function (char) {\n                const letter = document.createElement('span');\n                letter.className = 'wave-letter';\n                letter.style.setProperty('--i', index);\n                letter.textContent = char;\n                word.appendChild(letter);\n                index++;\n              });\n\n              fragment.appendChild(word);\n            }\n          });\n\n          child.replaceWith(fragment);\n        } else if (\n          child.nodeType === Node.ELEMENT_NODE &&\n          !child.classList.contains('wave-word') &&\n          !child.classList.contains('wave-letter')\n        ) {\n          processNode(child);\n        }\n      });\n    }\n\n    processNode(titulo);\n    titulo.dataset.tituloOlaReady = 'true';\n  });\n\n  function resetBloque(bloque) {\n    bloque.classList.remove('is-visible');\n\n    const texto = bloque.querySelector('.texto-despues-ola');\n\n    if (texto) {\n      texto.classList.remove('is-visible');\n    }\n\n    clearTimeout(bloque._textoTimer);\n  }\n\n  function activarBloque(bloque) {\n    const letras = bloque.querySelectorAll('.titulo-ola .wave-letter');\n    const texto = bloque.querySelector('.texto-despues-ola');\n\n    resetBloque(bloque);\n\n    void bloque.offsetWidth;\n\n    bloque.classList.add('is-visible');\n\n    const totalLetras = letras.length;\n\n    \/*\n      Tiempo de espera del texto inferior.\n      Antes estaba esperando demasiado.\n      Ahora aparece cuando el t\u00edtulo ya est\u00e1 pr\u00e1cticamente resuelto.\n    *\/\n    const tiempoTotal = Math.min((totalLetras * 24) + 650, 1900);\n\n    bloque._textoTimer = setTimeout(function () {\n      if (texto && bloque.classList.contains('is-visible')) {\n        texto.classList.add('is-visible');\n      }\n    }, tiempoTotal);\n  }\n\n  const observer = new IntersectionObserver(function (entries) {\n    entries.forEach(function (entry) {\n      const bloque = entry.target;\n\n      if (entry.isIntersecting) {\n        activarBloque(bloque);\n      } else {\n        resetBloque(bloque);\n      }\n    });\n  }, {\n    threshold: 0.35\n  });\n\n  bloques.forEach(function (bloque) {\n    observer.observe(bloque);\n  });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-977a582 animated-slow elementor-invisible elementor-widget elementor-widget-chilly_expand_gallery\" data-id=\"977a582\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"chilly_expand_gallery.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"chilly-expand-gallery is-mobile-scroll\" role=\"list\">\n                            <div                    class=\"chilly-expand-gallery__item chilly-expand-gallery__item--1\"\n                    role=\"listitem\"\n                    style=\"--ceg-image: url('https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-scaled.jpg'); --ceg-stagger-factor: -0.28; --ceg-stagger-abs: 0.28;\"\n                                        aria-label=\"Imagen 1\"\n                >\n                    <span class=\"chilly-expand-gallery__media\" aria-hidden=\"true\"><\/span>\n                    <img class=\"chilly-expand-gallery__image\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-scaled.jpg\" alt=\"Imagen 1\" loading=\"lazy\" decoding=\"async\">\n                <\/div>\n                            <div                    class=\"chilly-expand-gallery__item chilly-expand-gallery__item--2\"\n                    role=\"listitem\"\n                    style=\"--ceg-image: url('https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-6-scaled.jpg'); --ceg-stagger-factor: 0.08; --ceg-stagger-abs: 0.08;\"\n                                        aria-label=\"Imagen 2\"\n                >\n                    <span class=\"chilly-expand-gallery__media\" aria-hidden=\"true\"><\/span>\n                    <img class=\"chilly-expand-gallery__image\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-6-scaled.jpg\" alt=\"Imagen 2\" loading=\"lazy\" decoding=\"async\">\n                <\/div>\n                            <div                    class=\"chilly-expand-gallery__item chilly-expand-gallery__item--3\"\n                    role=\"listitem\"\n                    style=\"--ceg-image: url('https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-6-1-scaled.jpg'); --ceg-stagger-factor: -0.16; --ceg-stagger-abs: 0.16;\"\n                                        aria-label=\"Imagen 3\"\n                >\n                    <span class=\"chilly-expand-gallery__media\" aria-hidden=\"true\"><\/span>\n                    <img class=\"chilly-expand-gallery__image\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-6-1-scaled.jpg\" alt=\"Imagen 3\" loading=\"lazy\" decoding=\"async\">\n                <\/div>\n                            <div                    class=\"chilly-expand-gallery__item chilly-expand-gallery__item--4\"\n                    role=\"listitem\"\n                    style=\"--ceg-image: url('https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-1-scaled.jpg'); --ceg-stagger-factor: 0.14; --ceg-stagger-abs: 0.14;\"\n                                        aria-label=\"Imagen 4\"\n                >\n                    <span class=\"chilly-expand-gallery__media\" aria-hidden=\"true\"><\/span>\n                    <img class=\"chilly-expand-gallery__image\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-1-scaled.jpg\" alt=\"Imagen 4\" loading=\"lazy\" decoding=\"async\">\n                <\/div>\n                            <div                    class=\"chilly-expand-gallery__item chilly-expand-gallery__item--5\"\n                    role=\"listitem\"\n                    style=\"--ceg-image: url('https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-2-scaled.jpg'); --ceg-stagger-factor: -0.1; --ceg-stagger-abs: 0.1;\"\n                                        aria-label=\"Imagen 5\"\n                >\n                    <span class=\"chilly-expand-gallery__media\" aria-hidden=\"true\"><\/span>\n                    <img class=\"chilly-expand-gallery__image\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-2-scaled.jpg\" alt=\"Imagen 5\" loading=\"lazy\" decoding=\"async\">\n                <\/div>\n                    <\/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-e4d89ac e-flex e-con-boxed e-con e-parent\" data-id=\"e4d89ac\" 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-1c1c94b e-con-full e-flex e-con e-child\" data-id=\"1c1c94b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-18b9cac e-con-full e-flex e-con e-child\" data-id=\"18b9cac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fcdd719 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"fcdd719\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:250}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Nuestra historia<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6aa699e e-con-full e-flex e-con e-child\" data-id=\"6aa699e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e56e14b elementor-widget__width-initial texto-scroll-relleno elementor-widget-mobile__width-inherit elementor-widget elementor-widget-text-editor\" data-id=\"e56e14b\" 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>De Barranquilla a Espa\u00f1a con las manos vac\u00edas y el coraz\u00f3n lleno<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-03e0e75 elementor-widget__width-initial elementor-absolute elementor-widget elementor-widget-html\" data-id=\"03e0e75\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const blocks = document.querySelectorAll('.texto-scroll-relleno');\n\n  blocks.forEach(function (block) {\n    if (block.dataset.scrollFillReady === 'true') return;\n\n    const textContainer =\n      block.querySelector('.elementor-widget-container') ||\n      block.querySelector('.elementor-text-editor') ||\n      block;\n\n    let letters = [];\n\n    function processNode(node) {\n      Array.from(node.childNodes).forEach(function (child) {\n        if (child.nodeType === Node.TEXT_NODE && child.textContent.trim() !== '') {\n          const text = child.textContent;\n          const fragment = document.createDocumentFragment();\n          const parts = text.split(\/(\\s+)\/);\n\n          parts.forEach(function (part) {\n            if (part.trim() === '') {\n              fragment.appendChild(document.createTextNode(part));\n            } else {\n              const word = document.createElement('span');\n              word.className = 'scroll-word';\n\n              part.split('').forEach(function (char) {\n                const letter = document.createElement('span');\n                letter.className = 'scroll-letter';\n                letter.textContent = char;\n                word.appendChild(letter);\n                letters.push(letter);\n              });\n\n              fragment.appendChild(word);\n            }\n          });\n\n          child.replaceWith(fragment);\n        } else if (\n          child.nodeType === Node.ELEMENT_NODE &&\n          !child.classList.contains('scroll-word') &&\n          !child.classList.contains('scroll-letter')\n        ) {\n          processNode(child);\n        }\n      });\n    }\n\n    processNode(textContainer);\n    block.dataset.scrollFillReady = 'true';\n\n    function updateLetters() {\n      const rect = block.getBoundingClientRect();\n      const windowHeight = window.innerHeight;\n\n      const start = windowHeight * 0.95;\n      const end = windowHeight * 0.20;\n\n      let progress = (start - rect.top) \/ (start - end);\n      progress = Math.max(0, Math.min(1, progress));\n\n      const total = letters.length;\n      const filledCount = Math.floor(progress * total);\n\n      letters.forEach(function (letter, index) {\n        if (index <= filledCount) {\n          letter.classList.add('is-filled');\n        } else {\n          letter.classList.remove('is-filled');\n        }\n      });\n    }\n\n    updateLetters();\n\n    let ticking = false;\n\n    window.addEventListener('scroll', function () {\n      if (!ticking) {\n        window.requestAnimationFrame(function () {\n          updateLetters();\n          ticking = false;\n        });\n\n        ticking = true;\n      }\n    }, { passive: true });\n\n    window.addEventListener('resize', updateLetters);\n  });\n});\n<\/script>\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-5dad78f e-con-full e-flex e-con e-child\" data-id=\"5dad78f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;background_motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;background_motion_fx_scale_effect&quot;:&quot;yes&quot;,&quot;background_motion_fx_scale_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;background_motion_fx_scale_range&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:30,&quot;end&quot;:100}},&quot;background_motion_fx_scale_direction&quot;:&quot;out-in&quot;,&quot;background_motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t<div class=\"elementor-element elementor-element-96113c8 e-con-full e-flex e-con e-child\" data-id=\"96113c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c8e8fcb animated-slow elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"c8e8fcb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:400}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-square\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f24228 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"2f24228\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Hace 8 a\u00f1os, un colombiano lleg\u00f3 a Espa\u00f1a con lo que cabe en una maleta y las ganas de un mundo entero.<\/p><p>Recogi\u00f3 frutas bajo el sol, trabaj\u00f3 en el campo, carg\u00f3 almacenes, cocin\u00f3 en cocinas ajenas. Hizo lo que hay que hacer. El rebusque de quien sabe que el camino no es recto, pero siempre lleva a alg\u00fan lado.<\/p><p>Con cada trabajo, ahorraba. Con cada ahorro, so\u00f1aba. Y cuando sus amigos le dijeron \u00abya es hora\u00bb, lo supo.<\/p><p>Hace dos a\u00f1os abri\u00f3 las puertas de <strong><strong>Original Barber. <\/strong><\/strong><\/p><p>No con un cr\u00e9dito ni con inversores. Con sus propios ahorros, su historia a la espalda y una filosof\u00eda clara: <strong><strong>hacer sentir a todos como en casa.<\/strong><\/strong><\/p><p>Hoy, Original Barber no es solo una barber\u00eda. Es el lugar que quiso crear: uno donde la gente llega a estar, no solo a cortarse e irse.<\/p>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7414416 bloque-premium e-flex e-con-boxed e-con e-parent\" data-id=\"7414416\" 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-bb4b409 e-con-full e-flex e-con e-child\" data-id=\"bb4b409\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aafcd54 elementor-widget__width-initial titulo-barber-corte-scroll elementor-widget elementor-widget-heading\" data-id=\"aafcd54\" 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\">Barber<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b5de2c icono-scroll-glow elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"0b5de2c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"original-barber-symbol-svg\" width=\"768\" height=\"670\" viewBox=\"0 0 768 670\" fill=\"none\" style=\"overflow:visible\"><g clip-path=\"url(#clip0_original_barber_symbol)\"><path d=\"M767.54 669.99H0V0H767.54V669.99ZM21 648.99H746.54V21H21V648.99Z\" fill=\"white\"><\/path><path d=\"M317.08 189.67V94.11H209.02C179.22 123.91 162.51 140.62 132.71 170.42V510.52C162.51 540.32 179.22 557.03 209.02 586.83H317.08V491.27H254.71L232.47 469.03V211.91L254.71 189.67H317.08Z\" fill=\"white\"><\/path><path d=\"M446.26 190.67V95.11H554.32C584.12 124.91 600.83 141.62 630.63 171.42V511.52C600.83 541.32 584.12 558.03 554.32 587.83H446.26V492.27H508.63L530.87 470.03V212.91L508.63 190.67H446.26Z\" fill=\"white\"><\/path><\/g><defs><clipPath id=\"clip0_original_barber_symbol\"><rect width=\"767.54\" height=\"669.99\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aebeaa1 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-html\" data-id=\"aebeaa1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* =========================\n   BARBER - APARICI\u00d3N + CORTE CON SCROLL\n========================= *\/\n\n.titulo-barber-corte-scroll,\n.titulo-barber-corte-scroll .elementor-heading-title {\n  overflow: visible;\n}\n\n.titulo-barber-corte-scroll .barber-cut-word {\n  display: inline-block;\n  white-space: nowrap;\n}\n\n.titulo-barber-corte-scroll .barber-cut-letter {\n  display: inline-block;\n  opacity: 0;\n  transform: translateY(-28px) rotate(-4deg);\n  transform-origin: center top;\n  filter: blur(4px);\n  will-change: transform, opacity, filter;\n}\n\n\/* =========================\n   M\u00d3VIL - EFECTO DESACTIVADO\n========================= *\/\n\n@media (max-width: 767px) {\n  .titulo-barber-corte-scroll .barber-cut-word,\n  .titulo-barber-corte-scroll .barber-cut-letter {\n    display: inline !important;\n    white-space: normal !important;\n  }\n\n  .titulo-barber-corte-scroll .barber-cut-letter {\n    opacity: 1 !important;\n    transform: none !important;\n    filter: none !important;\n    will-change: auto !important;\n  }\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const isMobile = window.matchMedia('(max-width: 767px)').matches;\n\n  \/*\n    En m\u00f3vil no hacemos nada.\n    As\u00ed el texto se queda normal y no se separa en letras.\n  *\/\n  if (isMobile) return;\n\n  const wrappers = document.querySelectorAll('.titulo-barber-corte-scroll');\n\n  wrappers.forEach(function (wrapper) {\n    const title = wrapper.querySelector('.elementor-heading-title');\n\n    if (!title || title.dataset.barberCutReady === 'true') return;\n\n    let letters = [];\n\n    function processNode(node) {\n      Array.from(node.childNodes).forEach(function (child) {\n        if (child.nodeType === Node.TEXT_NODE && child.textContent.trim() !== '') {\n          const text = child.textContent;\n          const fragment = document.createDocumentFragment();\n          const parts = text.split(\/(\\s+)\/);\n\n          parts.forEach(function (part) {\n            if (part.trim() === '') {\n              fragment.appendChild(document.createTextNode(part));\n            } else {\n              const word = document.createElement('span');\n              word.className = 'barber-cut-word';\n\n              part.split('').forEach(function (char, i) {\n                const letter = document.createElement('span');\n                letter.className = 'barber-cut-letter';\n                letter.textContent = char;\n\n                letter.dataset.rotate = (i % 2 === 0 ? -1 : 1) * (10 + i * 3);\n                letter.dataset.x = (i % 2 === 0 ? -1 : 1) * (4 + i * 2);\n\n                word.appendChild(letter);\n                letters.push(letter);\n              });\n\n              fragment.appendChild(word);\n            }\n          });\n\n          child.replaceWith(fragment);\n        } else if (\n          child.nodeType === Node.ELEMENT_NODE &&\n          !child.classList.contains('barber-cut-word') &&\n          !child.classList.contains('barber-cut-letter')\n        ) {\n          processNode(child);\n        }\n      });\n    }\n\n    processNode(title);\n    title.dataset.barberCutReady = 'true';\n\n    function clamp(value, min, max) {\n      return Math.max(min, Math.min(max, value));\n    }\n\n    function easeOut(t) {\n      return 1 - Math.pow(1 - t, 3);\n    }\n\n    function easeInOut(t) {\n      return t < 0.5\n        ? 2 * t * t\n        : 1 - Math.pow(-2 * t + 2, 2) \/ 2;\n    }\n\n    function updateCutEffect() {\n      const rect = wrapper.getBoundingClientRect();\n      const windowHeight = window.innerHeight;\n\n      const appearStart = windowHeight * 0.92;\n      const appearEnd = windowHeight * 0.62;\n\n      let appearProgress = (appearStart - rect.top) \/ (appearStart - appearEnd);\n      appearProgress = clamp(appearProgress, 0, 1);\n\n      const cutStart = windowHeight * 0.50;\n      const cutEnd = windowHeight * 0.10;\n\n      let cutProgress = (cutStart - rect.top) \/ (cutStart - cutEnd);\n      cutProgress = clamp(cutProgress, 0, 1);\n\n      const total = letters.length;\n      const appearRange = 0.45;\n      const fallRange = 0.28;\n\n      letters.forEach(function (letter, index) {\n        const appearLetterStart = total > 1\n          ? (index \/ (total - 1)) * (1 - appearRange)\n          : 0;\n\n        let localAppear = (appearProgress - appearLetterStart) \/ appearRange;\n        localAppear = clamp(localAppear, 0, 1);\n        localAppear = easeOut(localAppear);\n\n        \/*\n          La ca\u00edda empieza por la \u00faltima letra y avanza hacia la primera.\n        *\/\n        const fallLetterStart = total > 1\n          ? ((total - 1 - index) \/ (total - 1)) * (1 - fallRange)\n          : 0;\n\n        let localFall = (cutProgress - fallLetterStart) \/ fallRange;\n        localFall = clamp(localFall, 0, 1);\n        localFall = easeInOut(localFall);\n\n        const rotateAmount = parseFloat(letter.dataset.rotate || 12);\n        const xAmount = parseFloat(letter.dataset.x || 6);\n\n        const appearY = -28 + (28 * localAppear);\n        const appearRotate = -4 + (4 * localAppear);\n        const appearOpacity = localAppear;\n        const appearBlur = 4 - (4 * localAppear);\n\n        const fallY = 95 * localFall;\n        const fallX = xAmount * localFall;\n        const fallRotate = rotateAmount * localFall;\n        const fallOpacityLoss = 0.85 * localFall;\n        const fallBlur = 1.8 * localFall;\n\n        const finalY = appearY + fallY;\n        const finalX = fallX;\n        const finalRotate = appearRotate + fallRotate;\n        const finalOpacity = Math.max(0, appearOpacity - fallOpacityLoss);\n        const finalBlur = appearBlur + fallBlur;\n\n        letter.style.transform =\n          'translate(' + finalX.toFixed(2) + 'px, ' +\n          finalY.toFixed(2) + 'px) rotate(' +\n          finalRotate.toFixed(2) + 'deg)';\n\n        letter.style.opacity = finalOpacity.toFixed(3);\n        letter.style.filter = 'blur(' + finalBlur.toFixed(2) + 'px)';\n      });\n    }\n\n    updateCutEffect();\n\n    let ticking = false;\n\n    window.addEventListener('scroll', function () {\n      if (!ticking) {\n        window.requestAnimationFrame(function () {\n          updateCutEffect();\n          ticking = false;\n        });\n\n        ticking = true;\n      }\n    }, { passive: true });\n\n    window.addEventListener('resize', updateCutEffect);\n  });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d650d82 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-html\" data-id=\"d650d82\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* =========================\n   ICONO ORIGINAL - GLOW CON SCROLL SUAVE\n========================= *\/\n\n.icono-scroll-glow {\n  opacity: 0.45;\n  transform: scale(0.86);\n  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));\n  transform-origin: center center;\n  will-change: opacity, transform, filter;\n}\n\n.icono-scroll-glow svg,\n.icono-scroll-glow img {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const icons = document.querySelectorAll('.icono-scroll-glow');\n\n  if (!icons.length) return;\n\n  function clamp(value, min, max) {\n    return Math.max(min, Math.min(max, value));\n  }\n\n  function easeInOut(t) {\n    return t < 0.5\n      ? 2 * t * t\n      : 1 - Math.pow(-2 * t + 2, 2) \/ 2;\n  }\n\n  function updateIconGlow() {\n    const windowHeight = window.innerHeight;\n\n    icons.forEach(function (icon) {\n      const rect = icon.getBoundingClientRect();\n\n      const center = rect.top + rect.height \/ 2;\n      const distanceFromCenter = Math.abs(center - windowHeight \/ 2);\n\n      \/*\n        Rango m\u00e1s amplio = escala m\u00e1s lenta\/progresiva.\n      *\/\n      let progress = 1 - (distanceFromCenter \/ (windowHeight * 0.85));\n      progress = clamp(progress, 0, 1);\n      progress = easeInOut(progress);\n\n      \/*\n        Ajuste m\u00e1s sutil:\n        - escala de 0.86 a 1.08\n        - opacidad de 45% a 100%\n        - glow menos agresivo\n      *\/\n      const opacity = 0.45 + (0.55 * progress);\n      const scale = 0.86 + (0.22 * progress);\n\n      const glowNear = 0.45 * progress;\n      const glowMid = 0.32 * progress;\n      const glowFar = 0.22 * progress;\n\n      icon.style.opacity = opacity.toFixed(3);\n      icon.style.transform = 'scale(' + scale.toFixed(3) + ')';\n\n      icon.style.filter =\n        'drop-shadow(0 0 10px rgba(255,255,255,' + glowNear.toFixed(3) + ')) ' +\n        'drop-shadow(0 0 32px rgba(255,255,255,' + glowMid.toFixed(3) + ')) ' +\n        'drop-shadow(0 0 64px rgba(255,255,255,' + glowFar.toFixed(3) + '))';\n    });\n  }\n\n  updateIconGlow();\n\n  let ticking = false;\n\n  window.addEventListener('scroll', function () {\n    if (!ticking) {\n      window.requestAnimationFrame(function () {\n        updateIconGlow();\n        ticking = false;\n      });\n\n      ticking = true;\n    }\n  }, { passive: true });\n\n  window.addEventListener('resize', updateIconGlow);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a3b131a elementor-widget__width-initial titulo-barber-corte-scroll elementor-widget elementor-widget-heading\" data-id=\"a3b131a\" 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\">Shop<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-552c760 e-con-full e-flex e-con e-child\" data-id=\"552c760\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-32e5881 elementor-widget__width-initial titulo-entrada-premium elementor-widget elementor-widget-heading\" data-id=\"32e5881\" 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\">Aqu\u00ed la puerta siempre est\u00e1 abierta<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0263301 elementor-widget__width-auto elementor-absolute elementor-widget elementor-widget-html\" data-id=\"0263301\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* =========================\n   T\u00cdTULO PREMIUM\n========================= *\/\n\n.bloque-premium .titulo-entrada-premium,\n.bloque-premium .titulo-entrada-premium .elementor-heading-title {\n  overflow: visible;\n}\n\n.bloque-premium .titulo-entrada-premium .premium-word {\n  display: inline-block;\n  white-space: nowrap;\n}\n\n.bloque-premium .titulo-entrada-premium .premium-letter {\n  display: inline-block;\n  opacity: 0;\n  transform: translateY(42px) rotate(4deg) scale(0.96);\n  filter: blur(10px);\n  will-change: opacity, transform, filter;\n}\n\n\n\/* =========================\n   TEXTO DESPU\u00c9S DEL PREMIUM\n========================= *\/\n\n.bloque-premium .texto-despues-premium {\n  opacity: 0;\n  transform: translateY(70px);\n  filter: none !important;\n  transition:\n    opacity 0.55s ease-out,\n    transform 1.25s cubic-bezier(.16, 1, .3, 1);\n  will-change: opacity, transform;\n}\n\n.bloque-premium .texto-despues-premium.is-visible {\n  opacity: 1;\n  transform: translateY(0);\n  filter: none !important;\n}\n\n\n\/* =========================\n   M\u00d3VIL - ANIMACI\u00d3N NORMAL AL APARECER\n========================= *\/\n\n@media (max-width: 767px) {\n  .bloque-premium .titulo-entrada-premium.is-mobile-visible .premium-letter {\n    animation: premiumMobileIn 0.85s cubic-bezier(.16, 1, .3, 1) forwards;\n    animation-delay: calc(var(--i) * 0.035s);\n  }\n\n  @keyframes premiumMobileIn {\n    0% {\n      opacity: 0;\n      transform: translateY(42px) rotate(4deg) scale(0.96);\n      filter: blur(10px);\n    }\n\n    60% {\n      opacity: 1;\n      transform: translateY(-6px) rotate(-1deg) scale(1.02);\n      filter: blur(2px);\n    }\n\n    100% {\n      opacity: 1;\n      transform: translateY(0) rotate(0deg) scale(1);\n      filter: blur(0);\n    }\n  }\n}\n<\/style>\n\n<script>\ndocument.addEventListener('DOMContentLoaded', function () {\n  const bloques = document.querySelectorAll('.bloque-premium');\n  const isMobile = window.matchMedia('(max-width: 767px)').matches;\n\n  bloques.forEach(function (bloque) {\n    const wrapper = bloque.querySelector('.titulo-entrada-premium');\n    const title = bloque.querySelector('.titulo-entrada-premium .elementor-heading-title');\n    const textoDespues = bloque.querySelector('.texto-despues-premium');\n\n    if (!wrapper || !title) return;\n\n    if (title.dataset.premiumReady !== 'true') {\n      let letters = [];\n      let index = 0;\n\n      function processNode(node) {\n        Array.from(node.childNodes).forEach(function (child) {\n          if (child.nodeType === Node.TEXT_NODE && child.textContent.trim() !== '') {\n            const text = child.textContent;\n            const fragment = document.createDocumentFragment();\n            const parts = text.split(\/(\\s+)\/);\n\n            parts.forEach(function (part) {\n              if (part.trim() === '') {\n                fragment.appendChild(document.createTextNode(part));\n              } else {\n                const word = document.createElement('span');\n                word.className = 'premium-word';\n\n                part.split('').forEach(function (char) {\n                  const letter = document.createElement('span');\n                  letter.className = 'premium-letter';\n                  letter.style.setProperty('--i', index);\n                  letter.textContent = char;\n                  word.appendChild(letter);\n                  letters.push(letter);\n                  index++;\n                });\n\n                fragment.appendChild(word);\n              }\n            });\n\n            child.replaceWith(fragment);\n          } else if (\n            child.nodeType === Node.ELEMENT_NODE &&\n            !child.classList.contains('premium-word') &&\n            !child.classList.contains('premium-letter')\n          ) {\n            processNode(child);\n          }\n        });\n      }\n\n      processNode(title);\n      title.dataset.premiumReady = 'true';\n      wrapper._premiumLetters = letters;\n    }\n\n    function clamp(value, min, max) {\n      return Math.max(min, Math.min(max, value));\n    }\n\n    \/*\n      ESCRITORIO:\n      Mantiene el efecto con scroll.\n    *\/\n    function updateLettersDesktop() {\n      const letters = wrapper._premiumLetters || wrapper.querySelectorAll('.premium-letter');\n      const rect = wrapper.getBoundingClientRect();\n      const windowHeight = window.innerHeight;\n\n      const start = windowHeight * 0.95;\n      const end = windowHeight * 0.25;\n\n      let progress = (start - rect.top) \/ (start - end);\n      progress = clamp(progress, 0, 1);\n\n      const total = letters.length;\n      const revealRange = 0.30;\n\n      letters.forEach(function (letter, index) {\n        const letterStart = total > 1\n          ? (index \/ (total - 1)) * (1 - revealRange)\n          : 0;\n\n        let localProgress = (progress - letterStart) \/ revealRange;\n        localProgress = clamp(localProgress, 0, 1);\n\n        const opacity = localProgress;\n        const translateY = 42 - (42 * localProgress);\n        const rotate = 4 - (4 * localProgress);\n        const scale = 0.96 + (0.04 * localProgress);\n        const blur = 10 - (10 * localProgress);\n\n        letter.style.opacity = opacity.toFixed(3);\n        letter.style.transform =\n          'translateY(' + translateY.toFixed(2) + 'px) rotate(' +\n          rotate.toFixed(2) + 'deg) scale(' +\n          scale.toFixed(3) + ')';\n\n        letter.style.filter = 'blur(' + blur.toFixed(2) + 'px)';\n      });\n\n      if (textoDespues) {\n        if (progress >= 0.88) {\n          textoDespues.classList.add('is-visible');\n        } else {\n          textoDespues.classList.remove('is-visible');\n        }\n      }\n    }\n\n    \/*\n      M\u00d3VIL:\n      Animaci\u00f3n al aparecer en pantalla, sin scroll progresivo.\n    *\/\n    function setupMobileAnimation() {\n      const observer = new IntersectionObserver(function (entries) {\n        entries.forEach(function (entry) {\n          if (entry.isIntersecting) {\n            wrapper.classList.remove('is-mobile-visible');\n\n            if (textoDespues) {\n              textoDespues.classList.remove('is-visible');\n            }\n\n            void wrapper.offsetWidth;\n\n            wrapper.classList.add('is-mobile-visible');\n\n            setTimeout(function () {\n              if (textoDespues) {\n                textoDespues.classList.add('is-visible');\n              }\n            }, 1050);\n          } else {\n            wrapper.classList.remove('is-mobile-visible');\n\n            if (textoDespues) {\n              textoDespues.classList.remove('is-visible');\n            }\n          }\n        });\n      }, {\n        threshold: 0.35\n      });\n\n      observer.observe(bloque);\n    }\n\n    if (isMobile) {\n      setupMobileAnimation();\n    } else {\n      updateLettersDesktop();\n\n      let ticking = false;\n\n      window.addEventListener('scroll', function () {\n        if (!ticking) {\n          window.requestAnimationFrame(function () {\n            updateLettersDesktop();\n            ticking = false;\n          });\n\n          ticking = true;\n        }\n      }, { passive: true });\n\n      window.addEventListener('resize', updateLettersDesktop);\n    }\n  });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1453724 elementor-widget__width-initial texto-despues-premium elementor-widget elementor-widget-text-editor\" data-id=\"1453724\" 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>Claro que cortamos el pelo \u2014 y lo hacemos bien. Pero lo que de verdad nos importa es que cuando entres, sientas que llegas a un sitio tuyo.<\/p><p>Hay una Play para echar una partida. Una cafetera siempre lista. Agua fresca si la necesitas. Y espacio de sobra para moverte, sentarte, quedarte un rato.<\/p><p>En Original Barber entendemos la barber\u00eda de otra manera.<\/p><p>Puedes venir a cortarte. A echar el rato. A contar c\u00f3mo te fue la semana. A re\u00edrte. O simplemente a estar.<\/p><p><strong><strong>No somos un sitio donde te cortas y te vas. Somos un espacio para hacernos compa\u00f1ia y un dia ameno.<\/strong><\/strong><\/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<div class=\"elementor-element elementor-element-f0439f2 e-flex e-con-boxed e-con e-parent\" data-id=\"f0439f2\" 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-7450c8a e-grid e-con-full e-con e-child\" data-id=\"7450c8a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b0519e9 elementor-widget elementor-widget-barber_card_widget\" data-id=\"b0519e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"barber_card_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"bcw-card-scene\">\n\n            <!-- FRONT -->\n            <div class=\"bcw-card-front\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte de cabello<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                                <div class=\"bcw-image-wrap\">\n                    <img decoding=\"async\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-scaled.jpg\" alt=\"Corte de cabello\" \/>\n                <\/div>\n                \n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver m\u00e1s\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>+<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n            <!-- BACK -->\n            <div class=\"bcw-card-back\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte de cabello<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"bcw-back-content\">\n                    <p class=\"bcw-description\">Corte preciso y adaptado a tu estilo, acompa\u00f1ado de un lavado relajante para dejar tu cabello limpio y listo.<\/p>                    <p class=\"bcw-price\">Desde 13\u20ac<\/p>                                            <a href=\"https:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\" rel=\"\" class=\"bcw-reserve-btn\">Reservar<\/a>\n                                    <\/div>\n\n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver menos\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>-<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8244d05 elementor-widget elementor-widget-barber_card_widget\" data-id=\"8244d05\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"barber_card_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"bcw-card-scene\">\n\n            <!-- FRONT -->\n            <div class=\"bcw-card-front\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Arreglo de barba<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                                <div class=\"bcw-image-wrap\">\n                    <img decoding=\"async\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-6-1-scaled.jpg\" alt=\"Arreglo de barba\" \/>\n                <\/div>\n                \n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver m\u00e1s\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>+<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n            <!-- BACK -->\n            <div class=\"bcw-card-back\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Arreglo de barba<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"bcw-back-content\">\n                    <p class=\"bcw-description\">Definici\u00f3n precisa, recorte a medida y acabado limpio para resaltar la forma natural de tu barba. Incluye perfilado y cuidado de la piel para un look fresco y bien pulido.<\/p>                    <p class=\"bcw-price\">Desde 8\u20ac<\/p>                                            <a href=\"https:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\" rel=\"\" class=\"bcw-reserve-btn\">Reservar<\/a>\n                                    <\/div>\n\n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver menos\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>-<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9e11f0b elementor-widget elementor-widget-barber_card_widget\" data-id=\"9e11f0b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"barber_card_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"bcw-card-scene\">\n\n            <!-- FRONT -->\n            <div class=\"bcw-card-front\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte + barba<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                                <div class=\"bcw-image-wrap\">\n                    <img decoding=\"async\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/image-7-1-scaled.jpg\" alt=\"Corte + barba\" \/>\n                <\/div>\n                \n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver m\u00e1s\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>+<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n            <!-- BACK -->\n            <div class=\"bcw-card-back\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte + barba<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"bcw-back-content\">\n                    <p class=\"bcw-description\">Renueva tu estilo con un corte preciso y una barba perfectamente definida.\nIncluye perfilado, acabado a navaja y lavado de cabello para un look limpio, fresco y profesional.\nUn servicio completo para que salgas con tu mejor versi\u00f3n.<\/p>                    <p class=\"bcw-price\">Desde 19\u20ac<\/p>                                            <a href=\"https:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\" rel=\"\" class=\"bcw-reserve-btn\">Reservar<\/a>\n                                    <\/div>\n\n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver menos\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>-<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-97acaab elementor-widget elementor-widget-barber_card_widget\" data-id=\"97acaab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"barber_card_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"bcw-card-scene\">\n\n            <!-- FRONT -->\n            <div class=\"bcw-card-front\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Color<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                                <div class=\"bcw-image-wrap\">\n                    <img decoding=\"async\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/color.jpeg\" alt=\"Color\" \/>\n                <\/div>\n                \n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver m\u00e1s\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>+<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n            <!-- BACK -->\n            <div class=\"bcw-card-back\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Color<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"bcw-back-content\">\n                    <p class=\"bcw-description\">Dale color a tu cabello y un estilo nuevo e atrevido.<\/p>                    <p class=\"bcw-price\">Precio variable<\/p>                                            <a href=\"https:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\" rel=\"\" class=\"bcw-reserve-btn\">Reservar<\/a>\n                                    <\/div>\n\n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver menos\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>-<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f6c318e elementor-widget elementor-widget-barber_card_widget\" data-id=\"f6c318e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"barber_card_widget.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div class=\"bcw-card-scene\">\n\n            <!-- FRONT -->\n            <div class=\"bcw-card-front\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte infantil<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                                <div class=\"bcw-image-wrap\">\n                    <img decoding=\"async\" src=\"https:\/\/originalbarber.chillypills.es\/wp-content\/uploads\/2026\/05\/9a56d11cd83b4fb2b798fe00c7aaa3-original-barber-inspiration-4eb7ecd6651f48d481c01345af5f18-booksy.jpg\" alt=\"Corte infantil\" \/>\n                <\/div>\n                \n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver m\u00e1s\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>+<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n            <!-- BACK -->\n            <div class=\"bcw-card-back\">\n\n                <div class=\"bcw-arrow-badge-wrap\">\n                    <div class=\"bcw-arrow-badge-outer\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"9,2 91,2 99,50 91,98 9,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span class=\"bcw-title\">Corte infantil<\/span>\n                        <\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"bcw-back-content\">\n                    <p class=\"bcw-description\">Corte moderno y limpio pensado especialmente para los m\u00e1s peque\u00f1os.\nR\u00e1pido, c\u00f3modo y con un trato amable para que salgan con un estilo fresco y una buena experiencia en la barber\u00eda.<\/p>                    <p class=\"bcw-price\">Desde 11\u20ac<\/p>                                            <a href=\"https:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\" rel=\"\" class=\"bcw-reserve-btn\">Reservar<\/a>\n                                    <\/div>\n\n                <div class=\"bcw-arrow-badge-wrap bcw-btn-wrap\">\n                    <button class=\"bcw-arrow-badge-outer bcw-arrow-badge-outer--btn bcw-toggle-btn\" aria-label=\"Ver menos\">\n                        <svg class=\"bcw-badge-svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"none\" aria-hidden=\"true\" focusable=\"false\"><polygon class=\"bcw-badge-shape\" points=\"18,2 82,2 99,50 82,98 18,98 1,50\" \/><\/svg>\n                        <div class=\"bcw-arrow-badge\">\n                            <span>-<\/span>\n                        <\/div>\n                    <\/button>\n                <\/div>\n\n            <\/div>\n\n        <\/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 class=\"elementor-element elementor-element-91823bf elementor-widget elementor-widget-button\" data-id=\"91823bf\" 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:\/\/booksy.com\/es-es\/55394_original-barber_barberia_81336_puente-tocinos\" target=\"_blank\">\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\">Ver todos los servicios<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Esto no es s\u00f3lo cortarse el pelo mi rey, esto es una familia Una barber\u00eda hecha con esfuerzo, sudor y ganas de crear algo diferente. Un espacio donde todos son bienvenidos, no hace falta venir a cortarse el pelo, lo importante es compartir. Nuestra historia De Barranquilla a Espa\u00f1a con las manos vac\u00edas y el [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-12","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/pages\/12","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12"}],"version-history":[{"count":565,"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/pages\/12\/revisions"}],"predecessor-version":[{"id":791,"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=\/wp\/v2\/pages\/12\/revisions\/791"}],"wp:attachment":[{"href":"https:\/\/originalbarber.chillypills.es\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}