{"id":310,"date":"2025-06-13T16:58:54","date_gmt":"2025-06-13T16:58:54","guid":{"rendered":"https:\/\/aqma.cl\/home\/"},"modified":"2026-02-27T21:24:52","modified_gmt":"2026-02-27T21:24:52","slug":"inicio","status":"publish","type":"page","link":"https:\/\/aqma.cl\/en\/","title":{"rendered":"AQMA CONSULTORES"},"content":{"rendered":"<div class=\"wp-block-stackable-divider stk-block-divider stk-block stk-a12ef88\" data-block-id=\"a12ef88\"><hr class=\"stk-block-divider__hr\"\/><\/div>\n\n\n\n<div class=\"wp-block-stackable-spacer stk-block-spacer stk--no-padding stk-block stk-02e7d27\" data-block-id=\"02e7d27\"><style>.stk-02e7d27 {height:80px !important;}<\/style><\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Galer\u00eda AQMA<\/title>\n    <style>\n        body, html { margin: 0; padding: 0; overflow-x: hidden; }\n        .aqma-visual-carousel {\n            width: 100%;\n            height: 100vh;\n            max-height: 800px;\n            position: relative;\n            overflow: hidden;\n        }\n        .aqma-visual-carousel img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            position: absolute;\n            opacity: 0;\n            transition: opacity 1.2s ease-in-out;\n        }\n        .aqma-visual-carousel img.active { opacity: 1; }\n        .carousel-nav {\n            position: absolute;\n            bottom: 20px;\n            left: 50%;\n            transform: translateX(-50%);\n            display: flex;\n            gap: 10px;\n            z-index: 2;\n        }\n        .carousel-nav .dot {\n            width: 12px;\n            height: 12px;\n            border-radius: 50%;\n            background: rgba(255,255,255,0.4);\n            cursor: pointer;\n            transition: all 0.3s ease;\n        }\n        .carousel-nav .dot.active {\n            background: #0C7478;\n            transform: scale(1.3);\n            box-shadow: 0 0 5px rgba(255,255,255,0.5);\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"aqma-visual-carousel\">\n        <!-- Im\u00e1genes actualizadas -->\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/IMG_20250617_165300-scaled.webp\" loading=\"eager\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/IMG_20241005_123457-scaled.webp\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/20241102_170653.jpg\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/505456523_10235293536142232_5393028198750781947_n_10229613905355012.jpg\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/FB_IMG_1754206631726.webp\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/504202999_10235289858810301_495513591032252157_n_10229559671639203.jpg\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/IMG_20240111_160022-scaled.webp\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/IMG_20241005_121136-scaled.webp\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/505602108_10235293535662220_6542890136724287751_n_10229613911635169.webp\" loading=\"lazy\">\n        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/IMG_20250519_122149-scaled-e1755469802724.webp\" loading=\"lazy\">\n        \n        <div class=\"carousel-nav\">\n            <!-- Los puntos de navegaci\u00f3n se generar\u00e1n din\u00e1micamente con JavaScript -->\n        <\/div>\n    <\/div>\n\n    <script>\n        document.addEventListener('DOMContentLoaded', () => {\n            const carousel = document.querySelector('.aqma-visual-carousel');\n            const images = document.querySelectorAll('.aqma-visual-carousel img');\n            const navContainer = document.querySelector('.carousel-nav');\n            let currentIndex = 0, interval;\n            \n            \/\/ Funci\u00f3n para mezclar array aleatoriamente (Fisher-Yates)\n            function shuffleArray(array) {\n                for (let i = array.length - 1; i > 0; i--) {\n                    const j = Math.floor(Math.random() * (i + 1));\n                    [array[i], array[j]] = [array[j], array[i]];\n                }\n                return array;\n            }\n            \n            \/\/ Mezclar las im\u00e1genes visualmente (sin cambiar el DOM)\n            const shuffledImages = shuffleArray(Array.from(images));\n            \n            \/\/ Crear puntos de navegaci\u00f3n din\u00e1micamente\n            shuffledImages.forEach((img, index) => {\n                const dot = document.createElement('div');\n                dot.className = 'dot';\n                dot.setAttribute('data-index', index);\n                navContainer.appendChild(dot);\n            });\n            \n            const dots = document.querySelectorAll('.carousel-nav .dot');\n            \n            \/\/ Mostrar la primera imagen aleatoria\n            shuffledImages[0].classList.add('active');\n            dots[0].classList.add('active');\n            \n            const showSlide = (index) => {\n                shuffledImages[currentIndex].classList.remove('active');\n                dots[currentIndex].classList.remove('active');\n                currentIndex = index;\n                shuffledImages[currentIndex].classList.add('active');\n                dots[currentIndex].classList.add('active');\n            };\n            \n            const startInterval = () => {\n                interval = setInterval(() => {\n                    showSlide((currentIndex + 1) % shuffledImages.length);\n                }, 5000);\n            };\n            \n            startInterval();\n            \n            dots.forEach(dot => {\n                dot.addEventListener('click', () => {\n                    clearInterval(interval);\n                    showSlide(parseInt(dot.getAttribute('data-index')));\n                    startInterval();\n                });\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<!-- Google Fonts: Raleway (Light 300 y SemiBold 600) -->\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Raleway:wght@300;600&#038;display=swap\" rel=\"stylesheet\">\n\n<style>\n  \/* Estilos para el bloque de servicios - Versi\u00f3n Verde Esmeralda *\/\n  .bloque-servicios {\n    font-family: 'Raleway', sans-serif;\n  }\n  \n  \/* Texto descriptivo - Estilo elegante (Raleway Light) *\/\n  .bloque-servicios .encabezado-texto {\n    font-weight: 300; \/* Light *\/\n    font-size: 1.1rem;\n    line-height: 1.8;\n    color: white; \/* Texto blanco sobre fondo verde *\/\n    letter-spacing: 0.3px;\n    margin-bottom: 15px;\n  }\n\n  \/* Contenedor del encabezado - Fondo verde esmeralda *\/\n  .bloque-servicios .header {\n    background: linear-gradient(135deg, #2E8B81 0%, #1A5F5B 100%);\n    padding: 60px 20px;\n    text-align: center;\n  }\n\n  \/* Cards de servicios (mantienen Inter para contrastar) *\/\n  .bloque-servicios .service-box {\n    font-family: 'Inter', sans-serif;\n  }\n  \n  .bloque-servicios .service-box:hover {\n    transform: scale(1.03);\n    transition: transform 0.3s ease;\n  }\n\n  \/* Animaciones *\/\n  .fade-up {\n    opacity: 0;\n    transform: translateY(30px);\n    transition: opacity 0.8s ease, transform 0.8s ease;\n  }\n\n  .fade-up.visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n<\/style>\n\n<script>\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    const observer = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          entry.target.classList.add(\"visible\");\n          observer.unobserve(entry.target);\n        }\n      });\n    }, { threshold: 0.1 });\n\n    document.querySelectorAll(\".fade-up\").forEach(el => observer.observe(el));\n  });\n<\/script>\n\n<!-- Bloque de Servicios - Versi\u00f3n Verde Esmeralda -->\n<div class=\"bloque-servicios\">\n  <!-- Encabezado con texto primero y fondo verde -->\n  <div class=\"header\">\n    <p class=\"encabezado-texto fade-up\" style=\"max-width: 800px; margin: 0 auto; text-align: center; line-height: 1.3;\">\n  Servicios Integrales en Medio Ambiente<br>\n  <span style=\"display: block; margin-top: 5px; font-size: 0.95em;\">\n    Respaldo T\u00e9cnico Normativo y S\u00f3lida Experiencia para el Desarrollo Sostenible<br>\n    en Equilibrio con la Protecci\u00f3n del Patrimonio\n  <\/span>\n<\/p>\n  <\/div>\n\n  <!-- Grid de Servicios (4 cards) -->\n  <div class=\"grid\" style=\"display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 40px 20px; max-width: 1200px; margin: auto;\">\n    \n    <a href=\"https:\/\/aqma.cl\/en\/servicios\/#asesorias\" class=\"service-box fade-up\" style=\"background-image: url('https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/1_Asesoria-y-gestion-normativa-scaled.webp'); flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); height: 250px; position: relative; background-size: cover; background-position: center; color: white; display: flex; align-items: flex-end; text-decoration: none; border-radius: 10px; overflow: hidden; min-width: 250px;\">\n      <div class=\"service-overlay\" style=\"background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); width: 100%; padding: 20px;\">\n        <div class=\"service-title\" style=\"font-size: 1.1rem; font-weight: bold;\">Asesor\u00edas y Gesti\u00f3n Normativa<\/div>\n      <\/div>\n    <\/a>\n\n    <a href=\"https:\/\/aqma.cl\/en\/servicios\/#medioambiente\" class=\"service-box fade-up\" style=\"background-image: url('https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/2_Medio-Ambiente-scaled.webp'); flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); height: 250px; position: relative; background-size: cover; background-position: center; color: white; display: flex; align-items: flex-end; text-decoration: none; border-radius: 10px; overflow: hidden; min-width: 250px;\">\n      <div class=\"service-overlay\" style=\"background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); width: 100%; padding: 20px;\">\n        <div class=\"service-title\" style=\"font-size: 1.1rem; font-weight: bold;\">Medio Ambiente<\/div>\n      <\/div>\n    <\/a>\n    <!-- \n    <a href=\"https:\/\/aqma.cl\/servicios\/#arqueologia\" class=\"service-box fade-up\" style=\"background-image: url('https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/3_Arqueologia-y-Patrimonio-cultural.webp'); flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); height: 250px; position: relative; background-size: cover; background-position: center; color: white; display: flex; align-items: flex-end; text-decoration: none; border-radius: 10px; overflow: hidden; min-width: 250px;\">\n      <div class=\"service-overlay\" style=\"background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); width: 100%; padding: 20px;\">\n        \n        <div class=\"service-title\" style=\"font-size: 1.1rem; font-weight: bold;\">Arqueolog\u00eda y Patrimonio Cultural<\/div>\n      <\/div>\n      -->\n    <\/a>\n\n    <a href=\"https:\/\/aqma.cl\/en\/servicios\/#complementarios\" class=\"service-box fade-up\" style=\"background-image: url('https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/4_Servicios-complementarios-2-e1754424668291.webp'); flex: 1 1 calc(25% - 20px); max-width: calc(25% - 20px); height: 250px; position: relative; background-size: cover; background-position: center; color: white; display: flex; align-items: flex-end; text-decoration: none; border-radius: 10px; overflow: hidden; min-width: 250px;\">\n      <div class=\"service-overlay\" style=\"background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); width: 100%; padding: 20px;\">\n        <div class=\"service-title\" style=\"font-size: 1.1rem; font-weight: bold;\">Servicios T\u00e9cnicos Complementarios<\/div>\n      <\/div>\n    <\/a>\n  <\/div>\n\n  <!-- Bot\u00f3n CTA - Verde esmeralda -->\n  <div style=\"text-align: center; padding-bottom: 50px;\">\n    <a href=\"https:\/\/aqma.cl\/en\/servicios\/\" class=\"fade-up\" style=\"background-color: #2E8B81; color: white; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; transition: background-color 0.3s ease; font-family: 'Raleway', sans-serif;\">\n      Ver todos los servicios\n    <\/a>\n  <\/div>\n<\/div>\n\n\n\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>AQMA Consultores &#8211; Equipo<\/title>\n    \n    <!-- Fuentes con fallback -->\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@600&#038;family=Raleway:wght@300;500;600&#038;display=swap\" rel=\"stylesheet\">\n    \n    <!-- Iconos -->\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/5.15.4\/css\/all.min.css\">\n    \n    <!-- Animaciones -->\n    <link href=\"https:\/\/unpkg.com\/aos@2.3.1\/dist\/aos.css\" rel=\"stylesheet\">\n    \n    <style>\n        \/* Reset de estilos espec\u00edficos para nuestra secci\u00f3n *\/\n        #aqma-team-2023 * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Raleway', sans-serif !important;\n        }\n        \n        \/* Paleta de colores con prefijos *\/\n        :root {\n            --aqma-verde-oscuro: #1A5F5B;\n            --aqma-verde-medio: #2E8B81;\n            --aqma-texto-claro: #F2EFEB;\n            --aqma-fondo-tarjeta: #FFFFFF;\n        }\n        \n        \/* Contenedor principal con ID \u00fanico *\/\n        #aqma-team-2023 {\n            background: linear-gradient(135deg, var(--aqma-verde-medio) 0%, var(--aqma-verde-oscuro) 100%);\n            padding: 60px 0;\n            font-family: 'Raleway', sans-serif;\n        }\n        \n        #aqma-team-2023 .aqma-container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n        \n        \/* Encabezado con selectores espec\u00edficos *\/\n        #aqma-team-2023 .aqma-team-header {\n            text-align: center;\n            margin-bottom: 60px;\n        }\n        \n        #aqma-team-2023 .aqma-team-description {\n            color: var(--aqma-texto-claro);\n            font-size: 1.2rem;\n            line-height: 1.6;\n            margin-bottom: 15px;\n            font-weight: 300;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n        \n        #aqma-team-2023 .aqma-divider {\n            width: 60px;\n            height: 3px;\n            background: var(--aqma-texto-claro);\n            margin: 0 auto;\n        }\n        \n        \/* Contenedor de miembros *\/\n        #aqma-team-2023 .aqma-team-members {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            gap: 70px;\n        }\n        \n        \/* Tarjetas con dise\u00f1o circular *\/\n        #aqma-team-2023 .aqma-member-card {\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            max-width: 800px;\n            background: var(--aqma-fondo-tarjeta);\n            border-radius: 20px;\n            overflow: hidden;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.15);\n            padding: 40px;\n            transition: transform 0.4s ease, box-shadow 0.4s ease;\n        }\n        \n        #aqma-team-2023 .aqma-member-card:hover {\n            transform: translateY(-8px);\n            box-shadow: 0 15px 40px rgba(0,0,0,0.2);\n        }\n        \n        #aqma-team-2023 .aqma-member-image {\n            width: 200px;\n            height: 200px;\n            border-radius: 50%;\n            overflow: hidden;\n            margin-bottom: 30px;\n            border: 5px solid #f0f0f0;\n            box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n            transition: all 0.4s ease;\n        }\n        \n        #aqma-team-2023 .aqma-member-card:hover .aqma-member-image {\n            transform: scale(1.05);\n            border-color: var(--aqma-verde-medio);\n        }\n        \n        #aqma-team-2023 .aqma-member-image img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            filter: grayscale(100%);\n            transition: filter 0.5s ease;\n        }\n        \n        #aqma-team-2023 .aqma-member-card:hover .aqma-member-image img {\n            filter: grayscale(0%);\n        }\n        \n        #aqma-team-2023 .aqma-member-info {\n            text-align: center;\n            width: 100%;\n        }\n        \n        #aqma-team-2023 .aqma-member-name {\n            font-family: 'Montserrat', sans-serif !important;\n            color: var(--aqma-verde-oscuro) !important;\n            font-size: 1.5rem;\n            margin: 0 0 10px;\n            text-transform: uppercase;\n            letter-spacing: 0.5px;\n            font-weight: 600;\n        }\n        \n        #aqma-team-2023 .aqma-member-title {\n            color: var(--aqma-verde-medio) !important;\n            font-size: 1.1rem;\n            line-height: 1.5;\n            margin-bottom: 20px;\n            font-weight: 500;\n        }\n        \n        #aqma-team-2023 .aqma-member-education {\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            margin-bottom: 20px;\n            font-weight: 600;\n            color: var(--aqma-verde-oscuro) !important;\n            font-size: 1rem;\n        }\n        \n        #aqma-team-2023 .aqma-member-education i {\n            margin-right: 10px;\n            color: var(--aqma-verde-medio) !important;\n        }\n        \n        #aqma-team-2023 .aqma-member-bio {\n            color: var(--aqma-verde-medio) !important;\n            font-size: 1rem;\n            line-height: 1.7;\n            margin-bottom: 25px;\n        }\n        \n        #aqma-team-2023 .aqma-btn-trayectoria {\n            display: inline-flex;\n            align-items: center;\n            background: var(--aqma-verde-medio) !important;\n            color: white !important;\n            padding: 12px 25px;\n            border-radius: 50px;\n            text-decoration: none;\n            font-size: 1rem;\n            font-weight: 600;\n            transition: all 0.3s ease;\n            border: none !important;\n        }\n        \n        #aqma-team-2023 .aqma-btn-trayectoria:hover {\n            background: var(--aqma-verde-oscuro) !important;\n            transform: translateY(-3px);\n            box-shadow: 0 5px 15px rgba(0,0,0,0.1);\n        }\n        \n        #aqma-team-2023 .aqma-btn-trayectoria i {\n            margin-left: 8px;\n            font-size: 0.9em;\n            transition: transform 0.3s ease;\n        }\n        \n        #aqma-team-2023 .aqma-btn-trayectoria:hover i {\n            transform: translateX(5px);\n        }\n        \n        \/* Versi\u00f3n desktop *\/\n        @media (min-width: 768px) {\n            #aqma-team-2023 .aqma-team-members {\n                gap: 80px;\n            }\n            \n            #aqma-team-2023 .aqma-member-card {\n                padding: 50px;\n            }\n            \n            #aqma-team-2023 .aqma-member-image {\n                width: 220px;\n                height: 220px;\n            }\n            \n            #aqma-team-2023 .aqma-member-name {\n                font-size: 1.6rem;\n            }\n            \n            #aqma-team-2023 .aqma-member-title {\n                font-size: 1.15rem;\n            }\n            \n            #aqma-team-2023 .aqma-member-education,\n            #aqma-team-2023 .aqma-member-bio {\n                font-size: 1.05rem;\n            }\n        }\n        \n        \/* Ajustes para m\u00f3viles *\/\n        @media (max-width: 767px) {\n            #aqma-team-2023 {\n                padding: 40px 0;\n            }\n            \n            #aqma-team-2023 .aqma-team-header {\n                margin-bottom: 40px;\n            }\n            \n            #aqma-team-2023 .aqma-team-description {\n                font-size: 1rem;\n            }\n            \n            #aqma-team-2023 .aqma-member-card {\n                padding: 30px 20px;\n            }\n            \n            #aqma-team-2023 .aqma-member-image {\n                width: 180px;\n                height: 180px;\n                margin-bottom: 25px;\n            }\n            \n            #aqma-team-2023 .aqma-member-name {\n                font-size: 1.3rem;\n            }\n            \n            #aqma-team-2023 .aqma-member-title {\n                font-size: 1rem;\n            }\n            \n            #aqma-team-2023 .aqma-member-education,\n            #aqma-team-2023 .aqma-member-bio {\n                font-size: 0.95rem;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Contenedor con ID \u00fanico -->\n    <section id=\"aqma-team-2023\">\n        <div class=\"aqma-container\">\n            <div class=\"aqma-team-header\" data-aos=\"fade-up\">\n                <p class=\"aqma-team-description\">\n                    AQMA Consultores cuenta con una Direcci\u00f3n T\u00e9cnica de s\u00f3lida experiencia liderada por:\n                <\/p>\n                <div class=\"aqma-divider\" data-aos=\"fade-up\" data-aos-delay=\"100\"><\/div>\n            <\/div>\n            \n            <div class=\"aqma-team-members\">\n                <!-- Mario Rossi -->\n                <div class=\"aqma-member-card\" data-aos=\"fade-up\">\n                    <div class=\"aqma-member-image\">\n                        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/20250821_020615-1-scaled.jpg\" alt=\"Mario Rossi\">\n                    <\/div>\n                    <div class=\"aqma-member-info\">\n                        <h3 class=\"aqma-member-name\">MARIO ROSSI LUK\u00c1CS<\/h3>\n                        <p class=\"aqma-member-title\">Ingeniero Ambiental<br>Socio Fundador<br>Director \u00c1rea de Medio Ambiente<\/p>\n                        \n\n                        \n\n                        \n                        <a href=\"https:\/\/aqma.cl\/en\/nuestra-empresa\/\" class=\"aqma-btn-trayectoria\">\n                            Quienes somos\n                        <\/a>\n                    <\/div>\n                <\/div>\n                \n                <!-- Paulina Peralta \n                <div class=\"aqma-member-card\" data-aos=\"fade-up\" data-aos-delay=\"150\">\n                    <div class=\"aqma-member-image\">\n                        <img decoding=\"async\" src=\"https:\/\/aqma.cl\/wp-content\/uploads\/2025\/08\/FB_IMG_17557535423092-1.jpg\" alt=\"Paulina Peralta\">\n                    <\/div>\n                    <div class=\"aqma-member-info\">\n                        <h3 class=\"aqma-member-name\">PAULINA PERALTA GARRIDO<\/h3>\n                        <p class=\"aqma-member-title\">Arque\u00f3loga<br>Socia Fundadora<br>Directora \u00c1rea de Arqueolog\u00eda<\/p>\n                        \n\n                        \n\n                        \n                        <a href=\"https:\/\/aqma.cl\/nuestra-empresa\" class=\"aqma-btn-trayectoria\">\n                            Quienes somos \n                        <\/a>\n                    <\/div>\n                <\/div>\n           -->\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <script src=\"https:\/\/unpkg.com\/aos@2.3.1\/dist\/aos.js\"><\/script>\n    <script>\n        \/\/ Inicializaci\u00f3n con protecci\u00f3n contra conflictos\n        document.addEventListener('DOMContentLoaded', function() {\n            if(typeof AOS !== 'undefined') {\n                AOS.init({\n                    duration: 800,\n                    easing: 'ease-out-quad',\n                    once: true,\n                    offset: 120,\n                    disable: function() {\n                        return window.innerWidth < 768;\n                    }\n                });\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<!DOCTYPE html>\n<html lang=\"es\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Contacto - AQMA Consultores<\/title>\n  <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@600;700&#038;family=Raleway:wght@400;500&#038;display=swap\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n  <style>\n    :root {\n      --verde-primario: #2E8B81;\n      --verde-oscuro: #1A5F5B;\n      --beige: #F2EFEB;\n      --degradado-verde: linear-gradient(135deg, #2E8B81 0%, #1A5F5B 100%);\n    }\n    \n    body {\n      font-family: 'Raleway', sans-serif;\n      margin: 0;\n      background-color: var(--beige);\n      color: #333;\n      line-height: 1.5;\n    }\n\n    .contacto-container {\n      max-width: 1000px;\n      margin: 3rem auto;\n      padding: 0 15px;\n    }\n\n    .contacto-header {\n      text-align: center;\n      margin-bottom: 1.5rem;\n    }\n\n    .contacto-header h2 {\n      font-family: 'Montserrat', sans-serif;\n      font-size: clamp(1.5rem, 4vw, 2.5rem);\n      color: var(--verde-oscuro);\n      margin-bottom: 0.8rem;\n    }\n\n    .contacto-header p {\n      font-size: clamp(0.8rem, 2vw, 1rem);\n      max-width: 600px;\n      margin: 0 auto;\n      color: #555;\n    }\n\n    .contacto-grid {\n      display: grid;\n      grid-template-columns: 1fr;\n      gap: 1rem;\n    }\n\n    @media (min-width: 768px) {\n      .contacto-grid {\n        grid-template-columns: repeat(3, 1fr);\n        gap: 1.5rem;\n      }\n    }\n\n    .contacto-card {\n      background: white;\n      border-radius: 8px;\n      padding: 1rem;\n      box-shadow: 0 2px 8px rgba(46, 139, 129, 0.1);\n      text-align: center;\n      border-top: 3px solid var(--verde-primario);\n    }\n\n    @media (min-width: 768px) {\n      .contacto-card {\n        border-radius: 12px;\n        padding: 1.5rem;\n        transition: all 0.3s ease;\n      }\n      \n      .contacto-card:hover {\n        transform: translateY(-3px);\n        box-shadow: 0 5px 15px rgba(46, 139, 129, 0.15);\n      }\n    }\n\n    .contacto-icono {\n      font-size: clamp(1.2rem, 4vw, 1.8rem);\n      color: var(--verde-primario);\n      margin-bottom: 0.5rem;\n    }\n\n    .contacto-card h3 {\n      font-family: 'Montserrat', sans-serif;\n      color: var(--verde-oscuro);\n      margin-bottom: 0.5rem;\n      font-size: clamp(0.95rem, 3vw, 1.2rem);\n    }\n\n    .contacto-card p, .contacto-card a {\n      color: #555;\n      margin: 0.3rem 0;\n      font-size: clamp(0.75rem, 2vw, 0.9rem);\n    }\n\n    .contacto-card a {\n      color: var(--verde-primario);\n      text-decoration: none;\n      font-weight: 500;\n      display: inline-block;\n    }\n\n    @media (min-width: 768px) {\n      .contacto-card a:hover {\n        color: var(--verde-oscuro);\n        transform: translateX(2px);\n      }\n    }\n\n    .mapa-container {\n      margin-top: 1rem;\n      border-radius: 8px;\n      overflow: hidden;\n      box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n    }\n\n    @media (min-width: 768px) {\n      .mapa-container {\n        margin-top: 1.5rem;\n        border-radius: 12px;\n      }\n    }\n\n    .mapa-container iframe {\n      width: 100%;\n      height: 200px;\n      border: none;\n    }\n\n    @media (min-width: 768px) {\n      .mapa-container iframe {\n        height: 300px;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <div class=\"contacto-container\">\n    <div class=\"contacto-header\">\n      <h2>Contacto<\/h2>\n      <p>Estamos Aqu\u00ed para Responder tus Consultas<\/p>\n    <\/div>\n    \n    <div class=\"contacto-grid\">\n      <div class=\"contacto-card\">\n        <div class=\"contacto-icono\">\n          <i class=\"fas fa-map-marker-alt\"><\/i>\n        <\/div>\n        <h3>Oficina Central<\/h3>\n        <p>Av. Vicu\u00f1a Mackenna 7255<\/p>\n        <p>Oficina 802, La Florida, Santiago<\/p>\n      <\/div>\n      <!-- \n      <div class=\"contacto-card\">\n        <div class=\"contacto-icono\">\n          <i class=\"fab fa-whatsapp\"><\/i>\n        <\/div>\n        <h3>WhatsApp<\/h3>\n        <p>9:00 - 18:00 hrs<\/p>\n        <a href=\"https:\/\/wa.me\/56973930242\" target=\"_blank\">+56 9 7393 0242<\/a\n      <\/div>\n      \n      <div class=\"contacto-card\">\n        <div class=\"contacto-icono\">\n          <i class=\"fas fa-envelope\"><\/i>\n        <\/div>\n        <h3>Correo<\/h3>\n        <p>Consultas generales:<\/p>\n        <a href=\"mailto:contacto@aqma.cl\">contacto@aqma.cl<\/a>\n      <\/div>\n      -->\n    <\/div>\n    \n    <div class=\"mapa-container\">\n      <iframe src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d3329.234299257634!2d-70.6007889241366!3d-33.44108097333661!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9662cf7d3a4999a9%3A0x9c5bae5b1a092e5a!2sAv.%20Vicu%C3%B1a%20Mackenna%20Poniente%207255%2C%20La%20Florida%2C%20Regi%C3%B3n%20Metropolitana!5e0!3m2!1ses!2scl!4v1719345671235!5m2!1ses!2scl\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"><\/iframe>\n    <\/div>\n  <\/div>\n\n<\/body>\n<\/html>\n\n\n\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>Galer\u00eda AQMA Servicios Integrales en Medio Ambiente Respaldo T\u00e9cnico Normativo y S\u00f3lida Experiencia para el Desarrollo Sostenible en Equilibrio con la Protecci\u00f3n del Patrimonio Asesor\u00edas y Gesti\u00f3n Normativa Medio Ambiente Servicios T\u00e9cnicos Complementarios Ver todos los servicios AQMA Consultores &#8211; Equipo AQMA Consultores cuenta con una Direcci\u00f3n T\u00e9cnica de s\u00f3lida experiencia liderada por: MARIO ROSSI [&hellip;]<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"unboxed","site-sidebar-style":"unboxed","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-310","page","type-page","status-publish","hentry"],"aioseo_notices":[],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"andrei.bascur@usach.cl","author_link":"https:\/\/aqma.cl\/en\/author\/andrei-bascurusach-cl\/"},"uagb_comment_info":0,"uagb_excerpt":"Galer\u00eda AQMA Servicios Integrales en Medio Ambiente Respaldo T\u00e9cnico Normativo y S\u00f3lida Experiencia para el Desarrollo Sostenible en Equilibrio con la Protecci\u00f3n del Patrimonio Asesor\u00edas y Gesti\u00f3n Normativa Medio Ambiente Servicios T\u00e9cnicos Complementarios Ver todos los servicios AQMA Consultores &#8211; Equipo AQMA Consultores cuenta con una Direcci\u00f3n T\u00e9cnica de s\u00f3lida experiencia liderada por: MARIO ROSSI&hellip;","_links":{"self":[{"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/pages\/310","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/comments?post=310"}],"version-history":[{"count":157,"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/pages\/310\/revisions"}],"predecessor-version":[{"id":1354,"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/pages\/310\/revisions\/1354"}],"wp:attachment":[{"href":"https:\/\/aqma.cl\/en\/wp-json\/wp\/v2\/media?parent=310"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}