{"id":2,"date":"2026-03-16T21:09:12","date_gmt":"2026-03-16T21:09:12","guid":{"rendered":"https:\/\/salas.com.co\/?page_id=2"},"modified":"2026-04-21T17:59:28","modified_gmt":"2026-04-21T17:59:28","slug":"inicio","status":"publish","type":"page","link":"https:\/\/salas.com.co\/fr\/","title":{"rendered":"Accueil"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2\" class=\"elementor elementor-2\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5462cd8a e-flex e-con-boxed e-con e-parent\" data-id=\"5462cd8a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Salas-Home.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" role=\"presentation\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-310b9e9 elementor-widget elementor-widget-html\" data-id=\"310b9e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- CONTENEDOR DEL TEXTO ANIMADO -->\n<div class=\"mi-animacion-textos\" id=\"mi-animacion-textos\"><\/div>\n\n\n<!-- ESTILOS (CSS) -->\n<style>\n\/* Contenedor principal *\/\n.mi-animacion-textos {\n    text-align: left; \n    width: 100%;\n}\n\n\/* Estilo para el texto de ARRIBA *\/\n.mi-animacion-textos .texto-arriba {\n   font-family: \"Newsreader\", serif; \/* Tipograf\u00eda para el texto superior *\/ \n    font-size: 70px; \n    font-style: italic; \n    font-weight: 300;\n    color: #ffffff; \n    line-height: 0.8;\n    margin-bottom: 5px; \n}\n\n\/* NUEVO: Estilo para el texto del MEDIO (Para frases de 3 l\u00edneas) *\/\n.mi-animacion-textos .texto-medio {\n    font-family: \"Newsreader\", serif; \/* Tipograf\u00eda para el texto superior *\/\n    font-size: 70px; \n    font-style: normal; \/* Normal en vez de cursiva para variar un poco, c\u00e1mbialo a gusto *\/\n    font-weight: 400;\n    color: #ffffff; \n    line-height: 0.8;\n    margin-bottom: 5px; \n}\n\n\/* Estilo para el texto de ABAJO *\/\n.mi-animacion-textos .texto-abajo {\n    font-family: \"Newsreader\", serif; \/* Tipograf\u00eda para el texto superior *\/\n    font-size: 70px; \n    font-weight: 400; \n    color: #ffffff;  \n    line-height: 0.8;\n}\n\n\/* Animaci\u00f3n y dise\u00f1o de cada palabra individual *\/\n.mi-animacion-textos span.palabra {\n    opacity: 0;\n    transition: opacity 0.6s ease-in-out; \n    display: inline-block;\n    margin-right: 0.25em; \n}\n\n\/* Solo las hace visibles din\u00e1micamente *\/\n.mi-animacion-textos span.palabra.visible {\n    opacity: 1;\n}\n\n\/* Responsivo *\/\n@media (max-width: 768px) {\n    .mi-animacion-textos .texto-arriba,\n    .mi-animacion-textos .texto-medio,  \n    .mi-animacion-textos .texto-abajo {\n        font-size: 48px; \/* Tama\u00f1o m\u00e1s c\u00f3modo en celulares *\/\n    }\n}\n<\/style>\n\n\n<!-- EFECTO L\u00d3GICO (JavaScript) -->\n<script>\nfunction iniciarAnimacionTextoFlexible() {\n    \n    \/\/ --- 1. CONFIGURA AQU\u00cd TUS FRASES ---\n    \/\/ Ahora cada frase es una \"lista de renglones\", y eliges qu\u00e9 clase CSS llevar\u00e1n.\n    const frases = [\n        \/\/ FRASE 1 (Empieza con 2 l\u00edneas)\n        [\n            { clase: \"texto-arriba\", texto: \"Conocimiento\" },\n            { clase: \"texto-abajo\", texto: \"que transforma\" }\n        ],\n        \/\/ FRASE 2 (\u00a1Esta tiene 3 l\u00edneas!)\n        [\n            { clase: \"texto-arriba\", texto: \"Navegando juntos\" },\n            { clase: \"texto-abajo\", texto: \"desde 1993\" }\n        ],\n        \/\/ FRASE 3 (Tiene 2 l\u00edneas)\n        [\n            { clase: \"texto-arriba\", texto: \"Asesor\u00eda a la medida,\" },\n            { clase: \"texto-abajo\", texto: \"est\u00e1ndares globales\" }\n        ],\n        \/\/ FRASE 4 (Otra vez 3 l\u00edneas)\n        [\n            { clase: \"texto-arriba\", texto: \"Criterio que\" },\n            { clase: \"texto-abajo\", texto: \"resuelve\" }\n        ]\n    ];\n\n    const contenedor = document.getElementById('mi-animacion-textos');\n    if (!contenedor) return;\n\n    \/\/ --- 2. CONFIGURACI\u00d3N DE TIEMPOS ---\n    const retrasoFadeIn = 300;      \n    const duracionCSS = 600;        \n    const tiempoEspera = 3000;      \n    const retrasoFadeOut = 300;     \n    const esperaEntreFrases = 600;  \n    \n    function animarFrase(indiceFrase) {\n        const lineasDeFrase = frases[indiceFrase]; \/\/ Lista de l\u00edneas actual\n        contenedor.innerHTML = ''; \n\n        const todasLasPalabras = [];\n\n        \/\/ Generamos un 'div' (y rengl\u00f3n) por cada l\u00ednea definida en esta frase espec\u00edfica\n        lineasDeFrase.forEach(linea => {\n            const divLinea = document.createElement('div');\n            divLinea.className = linea.clase; \/\/ Le damos el estilo elegido ('texto-arriba', etc)\n            \n            const palabras = linea.texto.split(' ');\n            palabras.forEach(textoPalabra => {\n                if (textoPalabra.trim() === \"\") return;\n                const span = document.createElement('span');\n                span.className = 'palabra';\n                span.textContent = textoPalabra;\n                divLinea.appendChild(span);\n                todasLasPalabras.push(span); \/\/ Las agregamos ordenadas l\u00f3gicamente\n            });\n\n            contenedor.appendChild(divLinea);\n        });\n\n        const longitudValida = Math.max(1, todasLasPalabras.length);\n\n        \/\/ --- FASE 1: FADE IN ---\n        todasLasPalabras.forEach((spanWord, i) => {\n            setTimeout(() => {\n                spanWord.classList.add('visible');\n            }, i * retrasoFadeIn);\n        });\n\n        const tiempoTotalFadeIn = ((longitudValida - 1) * retrasoFadeIn) + duracionCSS;\n\n        \/\/ --- FASE 2: FADE OUT ---\n        setTimeout(() => {\n            todasLasPalabras.forEach((spanWord, i) => {\n                setTimeout(() => {\n                    spanWord.classList.remove('visible');\n                }, i * retrasoFadeOut);\n            });\n\n            const tiempoTotalFadeOut = ((longitudValida - 1) * retrasoFadeOut) + duracionCSS;\n\n            \/\/ --- FASE 3: ROTAR FRASES ---\n            setTimeout(() => {\n                animarFrase((indiceFrase + 1) % frases.length);\n            }, tiempoTotalFadeOut + esperaEntreFrases);\n\n        }, tiempoTotalFadeIn + tiempoEspera);\n    }\n\n    animarFrase(0);\n}\n\nif (document.readyState === 'loading') {\n    document.addEventListener(\"DOMContentLoaded\", iniciarAnimacionTextoFlexible);\n} else {\n    iniciarAnimacionTextoFlexible();\n}\n<\/script>\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-35a92c5 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"35a92c5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a6e37ca e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"a6e37ca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ba75475 e-con-full e-flex e-con e-child\" data-id=\"ba75475\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4bfbf3a e-con-full e-flex e-con e-child\" data-id=\"4bfbf3a\" 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-b401067 elementor-widget elementor-widget-heading\" data-id=\"b401067\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La Firma<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b738a4b elementor-widget elementor-widget-text-editor\" data-id=\"b738a4b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>SALAS es una firma de abogados con m\u00e1s de tres d\u00e9cadas transformando conocimiento en soluciones claras para sus clientes nacionales e internacionales en asuntos complejos de:<\/p><ul role=\"list\"><li>Derecho Mar\u00edtimo y Portuario<\/li><li>Arbitraje y Resoluci\u00f3n de Controversias<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a153bb elementor-align-left elementor-widget elementor-widget-button\" data-id=\"3a153bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/la-firma\/\">\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<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Conozca la firma<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ba13f20 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"ba13f20\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a105129 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"a105129\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e5b59a0 e-con-full e-flex e-con e-child\" data-id=\"e5b59a0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff057bb elementor-widget elementor-widget-heading\" data-id=\"ff057bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Equipo<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f17e74 elementor-widget elementor-widget-text-editor\" data-id=\"4f17e74\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Detr\u00e1s de cada asunto, socios expertos que comprenden el negocio de sus clientes y se implican en proteger sus intereses.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4eb2f65 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"4eb2f65\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-784f844 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"784f844\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4aa36bc e-con-full e-flex e-con e-child\" data-id=\"4aa36bc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b35f19c elementor-widget elementor-widget-image\" data-id=\"b35f19c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/equipo\/#Elizabeth-Salas\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"562\" height=\"561\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg\" class=\"elementor-animation-grow attachment-full size-full wp-image-923\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg 562w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2-300x300.jpg 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2-150x150.jpg 150w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2-12x12.jpg 12w\" sizes=\"(max-width: 562px) 100vw, 562px\" \/>\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 class=\"elementor-element elementor-element-12ab041 elementor-widget elementor-widget-image\" data-id=\"12ab041\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1000\" height=\"14\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png\" class=\"attachment-full size-full wp-image-676\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png 1000w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-300x4.png 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-768x11.png 768w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-18x1.png 18w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b226786 e-con-full e-flex e-con e-child\" data-id=\"b226786\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-40a51c3 e-con-full e-flex e-con e-child\" data-id=\"40a51c3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ad64b0 elementor-widget elementor-widget-heading\" data-id=\"2ad64b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/equipo\/#Elizabeth-Salas\">Elizabeth Salas<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a8fce74 elementor-widget elementor-widget-text-editor\" data-id=\"a8fce74\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Socia Fundadora<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-82e60bb e-con-full e-flex e-con e-child\" data-id=\"82e60bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a6f3c1f elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"a6f3c1f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"https:\/\/www.linkedin.com\/in\/elizabeth-salas-jim%C3%A9nez-016679a8\/\" target=\"_blank\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><path d=\"M29.1406 17.4008V29.1618H23.2203V19.6399C23.2055 17.8743 23.1336 15.3907 20.9976 14.9336C20.3172 14.7883 19.6305 14.8164 18.957 14.9868C17.0328 15.4735 16.65 17.4586 16.5828 19.193L16.5812 29.1641L10.6594 29.161V10.1133L16.3406 10.1055L16.364 12.7571C17.6492 10.6008 19.8297 9.57113 22.2703 9.63207C24.9258 9.69769 27.2062 10.5196 28.2961 13.1196C28.7547 14.2141 28.9492 15.3477 29.0601 16.5321C29.0883 16.8352 29.0687 17.136 29.1414 17.4016L29.1406 17.4008Z\" fill=\"#5AEEB7\"><\/path><path d=\"M4.4 0.623413C5.61406 0.827319 6.65313 1.58748 7.11797 2.66404C7.65859 3.91638 7.44062 5.26091 6.60078 6.26951C5.71875 7.32888 4.32578 7.75701 3.0125 7.36404C1.64844 6.95623 0.784375 5.81248 0.546875 4.46873V3.63279C0.80625 2.04841 1.975 0.885132 3.5625 0.623413H4.4Z\" fill=\"#5AEEB7\"><\/path><path d=\"M6.94921 29.157L1.01718 29.1609V10.1102L6.94843 10.1094L6.94921 29.157Z\" fill=\"#5AEEB7\"><\/path><\/svg>\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<div class=\"elementor-element elementor-element-968371d e-con-full e-flex e-con e-child\" data-id=\"968371d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d7f11e elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"0d7f11e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"mailto:elizabethsalas@salas.com.co\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\"><g clip-path=\"url(#clip0_2321_743)\"><path d=\"M26.6667 5.33337H5.33335C3.86669 5.33337 2.68002 6.53337 2.68002 8.00004L2.66669 24C2.66669 25.4667 3.86669 26.6667 5.33335 26.6667H16V24H5.33335V10.6667L16 17.3334L26.6667 10.6667V17.3334H29.3334V8.00004C29.3334 6.53337 28.1334 5.33337 26.6667 5.33337ZM16 14.6667L5.33335 8.00004H26.6667L16 14.6667ZM23.12 29.3334L18.4 24.6134L20.28 22.7334L23.1067 25.56L28.76 19.9067L30.6667 21.7867L23.12 29.3334Z\" fill=\"#5AEEB7\"><\/path><\/g><defs><clipPath id=\"clip0_2321_743\"><rect width=\"32\" height=\"32\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0e34027 e-con-full e-flex e-con e-child\" data-id=\"0e34027\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6e70e3d elementor-widget elementor-widget-image\" data-id=\"6e70e3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/equipo\/#Guillermo-Salcedo-Salas\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"562\" height=\"561\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/Guillermo-Salcedo2.jpg\" class=\"elementor-animation-grow attachment-full size-full wp-image-949\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/Guillermo-Salcedo2.jpg 562w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/Guillermo-Salcedo2-300x300.jpg 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/Guillermo-Salcedo2-150x150.jpg 150w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/Guillermo-Salcedo2-12x12.jpg 12w\" sizes=\"(max-width: 562px) 100vw, 562px\" \/>\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 class=\"elementor-element elementor-element-a415597 elementor-widget elementor-widget-image\" data-id=\"a415597\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1000\" height=\"14\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png\" class=\"attachment-full size-full wp-image-676\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png 1000w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-300x4.png 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-768x11.png 768w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-18x1.png 18w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6bcdbec e-con-full e-flex e-con e-child\" data-id=\"6bcdbec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2f61da4 e-con-full e-flex e-con e-child\" data-id=\"2f61da4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e3d616 elementor-widget elementor-widget-heading\" data-id=\"0e3d616\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/equipo\/#Guillermo-Salcedo-Salas\">Guillermo Salcedo Salas<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-820c1cc elementor-widget elementor-widget-text-editor\" data-id=\"820c1cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Socio<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b665e78 e-con-full e-flex e-con e-child\" data-id=\"b665e78\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13a70a3 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"13a70a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"https:\/\/www.linkedin.com\/in\/guillermo-salcedo-salas\/\" target=\"_blank\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\"><path d=\"M29.1406 17.4008V29.1618H23.2203V19.6399C23.2055 17.8743 23.1336 15.3907 20.9976 14.9336C20.3172 14.7883 19.6305 14.8164 18.957 14.9868C17.0328 15.4735 16.65 17.4586 16.5828 19.193L16.5812 29.1641L10.6594 29.161V10.1133L16.3406 10.1055L16.364 12.7571C17.6492 10.6008 19.8297 9.57113 22.2703 9.63207C24.9258 9.69769 27.2062 10.5196 28.2961 13.1196C28.7547 14.2141 28.9492 15.3477 29.0601 16.5321C29.0883 16.8352 29.0687 17.136 29.1414 17.4016L29.1406 17.4008Z\" fill=\"#5AEEB7\"><\/path><path d=\"M4.4 0.623413C5.61406 0.827319 6.65313 1.58748 7.11797 2.66404C7.65859 3.91638 7.44062 5.26091 6.60078 6.26951C5.71875 7.32888 4.32578 7.75701 3.0125 7.36404C1.64844 6.95623 0.784375 5.81248 0.546875 4.46873V3.63279C0.80625 2.04841 1.975 0.885132 3.5625 0.623413H4.4Z\" fill=\"#5AEEB7\"><\/path><path d=\"M6.94921 29.157L1.01718 29.1609V10.1102L6.94843 10.1094L6.94921 29.157Z\" fill=\"#5AEEB7\"><\/path><\/svg>\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<div class=\"elementor-element elementor-element-260907a e-con-full e-flex e-con e-child\" data-id=\"260907a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-064977d elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"064977d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"mailto:gsalcedo@salas.com.co\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\"><g clip-path=\"url(#clip0_2321_743)\"><path d=\"M26.6667 5.33337H5.33335C3.86669 5.33337 2.68002 6.53337 2.68002 8.00004L2.66669 24C2.66669 25.4667 3.86669 26.6667 5.33335 26.6667H16V24H5.33335V10.6667L16 17.3334L26.6667 10.6667V17.3334H29.3334V8.00004C29.3334 6.53337 28.1334 5.33337 26.6667 5.33337ZM16 14.6667L5.33335 8.00004H26.6667L16 14.6667ZM23.12 29.3334L18.4 24.6134L20.28 22.7334L23.1067 25.56L28.76 19.9067L30.6667 21.7867L23.12 29.3334Z\" fill=\"#5AEEB7\"><\/path><\/g><defs><clipPath id=\"clip0_2321_743\"><rect width=\"32\" height=\"32\" fill=\"white\"><\/rect><\/clipPath><\/defs><\/svg>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e58641b e-con-full e-flex e-con e-child\" data-id=\"e58641b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-133e2ff elementor-widget elementor-widget-button\" data-id=\"133e2ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/equipo\/\">\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<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-arrow-right\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Ver perfiles completos<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-70f1a16 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"70f1a16\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-cfc162c e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"cfc162c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1401635 e-con-full e-flex e-con e-child\" data-id=\"1401635\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f54de65 elementor-widget elementor-widget-heading\" data-id=\"f54de65\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Servicios<\/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-b95ca94 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"b95ca94\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-beee5b3 e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child\" data-id=\"beee5b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-55beb00 e-con-full e-flex e-con e-child\" data-id=\"55beb00\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3319e71 elementor-widget elementor-widget-image\" data-id=\"3319e71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/servicios\/#Derecho-Maritimo-y-Portuario\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"748\" height=\"502\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/ship2.jpg\" class=\"elementor-animation-grow attachment-full size-full wp-image-912\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/ship2.jpg 748w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/ship2-300x201.jpg 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/ship2-18x12.jpg 18w\" sizes=\"(max-width: 748px) 100vw, 748px\" \/>\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 class=\"elementor-element elementor-element-d5a0e1c elementor-widget elementor-widget-image\" data-id=\"d5a0e1c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1000\" height=\"14\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png\" class=\"attachment-full size-full wp-image-676\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png 1000w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-300x4.png 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-768x11.png 768w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-18x1.png 18w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-41748d5 elementor-widget elementor-widget-heading\" data-id=\"41748d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/servicios\/#Derecho-Maritimo-y-Portuario\">Pr\u00e1ctica de Derecho Mar\u00edtimo y Portuario<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-068cdbd elementor-widget elementor-widget-text-editor\" data-id=\"068cdbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>M\u00e1s de tres d\u00e9cadas como referencia en el sector mar\u00edtimo y portuario colombiano e internacional, con intervenci\u00f3n desde la estructuraci\u00f3n de proyectos hasta la gesti\u00f3n de controversias.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-989a4ee e-con-full e-flex e-con e-child\" data-id=\"989a4ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-75507f4 elementor-widget elementor-widget-image\" data-id=\"75507f4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"\/servicios\/#Arbitraje-y-Resolucion-de-Controversias\">\n\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"748\" height=\"502\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/tables2.jpg\" class=\"elementor-animation-grow attachment-large size-large wp-image-916\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/tables2.jpg 748w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/tables2-300x201.jpg 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/tables2-18x12.jpg 18w\" sizes=\"(max-width: 748px) 100vw, 748px\" \/>\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 class=\"elementor-element elementor-element-2062ac2 elementor-widget elementor-widget-image\" data-id=\"2062ac2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"1000\" height=\"14\" src=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png\" class=\"attachment-full size-full wp-image-676\" alt=\"\" srcset=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2.png 1000w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-300x4.png 300w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-768x11.png 768w, https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/line2-18x1.png 18w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-965a63e elementor-widget elementor-widget-heading\" data-id=\"965a63e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/servicios\/#Arbitraje-y-Resolucion-de-Controversias\">Pr\u00e1ctica de Arbitraje y Resoluci\u00f3n de Controversias<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d5dd60c elementor-widget elementor-widget-text-editor\" data-id=\"d5dd60c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>M\u00e1s de quince a\u00f1os de experiencia internacional con m\u00e1s de cuarenta arbitrajes comerciales y de inversi\u00f3n ante los principales centros arbitrales del mundo.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9872956 animated-fast e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"9872956\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f59f24f elementor-align-right elementor-widget elementor-widget-button\" data-id=\"f59f24f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/servicios\/\" id=\"arrow2\">\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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Capa_1\" viewBox=\"0 0 36.87 36.87\"><defs><style>      .st0 {        fill: #002e37;      }    <\/style><\/defs><path class=\"st0\" d=\"M36.07,17.4l-11.85-11.85c-.57-.57-1.5-.57-2.07,0-.57.57-.57,1.5,0,2.07l9.35,9.35H1.85c-.8,0-1.46.66-1.46,1.46s.66,1.46,1.46,1.46h29.65l-9.35,9.35c-.57.57-.57,1.5,0,2.07.29.29.66.43,1.03.43s.74-.14,1.03-.43l11.85-11.85c.57-.57.57-1.5,0-2.07Z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Conozca nuestras pr\u00e1cticas<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>La Firma SALAS es una firma de abogados con m\u00e1s de tres d\u00e9cadas transformando conocimiento en soluciones claras para sus clientes nacionales e internacionales en asuntos complejos de: Derecho Mar\u00edtimo y Portuario Arbitraje y Resoluci\u00f3n de Controversias Conozca la firma Equipo Detr\u00e1s de cada asunto, socios expertos que comprenden el negocio de sus clientes y [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Inicio - Salas - Law Group<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/salas.com.co\/fr\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inicio - Salas - Law Group\" \/>\n<meta property=\"og:description\" content=\"La Firma SALAS es una firma de abogados con m\u00e1s de tres d\u00e9cadas transformando conocimiento en soluciones claras para sus clientes nacionales e internacionales en asuntos complejos de: Derecho Mar\u00edtimo y Portuario Arbitraje y Resoluci\u00f3n de Controversias Conozca la firma Equipo Detr\u00e1s de cada asunto, socios expertos que comprenden el negocio de sus clientes y [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/salas.com.co\/fr\/\" \/>\n<meta property=\"og:site_name\" content=\"Salas - Law Group\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-21T17:59:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"562\" \/>\n\t<meta property=\"og:image:height\" content=\"561\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/\",\"url\":\"https:\\\/\\\/salas.com.co\\\/\",\"name\":\"Inicio - Salas - Law Group\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/elizabeth-salas2.jpg\",\"datePublished\":\"2026-03-16T21:09:12+00:00\",\"dateModified\":\"2026-04-21T17:59:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/salas.com.co\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/#primaryimage\",\"url\":\"https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/elizabeth-salas2.jpg\",\"contentUrl\":\"https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/elizabeth-salas2.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/salas.com.co\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inicio\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/#website\",\"url\":\"https:\\\/\\\/salas.com.co\\\/\",\"name\":\"Salas - Law Group\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/salas.com.co\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/#organization\",\"name\":\"Salas - Law Group\",\"url\":\"https:\\\/\\\/salas.com.co\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/salas.com.co\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/logo2.jpg\",\"contentUrl\":\"https:\\\/\\\/salas.com.co\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/logo2.jpg\",\"width\":984,\"height\":181,\"caption\":\"Salas - Law Group\"},\"image\":{\"@id\":\"https:\\\/\\\/salas.com.co\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inicio - Salas - Law Group","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/salas.com.co\/fr\/","og_locale":"fr_FR","og_type":"article","og_title":"Inicio - Salas - Law Group","og_description":"La Firma SALAS es una firma de abogados con m\u00e1s de tres d\u00e9cadas transformando conocimiento en soluciones claras para sus clientes nacionales e internacionales en asuntos complejos de: Derecho Mar\u00edtimo y Portuario Arbitraje y Resoluci\u00f3n de Controversias Conozca la firma Equipo Detr\u00e1s de cada asunto, socios expertos que comprenden el negocio de sus clientes y [&hellip;]","og_url":"https:\/\/salas.com.co\/fr\/","og_site_name":"Salas - Law Group","article_modified_time":"2026-04-21T17:59:28+00:00","og_image":[{"width":562,"height":561,"url":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/salas.com.co\/","url":"https:\/\/salas.com.co\/","name":"Inicio - Salas - Law Group","isPartOf":{"@id":"https:\/\/salas.com.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/salas.com.co\/#primaryimage"},"image":{"@id":"https:\/\/salas.com.co\/#primaryimage"},"thumbnailUrl":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg","datePublished":"2026-03-16T21:09:12+00:00","dateModified":"2026-04-21T17:59:28+00:00","breadcrumb":{"@id":"https:\/\/salas.com.co\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/salas.com.co\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/salas.com.co\/#primaryimage","url":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg","contentUrl":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/elizabeth-salas2.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/salas.com.co\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/salas.com.co\/"},{"@type":"ListItem","position":2,"name":"Inicio"}]},{"@type":"WebSite","@id":"https:\/\/salas.com.co\/#website","url":"https:\/\/salas.com.co\/","name":"Salas - Law Group","description":"","publisher":{"@id":"https:\/\/salas.com.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/salas.com.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/salas.com.co\/#organization","name":"Salas - Law Group","url":"https:\/\/salas.com.co\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/salas.com.co\/#\/schema\/logo\/image\/","url":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/logo2.jpg","contentUrl":"https:\/\/salas.com.co\/wp-content\/uploads\/2026\/04\/logo2.jpg","width":984,"height":181,"caption":"Salas - Law Group"},"image":{"@id":"https:\/\/salas.com.co\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/comments?post=2"}],"version-history":[{"count":379,"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":1188,"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/pages\/2\/revisions\/1188"}],"wp:attachment":[{"href":"https:\/\/salas.com.co\/fr\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}