{"id":4129,"date":"2023-10-04T11:37:25","date_gmt":"2023-10-04T11:37:25","guid":{"rendered":"https:\/\/www.coutinhorebelo.com\/?page_id=4129"},"modified":"2023-11-15T17:10:17","modified_gmt":"2023-11-15T17:10:17","slug":"home","status":"publish","type":"page","link":"https:\/\/www.coutinhorebelo.com\/en\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4129\" class=\"elementor elementor-4129 elementor-4128\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65bf0c6 e-flex e-con-boxed e-con e-parent\" data-id=\"65bf0c6\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff7d9a1 elementor-widget elementor-widget-html\" data-id=\"ff7d9a1\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\n    .banner_header {\n        min-height: calc(100vh - 140px);\n    }\n    \n    @media only screen and (min-width: 768px) {\n      .col_banner_header {\n        min-height: calc(100vh - 140px);\n      }\n    }\n    \n    #mouse-bottom {\n\t  position: absolute;\n    bottom: 70px;\n    }\n    .jet-smart-listing__post.has-thumb-postion-top {\n    min-height: 470px;\n}\n.jet-nav__sub {\n        margin: 0 0 0 14px;\n    }\n    .jet-smart-listing__post-wrapper {\n    transition: transform 0.3s linear;\n}\n\n.jet-smart-listing__post-wrapper:hover {\n    transform: scale(1.05);\n}\n    .jet-nav__sub.jet-nav-depth-0 {\n    background-color: #E4E6E8;\n    width: 75px;\n    padding: 10px;\n}\na.menu-item-link.menu-item-link-depth-1.menu-item-link-sub {\n    padding-bottom: 2px;\n    border-bottom: solid 0.75px;\n}\n   \n<\/style>\n\n<script>\n    window.observer = null;\n    window.snapTo = null;\n    window.nextSnapTo = null;\n    window.lastScrollPosition = 0;\n    window.scrolling = false;\n    window.scrollTargets = [];\n    window.scrollTimeout = null;\n\n    function addStopPoint(selector, margin=0) {\n      targets = document.querySelectorAll(selector);\n      for(let target of targets)\n        window.scrollTargets.push({target, margin});\n    }\n    \n    function getScrollMargin(target) {\n      for(let item of window.scrollTargets) {\n        if (item.target===target)\n          return item.margin;\n      }\n      return 0;\n    }\n    \n    function getVisibility(target, scrollPosition, margin    =0) {\n      let scrollArea = document.documentElement  .clientHeight || document.body.clientHeight;\n      let marginTop = isNaN(margin)? margin?.top??0 :   margin;\n      let marginBottom = isNaN(margin)? margin?.bottom??0   : margin;\n      let id = target.id;\n      let top = (target.offsetTop-marginTop) -   scrollPosition;\n      let bottom = top+marginTop + target.offsetHeight +   marginBottom;\n      let visible = top <0 ? bottom> 0 : top <scrollArea; return { id, top, bottom, visible }; } function updateScroll() { if (!window.snapTo) { scrolling = false; return; } let time = 250; let percentage = Math.min(time, Date.now() - window .scrollStartedAt) \/ time; let scrollPosition = document.documentElement .scrollTop || document.body.scrollTop; let desiredPosition = window.snapTo.offsetTop; let shouldBeAt = window.scrollInitialPosition + (desiredPosition - window.scrollInitialPosition) * percentage document.documentElement.scrollTop = shouldBeAt; if (percentage <0.9999) { requestAnimationFrame(updateScroll); } else { window.scrolling = false; } } function smoothScroll(target) { window.snapTo = target; if (target == null) { return; } window.scrollStartedAt=Date.now(); let scrollPosition = document.documentElement .scrollTop || document.body.scrollTop; window.scrollInitialPosition = scrollPosition; window.scrolling = true; requestAnimationFrame(updateScroll); } function handleScroll(event) { let newPosition = document.documentElement.scrollTop || document.body.scrollTop; let scrollArea = document.documentElement .clientHeight || document.body.clientHeight; let scrollDirection = newPosition> window  .lastScrollPosition? 'down' : 'up';\n      let snapAreaTop = scrollArea * 0.25; \/\/Threshold superior (em percentagem)\n      let snapAreaBottom = scrollArea * 0.05; \/\/Threshold inferior (em percentagem)\n      let delay = 150; \/\/Delay entre movimento de scroll autom\u00e1tico e pausa do scroll por parte do utilizador\n      window.lastScrollPosition = newPosition;\n      \n      let nextTarget = window.nextSnapTo;\n      for(let item of window.scrollTargets) {\n        let target = item.target; \n        let visibility = getVisibility(target, newPosition    );\n        \n        if (scrollDirection == 'down') {\n          if (visibility.visible && visibility.top > 0 &&   (visibility.top - item.margin) <= (scrollArea - snapAreaBottom)) { nextTarget = target; } } else { if (visibility.visible && visibility.bottom>=   snapAreaTop && visibility.bottom <(scrollArea - snapAreaTop)) { nextTarget = target; } } } if (window.nextSnapTo == nextTarget && window .nextSnapTo !== null) { let visibility = getVisibility(nextTarget, newPosition); if (scrollDirection == 'down') { if (visibility.top <-snapAreaBottom) nextTarget = null; } else { let margin = getScrollMargin(nextTarget); if ((visibility.top-margin)> snapAreaTop) {\n              nextTarget = null;\n          }\n        }   \n      }\n      \n      if (window.scrollTimeout)\n        clearTimeout(window.scrollTimeout);\n      \n      \n      window.nextSnapTo = nextTarget;\n       \n          window.scrollTimeout = setTimeout  (()=>{smoothScroll(nextTarget);}, delay);\n    }\n    \n    addEventListener(\"scroll\", handleScroll);\n    \n    addEventListener(\"load\", (event) => {\n      addStopPoint(\".scrollStop\");\n      addStopPoint(\"#afterSticky\", 140); \/\/margem (largura do header em px)\n      \n      window.snapTo = window.scrollTargets[0]?.target;\n      window.nextSnapTo = window.snapTo;\n      if (window.snapTo) {\n        smoothScroll(window.snapTo);\n      }\n    });\n<\/script>\n\n\n<!-- SOLU\u00c7\u00c3O COM SNAP (N\u00c3O FINALIZADA) <style>\n\n    #main {\n        scroll-snap-type: y mandatory;\n        height: 100vh;\n        overflow: auto;\n    }\n    \n    .container-com-snap {\n        scroll-snap-align: start;\n        scroll-snap-stop: always;\n    }\n    \n<\/style>\n\n<script>\n\n    addEventListener(\"load\", (event) => {\n  let noSnapArea = document.querySelector(\"#noSnapArea\");\n  let root = document.querySelector(\"#main\");\n  let options = {\n    root: root,\n    rootMargin: \"0px\",\n    threshold: 0.002,\n  };\n  let observer = new IntersectionObserver((event)=>{\n    if (event[0].isIntersecting)\n      root.style.scrollSnapType=\"none\";\n    else\n      root.style.scrollSnapType=\"y mandatory\";\n  }, options);\n  observer.observe(noSnapArea);\n});\n<\/script>\n\n-->\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-d4e1036 e-con-full container-com-snap scrollStop e-flex e-con e-parent\" data-id=\"d4e1036\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t<div class=\"elementor-element elementor-element-5d95e13 e-con-full e-flex e-con e-child\" data-id=\"5d95e13\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8feff36 elementor-widget__width-inherit elementor-fixed elementor-widget elementor-widget-heading\" data-id=\"8feff36\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;fixed&quot;}\" 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\">Your beacon of light in a sea of laws.<\/h2>\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-30bb63f e-flex e-con-boxed e-con e-child\" data-id=\"30bb63f\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69f121e elementor-widget elementor-widget-image\" data-id=\"69f121e\" data-element_type=\"widget\" id=\"mouse-bottom\" 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 fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/coutinho_rebelo-home02.svg\" class=\"attachment-large size-large wp-image-2957\" alt=\"\" \/>\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\t\t<\/div>\n\t\t<div class=\"jet-sticky-section elementor-element elementor-element-2535e15 e-con-full container-com-snap scrollStop e-flex e-con e-parent\" style=\"height: fit-content;\" data-id=\"2535e15\" data-element_type=\"container\" id=\"afterSticky\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;jet_sticky_section&quot;:&quot;yes&quot;,&quot;_ha_eqh_enable&quot;:false,&quot;jet_sticky_section_visibility&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t<div class=\"jet-sticky-section elementor-element elementor-element-e30a701 e-flex e-con-boxed e-con e-child\" style=\"height: fit-content;\" data-id=\"e30a701\" data-element_type=\"container\" id=\"header\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_sticky_section&quot;:&quot;yes&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false,&quot;jet_sticky_section_visibility&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-388e03a e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"388e03a\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cc4cda9 jet-nav-align-flex-start elementor-widget elementor-widget-jet-nav-menu\" data-id=\"cc4cda9\" data-element_type=\"widget\" data-widget_type=\"jet-nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<nav class=\"jet-nav-wrap m-layout-mobile jet-mobile-menu jet-mobile-menu--default\" data-mobile-trigger-device=\"mobile\" data-mobile-layout=\"default\">\n<div class=\"jet-nav__mobile-trigger jet-nav-mobile-trigger-align-left\">\n\t<span class=\"jet-nav__mobile-trigger-open jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-bars\"><\/i><\/span>\t<span class=\"jet-nav__mobile-trigger-close jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-times\"><\/i><\/span><\/div><div class=\"menu-left-menu-en-container\"><div class=\"jet-nav m-layout-mobile jet-nav--horizontal\"><div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3601 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/about\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">About<\/span><\/a><\/div>\n<div class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children jet-nav__item-3606 jet-nav__item\"><a class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Legal practice areas<\/span><\/a>\n<div  class=\"jet-nav__sub jet-nav-depth-0\">\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3605 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/civil-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Civil Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3604 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/real-estate-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Real Estate Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3602 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/financial-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Financial Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3603 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/commercial-company-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Commercial and Company Law<\/span><\/a><\/div>\n<\/div>\n<\/div>\n<\/div><\/div><\/nav>\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-9d925d9 e-con-full e-flex e-con e-child\" data-id=\"9d925d9\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-885e8d8 elementor-widget elementor-widget-image\" data-id=\"885e8d8\" data-element_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:\/\/www.coutinhorebelo.com\/en\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"222\" height=\"100\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/08\/coutinho_rebelo-logo-en.svg\" class=\"attachment-full size-full wp-image-3840\" alt=\"Coutinho Rebelo Logo\" \/>\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<\/div>\n\t\t<div class=\"elementor-element elementor-element-f585271 e-con-full elementor-hidden-mobile e-flex e-con e-child\" data-id=\"f585271\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d5c52a jet-nav-align-flex-start elementor-widget elementor-widget-jet-nav-menu\" data-id=\"3d5c52a\" data-element_type=\"widget\" data-widget_type=\"jet-nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<nav class=\"jet-nav-wrap m-layout-mobile jet-mobile-menu jet-mobile-menu--default\" data-mobile-trigger-device=\"mobile\" data-mobile-layout=\"default\">\n<div class=\"jet-nav__mobile-trigger jet-nav-mobile-trigger-align-left\">\n\t<span class=\"jet-nav__mobile-trigger-open jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-bars\"><\/i><\/span>\t<span class=\"jet-nav__mobile-trigger-close jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-times\"><\/i><\/span><\/div><div class=\"menu-right-menu-en-container\"><div class=\"jet-nav m-layout-mobile jet-nav--horizontal\"><div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3608 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/contacts\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Contacts<\/span><\/a><\/div>\n<div class=\"menu-item wpml-ls-slot-8 wpml-ls-item wpml-ls-item-en wpml-ls-current-language wpml-ls-menu-item wpml-ls-first-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item menu-item-has-children jet-nav__item-wpml-ls-8-en jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"en\">EN<\/span><\/span><div class=\"jet-nav-arrow\"><i aria-hidden=\"true\" class=\"fa fa-angle-down\"><\/i><\/div><\/a>\n<div  class=\"jet-nav__sub jet-nav-depth-0\">\n\t<div class=\"menu-item wpml-ls-slot-8 wpml-ls-item wpml-ls-item-fr wpml-ls-menu-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-8-fr jet-nav__item jet-nav-item-sub\"><a title=\"Switch to FR(FR)\" href=\"https:\/\/www.coutinhorebelo.com\/fr\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Switch to FR(FR)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"fr\">FR<\/span><\/span><\/a><\/div>\n\t<div class=\"menu-item wpml-ls-slot-8 wpml-ls-item wpml-ls-item-pt-pt wpml-ls-menu-item wpml-ls-last-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-8-pt-pt jet-nav__item jet-nav-item-sub\"><a title=\"Switch to PT(PT)\" href=\"https:\/\/www.coutinhorebelo.com\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Switch to PT(PT)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"pt-pt\">PT<\/span><\/span><\/a><\/div>\n<\/div>\n<\/div>\n<\/div><\/div><\/nav>\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-fbda20e e-con-full elementor-hidden-desktop elementor-hidden-tablet e-flex e-con e-child\" data-id=\"fbda20e\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15ba4ca jet-nav-align-flex-start elementor-widget elementor-widget-jet-nav-menu\" data-id=\"15ba4ca\" data-element_type=\"widget\" data-widget_type=\"jet-nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<nav class=\"jet-nav-wrap m-layout-mobile jet-mobile-menu jet-mobile-menu--right-side\" data-mobile-trigger-device=\"mobile\" data-mobile-layout=\"right-side\">\n<div class=\"jet-nav__mobile-trigger jet-nav-mobile-trigger-align-\">\n\t<span class=\"jet-nav__mobile-trigger-open jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-bars\"><\/i><\/span>\t<span class=\"jet-nav__mobile-trigger-close jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-times\"><\/i><\/span><\/div><div class=\"menu-mobile-menu-en-container\"><div class=\"jet-nav m-layout-mobile jet-nav--horizontal\"><div class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-home jet-nav__item-5069 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Home<\/span><\/a><\/div>\n<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3648 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/about\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">About<\/span><\/a><\/div>\n<div class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children jet-nav__item-3649 jet-nav__item\"><a class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Legal practice areas<\/span><div class=\"jet-nav-arrow\"><i aria-hidden=\"true\" class=\"fa fa-angle-down\"><\/i><\/div><\/a>\n<div  class=\"jet-nav__sub jet-nav-depth-0\">\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3646 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/civil-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Civil Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3645 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/real-estate-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Real Estate Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3643 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/financial-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Financial Law<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3644 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/commercial-company-law\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Commercial and Company Law<\/span><\/a><\/div>\n<\/div>\n<\/div>\n<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3647 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/contacts\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Contacts<\/span><\/a><\/div>\n<div class=\"menu-item wpml-ls-slot-10 wpml-ls-item wpml-ls-item-en wpml-ls-current-language wpml-ls-menu-item wpml-ls-first-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item menu-item-has-children jet-nav__item-wpml-ls-10-en jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/en\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"en\">EN<\/span><\/span><div class=\"jet-nav-arrow\"><i aria-hidden=\"true\" class=\"fa fa-angle-down\"><\/i><\/div><\/a>\n<div  class=\"jet-nav__sub jet-nav-depth-0\">\n\t<div class=\"menu-item wpml-ls-slot-10 wpml-ls-item wpml-ls-item-fr wpml-ls-menu-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-10-fr jet-nav__item jet-nav-item-sub\"><a title=\"Switch to FR(FR)\" href=\"https:\/\/www.coutinhorebelo.com\/fr\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Switch to FR(FR)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"fr\">FR<\/span><\/span><\/a><\/div>\n\t<div class=\"menu-item wpml-ls-slot-10 wpml-ls-item wpml-ls-item-pt-pt wpml-ls-menu-item wpml-ls-last-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-10-pt-pt jet-nav__item jet-nav-item-sub\"><a title=\"Switch to PT(PT)\" href=\"https:\/\/www.coutinhorebelo.com\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Switch to PT(PT)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"pt-pt\">PT<\/span><\/span><\/a><\/div>\n<\/div>\n<\/div>\n<div class=\"jet-nav__mobile-close-btn jet-blocks-icon\"><i aria-hidden=\"true\" class=\"fas fa-times\"><\/i><\/div><\/div><\/div><\/nav>\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-2f52deb banner_header e-flex e-con-boxed e-con e-child\" data-id=\"2f52deb\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-40a5560 e-con-full col_banner_header e-flex e-con e-child\" data-id=\"40a5560\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t<div class=\"elementor-element elementor-element-b32fd5b e-con-full col_banner_header e-flex e-con e-child\" data-id=\"b32fd5b\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-df4cfa5 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image\" data-id=\"df4cfa5\" data-element_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 decoding=\"async\" width=\"1000\" height=\"1320\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1.png\" class=\"attachment-full size-full wp-image-4786\" alt=\"\" srcset=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1.png 1000w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-227x300.png 227w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-776x1024.png 776w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-768x1014.png 768w\" 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>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-853ad5d e-con-full e-flex e-con e-child\" data-id=\"853ad5d\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79c3f04 elementor-widget elementor-widget-image\" data-id=\"79c3f04\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"96\" height=\"74\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/coutinho_rebelo-home04.png\" class=\"attachment-full size-full wp-image-4792\" alt=\"\" \/>\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-92c7a6d elementor-widget elementor-widget-heading\" data-id=\"92c7a6d\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">We specialise in the areas of Legal Consulting and Specialised Litigation.<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5064577 elementor-widget elementor-widget-image\" data-id=\"5064577\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"96\" height=\"74\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/coutinho_rebelo-home04.png\" class=\"attachment-full size-full wp-image-4792\" alt=\"\" \/>\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-9ff0a8b elementor-widget elementor-widget-heading\" data-id=\"9ff0a8b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Ant\u00f3nio Coutinho Rebelo<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-615f895 elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"615f895\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" 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 decoding=\"async\" width=\"1000\" height=\"1320\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1.png\" class=\"attachment-full size-full wp-image-4786\" alt=\"\" srcset=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1.png 1000w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-227x300.png 227w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-776x1024.png 776w, https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/10\/dr-coutinho-rebelo-home-banner-1-768x1014.png 768w\" 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>\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-b04c664 banner_header e-flex e-con-boxed e-con e-child\" data-id=\"b04c664\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a595772 e-con-full e-flex e-con e-child\" data-id=\"a595772\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-101ede0 e-con-full e-flex e-con e-child\" data-id=\"101ede0\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c17a49 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"3c17a49\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"26.5\" height=\"1\" viewBox=\"0 0 26.5 1\"><line id=\"Line_107\" data-name=\"Line 107\" x2=\"26.5\" transform=\"translate(0 0.5)\" fill=\"none\" stroke=\"#fff\" stroke-width=\"1\"><\/line><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">We support our clients.<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\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-a6af322 elementor-widget elementor-widget-heading\" data-id=\"a6af322\" data-element_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\">LEGAL PRACTICE AREAS<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9ab0c25 elementor-widget elementor-widget-text-editor\" data-id=\"9ab0c25\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>At <strong>Coutinho Rebelo Advogados<\/strong>,our first step is to listen to each client, after which we rigorously assess each case so as to present the <strong>most effective solution<\/strong>. We work <strong>pragmatically<\/strong>, <strong>tailoring our service <\/strong>, to individual requirements, striving daily to satisfy the needs of those who seek us out.<\/p>\n<p><strong>Reliability<\/strong>, <strong>deliberation<\/strong> and <strong>experience <\/strong> set us apart across the various areas in which we operate.<\/p>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd6c6c2 e-con-full e-flex e-con e-parent\" data-id=\"cd6c6c2\" data-element_type=\"container\" id=\"noSnapArea\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t<div class=\"elementor-element elementor-element-6ff3288 e-flex e-con-boxed e-con e-child\" data-id=\"6ff3288\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;shape_divider_bottom&quot;:&quot;tilt&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1a5f738 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"1a5f738\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2a5ff0b elementor-widget elementor-widget-image\" data-id=\"2a5ff0b\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"948\" height=\"1024\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/07\/coutinho_rebelo-home-direitocivil.svg\" class=\"attachment-large size-large wp-image-2969\" alt=\"direito-civil-logo\" \/>\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<div class=\"elementor-element elementor-element-22f9582 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"22f9582\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ed4825c elementor-widget elementor-widget-heading\" data-id=\"ed4825c\" data-element_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\">CIVIL LAW<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b9fc6dc elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b9fc6dc\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-2145d7d elementor-widget elementor-widget-text-editor\" data-id=\"2145d7d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Also known as citizens&#8217; rights, this branch of the law, which is private in nature, comprises the rights and duties of all citizens, as well as their relationships in broader society.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c5662c1 elementor-widget elementor-widget-button\" data-id=\"c5662c1\" data-element_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:\/\/www.coutinhorebelo.com\/en\/civil-law\/\">\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\">READ MORE<\/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-24036a5 e-flex e-con-boxed e-con e-child\" data-id=\"24036a5\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-472e095 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"472e095\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2cea269 elementor-widget elementor-widget-heading\" data-id=\"2cea269\" data-element_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\">REAL ESTATE LAW<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f2bb751 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f2bb751\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-aa34b58 elementor-widget elementor-widget-text-editor\" data-id=\"aa34b58\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>These rights relate to the proprietorship, full use, enjoyment, fruition, and disposal of real estate, real and obligatory rights, as well as the obligations inherent to the acquisition, holding, and disposition of these rights.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f518b3 elementor-widget elementor-widget-button\" data-id=\"1f518b3\" data-element_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:\/\/www.coutinhorebelo.com\/en\/real-estate-law\/\">\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\">READ MORE<\/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-d0ffe0c e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"d0ffe0c\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ec1696 elementor-widget elementor-widget-image\" data-id=\"7ec1696\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"948\" height=\"1024\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/07\/coutinho_rebelo-home-direitoimobiliario.svg\" class=\"attachment-large size-large wp-image-2975\" alt=\"direito-imobiliario.logo\" \/>\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-d4f3587 e-flex e-con-boxed e-con e-child\" data-id=\"d4f3587\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;shape_divider_top&quot;:&quot;tilt&quot;,&quot;shape_divider_bottom&quot;:&quot;tilt&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-00ec148 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"00ec148\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ebf7f07 elementor-widget elementor-widget-image\" data-id=\"ebf7f07\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"948\" height=\"1024\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/07\/coutinho_rebelo-home-direitocomercial.svg\" class=\"attachment-large size-large wp-image-2971\" alt=\"direito-comercial-logo\" \/>\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<div class=\"elementor-element elementor-element-778cff3 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"778cff3\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-70633fd elementor-widget elementor-widget-heading\" data-id=\"70633fd\" data-element_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\">COMMERCIAL AND COMPANY LAW<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51c3edc elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"51c3edc\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-41eeb68 elementor-widget elementor-widget-text-editor\" data-id=\"41eeb68\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>These branches of the law aim to manage registered suppliers of goods and services, otherwise known as companies. The firm seeks to resolve conflicts of interest involving entrepreneurs, partners, shareholders, and any other issues that may arise within companies&#8217; daily operations.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5416acc elementor-widget elementor-widget-button\" data-id=\"5416acc\" data-element_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:\/\/www.coutinhorebelo.com\/en\/commercial-company-law\/\">\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\">READ MORE<\/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-beaded8 e-flex e-con-boxed e-con e-child\" data-id=\"beaded8\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3017694 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"3017694\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83dab81 elementor-widget elementor-widget-heading\" data-id=\"83dab81\" data-element_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\">FINANCIAL LAW<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5c313dd elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"5c313dd\" data-element_type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\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-6ec529b elementor-widget elementor-widget-text-editor\" data-id=\"6ec529b\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>This branch of Public Law deals with the legal system applicable to state finances and the legal ramifications of financial operations established between the state and individuals. Its framework includes disciplining entities participating in banking, financial, and collective investment operations.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c50558 elementor-widget elementor-widget-button\" data-id=\"2c50558\" data-element_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:\/\/www.coutinhorebelo.com\/en\/financial-law\/\">\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\">READ MORE<\/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-48a95a1 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"48a95a1\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-de4f1d7 elementor-widget elementor-widget-image\" data-id=\"de4f1d7\" data-element_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 loading=\"lazy\" decoding=\"async\" width=\"948\" height=\"1024\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/07\/coutinho_rebelo-home-direitofinanceiro.svg\" class=\"attachment-large size-large wp-image-2973\" alt=\"direito-financeiro-logo\" \/>\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-f00eaae e-flex e-con-boxed e-con e-child\" data-id=\"f00eaae\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;shape_divider_top&quot;:&quot;tilt&quot;,&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-top\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M0,6V0h1000v100L0,6z\"\/>\n<\/svg>\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-21108a6 e-flex e-con-boxed e-con e-child\" data-id=\"21108a6\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-299f57d elementor-widget elementor-widget-heading\" data-id=\"299f57d\" data-element_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\"><b>Experience and proximity<\/b> ensure a quality service.<\/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-37694b0 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-child\" data-id=\"37694b0\" data-element_type=\"container\" id=\"home_noticias\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a0c933 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"5a0c933\" data-element_type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"1\" viewBox=\"0 0 16 1\"><line id=\"Line_125\" data-name=\"Line 125\" x2=\"16\" transform=\"translate(0 0.5)\" fill=\"none\" stroke=\"#70828e\" stroke-width=\"1\"><\/line><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">NEWS&nbsp; <img decoding=\"async\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/\/coutinho_rebelo-home-list_icon-gray.svg\"><\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\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-537831f elementor-widget elementor-widget-heading\" data-id=\"537831f\" data-element_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\">NEWS<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59134d3 elementor-widget elementor-widget-text-editor\" data-id=\"59134d3\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Click here to read about the most relevant present-day topics.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-84b99dc elementor-widget elementor-widget-jet-blog-smart-listing\" data-id=\"84b99dc\" data-element_type=\"widget\" data-widget_type=\"jet-blog-smart-listing.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-jet-blog-smart-listing jet-blog\"><div class=\"jet-smart-listing-wrap\" data-settings='{&quot;block_title&quot;:&quot;&quot;,&quot;title_tag&quot;:&quot;h4&quot;,&quot;featured_post&quot;:&quot;&quot;,&quot;featured_position&quot;:null,&quot;featured_width&quot;:null,&quot;featured_layout&quot;:null,&quot;featured_image_size&quot;:null,&quot;featured_image_position&quot;:null,&quot;featured_image_width&quot;:null,&quot;featured_excerpt_length&quot;:null,&quot;featured_excerpt_trimmed_ending&quot;:null,&quot;featured_read_more&quot;:null,&quot;featured_read_more_text&quot;:null,&quot;featured_show_meta&quot;:null,&quot;featured_show_author&quot;:null,&quot;featured_show_author_avatar&quot;:null,&quot;featured_show_author_from&quot;:null,&quot;featured_avatar_custom_field&quot;:null,&quot;featured_avatar_size&quot;:null,&quot;featured_show_author_icon&quot;:null,&quot;selected_featured_show_author_icon&quot;:null,&quot;featured_show_date&quot;:null,&quot;featured_show_date_icon&quot;:null,&quot;selected_featured_show_date_icon&quot;:null,&quot;featured_show_comments&quot;:null,&quot;featured_show_comments_icon&quot;:null,&quot;selected_featured_show_comments_icon&quot;:null,&quot;posts_columns_widescreen&quot;:null,&quot;posts_columns&quot;:&quot;3&quot;,&quot;posts_columns_laptop&quot;:null,&quot;posts_columns_tablet_extra&quot;:null,&quot;posts_columns_tablet&quot;:null,&quot;posts_columns_mobile_extra&quot;:null,&quot;posts_columns_mobile&quot;:&quot;1&quot;,&quot;posts_rows_widescreen&quot;:null,&quot;posts_rows&quot;:&quot;1&quot;,&quot;posts_rows_laptop&quot;:null,&quot;posts_rows_tablet_extra&quot;:null,&quot;posts_rows_tablet&quot;:null,&quot;posts_rows_mobile_extra&quot;:null,&quot;posts_rows_mobile&quot;:&quot;3&quot;,&quot;image_size&quot;:&quot;full&quot;,&quot;image_position&quot;:&quot;top&quot;,&quot;image_width&quot;:null,&quot;excerpt_length&quot;:0,&quot;excerpt_trimmed_ending&quot;:&quot;...&quot;,&quot;read_more&quot;:&quot;yes&quot;,&quot;read_more_text&quot;:&quot;Ver Artigo&quot;,&quot;show_meta&quot;:&quot;&quot;,&quot;show_author&quot;:null,&quot;show_author_avatar&quot;:null,&quot;get_avatar_from&quot;:null,&quot;avatar_custom_field&quot;:null,&quot;avatar_size&quot;:null,&quot;show_author_icon&quot;:null,&quot;selected_show_author_icon&quot;:null,&quot;show_date&quot;:null,&quot;show_date_icon&quot;:null,&quot;selected_show_date_icon&quot;:null,&quot;show_comments&quot;:null,&quot;show_comments_icon&quot;:null,&quot;selected_show_comments_icon&quot;:null,&quot;query_by&quot;:&quot;all&quot;,&quot;category_ids&quot;:null,&quot;post_tag_ids&quot;:null,&quot;include_ids&quot;:null,&quot;exclude_ids&quot;:&quot;&quot;,&quot;custom_query_by&quot;:&quot;all&quot;,&quot;custom_terms_ids&quot;:null,&quot;meta_query&quot;:&quot;&quot;,&quot;meta_key&quot;:null,&quot;meta_value&quot;:null,&quot;show_filter&quot;:&quot;&quot;,&quot;filter_by&quot;:null,&quot;show_all_btn&quot;:null,&quot;all_btn_label&quot;:null,&quot;more_terms_icon&quot;:null,&quot;selected_more_terms_icon&quot;:null,&quot;show_arrows&quot;:&quot;&quot;,&quot;arrow_type&quot;:null,&quot;show_featured_terms&quot;:null,&quot;show_featured_terms_tax&quot;:null,&quot;show_featured_terms_num&quot;:null,&quot;show_terms&quot;:&quot;&quot;,&quot;show_terms_tax&quot;:null,&quot;show_terms_num&quot;:null,&quot;featured_meta_position&quot;:null,&quot;meta_position&quot;:null,&quot;show_image&quot;:&quot;yes&quot;,&quot;post_type&quot;:[&quot;post&quot;],&quot;post_ids&quot;:null,&quot;content_related_meta&quot;:null,&quot;show_content_related_meta&quot;:&quot;&quot;,&quot;meta_content_related_position&quot;:null,&quot;title_related_meta&quot;:null,&quot;show_title_related_meta&quot;:&quot;&quot;,&quot;meta_title_related_position&quot;:null,&quot;featured_title_length&quot;:null,&quot;title_length&quot;:0,&quot;add_button_icon&quot;:&quot;&quot;,&quot;button_icon&quot;:null,&quot;selected_button_icon&quot;:null,&quot;post_add_button_icon&quot;:&quot;yes&quot;,&quot;post_button_icon&quot;:null,&quot;selected_post_button_icon&quot;:{&quot;value&quot;:&quot;fas fa-arrow-circle-right&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;use_custom_query&quot;:&quot;&quot;,&quot;custom_query&quot;:null,&quot;posts_offset&quot;:0,&quot;order&quot;:&quot;ASC&quot;,&quot;order_by&quot;:&quot;date&quot;,&quot;is_archive_template&quot;:&quot;&quot;,&quot;query_builder_id&quot;:null}' data-page=\"1\" data-term=\"0\" data-scroll-top=>\n\t<div class=\"jet-smart-listing__heading\"><span class=\"jet-smart-listing__title-placeholder\"><\/span><\/div>\n\t<div class=\"jet-smart-listing rows-1 no-featured\"><\/div>\n\t<\/div>\n<div class=\"jet-smart-listing-loading\"><\/div><\/div>\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-e9ca565 e-flex e-con-boxed e-con e-child\" data-id=\"e9ca565\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;background_background&quot;:&quot;classic&quot;,&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-2dfd390 e-flex e-con-boxed e-con e-child\" data-id=\"2dfd390\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"jet-parallax-widget elementor-element elementor-element-943f68a elementor-widget elementor-widget-heading\" data-jet-tricks-settings=\"{&quot;parallax&quot;:&quot;true&quot;,&quot;invert&quot;:&quot;false&quot;,&quot;speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:25,&quot;sizes&quot;:[]},&quot;stickyOn&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}\" data-id=\"943f68a\" data-element_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\">We present <b>legal solutions<\/b> quickly and efficiently.<\/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-ab0e0e2 e-flex e-con-boxed e-con e-child\" data-id=\"ab0e0e2\" data-element_type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[],&quot;_ha_eqh_enable&quot;:false}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"jet-parallax-widget elementor-element elementor-element-ef5813a elementor-align-center elementor-widget elementor-widget-button\" data-jet-tricks-settings=\"{&quot;parallax&quot;:&quot;true&quot;,&quot;invert&quot;:&quot;false&quot;,&quot;speed&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:25,&quot;sizes&quot;:[]},&quot;stickyOn&quot;:[&quot;desktop&quot;,&quot;tablet&quot;]}\" data-id=\"ef5813a\" data-element_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:\/\/www.coutinhorebelo.com\/en\/contacts\/#agendar_reuniao\">\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\">SCHEDULE A MEETING<\/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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Your beacon of light in a sea of laws. About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts Home About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts We specialise in the areas of Legal Consulting and Specialised Litigation. Ant\u00f3nio Coutinho [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2953,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4129","page","type-page","status-publish","has-post-thumbnail","hentry"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Home - Coutinho Rebelo Advogados<\/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:\/\/www.coutinhorebelo.com\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Coutinho Rebelo Advogados\" \/>\n<meta property=\"og:description\" content=\"Your beacon of light in a sea of laws. About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts Home About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts We specialise in the areas of Legal Consulting and Specialised Litigation. Ant\u00f3nio Coutinho [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.coutinhorebelo.com\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Coutinho Rebelo Advogados\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-15T17:10:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/\",\"url\":\"https:\/\/www.coutinhorebelo.com\/en\/\",\"name\":\"Home - Coutinho Rebelo Advogados\",\"isPartOf\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png\",\"datePublished\":\"2023-10-04T11:37:25+00:00\",\"dateModified\":\"2023-11-15T17:10:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.coutinhorebelo.com\/en\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage\",\"url\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png\",\"contentUrl\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/en\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/www.coutinhorebelo.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/#website\",\"url\":\"https:\/\/www.coutinhorebelo.com\/\",\"name\":\"Coutinho Rebelo Advogados\",\"description\":\"Num mar de leis, o seu farol.\",\"publisher\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#organization\"},\"alternateName\":\"Coutinho Rebelo\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.coutinhorebelo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/#organization\",\"name\":\"Coutinho Rebelo Advogados\",\"alternateName\":\"Ant\u00f3nio Coutinho Rebelo\",\"url\":\"https:\/\/www.coutinhorebelo.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/coutinho_rebelo-logo-pt.svg\",\"contentUrl\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/coutinho_rebelo-logo-pt.svg\",\"width\":222.1,\"height\":100,\"caption\":\"Coutinho Rebelo Advogados\"},\"image\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home - Coutinho Rebelo Advogados","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:\/\/www.coutinhorebelo.com\/en\/","og_locale":"en_US","og_type":"article","og_title":"Home - Coutinho Rebelo Advogados","og_description":"Your beacon of light in a sea of laws. About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts Home About Legal practice areas Civil Law Real Estate Law Financial Law Commercial and Company Law Contacts We specialise in the areas of Legal Consulting and Specialised Litigation. Ant\u00f3nio Coutinho [&hellip;]","og_url":"https:\/\/www.coutinhorebelo.com\/en\/","og_site_name":"Coutinho Rebelo Advogados","article_modified_time":"2023-11-15T17:10:17+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.coutinhorebelo.com\/en\/","url":"https:\/\/www.coutinhorebelo.com\/en\/","name":"Home - Coutinho Rebelo Advogados","isPartOf":{"@id":"https:\/\/www.coutinhorebelo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage"},"image":{"@id":"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage"},"thumbnailUrl":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png","datePublished":"2023-10-04T11:37:25+00:00","dateModified":"2023-11-15T17:10:17+00:00","breadcrumb":{"@id":"https:\/\/www.coutinhorebelo.com\/en\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.coutinhorebelo.com\/en\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.coutinhorebelo.com\/en\/#primaryimage","url":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png","contentUrl":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/www.coutinhorebelo.com\/en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/www.coutinhorebelo.com\/en\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/www.coutinhorebelo.com\/#website","url":"https:\/\/www.coutinhorebelo.com\/","name":"Coutinho Rebelo Advogados","description":"Num mar de leis, o seu farol.","publisher":{"@id":"https:\/\/www.coutinhorebelo.com\/#organization"},"alternateName":"Coutinho Rebelo","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.coutinhorebelo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.coutinhorebelo.com\/#organization","name":"Coutinho Rebelo Advogados","alternateName":"Ant\u00f3nio Coutinho Rebelo","url":"https:\/\/www.coutinhorebelo.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.coutinhorebelo.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/coutinho_rebelo-logo-pt.svg","contentUrl":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/coutinho_rebelo-logo-pt.svg","width":222.1,"height":100,"caption":"Coutinho Rebelo Advogados"},"image":{"@id":"https:\/\/www.coutinhorebelo.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/pages\/4129","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/comments?post=4129"}],"version-history":[{"count":10,"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/pages\/4129\/revisions"}],"predecessor-version":[{"id":5146,"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/pages\/4129\/revisions\/5146"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/media\/2953"}],"wp:attachment":[{"href":"https:\/\/www.coutinhorebelo.com\/en\/wp-json\/wp\/v2\/media?parent=4129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}