@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Raleway:wght@400;500;700&display=swap");

:root {
  --black: #111111;
  --navy: #0a0a0a;
  --navy-strong: #111111;
  --gold: #c39a70;
  --gold-soft: #f5eee7;
  --white: #ffffff;
  --gray-50: #f5f5f5;
  --gray-100: #e6e6e6;
  --gray-200: #cacaca;
  --gray-600: #6c6c6c;
  --text: #303030;
  --teal: #128c7e;
  --wine: #9d0b0b;
  --green: #2e2d2d;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  --font-title: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: Raleway, Arial, Helvetica, sans-serif;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  animation: pageFadeIn 0.42s var(--motion-ease) both;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a,
button,
summary,
input,
textarea,
.card,
.team-card,
.post-card,
.unit-card,
.contact-aside,
.feature-grid article,
.footer-addresses article {
  transition:
    color 0.24s var(--motion-ease),
    background-color 0.24s var(--motion-ease),
    border-color 0.24s var(--motion-ease),
    box-shadow 0.24s var(--motion-ease),
    opacity 0.24s var(--motion-ease),
    transform 0.24s var(--motion-ease);
}

:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.7);
  outline-offset: 3px;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes actionFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.64s var(--motion-ease),
    transform 0.64s var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.action-fade-in {
  animation: actionFadeIn 0.32s var(--motion-ease) both;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  transform: translateY(-180%);
  z-index: 500;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--gray-50);
}

.section-kicker,
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 16px;
}

.muted {
  color: var(--gray-600);
}

.role {
  color: var(--gold);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 22px;
  border: 0;
  border-radius: 0;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-secondary {
  background: var(--gold-soft);
  color: var(--navy);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--gold);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.header {
  --header-height: 85px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(10, 10, 10, 0.74) 46%, rgba(91, 54, 25, 0.58));
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  margin-bottom: calc(var(--header-height) * -1);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, 92%);
  min-height: var(--header-height);
  gap: 28px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 230px;
  height: 48px;
  background-image: url("../img/logo-oficial.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.logo img {
  width: 230px;
  height: 48px;
  max-height: none;
  opacity: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
}

.nav > a,
.dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  color: var(--white);
  padding: 0;
  line-height: 1;
}

.nav a:hover,
.nav a[aria-current="page"],
.dropdown-button:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: var(--navy);
  border: none;
  color: var(--white);
  border-radius: 6px;
  width: 46px;
  height: 46px;
  font-size: 1.55rem;
  line-height: 1;
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 400;
}

.dropdown-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-left: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 8px;
}

.dropdown-menu a {
  display: block;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--navy);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.header .nav > a[href$="trabalhe-conosco.html"] {
  display: none;
}

.header .nav > .nav-search {
  order: 2;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  min-height: var(--header-height);
  border: 0;
  padding: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M16 16L21 21' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  font-size: 0;
}

.header .nav > .nav-search:hover {
  opacity: 0.75;
}

.search-open {
  overflow: hidden;
}

.search-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 24px;
  z-index: 260;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.26s var(--motion-ease),
    visibility 0.26s var(--motion-ease);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel {
  position: relative;
  width: min(940px, calc(100vw - 48px));
  opacity: 0;
  transform: translateY(78px);
  transition:
    opacity 0.32s var(--motion-ease),
    transform 0.32s var(--motion-ease);
}

.search-overlay.active .search-panel {
  opacity: 1;
  transform: translateY(62px);
}

.search-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 18px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.search-close span {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
}

.header-search-form {
  display: flex;
  width: 100%;
  min-height: 80px;
}

.header-search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-right: 0;
  padding: 0 20px;
  color: var(--text);
  font-size: 1.14rem;
}

.header-search-form input:focus {
  outline: none;
}

.header-search-form button {
  width: 82px;
  flex: 0 0 82px;
  border: 0;
  background: #c39a70;
  color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6.7' stroke='%23ffffff' stroke-width='1.8'/%3E%3Cpath d='M16 16L21 21' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
}

.blog-search-empty {
  display: none;
  margin-top: 22px;
  color: var(--gray-600);
  font-weight: 700;
}

.header .nav > a[href$="contato.html"] {
  order: 3;
  align-self: center;
  justify-content: center;
  width: 120px;
  min-height: 46px;
  background: #c39a70;
  color: var(--white);
  padding: 0 16px;
  font-size: 1rem;
  text-transform: uppercase;
}

.header .nav > a[href$="contato.html"]:hover,
.header .nav > a[href$="contato.html"][aria-current="page"] {
  background: var(--gold);
  color: var(--white);
}

.hero-slider {
  position: relative;
  min-height: min(74vh, 680px);
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(10, 10, 10, 0.52), rgba(91, 54, 25, 0.14));
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 740px;
  padding: 88px 0;
}

.hero-content h1 {
  color: var(--white);
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(10, 10, 10, 0.56), rgba(91, 54, 25, 0.22)),
    url("../img/escritorio.jpg") center center / cover no-repeat;
  color: var(--white);
  padding: 145px 0 70px;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.blog-top-visual {
  display: flex;
  align-items: flex-end;
  min-height: 365px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.12)),
    url("../img/escritorio.jpg") center center / cover no-repeat;
  color: var(--white);
  padding: 145px 0 70px;
}

.blog-top-visual h1,
.blog-top-visual p {
  color: var(--white);
}

.blog-top-visual p {
  max-width: 760px;
  font-size: 1.08rem;
}

.area-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(10, 10, 10, 0.56), rgba(91, 54, 25, 0.22)),
    url("../img/escritorio.jpg") center center / cover no-repeat;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span::before,
.breadcrumb a + span::before,
.breadcrumb a + a::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.split-section .section-kicker {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.split-section h2 {
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
}

.split-section p {
  color: #303030;
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-50);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--gray-600);
  font-size: 1.02rem;
}

.cards,
.team-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.team-card,
.post-card,
.unit-card,
.contact-aside,
.feature-grid article {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-card img,
.post-card img,
.team-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.area-card img {
  aspect-ratio: 16 / 10;
}

.areas-original {
  background: var(--white);
  padding: 70px 0 75px;
}

.areas-original .container {
  width: min(1064px, 92%);
}

.areas-original .section-heading {
  max-width: none;
  margin-bottom: 46px;
}

.areas-original .section-kicker {
  color: #c39a70;
  font-size: 0.72rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.areas-original .section-heading h2 {
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.08rem);
  font-weight: 400;
  margin-bottom: 0;
}

.areas-original .areas-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #eeeeee;
}

.areas-original .area-card {
  position: relative;
  min-height: 310px;
  background: var(--white);
  border: 0;
  border-right: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  padding: 37px 30px 36px;
  gap: 0;
  text-decoration: none;
  transition: background 0.2s ease, outline-color 0.2s ease, transform 0.2s ease;
}

.areas-original .area-card:last-child {
  border-right: 0;
}

.areas-original .area-card.active {
  z-index: 1;
  outline-offset: -1px;
}

.areas-original .area-card:hover,
.areas-original .area-card:focus-visible {
  z-index: 2;
  background: #f6f6f6;
  outline: 1px solid #c39a70;
  outline-offset: -1px;
  transform: translateY(-2px);
}

.areas-original .area-card:hover h2,
.areas-original .area-card:hover h3,
.areas-original .area-card:focus-visible h2,
.areas-original .area-card:focus-visible h3 {
  color: #050505;
}

.area-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #c39a70;
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}

.areas-original .area-card:hover .area-icon,
.areas-original .area-card:focus-visible .area-icon {
  transform: translateY(-2px);
}

.area-icon svg {
  width: 48px;
  height: 48px;
}

.area-icon svg circle {
  fill: currentColor;
}

.area-icon svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.areas-original .area-card h2,
.areas-original .area-card h3 {
  color: #303030;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 17px;
}

.areas-original .area-card p {
  color: #7c7c7c;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 36px;
}

.areas-original .text-link {
  color: #c39a70;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: auto;
}

.areas-original .text-link::after {
  color: #c39a70;
}

.post-card img {
  aspect-ratio: 16 / 9;
}

.team-card img {
  aspect-ratio: 1 / 1;
}

.team-card h2,
.post-card h2 {
  font-size: 1.25rem;
}

.team-grid-home .team-card h3 {
  margin-top: 4px;
}

.lawyers-section {
  background: linear-gradient(to bottom, #111111 0, #111111 302px, var(--white) 302px);
  padding: 58px 0 50px;
}

.lawyers-section .container {
  width: min(1420px, 92%);
}

.lawyers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 60px;
}

.lawyers-header .section-kicker {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.lawyers-header h2 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3vw, 2.62rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.lawyers-arrows {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 34px;
}

.lawyer-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background: var(--gold);
  border: 0;
  color: var(--white);
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lawyer-arrow:hover {
  background: #b99671;
  transform: translateY(-1px);
}

.lawyers-slider {
  position: relative;
  background: var(--gray-50);
  min-height: 615px;
  overflow: hidden;
}

.lawyer-slide {
  display: none;
  grid-template-columns: 338px minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
  min-height: 615px;
  padding: 80px min(8vw, 120px);
}

.lawyer-slide.active {
  display: grid;
}

.lawyer-slide.from-next {
  animation: lawyerInFromRight 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lawyer-slide.from-prev {
  animation: lawyerInFromLeft 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lawyer-slide.leaving-next,
.lawyer-slide.leaving-prev {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background: var(--gray-50);
  pointer-events: none;
}

.lawyer-slide.leaving-next {
  animation: lawyerOutToLeft 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lawyer-slide.leaving-prev {
  animation: lawyerOutToRight 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lawyer-arrow:disabled {
  opacity: 0.65;
  cursor: default;
}

@keyframes lawyerInFromRight {
  from {
    opacity: 0;
    transform: translateX(44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lawyerInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lawyerOutToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-44px);
  }
}

@keyframes lawyerOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lawyer-slide.from-next,
  .lawyer-slide.from-prev,
  .lawyer-slide.leaving-next,
  .lawyer-slide.leaving-prev {
    animation: none;
  }
}

.lawyer-photo img {
  width: 338px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.profile-photo-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(226, 226, 226, 0.92)),
    repeating-linear-gradient(45deg, rgba(195, 154, 112, 0.09) 0 1px, transparent 1px 10px);
  border: 1px solid #dedede;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.profile-photo-placeholder span {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1;
}

.profile-photo-placeholder small {
  color: #6c6c6c;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 14px;
  text-transform: uppercase;
}

.lawyer-photo-placeholder {
  aspect-ratio: 3 / 4;
  width: 338px;
}

.lawyer-content {
  max-width: 570px;
  color: #303030;
}

.lawyer-info {
  display: inline-block;
  color: var(--gray-600);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lawyer-content h3 {
  color: #303030;
  font-size: clamp(1.75rem, 2.4vw, 1.95rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 26px;
}

.lawyer-content ul {
  margin: 0 0 24px 22px;
  color: #303030;
  font-size: 1.25rem;
  line-height: 1.45;
}

.lawyer-content p {
  color: #3f3f3f;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.social-section {
  background: #111111;
  color: var(--white);
  padding: 36px 0;
}

.social-section .container {
  width: min(1415px, 92%);
}

.social-section h2 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

.social-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  gap: 48px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 104px;
  background: #202020;
  color: var(--white);
  border: 0;
  border-radius: 0;
  padding: 16px 12px;
  font-size: 0.83rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: #262626;
  transform: translateY(-2px);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #c39a70;
  margin-bottom: 12px;
  text-transform: none;
}

.social-icon-facebook,
.social-icon-linkedin {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.social-icon-linkedin {
  width: auto;
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-icon svg rect,
.social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.social-icon-youtube svg rect {
  fill: currentColor;
  stroke: none;
}

.social-icon-youtube svg path {
  fill: #202020;
}

.social-links a:hover .social-icon-youtube svg path {
  fill: #262626;
}

.reasons-section {
  background: #111111;
  color: var(--white);
  padding: 54px 0 76px;
}

.reasons-section .container {
  width: min(1420px, 92%);
}

.reasons-section .section-heading {
  margin-bottom: 47px;
}

.reasons-section .section-kicker {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.reasons-section h2 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.reasons-grid article {
  min-height: 419px;
  background: #212121;
  border: 0;
  border-radius: 0;
  padding: 55px 40px 50px;
  box-shadow: none;
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
}

.material-symbols-outlined.reason-icon {
  font-size: 86px;
  font-weight: 600;
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 48;
}

.reason-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.reason-icon svg [data-stroke] {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reasons-grid h3 {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 27px;
}

.reasons-grid p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.home-blog-section {
  background: var(--white);
  padding: 0 0 70px;
  scroll-margin-top: 96px;
}

.home-blog-section .container {
  width: min(1066px, 92%);
  border-top: 1px solid #d9d9d9;
  padding-top: 42px;
}

.home-blog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 45px;
}

.home-blog-header .section-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 11px;
}

.home-blog-header h2 {
  color: #020202;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
}

.home-blog-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 42px;
  background: var(--gold);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-blog-action:hover {
  background: var(--navy);
  color: var(--white);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.home-blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 226px;
  background: #f5f5f5;
  border: 1px solid transparent;
  color: #030303;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.home-blog-image {
  position: relative;
  display: block;
  min-height: 226px;
  overflow: hidden;
}

.home-blog-image img {
  width: 100%;
  height: 100%;
  min-height: 226px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-blog-card:hover .home-blog-image img {
  transform: scale(1.03);
}

.home-blog-image time {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 9px;
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
}

.home-blog-image time svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex: 0 0 auto;
}

.home-blog-content {
  display: flex;
  flex-direction: column;
  min-height: 226px;
  padding: 28px 30px;
}

.home-blog-content h3 {
  color: #030303;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.52;
  margin-bottom: 20px;
}

.home-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: auto;
}

.home-blog-link::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.post-meta {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.filter-bar button.active,
.filter-bar button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.blog-page-original {
  background: var(--white);
  padding: 40px 0 88px;
}

.blog-page-original .container {
  width: min(1066px, 92%);
}

.blog-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 44px;
}

.blog-breadcrumb {
  display: inline-block;
  color: #777777;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}

.blog-breadcrumb:hover {
  color: var(--gold);
}

.blog-page-heading h1 {
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(3rem, 5.8vw, 4.35rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

.blog-page-heading p {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.blog-filter-original {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  background: #111111;
  margin-bottom: 76px;
  padding: 0 22px;
}

.blog-filter-original button {
  position: relative;
  flex: 0 0 auto;
  min-height: 53px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  color: var(--white);
  padding: 0 23px;
  font-size: 0.88rem;
  font-weight: 400;
}

.blog-filter-original button:first-child {
  border-left: 0;
  padding-left: 0;
}

.blog-filter-original button.active,
.blog-filter-original button:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--white);
  font-weight: 700;
}

.blog-filter-original button.active::after {
  content: "";
  position: absolute;
  left: 23px;
  right: 23px;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.blog-filter-original button:first-child.active::after {
  left: 0;
}

.blog-list-original {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.blog-page-original .blog-list-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 226px;
  background: #f5f5f5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.blog-list-image {
  position: relative;
  display: block;
  min-height: 226px;
  overflow: hidden;
  background: #dedede;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  margin-bottom: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.04);
}

.blog-list-image time {
  position: absolute;
  top: 13px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 9px;
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.blog-list-image time::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3H7V2Zm8 0h2v3h-2V2ZM4 4h3v2h2V4h6v2h2V4h3v18H4V4Zm2 7v9h12v-9H6Zm0-5v3h12V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3H7V2Zm8 0h2v3h-2V2ZM4 4h3v2h2V4h6v2h2V4h3v18H4V4Zm2 7v9h12v-9H6Zm0-5v3h12V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.blog-list-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 26px;
}

.blog-list-content h2 {
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.42;
  margin-bottom: 22px;
}

.blog-list-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: uppercase;
}

.blog-list-link::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.blog-list-link:hover {
  color: var(--navy);
}

.team-page-original {
  background: var(--white);
  padding-top: 48px;
}

.team-page-original .container {
  width: min(1420px, 92%);
}

.team-filter-original {
  align-items: center;
  background: var(--black);
  border: 0;
  border-radius: 0;
  display: flex;
  gap: 0;
  margin: 0 0 100px;
  min-height: 68px;
  padding: 0 30px;
}

.team-filter-original button {
  align-self: stretch;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 0 30px;
}

.team-filter-original button:first-child {
  border-left: 0;
}

.team-filter-original button.active,
.team-filter-original button:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
}

.team-list-original {
  display: grid;
  gap: 82px;
}

.team-page-original .team-profile {
  align-items: center;
  background: #f5f5f5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: clamp(48px, 8vw, 145px);
  grid-template-columns: 338px minmax(0, 1fr);
  min-height: 610px;
  padding: 78px clamp(56px, 8vw, 120px);
}

.team-page-original .team-profile:nth-child(even) {
  background: var(--white);
  grid-template-columns: minmax(0, 1fr) 338px;
}

.team-page-original .team-profile:nth-child(even) .team-profile-content {
  order: 1;
}

.team-page-original .team-profile:nth-child(even) .team-profile-photo {
  justify-self: end;
  order: 2;
}

.team-profile-photo {
  width: 338px;
}

.team-profile-photo img,
.team-card .team-profile-photo img {
  aspect-ratio: 338 / 451;
  border-radius: 0;
  display: block;
  height: auto;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.team-photo-placeholder {
  aspect-ratio: 338 / 451;
  width: 100%;
}

.team-profile-content {
  color: var(--text);
  max-width: 720px;
}

.team-profile-info {
  color: var(--gray-600);
  display: block;
  font-size: 1rem;
  margin-bottom: 12px;
}

.team-profile-content h2 {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.team-profile-content ul {
  color: #2f2f2f;
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.45;
  margin: 0 0 26px;
  padding-left: 22px;
}

.team-profile-content p {
  color: #2f2f2f;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  line-height: 1.55;
  margin: 0;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-list div {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
}

.stat-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.8rem;
}

.stat-list span {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.team-page-original + .section .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-page-original + .section .feature-grid article {
  position: relative;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.team-page-original + .section .feature-grid article::before,
.team-page-original + .section .feature-grid article::after {
  content: "";
  position: absolute;
  background: var(--gold);
  pointer-events: none;
}

.team-page-original + .section .feature-grid article::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.team-page-original + .section .feature-grid article::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.office-page .stat-list div,
.office-page .team-page-original .team-profile,
.lawyers-page .team-page-original .team-profile,
.office-page .team-page-original + .section .feature-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.office-page .stat-list div {
  border-left: 1px solid var(--gray-100);
}

.office-page .stat-list div::before,
.office-page .team-page-original .team-profile::before,
.lawyers-page .team-page-original .team-profile::before,
.office-page .team-page-original + .section .feature-grid article::before,
.office-page .stat-list div::after,
.office-page .team-page-original .team-profile::after,
.lawyers-page .team-page-original .team-profile::after,
.office-page .team-page-original + .section .feature-grid article::after {
  content: "";
  position: absolute;
  background: var(--gold);
  pointer-events: none;
}

.office-page .stat-list div::before,
.office-page .team-page-original .team-profile::before,
.lawyers-page .team-page-original .team-profile::before,
.office-page .team-page-original + .section .feature-grid article::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.office-page .stat-list div::after,
.office-page .team-page-original .team-profile::after,
.lawyers-page .team-page-original .team-profile::after,
.office-page .team-page-original + .section .feature-grid article::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.check-list li {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 16px 16px 16px 42px;
  position: relative;
  font-weight: 700;
  color: var(--navy);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  color: var(--gold);
  font-weight: 900;
}

.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 58px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}

.form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
}

.form textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
}

.checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
}

.field-help {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-aside h2 {
  font-size: 1.45rem;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.unit-card h3 {
  color: var(--navy);
  font-size: 1.06rem;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.pagination a,
.pagination span {
  border: 1px solid var(--gray-200);
  color: var(--navy);
  border-radius: 6px;
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-weight: 800;
}

.pagination a[aria-current="page"] {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.content-page,
.post-content {
  max-width: 840px;
}

.content-page h2,
.post-content h2 {
  margin-top: 28px;
}

.post-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 44px 0 28px;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.footer {
  background: var(--navy-strong);
  color: rgba(255, 255, 255, 0.82);
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  width: 210px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 18px;
}

.footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 0.9rem;
}

.cta-original {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111111 url("../img/cta-homem-terno-gerado.png") center center / cover no-repeat;
  color: var(--white);
  padding: 94px 0 98px;
}

.cta-original::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.44) 52%, rgba(0, 0, 0, 0.7));
}

.cta-original .container,
.footer-original .container {
  width: min(1420px, 79%);
}

.cta-original .cta-content {
  display: block;
  max-width: 650px;
}

.cta-original .section-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 19px;
}

.cta-original h2 {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 3.2vw, 2.55rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 34px;
}

.cta-original p {
  color: var(--white);
  font-size: 1.48rem;
  line-height: 1.55;
  margin-bottom: 30px;
}

.cta-original .btn {
  min-width: 315px;
  min-height: 64px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cta-original .btn:hover {
  background: var(--gold-soft);
  color: var(--navy);
}

.footer-original {
  background: #111111;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  padding: 0;
}

.footer-original .footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 39px 0 30px;
}

.footer-original .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(26px, 3.8vw, 52px);
}

.footer-original .footer-nav a {
  display: inline-flex;
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}

.footer-original .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-original .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: var(--gold);
  color: #111111;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.footer-original .footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-original .footer-social a[aria-label="YouTube"] svg rect {
  fill: currentColor;
  stroke: none;
}

.footer-original .footer-social a[aria-label="YouTube"] svg path {
  fill: var(--gold);
  stroke: none;
}

.footer-original .footer-social a[aria-label="Instagram"] svg rect,
.footer-original .footer-social svg circle {
  fill: none;
  stroke: currentColor;
}

.footer-original .footer-social a:hover,
.footer-original .footer-nav a:hover,
.footer-original .footer-addresses a:hover,
.footer-original .footer-bottom a:hover {
  color: var(--gold);
}

.footer-original .footer-social a:hover {
  background: var(--white);
  color: #111111;
}

.footer-addresses {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 74px;
  row-gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 80px 0 89px;
}

.footer-addresses article {
  min-width: 0;
}

.footer-addresses h2 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.footer-addresses p {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 0.86rem;
  line-height: 1.48;
  margin-bottom: 13px;
}

.footer-addresses a {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.footer-addresses a::after {
  content: "→";
  margin-left: 10px;
  font-size: 1rem;
}

.footer-original .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 0;
  margin-top: 0;
  padding: 21px 0 28px;
  color: var(--white);
  font-size: 0.84rem;
}

.footer-original .footer-bottom a {
  display: inline-flex;
  color: var(--white);
  margin: 0;
}

.footer-original .footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition:
    opacity 0.28s var(--motion-ease),
    transform 0.28s var(--motion-ease),
    visibility 0.28s var(--motion-ease);
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
}

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-actions a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background-color: #008477;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='34' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M16.02 5.33c-5.74 0-10.42 4.67-10.42 10.41 0 1.97.55 3.86 1.6 5.5L5.5 26.67l5.58-1.64a10.36 10.36 0 0 0 4.94 1.25c5.74 0 10.42-4.67 10.42-10.42S21.76 5.33 16.02 5.33Zm0 18.87c-1.57 0-3.1-.43-4.43-1.24l-.32-.2-3.31.97.99-3.22-.21-.33a8.35 8.35 0 0 1-1.27-4.44c0-4.58 3.72-8.31 8.3-8.31 4.6 0 8.32 3.73 8.32 8.32 0 4.58-3.73 8.3-8.07 8.45Zm4.56-6.23c-.25-.13-1.48-.73-1.71-.81-.23-.09-.4-.13-.57.12-.17.25-.65.81-.8.98-.15.17-.3.19-.55.07-.25-.13-1.06-.39-2.01-1.24a7.47 7.47 0 0 1-1.39-1.72c-.15-.25-.02-.38.11-.51.12-.12.25-.3.38-.45.13-.15.17-.25.25-.42.09-.17.04-.32-.02-.45-.06-.13-.57-1.38-.78-1.89-.21-.5-.42-.43-.57-.44h-.49c-.17 0-.45.06-.68.32-.23.25-.9.88-.9 2.15s.92 2.49 1.05 2.66c.13.17 1.81 2.76 4.39 3.87.61.26 1.09.42 1.47.54.62.2 1.18.17 1.62.1.5-.07 1.48-.6 1.69-1.18.21-.58.21-1.08.15-1.18-.06-.11-.23-.17-.48-.3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
  border: 8px solid rgba(0, 132, 119, 0.22);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  z-index: 150;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background-color: #00776c;
  transform: translateY(-2px);
}

.modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.26s var(--motion-ease),
    visibility 0.26s var(--motion-ease);
}

.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  width: min(500px, 92%);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.32s var(--motion-ease),
    transform 0.32s var(--motion-ease);
}

.modal.active .modal-content {
  opacity: 1;
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-50);
  color: var(--navy);
  font-size: 1.25rem;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .cards,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lawyers-section {
    background: linear-gradient(to bottom, #111111 0, #111111 270px, var(--white) 270px);
  }

  .lawyers-header {
    margin-bottom: 42px;
  }

  .lawyer-slide {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    min-height: 500px;
    padding: 55px 46px;
  }

  .lawyers-slider {
    min-height: 500px;
  }

  .lawyer-photo img,
  .lawyer-photo-placeholder {
    width: 280px;
  }

  .lawyer-content ul,
  .lawyer-content p {
    font-size: 1.05rem;
  }

  .team-filter-original {
    margin-bottom: 60px;
  }

  .team-page-original .team-profile {
    gap: 42px;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 0;
    padding: 52px;
  }

  .team-page-original .team-profile:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .team-profile-photo {
    width: 280px;
  }

  .areas-original .areas-list {
    grid-template-columns: 1fr;
  }

  .areas-original .area-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #eeeeee;
  }

  .areas-original .area-card:last-child {
    border-bottom: 0;
  }

  .areas-original .area-card.active {
    margin: 0;
  }

  .feature-grid,
  .reasons-grid,
  .home-blog-grid,
  .check-list,
  .unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-original .container,
  .footer-original .container {
    width: min(1120px, 92%);
  }

  .footer-original .footer-bar {
    align-items: flex-start;
  }

  .footer-addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 42px;
  }
}

@media (max-width: 820px) {
  .header {
    margin-bottom: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0;
  }

  .menu-toggle::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--white);
    box-shadow: 0 -6px var(--white), 0 6px var(--white);
  }

  .menu-toggle[aria-expanded="true"]::before {
    content: "x";
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    font-size: 1.8rem;
    line-height: 1;
  }

  .header-content {
    flex-wrap: wrap;
    width: min(100%, 92%);
    min-height: 76px;
  }

  .logo {
    width: 205px;
    height: 43px;
  }

  .logo img {
    width: 205px;
    height: 43px;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 0 18px;
    gap: 4px;
  }

  .header .nav > .nav-search {
    display: none;
  }

  .search-overlay {
    padding: 20px;
  }

  .search-panel {
    width: 100%;
    transform: translateY(24px);
  }

  .search-close {
    bottom: calc(100% + 14px);
  }

  .header-search-form {
    min-height: 58px;
  }

  .header-search-form input {
    padding: 0 14px;
    font-size: 1rem;
  }

  .header-search-form button {
    width: 62px;
    flex-basis: 62px;
  }

  .nav.active {
    display: flex;
  }

  .nav > a,
  .dropdown,
  .dropdown-button {
    width: 100%;
    min-height: 0;
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 14px;
    background: var(--gray-50);
    width: 100%;
    margin-top: 4px;
  }

  .header .nav > a[href$="contato.html"] {
    align-self: stretch;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    margin-top: 8px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }

  .hero-slider {
    min-height: 620px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .blog-top-visual {
    min-height: 310px;
    padding: 58px 0;
  }

  .blog-page-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .blog-page-heading p {
    margin-top: 0;
  }

  .blog-filter-original {
    margin-bottom: 46px;
  }

  .blog-list-original {
    grid-template-columns: 1fr;
  }

  .social-content,
  .cta-content,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-content {
    min-height: 0;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .lawyers-section {
    background: linear-gradient(to bottom, #111111 0, #111111 245px, var(--white) 245px);
    padding: 42px 0 46px;
  }

  .lawyers-header {
    align-items: flex-end;
    margin-bottom: 28px;
  }

  .lawyers-header h2 {
    font-size: 2rem;
  }

  .lawyers-arrows {
    gap: 10px;
    padding-top: 0;
  }

  .lawyer-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .lawyers-slider {
    min-height: 0;
  }

  .lawyer-slide {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 28px 24px 34px;
  }

  .lawyer-photo img,
  .lawyer-photo-placeholder {
    width: min(100%, 270px);
    margin: 0 auto;
  }

  .lawyer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .lawyer-content ul {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .lawyer-content p {
    font-size: 1rem;
  }

  .areas-original {
    padding: 46px 0 58px;
  }

  .areas-original .section-heading {
    margin-bottom: 28px;
  }

  .areas-original .area-card {
    padding: 28px 24px;
  }

  .team-page-original {
    padding-top: 34px;
  }

  .team-filter-original {
    margin-bottom: 42px;
    min-height: 64px;
    overflow-x: auto;
    padding: 0 18px;
  }

  .team-filter-original button {
    flex: 0 0 auto;
    padding: 0 24px;
  }

  .team-list-original {
    gap: 40px;
  }

  .team-page-original .team-profile {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px 36px;
  }

  .team-page-original .team-profile:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .team-page-original .team-profile:nth-child(even) .team-profile-content,
  .team-page-original .team-profile:nth-child(even) .team-profile-photo {
    justify-self: start;
    order: initial;
  }

  .team-profile-photo {
    width: min(100%, 320px);
  }

  .page-hero {
    padding: 52px 0;
  }

  .blog-top-visual {
    min-height: 240px;
    background-position: center center;
    padding: 52px 0;
  }

  .blog-page-original {
    padding: 34px 0 64px;
  }

  .blog-page-heading h1 {
    font-size: 3rem;
  }

  .blog-page-heading p {
    font-size: 1.05rem;
  }

  .blog-filter-original {
    margin-bottom: 34px;
    padding: 0 16px;
  }

  .blog-filter-original button {
    padding: 0 18px;
  }

  .blog-filter-original button:first-child {
    padding-left: 0;
  }

  .blog-page-original .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-image {
    min-height: 220px;
  }

  .blog-list-content {
    min-height: 190px;
    padding: 26px 24px;
  }

  .logo {
    width: 190px;
    height: 40px;
  }

  .logo img {
    width: 190px;
    height: 40px;
  }

  .cards,
  .cards-two,
  .team-grid,
  .blog-grid,
  .feature-grid,
  .reasons-grid,
  .home-blog-grid,
  .check-list,
  .unit-grid,
  .stat-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .team-card,
  .post-card,
  .unit-card,
  .contact-aside,
  .feature-grid article {
    padding: 20px;
  }

  .reasons-section {
    padding: 46px 0 58px;
  }

  .reasons-section .section-heading {
    margin-bottom: 30px;
  }

  .reasons-grid {
    gap: 18px;
  }

  .reasons-grid article {
    min-height: 0;
    padding: 32px 28px;
  }

  .reason-icon {
    margin-bottom: 26px;
  }

  .home-blog-section {
    padding-bottom: 54px;
  }

  .home-blog-section .container {
    padding-top: 36px;
  }

  .home-blog-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }

  .home-blog-header h2 {
    font-size: 2rem;
  }

  .home-blog-action {
    width: 100%;
    min-width: 0;
  }

  .home-blog-card {
    grid-template-columns: 1fr;
  }

  .home-blog-image,
  .home-blog-image img {
    min-height: 210px;
  }

  .home-blog-content {
    min-height: 190px;
    padding: 26px 24px;
  }

  .cta-original {
    padding: 64px 0 70px;
    background-position: center center;
  }

  .cta-original .container,
  .footer-original .container {
    width: min(100%, 92%);
  }

  .cta-original h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .cta-original p {
    font-size: 1.1rem;
  }

  .cta-original .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-original .footer-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 30px 0;
  }

  .footer-original .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-original .footer-social {
    margin-left: 0;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 44px 0 50px;
  }

  .footer-original .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 32px;
  }

  .hero-slider {
    min-height: 580px;
  }

  .hero-content {
    padding: 68px 0;
  }

  .hero-content h1 {
    max-width: 330px;
    font-size: 2.05rem;
  }

  .hero-actions,
  .post-actions,
  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .social-section {
    padding: 34px 0;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(118px, 1fr));
    width: 100%;
    gap: 14px;
  }

  .social-links a {
    width: 100%;
    height: 98px;
  }

  .btn {
    width: 100%;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background-size: 31px 31px;
    border-width: 7px;
  }
}
