{"id":15505,"date":"2026-05-10T14:19:20","date_gmt":"2026-05-10T14:19:20","guid":{"rendered":"https:\/\/espacotalassa.com\/?post_type=product&#038;p=15505"},"modified":"2026-07-02T12:23:04","modified_gmt":"2026-07-02T12:23:04","slug":"wine-vines-tour-entre-pedras","status":"publish","type":"product","link":"https:\/\/espacotalassa.com\/en\/product\/wine-vines-tour-entre-pedras\/","title":{"rendered":"Wine &#038; Vines Tour \u2014 Entre Pedras"},"content":{"rendered":"<link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\"\/>\r\n\r\n<div id=\"wvt-map\" style=\"width:100%; height:420px; border-radius:12px; overflow:hidden;\"><\/div>\r\n\r\n<script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\r\n<script>\r\n(function() {\r\n  var map = L.map('wvt-map', { zoomControl: true, scrollWheelZoom: false }).setView([38.530, -28.490], 12);\r\n\r\n  L.tileLayer('https:\/\/{s}.basemaps.cartocdn.com\/light_nolabels\/{z}\/{x}\/{y}{r}.png', {\r\n    attribution: '&copy; <a href=\"https:\/\/www.openstreetmap.org\/\">OpenStreetMap<\/a> &copy; <a href=\"https:\/\/carto.com\/\">CARTO<\/a>',\r\n    maxZoom: 18\r\n  }).addTo(map);\r\n\r\n  L.tileLayer('https:\/\/{s}.basemaps.cartocdn.com\/light_only_labels\/{z}\/{x}\/{y}{r}.png', {\r\n    maxZoom: 18, opacity: 0.6\r\n  }).addTo(map);\r\n\r\n  var stops = [\r\n    { n: 'S', label: 'Madalena',       desc: 'Meeting point \u2014 Terminal Mar\u00edtimo Jo\u00e3o Quaresma', lat: 38.5316, lng: -28.5274, final: false },\r\n    { n: '1', label: 'Cria\u00e7\u00e3o Velha',  desc: 'UNESCO World Heritage vineyards',                  lat: 38.5160, lng: -28.5394, final: false },\r\n    { n: '2', label: 'Museu do Vinho', desc: 'Pico Wine Museum',   \t\t\t\t\t\t\t\tlat: 38.5361, lng: -28.5164, final: false },\r\n    { n: '3', label: 'Lajido',         desc: 'Historic basalt village & traditional distillery',  lat: 38.5573, lng: -28.4262, final: false },\r\n    { n: '4', label: 'Cachorro',       desc: 'Guided tasting \u2014 3 premium Entre Pedras wines',     lat: 38.5559, lng: -28.4467, final: true  },\r\n  ];\r\n\r\n  function addMarkers() {\r\n    stops.forEach(function(s) {\r\n      var size = s.final ? 32 : 28;\r\n      var icon = L.divIcon({\r\n        className: '',\r\n        html: '<div style=\"width:' + size + 'px;height:' + size + 'px;border-radius:50%;background:#8B2535;border:2px solid #fff;box-shadow:0 1px 4px rgba(0,0,0,0.3);display:flex;align-items:center;justify-content:center;font-family:sans-serif;font-size:11px;font-weight:600;color:#fff;\">' + s.n + '<\/div>',\r\n        iconSize: [size, size],\r\n        iconAnchor: [size\/2, size\/2],\r\n      });\r\n      L.marker([s.lat, s.lng], { icon: icon })\r\n        .addTo(map)\r\n        .bindPopup('<strong style=\"font-size:13px;\">' + s.label + '<\/strong><br><span style=\"font-size:12px;color:#666;\">' + s.desc + '<\/span>', { maxWidth: 200 });\r\n    });\r\n  }\r\n\r\n  function fetchSegment(from, to, callback) {\r\n    var url = 'https:\/\/router.project-osrm.org\/route\/v1\/driving\/'\r\n      + from.lng + ',' + from.lat + ';'\r\n      + to.lng   + ',' + to.lat\r\n      + '?overview=full&geometries=geojson';\r\n\r\n    fetch(url)\r\n      .then(function(r) { return r.json(); })\r\n      .then(function(data) {\r\n        if (data.routes && data.routes[0]) {\r\n          callback(data.routes[0].geometry.coordinates);\r\n        }\r\n      })\r\n      .catch(function() {\r\n        callback([[from.lng, from.lat], [to.lng, to.lat]]);\r\n      });\r\n  }\r\n\r\n  function drawRoute() {\r\n    var segments = [];\r\n    var done = 0;\r\n    var total = stops.length - 1;\r\n\r\n    for (var i = 0; i < total; i++) {\r\n      (function(idx) {\r\n        fetchSegment(stops[idx], stops[idx + 1], function(coords) {\r\n          segments[idx] = coords;\r\n          done++;\r\n          if (done === total) {\r\n            var allCoords = [];\r\n            segments.forEach(function(seg) {\r\n              seg.forEach(function(c) { allCoords.push([c[1], c[0]]); });\r\n            });\r\n            L.polyline(allCoords, { color: '#8B2535', weight: 3, opacity: 0.85 }).addTo(map);\r\n          }\r\n        });\r\n      })(i);\r\n    }\r\n  }\r\n\r\n  var legend = L.control({ position: 'bottomleft' });\r\n  legend.onAdd = function() {\r\n    var div = L.DomUtil.create('div');\r\n    div.style.cssText = 'background:#fff;padding:10px 14px;border-radius:8px;font-family:sans-serif;font-size:12px;box-shadow:0 1px 4px rgba(0,0,0,0.15);line-height:1.8;';\r\n    div.innerHTML = '<div style=\"font-weight:600;margin-bottom:4px;color:#333;\">Wine & Vines Tour<\/div><div style=\"color:#666;\">S &rarr; 1 &rarr; 2 &rarr; 3 &rarr; <span style=\"color:#8B2535;font-weight:600;\">4 Wine tasting<\/span><\/div>';\r\n    return div;\r\n  };\r\n  legend.addTo(map);\r\n\r\n  drawRoute();\r\n  addMarkers();\r\n})();\r\n<\/script>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\">Discover the unique wine heritage of Pico Island on a scenic journey through volcanic landscapes and historic vineyards. Visit the famous Cria\u00e7\u00e3o Velha vineyards \u2014 a UNESCO World Heritage Site \u2014 where basalt stone walls known as <em>currais<\/em> protect vines growing on ancient lava fields, and learn about the island&#8217;s remarkable viticulture with a local guide specialised in Pico wines.<\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\">Along the way, explore the Museu do Vinho do Pico for an in-depth look at the island&#8217;s winemaking process, from vine to bottle. Continue to the historic village of Lajido, with its basalt stone houses, traditional distillery, and key geological landmarks tied to the island&#8217;s wine culture. The experience ends in Cachorro with a guided tasting of <strong>3 premium wines from local producer Entre Pedras \u2014 an authentic introduction to the distinctive character of Pico wines.<\/strong><\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\">A private tour led by Daniel Ferro (Picaroto Tours), wine tourism specialist and Entre Pedras collaborator.<\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Itinerary<\/strong><\/p>\n<ul class=\"[li_&amp;]:mb-0 [li_&amp;]:mt-1 [li_&amp;]:gap-1 [&amp;:not(:last-child)_ul]:pb-1 [&amp;:not(:last-child)_ol]:pb-1 list-disc flex flex-col gap-1 pl-8 mb-3\">\n<li class=\"font-claude-response-body whitespace-normal break-words pl-2\"><strong>Cria\u00e7\u00e3o Velha (UNESCO)<\/strong> \u2014 Introduction to the island&#8217;s wine history, visit to the vineyards and traditional basalt structures<\/li>\n<li class=\"font-claude-response-body whitespace-normal break-words pl-2\"><strong>Museu do Vinho do Pico<\/strong> \u2014 Demonstration of the viticulture and winemaking process<\/li>\n<li class=\"font-claude-response-body whitespace-normal break-words pl-2\"><strong>Lajido<\/strong> \u2014 Historic village with basalt houses, a traditional distillery, and key geological landmarks connected to the island&#8217;s wine culture<\/li>\n<li class=\"font-claude-response-body whitespace-normal break-words pl-2\"><strong>Cachorro<\/strong> \u2014 Guided tasting of 3 premium Entre Pedras wines<\/li>\n<\/ul>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Meeting point:<\/strong> Terminal Mar\u00edtimo Jo\u00e3o Quaresma, Madalena \u2014 parking area at the ferry terminal. Guide arrives 15 minutes before departure and waits up to 20 minutes.<\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Available time slots:<\/strong> 09:00\u201313:00 or 14:00\u201318:00<\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Group size:<\/strong> 1 to 4 guests.\u00a0<em>If you are more than 4 people, contact us directly.<\/em><\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Transfer:<\/strong> Pickup\/drop-off service is available for guests staying outside the parish of Madalena. Price on request.<\/p>\n<p class=\"font-claude-response-body break-words whitespace-normal leading-[1.7]\"><strong>Booking:<\/strong> Subject to manual confirmation.<\/p>\n<p><img decoding=\"async\" class=\"\" src=\"https:\/\/entre-pedras.com\/wp-content\/uploads\/2025\/03\/Logo-PNG-1.png\" alt=\"Sobre N\u00f3s \u2013 Entre Pedras\" width=\"228\" height=\"127\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Private wine tourism tour across Pico Island. UNESCO vineyards, volcanic landscapes and a guided Entre Pedras wine tasting in Cachorro. 4 hours, 1 to 4 guests.<\/p>\n","protected":false},"featured_media":8103,"template":"","meta":{"_acf_changed":false,"rank_math_title":"Wine &amp; Vines Tour Pico Island \u00b7 Entre Pedras Wine Tasting \u00b7 Espa\u00e7o Talassa","rank_math_description":"Private wine tour on Pico Island. Visit the UNESCO vineyards of Cria\u00e7\u00e3o Velha and taste Entre Pedras wines in Cachorro. Groups of 1 to 4 guests. From 75\u20ac per person.","rank_math_facebook_title":"","rank_math_facebook_description":"","rank_math_facebook_image":"","rank_math_twitter_title":"","rank_math_twitter_description":"","rank_math_focus_keyword":"","rank_math_facebook_image_id":0,"rank_math_robots":[]},"product_brand":[],"product_cat":[57],"product_tag":[],"class_list":["post-15505","product","type-product","status-publish","has-post-thumbnail","product_cat-outdoor","first","instock","virtual","sold-individually","purchasable","product-type-phive_booking"],"acf":[],"_links":{"self":[{"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/product\/15505","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/types\/product"}],"wp:attachment":[{"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/media?parent=15505"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/product_brand?post=15505"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/product_cat?post=15505"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/espacotalassa.com\/en\/wp-json\/wp\/v2\/product_tag?post=15505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}