{"id":2717,"date":"2022-11-21T13:15:20","date_gmt":"2022-11-21T13:15:20","guid":{"rendered":"https:\/\/arnaud.pt\/onde-estamos\/"},"modified":"2023-02-06T23:24:43","modified_gmt":"2023-02-06T23:24:43","slug":"where-we-are","status":"publish","type":"page","link":"https:\/\/arnaud.pt\/en\/where-we-are\/","title":{"rendered":"Where we are"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2717\" class=\"elementor elementor-2717\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-78eb63c elementor-section-full_width section-about-1 elementor-section-height-default elementor-section-height-default\" data-id=\"78eb63c\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0266739\" data-id=\"0266739\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-7972abb section-ondeestamos-1 section-ondeestamos-world-map elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"7972abb\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-54d7142 about-globe-col\" data-id=\"54d7142\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5451af9 arnaud-world-map-container elementor-widget elementor-widget-global elementor-global-822 elementor-widget-html\" data-id=\"5451af9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"js-globe-gl\" id=\"globe-gl\"><\/div>\n<script src=\"https:\/\/assets.ot.digital\/min\/m\/v1\/js\/opentext.min.js\"><\/script>\n<script>\n    window.delayedJavascriptArray = window.delayedJavascriptArray || [];\n        window.delayedJavascriptArray.push(function () {\n\n            otApi.GlobeGL = {\n\n                \/\/ Settings\n                $trigger: $('.js-globe-gl'),\n                jsFiles: [\n                    'https:\/\/unpkg.com\/globe.gl',\n                    'https:\/\/d3js.org\/d3.v7.min.js',\n                ],\n\n                \/\/ Initialize\n                init: function () {\n                    if (this.$trigger.length) {\n                        const isReduced =\n                            window.matchMedia('(prefers-reduced-motion: reduce)');\n\n                        if (!isReduced || isReduced.matches) {\n                            const globeVisual = document.getElementById('globe-visual');\n                            globeVisual.classList.remove('d-none');\n                        } else {\n                            otApi.addJSFiles(this.jsFiles, this.applyGlobeGL);\n                        }\n                    }\n                },\n\n                \/\/ Apply globe.gl\n                applyGlobeGL: function () {\n\n                    const\n                        $globe = document.getElementById('globe-gl'),\n                        globeWidth = $globe.parentNode.getBoundingClientRect().width,\n                        primaryColor = '#DA3833',\n                        neutralColor = '#b0b4b9',\n                        map = 'data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAAaADAAQAAAABAAAAAQAAAAD5Ip3+AAAAC0lEQVQIHWP4DwQACfsD\/Qy7W+cAAAAASUVORK5CYII=',\n                        landCheckUrl = 'https:\/\/assets.ot.digital\/img\/map.png',\n                        landCheckImg = new Image(),\n                        DEG2RAD = Math.PI \/ 180,\n                        random_sample = (obj, n) => d3.shuffle(obj.slice()).slice(0, n),\n                        N = 5,\n                        world = Globe()\n                            .globeImageUrl(map)\n                            .backgroundColor('rgba(0, 0, 0, 0)')\n                            \/\/.showGlobe(true)\n                            .showAtmosphere(true)\n                            .atmosphereColor(neutralColor)\n                            .atmosphereAltitude(0.15)\n                            .width(globeWidth)\n                            .height(globeWidth)\n                            ($globe),\n                        globeMat = world.globeMaterial();\n\n                    globeMat.opacity = 0.5;\n                    globeMat.shininess = 0.15;\n\n                    landCheckImg.src = landCheckUrl;\n                    landCheckImg.crossOrigin = 'Anonymous';\n                    landCheckImg.onload = () => {\n                        landDots(30, 200, landCheckImg);\n                    }\n\n                    \/\/const dlight = world.scene().children.find(obj3d => obj3d.type === 'DirectionalLight');\n                    \/\/dlight && dlight.position.set(-1, 1, 1);\n\n                    world.pointOfView({ altitude: 2 });\n                    world.controls().autoRotate = true;\n                    world.controls().autoRotateSpeed = 0.95;\n                    world.controls().enabled = true;\n                    world.controls().enableZoom = false;\n\n                    \/\/ Resize globe on window resize\n                    window.addEventListener('resize', (event) => {\n                        const globeWidth = $globe.parentNode.getBoundingClientRect().width;\n                        world.width([globeWidth])\n                        world.height([globeWidth])\n                    });\n\n                    function landDots(globeRad, rows, image) {\n                        const d = getImageData(image);\n                        const dots = [];\n\n                        for (let lat = -90; lat <= 90; lat += 180 \/ rows) {\n                            const radius = Math.cos(Math.abs(lat) * DEG2RAD) * globeRad;\n                            const circum = radius * Math.PI * 2 * 2;\n                            for (let r = 0; r < circum; r++) {\n                                const lng = 360 * r \/ circum - 180;\n                                if (!visibilityForCoordinate(lng, lat, d)) {\n                                    continue;\n                                }\n                                dots.push({ lat: lat, lng: lng });\n                            }\n                        }\n\n                        world\n                            .pointsData(dots)\n                            .pointColor(() => neutralColor)\n                            .pointRadius(0.25)\n                            .pointResolution(10)\n                            .pointAltitude(0)\n                            .pointsMerge(true)\n                            \/\/ arcs\n                            .arcColor(() => primaryColor)\n                            .arcStroke(0.25)\n                            .arcDashInitialGap(1)\n                            .arcDashLength(2)\n                            .arcDashGap(2)\n                            .arcDashAnimateTime(2000)\n                            \/\/ labels\n                            .labelText(d => '')\n                            .labelColor(() => t => primaryColor)\n                            .labelDotRadius(0.3)\n                            .labelAltitude(0.002)\n                            .labelsTransitionDuration(250)\n                            \/\/ rings\n                            .ringColor(() => t => 'rgba(51,5,141,${1-t})')\n                            .ringMaxRadius(2)\n                            .ringPropagationSpeed(2)\n                            .ringRepeatPeriod(0);\n\n                        setInterval(() => {\n                            let c10 = random_sample(dots, N * 2),\n                                c = [...Array(N).keys()].map((d, i) => ({\n                                    startLat: c10[i].lat,\n                                    startLng: c10[i].lng,\n                                    endLat: c10[i + N].lat,\n                                    endLng: c10[i + N].lng\n                                })),\n                                l = [...Array(N * 2).keys()].map((d, i) => ({\n                                    lat: c10[i].lat,\n                                    lng: c10[i].lng\n                                })),\n                                r = [...Array(N).keys()].map((d, i) => ({\n                                    lat: c10[i + N].lat,\n                                    lng: c10[i + N].lng\n                                }));\n\n                            world.arcsData(c).labelsData(l);\n\n                            setTimeout(() => {\n                                world.ringsData(r);\n                            }, 4000);\n                        }, 6000);\n                    }\n\n                    function visibilityForCoordinate(lng, lat, data) {\n                        const i = 4 * data.width,\n                            r = parseInt((lng + 180) \/ 360 * data.width + .5),\n                            a = data.height - parseInt((lat + 90) \/ 180 * data.height - .5),\n                            s = parseInt(i * (a - 1) + 4 * r) + 3;\n                        return data.data[s] > 90;\n                    }\n\n                    function getImageData(img) {\n                        const el = document.createElement('canvas').getContext('2d');\n                        return el.canvas.width = img.width,\n                            el.canvas.height = img.height,\n                            el.drawImage(img, 0, 0, img.width, img.height),\n                            el.getImageData(0, 0, img.width, img.height);\n                    }\n                }\n\n            }\n\n            otApi.GlobeGL.init();\n\n        });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2c9cde9\" data-id=\"2c9cde9\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f57bf1a title-71 elementor-widget elementor-widget-heading\" data-id=\"f57bf1a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Where<br> we are<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d750833 elementor-widget elementor-widget-text-editor\" data-id=\"d750833\" data-element_type=\"widget\" data-e-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\t\t<p id=\"u3619-7\">Growing globalization has made the presence of brands and services in a multiplicity of markets possible. That is why, for us, it is so important to be able to offer the world to our partners and take their cargo to different markets.<\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c9ef763 section-ondeestamos-2 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c9ef763\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d052629\" data-id=\"d052629\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-5bd9176 headlines-left-side-tabs elementor-widget elementor-widget-eael-adv-tabs\" data-id=\"5bd9176\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-adv-tabs.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t        <div data-scroll-on-click=\"no\" data-scroll-speed=\"300\" id=\"eael-advance-tabs-5bd9176\" class=\"eael-advance-tabs eael-tabs-vertical eael-tab-auto-active  active-caret-on\" data-tabid=\"5bd9176\">\n            <div class=\"eael-tabs-nav \">\n                <ul class=\"eael-tab-inline-icon\" role=\"tablist\">\n                                            <li id=\"portugal\" class=\"active-default eael-tab-item-trigger eael-tab-nav-item\" aria-selected=\"true\" data-tab=\"1\" role=\"tab\" tabindex=\"0\" aria-controls=\"portugal-tab\" aria-expanded=\"false\">\n                            \n                                                        \n                                                            <div class=\"eael-tab-title title-after-icon\" >Portugal<\/div>                            \n                                                    <\/li>\n                                            <li id=\"angola\" class=\" eael-tab-item-trigger eael-tab-nav-item\" aria-selected=\"false\" data-tab=\"2\" role=\"tab\" tabindex=\"-1\" aria-controls=\"angola-tab\" aria-expanded=\"false\">\n                            \n                                                        \n                                                            <div class=\"eael-tab-title title-after-icon\" >Angola<\/div>                            \n                                                    <\/li>\n                                            <li id=\"cabo-verde\" class=\" eael-tab-item-trigger eael-tab-nav-item\" aria-selected=\"false\" data-tab=\"3\" role=\"tab\" tabindex=\"-1\" aria-controls=\"cabo-verde-tab\" aria-expanded=\"false\">\n                            \n                                                        \n                                                            <div class=\"eael-tab-title title-after-icon\" >Cape Verde<\/div>                            \n                                                    <\/li>\n                                            <li id=\"madrid\" class=\" eael-tab-item-trigger eael-tab-nav-item\" aria-selected=\"false\" data-tab=\"4\" role=\"tab\" tabindex=\"-1\" aria-controls=\"madrid-tab\" aria-expanded=\"false\">\n                            \n                                                        \n                                                            <div class=\"eael-tab-title title-after-icon\" >Spain<\/div>                            \n                                                    <\/li>\n                                            <li id=\"mocambique\" class=\" eael-tab-item-trigger eael-tab-nav-item\" aria-selected=\"false\" data-tab=\"5\" role=\"tab\" tabindex=\"-1\" aria-controls=\"mocambique-tab\" aria-expanded=\"false\">\n                            \n                                                        \n                                                            <div class=\"eael-tab-title title-after-icon\" >Mozambique<\/div>                            \n                                                    <\/li>\n                    \n                                  <\/ul>\n            <\/div>\n            \n            <div class=\"eael-tabs-content\">\n\t\t        \n                    <div id=\"portugal-tab\" class=\"clearfix eael-tab-content-item active-default\" data-title-link=\"portugal-tab\">\n\t\t\t\t        <h3>Transporting goods to give new worlds to the world<\/h3><p>Its geographical location, as well as a distinguished history in the art of crossing the seas, makes Portugal a prime gateway to the Euro-Atlantic axis.<\/p><p>Annually, Portuguese ports handle a total cargo of more than 80 million tons (2.5 million TEU). Arnaud has its two terminals in privileged sites for movement and coordination of the cargo handling through the most important ports.<br \/>Portugal has more than 1.400 weekly air connections to 95 destinations and the two main airports (Lisbon and Oporto) are located less than 10 minutes from our cargo terminals.<\/p><p>According to the annual report of the World Economic Forum, we have one of the best road infrastructures in the world. Through Spain, we are connected with the remaining countries in Europe, as a part of the Trans-European Transport Network. This allows for an optimized circulation of goods between the different countries, in an economical, fast, and secure way.<\/p><p><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-2457 size-full\" src=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-portugal-v2.jpg\" alt=\"Arnaud\" width=\"1082\" height=\"590\" srcset=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-portugal-v2.jpg 1082w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-portugal-v2-300x164.jpg 300w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-portugal-v2-1024x558.jpg 1024w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-portugal-v2-768x419.jpg 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/p><p class=\"arnaud-cta-block\"><a href=\"https:\/\/arnaud.pt\/en\/contacts\/#trigger_parent_pt\">Contacts<\/a><\/p>                                        <\/div>\n\t\t        \n                    <div id=\"angola-tab\" class=\"clearfix eael-tab-content-item \" data-title-link=\"angola-tab\">\n\t\t\t\t        <h3>United by logistics<\/h3><p>The innovative role of Arnaud is a trademark of its DNA so, it was the first freight-forwarding agent to establish itself in Angola after the independence.<\/p><p>We have weekly direct container cargo shipments from Lisbon and Leix\u00f5es, with destination to the ports of Luanda, Lobito, Cabinda, Namibe and Soyo, as well as daily departures of air cargo from Portugal.<\/p><p>Our team in Angola has the necessary experience and expertise about the Angolan market, and can thus offer integrated, customised, and innovative solutions.<\/p><p>Since providing updated information about ongoing procedures is a point of honour in our company, Arnaud Angola is supported by a unit in Portugal &#8211; Angola Backoffice -, with employees specializing in the market who monitor operations and inform importers and exporters, since the arrival of ships to Angolan ports through to delivery to the final client.<\/p><p>Our local services include:<\/p><p>\u2014 Commercial invoices licensing<\/p><p>\u2014 Global coverage of all imports and exports through our network of agents<\/p><p>\u2014 Representing the importer in dealings with shipping agents and cargo terminals<\/p><p>\u2014 Customs clearance<\/p><p>\u2014 A network of contacts and partnerships with local operators<\/p><p>\u2014 Project Cargo<\/p><p>\u2014 Container transport by truck<\/p><p>\u2014 Door-to-door package transport<\/p><p><img decoding=\"async\" class=\"alignnone size-full wp-image-907\" src=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-angola.jpg\" alt=\"Arnaud\" width=\"1082\" height=\"590\" srcset=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-angola.jpg 1082w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-angola-300x164.jpg 300w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-angola-1024x558.jpg 1024w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-angola-768x419.jpg 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/p><p class=\"arnaud-cta-block\"><a href=\"https:\/\/arnaud.pt\/en\/contacts\/#trigger--angola\">Contacts<\/a><\/p>                                        <\/div>\n\t\t        \n                    <div id=\"cabo-verde-tab\" class=\"clearfix eael-tab-content-item \" data-title-link=\"cabo-verde-tab\">\n\t\t\t\t        <h3>&#8220;Bu carga kata fica na tchon&#8221; or Your cargo will not stay onshore<\/h3><p>It was in Cape Verde that Arnaud&#8217;s plan for globalization started, and for that reason we are today one of the leading cargo transporters in the country, who knows its market better than anyone, along with its particulars and mechanics.<\/p><p>Arnaud Cape Verde is more than a company: it is an integral part of the community, and it actively participates in improving the local social conditions.<\/p><p>Our team in Cape Verde ensures reception and arrival of goods from all over the world by air and sea. Our offices in Praia and Mindelo ensure connection with the Sotavento islands (Maio, Fogo and Brava) and the Barlavento islands (St. Ant\u00e3o, Boavista, Sal and S. Nicolau).<\/p><p>\u2014 Conventional\/container sea transport<\/p><p style=\"margin-bottom: 5px\">\u2014 Container groupage<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Complete Dry and RF containers<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Commercial cargo groupage<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Groupage small orders<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Conventional cargo<\/p><p style=\"margin-bottom: 5px\">\u2014 Air Transport<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Dry and RF cargo<\/p><p style=\"margin-bottom: 5px;margin-left: 15px\">&#8211; Home delivery \/ door-to-door service<\/p><p style=\"margin-bottom: 5px\">\u2014\u00a0Project cargo<\/p><p style=\"margin-bottom: 5px\">\u2014 Customs services (import and export)<\/p><p style=\"margin-bottom: 5px\">\u2014 Technical support services for the exporter\/importer<\/p><p><img decoding=\"async\" class=\"alignnone size-full wp-image-909\" src=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-caboverde.jpg\" alt=\"Arnaud\" width=\"1082\" height=\"590\" srcset=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-caboverde.jpg 1082w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-caboverde-300x164.jpg 300w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-caboverde-1024x558.jpg 1024w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-caboverde-768x419.jpg 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/p><p class=\"arnaud-cta-block\"><a href=\"https:\/\/arnaud.pt\/en\/contacts\/#trigger_parent_cv\">Contacts<\/a><\/p>                                        <\/div>\n\t\t        \n                    <div id=\"madrid-tab\" class=\"clearfix eael-tab-content-item \" data-title-link=\"madrid-tab\">\n\t\t\t\t        <h3>A gateway to Europe<\/h3><p>The inauguration of Arnaud Transitos y Log\u00edstica SL in Madrid reinforced our bet in the internationalization of the Group and ensured a strong presence in one of the major economical and logistical centres of Europe.<\/p><p>The Arnaud cargo terminal&#8217;s privileged position in Spain allows speedy transport &#8211; in less than 8 hours &#8211; of goods for any destination in Portugal or Spain.<\/p><p>From then on, we have benefited from the geographically central position and the quality of road and rail infrastructures, which make the Madrid region the most accessible in the Iberian Peninsula and the location of choice for many European companies.<\/p><p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-911\" src=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-madrid.jpg\" alt=\"Arnaud\" width=\"1082\" height=\"590\" srcset=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-madrid.jpg 1082w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-madrid-300x164.jpg 300w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-madrid-1024x558.jpg 1024w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/11\/ondeestamos-madrid-768x419.jpg 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/p><p class=\"arnaud-cta-block\"><a href=\"https:\/\/arnaud.pt\/en\/contacts\/#trigger--madrid\">Contatos<\/a><\/p>                                        <\/div>\n\t\t        \n                    <div id=\"mocambique-tab\" class=\"clearfix eael-tab-content-item \" data-title-link=\"mocambique-tab\">\n\t\t\t\t        <h3>So close<\/h3><p>Arnaud ensures weekly container cargo shipments from Lisbon and Leix\u00f5es, with destination to the ports of Maputo, Beira and Nacala, as well as bi-weekly departures of air cargo from Portugal.<\/p><p>This transport service is followed-up by a team from Arnaud with knowledge and experience in the Mozambique market. It is an integrated, customised, and innovative solution that will serve all your transport needs. Arnaud is your ideal partner.<\/p><p>\u2014 Representing the importer in dealings with shipping agents and cargo terminals<\/p><p>\u2014 Permanent and local follow-up and assistance through a specialized team, to expedite all stages of transport until delivery to the final client.<\/p><p>\u2014 A network of contacts and partnerships with local operators<\/p><p>\u2014 Global coverage of all imports and exports through our network of agents<\/p><p>\u2014 Customs clearance<\/p><p>\u2014 Project Cargo<\/p><p>\u2014 Container transport by truck and door-to-door delivery of packages in the whole country<\/p><p>\u2014 Representation in all ports and airports<\/p><p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-2459 size-full\" src=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-mocambique-v2.jpg\" alt=\"Arnaud\" width=\"1082\" height=\"590\" srcset=\"https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-mocambique-v2.jpg 1082w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-mocambique-v2-300x164.jpg 300w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-mocambique-v2-1024x558.jpg 1024w, https:\/\/arnaud.pt\/wp-content\/uploads\/2022\/12\/ondeestamos-mocambique-v2-768x419.jpg 768w\" sizes=\"(max-width: 1082px) 100vw, 1082px\" \/><\/p><p class=\"arnaud-cta-block\"><a href=\"https:\/\/arnaud.pt\/en\/contacts\/#trigger--mocambique\">Contacts<\/a><\/p>                                        <\/div>\n\t\t                    <\/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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-28b3c03 elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"28b3c03\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-03359d0\" data-id=\"03359d0\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f002c7b elementor-widget elementor-widget-template\" data-id=\"f002c7b\" 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=\"section\" data-elementor-id=\"782\" class=\"elementor elementor-782\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-215cf7ea section-red-cta elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"215cf7ea\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-5c2181\" data-id=\"5c2181\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1687b994 title-45 width--90p content-just-in-pt elementor-widget elementor-widget-heading\" data-id=\"1687b994\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Fale<br> connosco!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7e5a71 title-45 width--90p content-just-in-en elementor-widget elementor-widget-heading\" data-id=\"a7e5a71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Talk  to us!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4155ff46 content-just-in-pt elementor-widget elementor-widget-button\" data-id=\"4155ff46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/arnaud.pt\/contactos\/\">\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\">contacte-nos<em class=\"ico-arrow-right-red\"><\/em><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\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-50c657d content-just-in-en elementor-widget elementor-widget-button\" data-id=\"50c657d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/arnaud.pt\/en\/contacts\/\">\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\">contact us<em class=\"ico-arrow-right-red\"><\/em><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\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<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7e870751\" data-id=\"7e870751\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\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<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Where we are Growing globalization has made the presence of brands and services in a multiplicity of markets possible. That is why, for us, it is so important to be able to offer the world to our partners and take their cargo to different markets. Portugal Angola Cape Verde Spain Mozambique Transporting goods to give [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-2717","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/pages\/2717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/comments?post=2717"}],"version-history":[{"count":13,"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/pages\/2717\/revisions"}],"predecessor-version":[{"id":2784,"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/pages\/2717\/revisions\/2784"}],"wp:attachment":[{"href":"https:\/\/arnaud.pt\/en\/wp-json\/wp\/v2\/media?parent=2717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}