{"id":4130,"date":"2023-10-04T11:37:25","date_gmt":"2023-10-04T11:37:25","guid":{"rendered":"https:\/\/www.coutinhorebelo.com\/?page_id=4130"},"modified":"2024-01-04T16:54:42","modified_gmt":"2024-01-04T16:54:42","slug":"home","status":"publish","type":"page","link":"https:\/\/www.coutinhorebelo.com\/fr\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4130\" class=\"elementor elementor-4130 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\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\">Votre phare au beau milieu d\u2019un oc\u00e9an de lois.<\/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-2958\" 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-fr-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-3671 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/a-propos-de\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">\u00c0 propos de<\/span><\/a><\/div>\n<div class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children jet-nav__item-3672 jet-nav__item\"><a class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Domaines pratiques<\/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-3670 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-civil\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Civil<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3669 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-immobilier\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Immobilier<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3667 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-financier\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Financier<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3668 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-commercial\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Commercial et des Soci\u00e9t\u00e9s<\/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\/fr\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"303\" height=\"152\" src=\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/11\/coutinho_rebelo-belo_fr.svg\" class=\"attachment-full size-full wp-image-5137\" alt=\"\" \/>\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-fr-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-3673 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/contact\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Contact<\/span><\/a><\/div>\n<div class=\"menu-item wpml-ls-slot-8 wpml-ls-item wpml-ls-item-fr wpml-ls-current-language wpml-ls-menu-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-fr jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/\" 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=\"fr\">FR<\/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-en wpml-ls-menu-item wpml-ls-first-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-8-en jet-nav__item jet-nav-item-sub\"><a title=\"Passer \u00e0 EN(EN)\" href=\"https:\/\/www.coutinhorebelo.com\/en\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Passer \u00e0 EN(EN)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"en\">EN<\/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=\"Passer \u00e0 PT(PT)\" href=\"https:\/\/www.coutinhorebelo.com\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Passer \u00e0 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-fr-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-5070 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/\" 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-3679 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/a-propos-de\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">\u00c0 propos de<\/span><\/a><\/div>\n<div class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children jet-nav__item-3680 jet-nav__item\"><a class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Domaines pratiques<\/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-3677 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-civil\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Civil<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3676 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-immobilier\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Immobilier<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3674 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-financier\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Financier<\/span><\/a><\/div>\n\t<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3675 jet-nav__item jet-nav-item-sub\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/droit-commercial\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\"><span class=\"jet-nav-link-text\">Droit Commercial et des Soci\u00e9t\u00e9s<\/span><\/a><\/div>\n<\/div>\n<\/div>\n<div class=\"menu-item menu-item-type-post_type menu-item-object-page jet-nav__item-3678 jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/contact\/\" class=\"menu-item-link menu-item-link-depth-0 menu-item-link-top\"><span class=\"jet-nav-link-text\">Contact<\/span><\/a><\/div>\n<div class=\"menu-item wpml-ls-slot-10 wpml-ls-item wpml-ls-item-fr wpml-ls-current-language wpml-ls-menu-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-fr jet-nav__item\"><a href=\"https:\/\/www.coutinhorebelo.com\/fr\/\" 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=\"fr\">FR<\/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-en wpml-ls-menu-item wpml-ls-first-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item jet-nav__item-wpml-ls-10-en jet-nav__item jet-nav-item-sub\"><a title=\"Passer \u00e0 EN(EN)\" href=\"https:\/\/www.coutinhorebelo.com\/en\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Passer \u00e0 EN(EN)\" role=\"menuitem\"><span class=\"jet-nav-link-text\"><span class=\"wpml-ls-native\" lang=\"en\">EN<\/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=\"Passer \u00e0 PT(PT)\" href=\"https:\/\/www.coutinhorebelo.com\/\" class=\"menu-item-link menu-item-link-depth-1 menu-item-link-sub\" aria-label=\"Passer \u00e0 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-3cbb2d2 banner_header e-flex e-con-boxed e-con e-child\" data-id=\"3cbb2d2\" 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-d258519 e-con-full col_banner_header e-flex e-con e-child\" data-id=\"d258519\" 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-813870d e-con-full col_banner_header e-flex e-con e-child\" data-id=\"813870d\" 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-7c423e5 elementor-hidden-desktop elementor-hidden-tablet elementor-widget elementor-widget-image\" data-id=\"7c423e5\" 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-4787\" 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-a1ec72b e-con-full e-flex e-con e-child\" data-id=\"a1ec72b\" 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-f7da9e5 elementor-widget elementor-widget-image\" data-id=\"f7da9e5\" 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-4793\" 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-57d9580 elementor-widget elementor-widget-heading\" data-id=\"57d9580\" 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\">Nous sommes experts en conseil juridique et en contentieux sp\u00e9cialis\u00e9.<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2efce0 elementor-widget elementor-widget-image\" data-id=\"a2efce0\" 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-4793\" 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-31e4bf8 elementor-widget elementor-widget-heading\" data-id=\"31e4bf8\" 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-672425e elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"672425e\" 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-4787\" 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\">NOUS VENONS EN AIDE A NOS 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\">DOMAINES PRATIQUES<\/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>Chez <strong>Coutinho Rebelo Advogados<\/strong>, nous sommes \u00e0 l\u2019\u00e9coute de chaque client, puis nous examinons chaque cas avec rigueur pour proposer la <strong>meilleure solution<\/strong>. Notre intense travail <strong>pragmatique <\/strong> et <strong>personnalis\u00e9<\/strong> a pour principal but de satisfaire quiconque fait appel \u00e0 nous.<\/p>\n<p><strong>S\u00e9rieux<\/strong>, <strong>pond\u00e9ration <\/strong> et <strong>exp\u00e9rience <\/strong> sont les atouts qui nous distinguent dans l\u2019ensemble de nos m\u00e9tiers.<\/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-2970\" 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\">DROIT CIVIL<\/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>\u00c9galement appel\u00e9 droit des citoyens, cette branche du droit priv\u00e9 couvre les droits et devoirs de tous les citoyens, ainsi que leurs rapports en soci\u00e9t\u00e9.<\/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\/fr\/droit-civil\/\">\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\">EN SAVOIR PLUS<\/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\">DROIT IMMOBILIER<\/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>Il s\u2019agit des droits concernant la propri\u00e9t\u00e9, la pleine utilisation, jouissance et disposition des immeubles, des droits r\u00e9els et des obligations, ainsi que des obligations relatives \u00e0 l\u2019acquisition, la d\u00e9tention et la disposition de ces droits.<\/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\/fr\/droit-immobilier\/\">\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\">EN SAVOIR PLUS<\/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-2976\" 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-2972\" 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\">DROIT COMMERCIAL ET DES SOCI\u00c9T\u00c9S<\/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>Ces branches du droit ont pour objectif de veiller au bon exercice de l\u2019activit\u00e9 \u00e9conomique organis\u00e9e de fourniture de biens et de services, \u00e0 savoir d\u2019une entreprise. Leur objet est de r\u00e9gler les conflits d\u2019int\u00e9r\u00eat entre chefs d\u2019entreprise, associ\u00e9s et actionnaires, ainsi que les probl\u00e8mes n\u00e9s au sein des entreprises.<\/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\/fr\/droit-commercial\/\">\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\">EN SAVOIR PLUS<\/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\">DROIT FINANCIER<\/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>C\u2019est la branche du droit public portant sur le cadre juridique des finances de l\u2019\u00c9tat et les rapports juridiques issus de son activit\u00e9 financi\u00e8re qui s\u2019\u00e9tablissent entre l\u2019\u00c9tat et les particuliers. S\u2019y inscrivent la discipline des \u00e9tablissements qui se consacrent aux activit\u00e9s bancaires, financi\u00e8res et d\u2019investissement collectif.<\/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\/fr\/droit-financier\/\">\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\">EN SAVOIR PLUS<\/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-2974\" 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>Exp\u00e9rience et proximit\u00e9<\/b> pour un service de qualit\u00e9.<\/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\">NOVIDADES&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\">NOT\u00cdCIAS<\/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>Leia aqui as tem\u00e1ticas mais pertinentes da atualidade.<\/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\">Nous pr\u00e9sentons des <strong>solutions juridiques<\/strong> de fa\u00e7on rapide et efficace.<\/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\/fr\/contact\/#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\">PRENDRE RENDEZ-VOUS<\/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>Votre phare au beau milieu d\u2019un oc\u00e9an de lois. Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Home Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Nous sommes experts en conseil juridique et en contentieux sp\u00e9cialis\u00e9. Ant\u00f3nio [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2954,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4130","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\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Coutinho Rebelo Advogados\" \/>\n<meta property=\"og:description\" content=\"Votre phare au beau milieu d\u2019un oc\u00e9an de lois. Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Home Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Nous sommes experts en conseil juridique et en contentieux sp\u00e9cialis\u00e9. Ant\u00f3nio [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.coutinhorebelo.com\/\" \/>\n<meta property=\"og:site_name\" content=\"Coutinho Rebelo Advogados\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-04T16:54:42+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=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\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\/\",\"url\":\"https:\/\/www.coutinhorebelo.com\/\",\"name\":\"Home - Coutinho Rebelo Advogados\",\"isPartOf\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png\",\"datePublished\":\"2023-10-04T11:37:25+00:00\",\"dateModified\":\"2024-01-04T16:54:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.coutinhorebelo.com\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.coutinhorebelo.com\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/www.coutinhorebelo.com\/#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\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/www.coutinhorebelo.com\/\"},{\"@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\":\"fr-FR\"},{\"@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\":\"fr-FR\",\"@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\/","og_locale":"fr_FR","og_type":"article","og_title":"Home - Coutinho Rebelo Advogados","og_description":"Votre phare au beau milieu d\u2019un oc\u00e9an de lois. Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Home Sobre \u00c1reas de pr\u00e1tica Direito Civil Direito Imobili\u00e1rio Direito Financeiro Direito Comercial e Direito Societ\u00e1rio Not\u00edcias Contactos Nous sommes experts en conseil juridique et en contentieux sp\u00e9cialis\u00e9. Ant\u00f3nio [&hellip;]","og_url":"https:\/\/www.coutinhorebelo.com\/","og_site_name":"Coutinho Rebelo Advogados","article_modified_time":"2024-01-04T16:54:42+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":{"Dur\u00e9e de lecture estim\u00e9e":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.coutinhorebelo.com\/","url":"https:\/\/www.coutinhorebelo.com\/","name":"Home - Coutinho Rebelo Advogados","isPartOf":{"@id":"https:\/\/www.coutinhorebelo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.coutinhorebelo.com\/#primaryimage"},"image":{"@id":"https:\/\/www.coutinhorebelo.com\/#primaryimage"},"thumbnailUrl":"https:\/\/www.coutinhorebelo.com\/wp-content\/uploads\/2023\/06\/cropped-favicon.png","datePublished":"2023-10-04T11:37:25+00:00","dateModified":"2024-01-04T16:54:42+00:00","breadcrumb":{"@id":"https:\/\/www.coutinhorebelo.com\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.coutinhorebelo.com\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.coutinhorebelo.com\/#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\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/www.coutinhorebelo.com\/"},{"@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":"fr-FR"},{"@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":"fr-FR","@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\/fr\/wp-json\/wp\/v2\/pages\/4130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/comments?post=4130"}],"version-history":[{"count":10,"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/pages\/4130\/revisions"}],"predecessor-version":[{"id":5206,"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/pages\/4130\/revisions\/5206"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/media\/2954"}],"wp:attachment":[{"href":"https:\/\/www.coutinhorebelo.com\/fr\/wp-json\/wp\/v2\/media?parent=4130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}