{"id":13833,"date":"2025-02-05T13:50:08","date_gmt":"2025-02-05T16:50:08","guid":{"rendered":"https:\/\/aeropuertosuruguay.com.uy\/carrasco\/?page_id=13833"},"modified":"2026-02-27T18:55:41","modified_gmt":"2026-02-27T21:55:41","slug":"inicio","status":"publish","type":"page","link":"https:\/\/aeropuertodecarrasco.com.uy\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"13833\" class=\"elementor elementor-13833 elementor-30394\" data-elementor-post-type=\"page\">\n\t\t\t\t<section class=\"elementor-element elementor-element-3935021 e-con-full elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"3935021\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bfbd11e e-con-full e-flex e-con e-child\" data-id=\"bfbd11e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6723d35 elementor-widget elementor-widget-html\" data-id=\"6723d35\" 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<!-- INICIO DEL SLIDER ACCESIBLE -->\n<div id=\"custom-slider-1\" class=\"custom-slider\" role=\"region\" aria-label=\"Image and news slider\">\n\n  <!-- Este elemento est\u00e1 oculto, pero es vital para que los lectores de pantalla anuncien los cambios -->\n  <div class=\"slider-announcer visually-hidden\" aria-live=\"polite\" aria-atomic=\"true\"><\/div>\n\n  <!-- Contenedor que se mover\u00e1 horizontalmente con CSS -->\n  <div class=\"slider\">\n    <!-- Diapositiva 1 -->\n    <div class=\"slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"Slide 1 de 3: Welcome to the best airport in Latin America and the Caribbean\">\n      <img decoding=\"async\" src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/02\/banner-premio-2026_en.svg\" alt=\"\">\n      <!-- El 'alt' est\u00e1 vac\u00edo a prop\u00f3sito porque la descripci\u00f3n ya est\u00e1 en el 'aria-label' del div padre -->\n    <\/div>\n    <!-- Diapositiva 2 -->\n        <a href=\"https:\/\/aeroshop.com.uy\/carrasco\/en\/product\/indoor-parking\/\" \n   target=\"_blank\" \n   class=\"slide\" \n   role=\"group\" \n   aria-roledescription=\"slide\" \n   aria-label=\"slide 2 de 3: New covered parking, buy now\">\n     <img decoding=\"async\" src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/02\/Banner_parking-en.svg\" alt=\"\">\n<\/a>\n    <!-- Diapositiva 3 -->\n    <div class=\"slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"Slide 3 de 3: Your travel starts here\">\n      <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/home-1-25.jpg?w=1200&#038;ssl=1\" alt=\"\">\n    <\/div>\n  <\/div>\n  <!-- Controles del carrusel -->\n  <div class=\"slider-controls\">\n    <button class=\"slider-control prev\" aria-label=\"preview slide\">\u276e<\/button>\n    <button class=\"slider-control next\" aria-label=\"next slide\">\u276f<\/button>\n    <button class=\"play-pause\" aria-label=\"Pausar carrusel\">\u23f8<\/button>\n  <\/div>\n<\/div>\n<!-- FIN DEL SLIDER ACCESIBLE -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d027bc1 elementor-widget elementor-widget-html\" data-id=\"d027bc1\" 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<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    const sliderContainer = document.getElementById('custom-slider-1');\n    if (!sliderContainer) return;\n\n    \/\/ --- 1. SELECCI\u00d3N DE ELEMENTOS ---\n    const slider = sliderContainer.querySelector('.slider');\n    const slides = sliderContainer.querySelectorAll('.slide');\n    const prevButton = sliderContainer.querySelector('.slider-control.prev');\n    const nextButton = sliderContainer.querySelector('.slider-control.next');\n    const playPauseButton = sliderContainer.querySelector('.play-pause');\n    const announcer = sliderContainer.querySelector('.slider-announcer');\n\n    \/\/ --- 2. ESTADO DEL SLIDER ---\n    let currentIndex = 0;\n    let isPlaying = true;\n    let slideInterval;\n    const slideSpeed = 8000; \/\/ Velocidad de pase autom\u00e1tico\n\n    \/\/ --- 3. FUNCIONES DE CONTROL (PLAY\/PAUSE) ---\n    function pauseSlider() {\n        if (!isPlaying) return;\n        clearInterval(slideInterval);\n        playPauseButton.setAttribute('aria-label', 'Reproducir carrusel');\n        playPauseButton.innerHTML = '\u25b6';\n        isPlaying = false;\n    }\n\n    function playSlider() {\n        if (isPlaying) return;\n        playPauseButton.setAttribute('aria-label', 'Pausar carrusel');\n        playPauseButton.innerHTML = '\u23f8';\n        isPlaying = true;\n        slideInterval = setInterval(() => showSlide(currentIndex + 1), slideSpeed);\n    }\n    \n    function togglePlayPause() {\n        if (isPlaying) {\n            pauseSlider();\n        } else {\n            playSlider();\n        }\n    }\n\n    \/\/ --- 4. FUNCI\u00d3N PRINCIPAL PARA MOSTRAR DIAPOSITIVA ---\n    function showSlide(index) {\n        if (index >= slides.length) {\n            index = 0;\n        } else if (index < 0) {\n            index = slides.length - 1;\n        }\n\n        slider.style.transform = `translateX(-${index * 100}%)`;\n\n        slides.forEach((slide, i) => {\n            const isCurrent = (i === index);\n            slide.setAttribute('aria-hidden', !isCurrent);\n            slide.setAttribute('tabindex', isCurrent ? '0' : '-1');\n        });\n        \n        if (announcer) {\n             announcer.textContent = slides[index].getAttribute('aria-label');\n        }\n\n        currentIndex = index;\n    }\n\n    \/\/ --- 5. ASIGNACI\u00d3N DE EVENTOS ---\n    nextButton.addEventListener('click', () => {\n        pauseSlider();\n        showSlide(currentIndex + 1);\n    });\n\n    prevButton.addEventListener('click', () => {\n        pauseSlider();\n        showSlide(currentIndex - 1);\n    });\n\n    playPauseButton.addEventListener('click', togglePlayPause);\n    \n    sliderContainer.addEventListener('mouseenter', pauseSlider);\n    sliderContainer.addEventListener('focusin', pauseSlider);\n    \n    \/\/ --- INICIO DE LA CORRECCI\u00d3N CR\u00cdTICA ---\n    \/\/ Este nuevo listener se encarga de gestionar las teclas presionadas\n    sliderContainer.addEventListener('keydown', function(event) {\n        \/\/ Si se presiona la tecla Enter\n        if (event.key === 'Enter') {\n            const focusedElement = document.activeElement;\n            \/\/ Verificamos si el elemento que tiene el foco es una diapositiva Y ADEM\u00c1S es una etiqueta <a> (un enlace)\n            if (focusedElement.classList.contains('slide') && focusedElement.tagName === 'A') {\n                \/\/ Si es as\u00ed, detenemos cualquier otra acci\u00f3n que nuestro script pudiera realizar.\n                \/\/ Esto permite que el navegador haga su comportamiento por defecto: abrir el enlace.\n                event.stopPropagation();\n                return;\n            }\n        }\n    });\n    \/\/ --- FIN DE LA CORRECCI\u00d3N CR\u00cdTICA ---\n\n    \/\/ --- 6. INICIALIZACI\u00d3N ---\n    showSlide(currentIndex);\n    slideInterval = setInterval(() => showSlide(currentIndex + 1), slideSpeed);\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-7fca101 elementor-hidden-desktop e-con-full e-flex e-con e-parent\" data-id=\"7fca101\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation_mobile&quot;:&quot;none&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-e7ae63a elementor-hidden-desktop e-flex e-con-boxed elementor-invisible e-con e-child\" data-id=\"e7ae63a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;animation_mobile&quot;:&quot;slideInLeft&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0cdb763 elementor-widget elementor-widget-spacer\" data-id=\"0cdb763\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a3f73c elementor-cta--skin-cover elementor-cta--valign-top elementor-widget elementor-widget-call-to-action\" data-id=\"0a3f73c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeroshop.com.uy\/carrasco\/en\/categoria-producto\/parking\/\" target=\"_blank\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url();\" role=\"img\" aria-label=\"\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-content-item elementor-cta__content-item elementor-icon-wrapper elementor-cta__icon elementor-view-default\">\n\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tParking\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6433b0c elementor-widget elementor-widget-spacer\" data-id=\"6433b0c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\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-c7fb90c e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"c7fb90c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;animation_mobile&quot;:&quot;slideInLeft&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f32a349 elementor-cta--skin-cover elementor-cta--valign-top elementor-widget elementor-widget-call-to-action\" data-id=\"f32a349\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/flight-board\/\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url();\" role=\"img\" aria-label=\"\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-content-item elementor-cta__content-item elementor-icon-wrapper elementor-cta__icon elementor-view-default\">\n\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tFind your flight\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b2e8e1b elementor-hidden-desktop e-flex e-con-boxed elementor-invisible e-con e-child\" data-id=\"b2e8e1b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;animation_mobile&quot;:&quot;slideInLeft&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-081e1c8 elementor-cta--skin-cover elementor-cta--valign-top elementor-widget elementor-widget-call-to-action\" data-id=\"081e1c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeroshop.com.uy\/carrasco\/en\/product-category\/services\/vip-lounge\/\" target=\"_blank\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url();\" role=\"img\" aria-label=\"\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-content-item elementor-cta__content-item elementor-icon-wrapper elementor-cta__icon elementor-view-default\">\n\t\t\t\t\t\t<div class=\"elementor-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tVIP Lounge\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c98ceb9 elementor-hidden-tablet elementor-hidden-mobile e-con-full e-flex e-con e-parent\" data-id=\"c98ceb9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cddf9d4 elementor-widget elementor-widget-heading\" data-id=\"cddf9d4\" 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\">Carrasco Airport<\/h1>\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-8a24360 elementor-hidden-tablet elementor-hidden-mobile e-con-full e-flex e-con e-parent\" data-id=\"8a24360\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c966f14 elementor-widget elementor-widget-html\" data-id=\"c966f14\" 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<!-- Contenedor principal para evitar conflictos -->\n<div class=\"mi-widget-servicios-aeropuerto\">\n\n  <ul class=\"services-container\" role=\"list\">\n    <li>\n      <a href=\"Parking\" class=\"service-card service-card--light\" aria-label=\"Information on parking options\">\n        <h2 class=\"service-card__title\">Parking<\/h2>\n        <div class=\"service-card__icon\" aria-hidden=\"true\">\n         <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/07\/resized_icon-parking-1.png?w=1200&#038;ssl=1\" alt=\"\">\n        <\/div>\n        <span class=\"service-card__button\">More info<\/span>\n      <\/a>\n    <\/li>\n    <li>\n      <a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/flight-board\/\" class=\"service-card service-card--dark\" aria-label=\"Find your flight\">\n        <h2 class=\"service-card__title\">Find your  flight<\/h2>\n        <div class=\"service-card__icon\" aria-hidden=\"true\">\n        <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/07\/resized_icon-vuelo.png?w=1200&#038;ssl=1\" alt=\"\">  \n        <\/div>\n        <span class=\"service-card__button\">More info<\/span>\n      <\/a>\n    <\/li>\n    <li>\n      <a href=\"https:\/\/aeroshop.com.uy\/carrasco\/en\/product-category\/vip-lounge\/\" class=\"service-card service-card--light\" aria-label=\"Information on VIP Lounge\">\n        <h2 class=\"service-card__title\">VIP Lounge<\/h2>\n        <div class=\"service-card__icon\" aria-hidden=\"true\">\n          <img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/07\/icon-vip.png?w=1200\" alt=\"\">\n        <\/div>\n        <span class=\"service-card__button\">More info<\/span>\n      <\/a>\n    <\/li>\n  <\/ul>\n<\/div>\n\n<style>\n\/* --- ESTILOS GENERALES DEL WIDGET --- *\/\n\n\n.mi-widget-servicios-aeropuerto {\n    font-family: 'OpenSans', sans-serif;\n    --svc-color-dark-blue: #00234B;\n    --svc-color-brand-orange: #F95700;\n    --svc-color-text-red: #D93636;\n    --svc-color-bg-light: #DEE1E3;\n    --svc-color-bg-light-button: #E9ECEF;\n    --svc-color-bg-dark-button: #495057;\n    --svc-color-white: #FFFFFF;\n    --svc-border-radius: 16px;\n    --svc-focus-outline-color: #0d6efd;\n}\n\n\/* --- ESTILOS PARA LA ALINEACI\u00d3N --- *\/\n.mi-widget-servicios-aeropuerto .services-container {\n    display: flex !important;\n    flex-direction: row !important;\n    flex-wrap: wrap !important;\n    justify-content: center !important;\n    list-style-type: none !important;\n    padding: 0 !important;\n    margin: 0 !important;\n    gap: 1.5rem;\n}\n\n.mi-widget-servicios-aeropuerto .services-container > li {\n    display: flex !important;\n    width: auto !important;\n    margin: 0 !important;\n    padding: 0 !important;\n}\n\n\/* --- ESTILOS DE LAS TARJETAS --- *\/\n.mi-widget-servicios-aeropuerto .service-card {\n    display: grid;\n    grid-template-columns: 1fr auto;\n    grid-template-rows: 1fr auto;\n    width: 305px;\n    min-height: 160px;\n    padding: 1.5rem;\n    border-radius: var(--svc-border-radius);\n    text-decoration: none;\n    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;\n    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);\n}\n\n.mi-widget-servicios-aeropuerto .service-card:hover {\n    transform: translateY(-5px);\n    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);\n}\n\n.mi-widget-servicios-aeropuerto .service-card:focus-visible {\n    outline: 3px solid var(--svc-focus-outline-color);\n    outline-offset: 3px;\n}\n\n\/* --- Variaciones de color de las tarjetas --- *\/\n.mi-widget-servicios-aeropuerto .service-card--light {\n    background-color: var(--svc-color-bg-light);\n}\n.mi-widget-servicios-aeropuerto .service-card--dark {\n    background-color: var(--svc-color-dark-blue);\n}\n\n\/* --- Estilo del t\u00edtulo y correcci\u00f3n de color --- *\/\n.mi-widget-servicios-aeropuerto .service-card__title {\n    grid-column: 1 \/ 2; grid-row: 1 \/ 2;\n    font-size: 1.5rem; font-weight: 400;\n    margin: 0; align-self: start; text-align: left;\n}\n\n.mi-widget-servicios-aeropuerto .service-card--light .service-card__title {\n    color: var(--svc-color-dark-blue) !important;\n}\n.mi-widget-servicios-aeropuerto .service-card--dark .service-card__title {\n    color: var(--svc-color-white) !important;\n}\n\n\/* --- ESTILOS PARA LOS ICONOS (AHORA IM\u00c1GENES) --- *\/\n.mi-widget-servicios-aeropuerto .service-card__icon {\n    grid-column: 2 \/ 3;\n    grid-row: 1 \/ 2;\n    justify-self: end;\n    align-self: start;\n}\n\n.mi-widget-servicios-aeropuerto .service-card__icon img {\n    width: 48px;\n    height: 48px;\n    object-fit: contain; \/* Asegura que la imagen escale correctamente *\/\n}\n\n\/* --- Resto de los estilos (botones) --- *\/\n.mi-widget-servicios-aeropuerto .service-card__button {\n    grid-column: 1 \/ -1; grid-row: 2 \/ 3;\n    align-self: end; padding: 0.25rem 0.25rem;\n    border-radius: 8px; text-align: center;\n    font-weight: 700; margin-top: 1rem;\n}\n\n.mi-widget-servicios-aeropuerto .service-card--light .service-card__button {\n    background-color: var(--svc-color-bg-light-button);\n    color: var(--svc-color-text-red);\n}\n\n.mi-widget-servicios-aeropuerto .service-card--dark .service-card__button {\n    background-color: var(--svc-color-bg-dark-button);\n    color: var(--svc-color-white);\n}\n\n\/* --- Media Query para m\u00f3viles --- *\/\n@media (max-width: 960px) {\n    .mi-widget-servicios-aeropuerto .services-container {\n        flex-direction: column !important;\n        align-items: center;\n    }\n}\n<\/style>\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-008a155 elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"008a155\" 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-648c676 elementor-widget elementor-widget-heading\" data-id=\"648c676\" 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\">AEROSHOP<\/h2>\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-b5006e9 elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"b5006e9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1da376b e-flex e-con-boxed e-con e-child\" data-id=\"1da376b\" 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-bb0929a elementor-widget elementor-widget-image\" data-id=\"bb0929a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking-v4.jpg?resize=900%2C600&#038;ssl=1\" class=\"attachment-full size-full wp-image-33298\" alt=\"Shows a partial view of the Airport parking lot\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking-v4.jpg?w=900&amp;ssl=1 900w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking-v4.jpg?resize=300%2C200&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking-v4.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d2abdb4 elementor-widget elementor-widget-heading\" data-id=\"d2abdb4\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Parking<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2c3ae4 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"a2c3ae4\" 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:\/\/aeroshop.com.uy\/carrasco\/en\/product-category\/services\/parking\/\" target=\"_blank\" aria-label=\"page with parking options in a new window.\">\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\">Long stay Parking<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-577683f e-flex e-con-boxed e-con e-child\" data-id=\"577683f\" 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-e24c357 elementor-widget elementor-widget-image\" data-id=\"e24c357\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/SalaVIP-v4.jpg?resize=900%2C600&#038;ssl=1\" class=\"attachment-full size-full wp-image-33300\" alt=\"Carrasco VIP Room\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/SalaVIP-v4.jpg?w=900&amp;ssl=1 900w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/SalaVIP-v4.jpg?resize=300%2C200&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/SalaVIP-v4.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d02d9e elementor-widget elementor-widget-heading\" data-id=\"0d02d9e\" 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<h3 class=\"elementor-heading-title elementor-size-default\">VIP Lounge<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-60dfd58 elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"60dfd58\" 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:\/\/aeroshop.com.uy\/carrasco\/en\/product-category\/services\/vip-lounge\/\" target=\"_blank\" aria-label=\"VIP lounge options page in a new window.\">\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\">A service tailored to you<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8dd04f8 e-flex e-con-boxed e-con e-child\" data-id=\"8dd04f8\" 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-7860e3c elementor-widget elementor-widget-image\" data-id=\"7860e3c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/dutyfree-v4.jpg?resize=900%2C600&#038;ssl=1\" class=\"attachment-full size-full wp-image-27342\" alt=\"Shopping at Dufry\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/dutyfree-v4.jpg?w=900&amp;ssl=1 900w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/dutyfree-v4.jpg?resize=300%2C200&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/dutyfree-v4.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-96c4a8d elementor-widget elementor-widget-heading\" data-id=\"96c4a8d\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Dufry<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-abf2faf elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"abf2faf\" 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:\/\/montevideo.shopdutyfree.com\/en\/\" target=\"_blank\" aria-label=\"Duty Free website in a new window.\">\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\">Reserve and withdraw<\/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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8ec338a e-flex e-con-boxed e-con e-child\" data-id=\"8ec338a\" 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-8cbf68e elementor-widget elementor-widget-image\" data-id=\"8cbf68e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"900\" height=\"600\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/rumbo_sur-v4.jpg?resize=900%2C600&#038;ssl=1\" class=\"attachment-full size-full wp-image-27336\" alt=\"Stores at Carrasco Airport\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/rumbo_sur-v4.jpg?w=900&amp;ssl=1 900w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/rumbo_sur-v4.jpg?resize=300%2C200&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/01\/rumbo_sur-v4.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3c3a05d elementor-widget elementor-widget-heading\" data-id=\"3c3a05d\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Stores<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8348e1f elementor-align-justify elementor-widget__width-inherit elementor-widget elementor-widget-button\" data-id=\"8348e1f\" 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:\/\/aeroshop.com.uy\/carrasco\/en\/product-category\/services\/parking\/\" target=\"_blank\" aria-label=\"Shops page in a new window\">\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\">Travel items and gifts<\/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\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-b9a513c elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"b9a513c\" 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-4a65f95 elementor-widget elementor-widget-image\" data-id=\"4a65f95\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/obras-ils\/\" aria-label=\"information about  the new landing system. New window\">\n\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"218\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/Banner-ILS-ingles-web.jpg?resize=1200%2C218&#038;ssl=1\" class=\"attachment-full size-full wp-image-37040\" alt=\"installation of the new instrumental landing system at Carrasco Airport\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/Banner-ILS-ingles-web.jpg?w=1290&amp;ssl=1 1290w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/Banner-ILS-ingles-web.jpg?resize=300%2C54&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/Banner-ILS-ingles-web.jpg?resize=1024%2C186&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/Banner-ILS-ingles-web.jpg?resize=768%2C139&amp;ssl=1 768w\" sizes=\"(max-width: 1290px) 100vw, 1290px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf8c6ba elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"cf8c6ba\" 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-fc9fe80 elementor-widget elementor-widget-image\" data-id=\"fc9fe80\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/obras-ils\/\" aria-describedby=\"Link to a page with information about the ongoing construction works for the new landing system.\">\n\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"450\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/450-en.jpg?resize=450%2C450&#038;ssl=1\" class=\"attachment-full size-full wp-image-37076\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/450-en.jpg?w=450&amp;ssl=1 450w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/450-en.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/05\/450-en.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 450px) 100vw, 450px\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ceec2e1 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"ceec2e1\" 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-64bc3c5 e-con-full e-flex e-con e-child\" data-id=\"64bc3c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-799cafa elementor-widget elementor-widget-heading\" data-id=\"799cafa\" 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\">Passenger services<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5ddcb08 e-con-full e-flex e-con e-child\" data-id=\"5ddcb08\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-172a5a6 e-con-full e-flex e-con e-child\" data-id=\"172a5a6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5521d83 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"5521d83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/gastronomy\/\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url(https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/gastrnomia-home-1024x447.jpg);\" role=\"img\" aria-label=\"gastrnomia-home\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tFood &amp; Beverage\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-319f0ae elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"319f0ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/parking\/\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url(https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/09\/parking-1024x683.jpg);\" role=\"img\" aria-label=\"&quot;&quot;\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tParking\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9699d3 elementor-cta--skin-classic elementor-animated-content elementor-bg-transform elementor-bg-transform-zoom-in elementor-widget elementor-widget-call-to-action\" data-id=\"f9699d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"call-to-action.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<a class=\"elementor-cta\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/services\/\">\n\t\t\t\t\t<div class=\"elementor-cta__bg-wrapper\">\n\t\t\t\t<div class=\"elementor-cta__bg elementor-bg\" style=\"background-image: url(https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/tripstore-banner-1-1024x288.jpg);\" role=\"img\" aria-label=\"&quot;&quot;\"><\/div>\n\t\t\t\t<div class=\"elementor-cta__bg-overlay\"><\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-cta__content\">\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<h2 class=\"elementor-cta__title elementor-cta__content-item elementor-content-item\">\n\t\t\t\t\t\tServices\t\t\t\t\t<\/h2>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ec64724 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"ec64724\" 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:\/\/aeroshop.com.uy\/carrasco\/en\/\" 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\">MORE INFO<\/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>\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-3fcabcb elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"3fcabcb\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1d3d415 e-con-full e-flex e-con e-child\" data-id=\"1d3d415\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-290a121 elementor-widget elementor-widget-heading\" data-id=\"290a121\" 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\">News<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2870d4 elementor-widget elementor-widget-spacer\" data-id=\"a2870d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d2059a img-align-top slide-h-position-center bullets-scale-up arrows-relative-to-box_area icon-box-vertical-align-top image-vertical-align-start preserve-img-ratio-cover elementor-widget elementor-widget-the7-elements-simple-posts-carousel\" data-id=\"5d2059a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;widget_columns&quot;:1,&quot;widget_columns_tablet&quot;:1,&quot;widget_columns_mobile&quot;:1,&quot;gap_between_posts&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:40,&quot;sizes&quot;:[]},&quot;gap_between_posts_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;gap_between_posts_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"the7-elements-simple-posts-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"disable-arrows-hover-bg owl-carousel the7-elementor-widget the7-simple-widget-posts-carousel elementor-owl-carousel-call loading-effect-none classic-layout-list the7-elements-simple-posts-carousel-5d2059a\" data-scroll-mode=\"1\" data-auto-height=\"false\" data-speed=\"600\" data-autoplay=\"false\" data-autoplay_speed=\"\"><a class=\"post visible wrapper dt-owl-item-wrap post-39908 type-post status-publish format-standard has-post-thumbnail hentry category-news category-7 description-off box-hover\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-signage-at-carrasco-airport\/\" target=\"\">\n\t\t\t\t<div class=\"post-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"the7-simple-post-thumb\">\n\t\t\t\t\t\t\t<div class=\"post-thumbnail-rollover layzr-bg img-css-resize-wrapper\" aria-label=\"Post image\"><img decoding=\"async\" width=\"1102\" height=\"715\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201102%20715&#039;%2F%3E\" class=\"attachment-full size-full preload-me aspect lazy lazy-load\" alt=\"\" sizes=\"(max-width: 1102px) 100vw, 1102px\" style=\"--ratio: 1102 \/ 715;\" data-src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg\" loading=\"eager\" data-srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?w=1102&amp;ssl=1 1102w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=300%2C195&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=1024%2C664&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=768%2C498&amp;ssl=1 768w\" \/><span class=\"the7-hover-icon\"><\/span><\/div>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"post-entry-content\">\n\t\t\t\t\t\t<h5 class=\"heading\"><span title=\"New Signage at Carrasco Airport\" class=\"post-title\">New Signage at Carrasco Airport<\/span><\/h5>\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t<\/a><a class=\"post visible wrapper dt-owl-item-wrap post-39900 type-post status-publish format-standard has-post-thumbnail hentry category-news category-7 description-off box-hover\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-autonomous-baggage-drop-system\/\" target=\"\">\n\t\t\t\t<div class=\"post-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"the7-simple-post-thumb\">\n\t\t\t\t\t\t\t<div class=\"post-thumbnail-rollover layzr-bg img-css-resize-wrapper\" aria-label=\"Post image\"><img decoding=\"async\" width=\"1064\" height=\"878\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201064%20878&#039;%2F%3E\" class=\"attachment-full size-full preload-me aspect lazy lazy-load\" alt=\"\" sizes=\"(max-width: 1064px) 100vw, 1064px\" style=\"--ratio: 1064 \/ 878;\" data-src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg\" loading=\"eager\" data-srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?w=1064&amp;ssl=1 1064w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=300%2C248&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=1024%2C845&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=768%2C634&amp;ssl=1 768w\" \/><span class=\"the7-hover-icon\"><\/span><\/div>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"post-entry-content\">\n\t\t\t\t\t\t<h5 class=\"heading\"><span title=\"New Autonomous Baggage Drop System\" class=\"post-title\">New Autonomous Baggage Drop System<\/span><\/h5>\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t<\/a><a class=\"post visible wrapper dt-owl-item-wrap post-39892 type-post status-publish format-standard has-post-thumbnail hentry category-news category-7 description-off box-hover\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/record-traffic-at-carmelo-airport\/\" target=\"\">\n\t\t\t\t<div class=\"post-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"the7-simple-post-thumb\">\n\t\t\t\t\t\t\t<div class=\"post-thumbnail-rollover layzr-bg img-css-resize-wrapper\" aria-label=\"Post image\"><img decoding=\"async\" width=\"1600\" height=\"1062\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201600%201062&#039;%2F%3E\" class=\"attachment-full size-full preload-me aspect lazy lazy-load\" alt=\"\" sizes=\"(max-width: 1200px) 100vw, 1200px\" style=\"--ratio: 1600 \/ 1062;\" data-src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg\" loading=\"eager\" data-srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?w=1600&amp;ssl=1 1600w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=300%2C199&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=1024%2C680&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=768%2C510&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=1536%2C1020&amp;ssl=1 1536w\" \/><span class=\"the7-hover-icon\"><\/span><\/div>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"post-entry-content\">\n\t\t\t\t\t\t<h5 class=\"heading\"><span title=\"Record traffic at Carmelo Airport\" class=\"post-title\">Record traffic at Carmelo Airport<\/span><\/h5>\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t<\/a><a class=\"post visible wrapper dt-owl-item-wrap post-39884 type-post status-publish format-standard has-post-thumbnail hentry category-news category-7 description-off box-hover\" href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/historic-record-of-private-flights-in-punta-del-este\/\" target=\"\">\n\t\t\t\t<div class=\"post-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"the7-simple-post-thumb\">\n\t\t\t\t\t\t\t<div class=\"post-thumbnail-rollover layzr-bg img-css-resize-wrapper\" aria-label=\"Post image\"><img decoding=\"async\" width=\"1241\" height=\"810\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201241%20810&#039;%2F%3E\" class=\"attachment-full size-full preload-me aspect lazy lazy-load\" alt=\"\" sizes=\"(max-width: 1200px) 100vw, 1200px\" style=\"--ratio: 1241 \/ 810;\" data-src=\"https:\/\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-historico-de-vuelos-privados-en-Punta-del-Este-1.jpg\" loading=\"eager\" data-srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-historico-de-vuelos-privados-en-Punta-del-Este-1.jpg?w=1241&amp;ssl=1 1241w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-historico-de-vuelos-privados-en-Punta-del-Este-1.jpg?resize=300%2C196&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-historico-de-vuelos-privados-en-Punta-del-Este-1.jpg?resize=1024%2C668&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-historico-de-vuelos-privados-en-Punta-del-Este-1.jpg?resize=768%2C501&amp;ssl=1 768w\" \/><span class=\"the7-hover-icon\"><\/span><\/div>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"post-entry-content\">\n\t\t\t\t\t\t<h5 class=\"heading\"><span title=\"Historic Record of Private Flights in Punta del Este\" class=\"post-title\">Historic Record of Private Flights in Punta del Este<\/span><\/h5>\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t<\/a><\/div><div class=\"owl-nav disabled\"><div class=\"owl-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Prev slide\"><i class=\"fas fa-chevron-left\"><\/i><\/div><div class=\"owl-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next slide\"><i class=\"fas fa-chevron-right\"><\/i><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4a14656 elementor-widget elementor-widget-spacer\" data-id=\"4a14656\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8f71993 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"8f71993\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/category\/news\/\" 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\">MORE INFO<\/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>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3abde8e elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"3abde8e\" 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-b944355 elementor-widget elementor-widget-heading\" data-id=\"b944355\" 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\">SERVICES<\/h2>\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-00d0a9c elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"00d0a9c\" 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-b8fcf3a elementor-hidden-tablet elementor-hidden-mobile e-con-full e-flex e-con e-child\" data-id=\"b8fcf3a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-91f1137 e-con-full e-flex e-con e-child\" data-id=\"91f1137\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-537d36f e-con-full e-flex e-con e-child\" data-id=\"537d36f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-023caf8 the7-img-sticky-size-effect-yes elementor-widget elementor-widget-image\" data-id=\"023caf8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"584\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/gastron.jpeg?resize=600%2C584&#038;ssl=1\" class=\"attachment-full size-full wp-image-33170\" alt=\"Drinks and food\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/gastron.jpeg?w=600&amp;ssl=1 600w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/gastron.jpeg?resize=300%2C292&amp;ssl=1 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-15a6388 elementor-align-right elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"15a6388\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/gastronomia\/\" rel=\"nofollow\" aria-label=\"open information page gastronomy services\" new=\"\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-arrow-circle-right\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">FOOD &amp; BEVERAGE<\/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>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ef4c09f e-con-full e-flex e-con e-child\" data-id=\"ef4c09f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-9ac15cc e-con-full e-flex e-con e-child\" data-id=\"9ac15cc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8d1275f elementor-widget elementor-widget-image\" data-id=\"8d1275f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"800\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking.jpg?resize=1200%2C800&#038;ssl=1\" class=\"attachment-full size-full wp-image-33172\" alt=\"Aerial view of the Carrasco parking lot\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking.jpg?w=1300&amp;ssl=1 1300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking.jpg?resize=300%2C200&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking.jpg?resize=1024%2C683&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/parking.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 1300px) 100vw, 1300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-29a1587 elementor-align-right elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"29a1587\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/parking\/\" aria-label=\"open information page about airport parking\" new=\"\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-arrow-circle-right\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">PARKING<\/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>\n\t\t<div class=\"elementor-element elementor-element-5e1943f e-con-full e-flex e-con e-child\" data-id=\"5e1943f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7b219e1 elementor-widget elementor-widget-image\" data-id=\"7b219e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/elementor\/thumbs\/tripstore-banner-1-r4sips9eqnabuyildvgr3afmg7i7527mu422kjbvz4.jpg?w=1200&#038;ssl=1\" title=\"\" alt=\"Suitcase packing service location\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-92f3656 elementor-align-right elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"92f3656\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/servicios\/\" aria-label=\"open services information\" new=\"\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-arrow-circle-right\"><\/i>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">SERVICES<\/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>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ca9843d elementor-hidden-tablet elementor-hidden-mobile e-con-full e-flex e-con e-child\" data-id=\"ca9843d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<section class=\"elementor-element elementor-element-f003f9b elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"f003f9b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36f91be elementor-widget elementor-widget-heading\" data-id=\"36f91be\" data-element_type=\"widget\" data-e-type=\"widget\" aria-label=\"Notas de Prensa\" 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\">NEWS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a75bcab elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"a75bcab\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"221\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?resize=1200%2C221&#038;ssl=1\" class=\"attachment-full size-full wp-image-38733\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?w=1600&amp;ssl=1 1600w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?resize=300%2C55&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?resize=1024%2C189&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?resize=768%2C142&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/carrasco-es-1.jpg?resize=1536%2C283&amp;ssl=1 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<section class=\"elementor-element elementor-element-166093c elementor-hidden-tablet e-flex e-con-boxed e-con e-parent\" data-id=\"166093c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e45b3e elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image\" data-id=\"0e45b3e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/MVD-FOR-Ingles-MOBILE.png?resize=400%2C400&#038;ssl=1\" class=\"attachment-full size-full wp-image-38778\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/MVD-FOR-Ingles-MOBILE.png?w=400&amp;ssl=1 400w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/MVD-FOR-Ingles-MOBILE.png?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/10\/MVD-FOR-Ingles-MOBILE.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ee6f3b2 e-flex e-con-boxed e-con e-child\" data-id=\"ee6f3b2\" 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-a84dbd6 elementor-widget elementor-widget-shortcode\" data-id=\"a84dbd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"custom-posts-grid\" role=\"group\" aria-label=\"\u00daltimas entradas de news\"><article class=\"custom-post-item\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-signage-at-carrasco-airport\/\" class=\"post-item-thumbnail\" aria-hidden=\"true\" tabindex=\"-1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"195\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=300%2C195&#038;ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=300%2C195&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=1024%2C664&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?resize=768%2C498&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nueva-senaletica-en-el-Aeropuerto-de-Carrasco.jpg?w=1102&amp;ssl=1 1102w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><h3 class=\"post-item-title\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-signage-at-carrasco-airport\/\">New Signage at Carrasco Airport<\/a><\/h3><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-signage-at-carrasco-airport\/\" class=\"read-more-button\" aria-label=\"Leer la nota completa sobre New Signage at Carrasco Airport\">Leer la nota<\/a><\/article><article class=\"custom-post-item\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-autonomous-baggage-drop-system\/\" class=\"post-item-thumbnail\" aria-hidden=\"true\" tabindex=\"-1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"248\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje-300x248.jpg?resize=300%2C248&#038;ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=300%2C248&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=1024%2C845&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?resize=768%2C634&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Nuevo-Sistema-de-despacho-autonomo-del-equipaje.jpg?w=1064&amp;ssl=1 1064w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><h3 class=\"post-item-title\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-autonomous-baggage-drop-system\/\">New Autonomous Baggage Drop System<\/a><\/h3><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/new-autonomous-baggage-drop-system\/\" class=\"read-more-button\" aria-label=\"Leer la nota completa sobre New Autonomous Baggage Drop System\">Leer la nota<\/a><\/article><article class=\"custom-post-item\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/record-traffic-at-carmelo-airport\/\" class=\"post-item-thumbnail\" aria-hidden=\"true\" tabindex=\"-1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"300\" height=\"199\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=300%2C199&#038;ssl=1\" class=\"attachment-medium size-medium wp-post-image\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=300%2C199&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=1024%2C680&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=768%2C510&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?resize=1536%2C1020&amp;ssl=1 1536w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2026\/03\/Record-de-movimientos-en-Aeropuerto-de-Carmelo.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><h3 class=\"post-item-title\"><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/record-traffic-at-carmelo-airport\/\">Record traffic at Carmelo Airport<\/a><\/h3><a href=\"https:\/\/aeropuertodecarrasco.com.uy\/en\/record-traffic-at-carmelo-airport\/\" class=\"read-more-button\" aria-label=\"Leer la nota completa sobre Record traffic at Carmelo Airport\">Leer la nota<\/a><\/article><\/div><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66d94ad elementor-align-center elementor-widget elementor-widget-button\" data-id=\"66d94ad\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/category\/news\/\" 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\">See previous news<\/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\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<section class=\"elementor-element elementor-element-3e1b5b1 elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"3e1b5b1\" data-element_type=\"container\" data-e-type=\"container\" tabindex=\"-1\" aria-hidden=\"true\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c298b9f elementor--h-position-center elementor--v-position-middle elementor-arrows-position-inside elementor-pagination-position-inside elementor-widget elementor-widget-slides\" data-id=\"c298b9f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;autoplay_speed&quot;:7005,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;transition&quot;:&quot;slide&quot;,&quot;transition_speed&quot;:500}\" data-widget_type=\"slides.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper\">\n\t\t\t\t\t<div class=\"elementor-slides-wrapper elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Diapositivas\" dir=\"ltr\" data-animation=\"fadeInUp\">\n\t\t\t\t<div class=\"swiper-wrapper elementor-slides\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-fb805ff swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"carrasco-es (1)\"><\/div><a class=\"swiper-slide-inner\" href=\"https:\/\/www.voegol.com.br\/es-uy\/inicio\"><div class=\"swiper-slide-contents\"><\/div><\/a><\/div><div class=\"elementor-repeater-item-7a8b728 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"banner-CA-1900x350\"><\/div><a class=\"swiper-slide-inner\" href=\"https:\/\/montevideo.shopdutyfree.com\/es\/20\/\" target=\"_blank\"><div class=\"swiper-slide-contents\"><\/div><\/a><\/div><div class=\"elementor-repeater-item-d9840a7 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"Paranair Airlines\"><\/div><a class=\"swiper-slide-inner\" href=\"https:\/\/www.paranair.com\" target=\"_blank\"><div class=\"swiper-slide-contents\"><\/div><\/a><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\" aria-label=\"Previous slide\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-left\"><\/i>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\" aria-label=\"Next slide\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-chevron-right\"><\/i>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/section>\n\t\t<div class=\"elementor-element elementor-element-55b73be elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"55b73be\" 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-679061c elementor-widget elementor-widget-heading\" data-id=\"679061c\" 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\">ENJOY URUGUAY<\/h2>\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-5d5d97c elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"5d5d97c\" data-element_type=\"container\" data-e-type=\"container\" tabindex=\"-1\" aria-hidden=\"true\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d18994a e-con-full e-flex e-con e-child\" data-id=\"d18994a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b85df7 elementor-widget elementor-widget-heading\" data-id=\"2b85df7\" data-element_type=\"widget\" data-e-type=\"widget\" tabindex=\"0\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Discover everything this beautiful country has to offer, in the official Uruguay Natural webpage.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18347ee elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"18347ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"https:\/\/uruguaynatural.com\/en\/\" target=\"_blank\" aria-label=\"web  Uruguay Natural open in new window\">\n\t\t\t<i aria-hidden=\"true\" class=\"the7bootstrap- the7-bootstrap-arrow-bar-right\"><\/i>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3ba5e9a e-con-full e-flex e-con e-child\" data-id=\"3ba5e9a\" data-element_type=\"container\" data-e-type=\"container\" tabindex=\"-1\" aria-hidden=\"true\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ca5f65d elementor-widget elementor-widget-image\" data-id=\"ca5f65d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"452\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?resize=1200%2C452&#038;ssl=1\" class=\"attachment-full size-full wp-image-33209\" alt=\"Aerial view of Punta del Este, Uruguay\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?w=1600&amp;ssl=1 1600w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?resize=300%2C113&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?resize=1024%2C386&amp;ssl=1 1024w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?resize=768%2C289&amp;ssl=1 768w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2025\/02\/punta-del-este-2025.jpg?resize=1536%2C579&amp;ssl=1 1536w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b9ec1be e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-parent\" data-id=\"b9ec1be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4dc8c48 e-con-full e-flex e-con e-child\" data-id=\"4dc8c48\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-85bfba3 elementor-widget elementor-widget-heading\" data-id=\"85bfba3\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Do not miss our offers and news<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0712d49 elementor-widget elementor-widget-text-editor\" data-id=\"0712d49\" 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<div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><p>Subscribe and find out before anyone else about our exclusive promotions .<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>\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-bcdb10c elementor-widget elementor-widget-button\" data-id=\"bcdb10c\" 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=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6MTQzNzUsInRvZ2dsZSI6ZmFsc2V9\" aria-label=\"Subscribe here to receive news\">\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\">SUBSCRIBE<\/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>\n\t\t<div class=\"elementor-element elementor-element-cc7e645 e-con-full e-flex e-con e-child\" data-id=\"cc7e645\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;none&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b7ea69 elementor-widget elementor-widget-heading\" data-id=\"1b7ea69\" 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<h3 class=\"elementor-heading-title elementor-size-default\">Advertise your brand here<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f70d8c4 elementor-widget elementor-widget-text-editor\" data-id=\"f70d8c4\" 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<div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><p>We are a media platform with unique solutions for your brands.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>\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-e7022e1 elementor-widget elementor-widget-button\" data-id=\"e7022e1\" 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:\/\/aeropuertodecarrasco.com.uy\/en\/airport-media\/\" aria-label=\"Learn about your brand advertising options here.\">\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\">BRAND ADVERTISING OPTIONS<\/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>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce3f66a e-con-full elementor-hidden-desktop e-flex e-con e-parent\" data-id=\"ce3f66a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-ea50198 e-con-full e-flex e-con e-child\" data-id=\"ea50198\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f1c295 elementor-pagination-position-outside elementor--h-position-center elementor--v-position-middle elementor-widget elementor-widget-slides\" data-id=\"8f1c295\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;navigation&quot;:&quot;dots&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;transition&quot;:&quot;slide&quot;,&quot;transition_speed&quot;:500}\" data-widget_type=\"slides.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper\">\n\t\t\t\t\t<div class=\"elementor-slides-wrapper elementor-main-swiper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Diapositivas\" dir=\"ltr\" data-animation=\"fadeInUp\">\n\t\t\t\t<div class=\"swiper-wrapper elementor-slides\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-repeater-item-92fed7f swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"aeropuerto_mobile_en\"><\/div><a class=\"swiper-slide-inner\" href=\"https:\/\/campaign.odicci.com\/#\/ea121304e7a38472fb4f\"><div class=\"swiper-slide-contents\"><\/div><\/a><\/div><div class=\"elementor-repeater-item-4fc7b94 swiper-slide\" role=\"group\" aria-roledescription=\"slide\"><div class=\"swiper-slide-bg\" role=\"img\" aria-label=\"MVD - FOR-Ingle\u0302s -MOBILE\"><\/div><a class=\"swiper-slide-inner\" href=\"https:\/\/www.voegol.com.br\/es-uy\/inicio\" target=\"_blank\"><div class=\"swiper-slide-contents\"><\/div><\/a><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-774f7f6 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"774f7f6\" 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-0271eff e-con-full e-flex e-con e-child\" data-id=\"0271eff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b86003 elementor-widget elementor-widget-heading\" data-id=\"6b86003\" 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\">Enjoy Uruguay<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a728e8 elementor-widget elementor-widget-spacer\" data-id=\"2a728e8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-141e12a elementor-widget elementor-widget-text-editor\" data-id=\"141e12a\" 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<div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><p>Experience the surprises that this charming country hides<\/p><\/div><\/div><\/div><\/div>\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-cf602fe elementor-widget elementor-widget-spacer\" data-id=\"cf602fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2328f13 elementor-widget elementor-widget-image\" data-id=\"2328f13\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/punta-mobile.jpg?resize=400%2C400&#038;ssl=1\" class=\"attachment-large size-large wp-image-15506\" alt=\"\" srcset=\"https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/punta-mobile.jpg?w=400&amp;ssl=1 400w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/punta-mobile.jpg?resize=300%2C300&amp;ssl=1 300w, https:\/\/i0.wp.com\/aeropuertodecarrasco.com.uy\/wp-content\/uploads\/2022\/10\/punta-mobile.jpg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02b7824 e-con-full elementor-hidden-desktop e-flex e-con e-parent\" data-id=\"02b7824\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6584071 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"6584071\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c2930d4 elementor-widget elementor-widget-heading\" data-id=\"c2930d4\" 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<h4 class=\"elementor-heading-title elementor-size-default\">Advertise your brand here<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba487c3 elementor-widget elementor-widget-spacer\" data-id=\"ba487c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5809904 elementor-widget elementor-widget-text-editor\" data-id=\"5809904\" 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<div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><p>We are a media platform with unique solutions for your brands.<\/p><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>\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-af93449 elementor-widget elementor-widget-spacer\" data-id=\"af93449\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e49fcc2 elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"e49fcc2\" 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:\/\/aeropuertodecarrasco.com.uy\/airport-media\/\">\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\">MORE INFO<\/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>\n\t\t<div class=\"elementor-element elementor-element-35a66ef e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"35a66ef\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3363b5c elementor-widget elementor-widget-heading\" data-id=\"3363b5c\" 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<h4 class=\"elementor-heading-title elementor-size-default\">Do not miss our offers and news<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b325c76 elementor-widget elementor-widget-spacer\" data-id=\"b325c76\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eb0d02d elementor-widget elementor-widget-text-editor\" data-id=\"eb0d02d\" 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<div class=\"page\" title=\"Page 1\"><div class=\"section\"><div class=\"layoutArea\"><div class=\"column\"><p>Subscribe and find out before anyone else about our exclusive promotions and exclusive offers<\/p><\/div><\/div><\/div><\/div>\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-6598027 elementor-widget elementor-widget-spacer\" data-id=\"6598027\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f2a23a elementor-mobile-align-center elementor-widget elementor-widget-button\" data-id=\"5f2a23a\" 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=\"#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6MTQzNzUsInRvZ2dsZSI6ZmFsc2V9\">\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\">SUSBCRIBE<\/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>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u276e \u276f \u23f8 Parking Find your flight VIP Lounge Carrasco Airport Parking More info Find your flight More info VIP Lounge More info AEROSHOP Parking Long stay Parking VIP Lounge A service tailored to you Dufry Reserve and withdraw Stores Travel items and gifts Passenger services Food &amp; Beverage Parking Services MORE INFO News Temporada&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-13833","page","type-page","status-publish","hentry","category-7","description-off"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/pages\/13833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/comments?post=13833"}],"version-history":[{"count":5,"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/pages\/13833\/revisions"}],"predecessor-version":[{"id":39738,"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/pages\/13833\/revisions\/39738"}],"wp:attachment":[{"href":"https:\/\/aeropuertodecarrasco.com.uy\/en\/wp-json\/wp\/v2\/media?parent=13833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}