:root {
  --green-950: #000000;
  --green-900: #080808;
  --green-850: #101010;
  --green-800: #171717;
  --green-700: #252525;
  --green-600: #333333;
  --paper: #f4f3f0;
  --paper-deep: #e9e8e4;
  --ivory: #ffffff;
  --white: #ffffff;
  --ink: #181818;
  --ink-soft: #444444;
  --muted: #6b6b6b;
  --gold: #b48d52;
  --gold-bright: #d0af74;
  --gold-pale: #ead8b8;
  --line: rgba(0, 0, 0, .13);
  --line-light: rgba(255, 255, 255, .14);
  --shadow: 0 28px 80px rgba(0, 0, 0, .20);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, .10);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1240px;
  --body-scale: 1;
  --header-height: 106px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: calc(16px * var(--body-scale)); }
body {
  margin: 0;
  background: #000000;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body.high-contrast {
  --green-950: #000;
  --green-900: #050505;
  --green-850: #0c0c0c;
  --green-800: #141414;
  --paper: #fff;
  --paper-deep: #f0f0f0;
  --ivory: #fff;
  --ink: #000;
  --ink-soft: #171717;
  --muted: #292929;
  --gold: #f2c94c;
  --gold-bright: #ffe276;
  --line: rgba(0,0,0,.35);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--green-950); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--green-950);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2.5rem), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 8.5rem 0; overflow: clip; }
.section--light { background: var(--ivory); }
.section--paper { background: var(--paper); }

h1, h2, h3, blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.4rem, 6.4vw, 6.9rem); }
h2 { font-size: clamp(2.4rem, 4.4vw, 4.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
  color: var(--green-700);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--gold { color: var(--gold-bright); }

.button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}
.button--gold { background: var(--gold); color: var(--green-950); box-shadow: 0 12px 34px rgba(180,141,82,.2); }
.button--gold:hover { background: var(--gold-bright); box-shadow: 0 16px 42px rgba(180,141,82,.3); }
.button--ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.button--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.button--light { background: var(--ivory); color: var(--green-900); }
.button--small { min-height: 2.8rem; padding: .65rem 1.15rem; font-size: .68rem; }
.button--full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 2rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--gold);
  color: var(--green-800);
  font-weight: 700;
  transition: gap .25s ease, color .25s ease;
}
.text-link:hover { gap: 1rem; color: var(--gold); }
.text-link--light { color: var(--ivory); }

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  width: 100%;
  color: var(--white);
}
.topbar { border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.42); backdrop-filter: blur(12px); }
.topbar__content { min-height: 2.55rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__content > span { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.topbar__actions { display: flex; align-items: center; gap: .35rem; }
.text-control, .contrast-control {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: .7rem;
}
.text-control:hover, .contrast-control:hover { color: var(--gold-bright); }

.navbar {
  position: relative;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.96);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.navbar__content { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}
/* Logotipo oficial em PNG transparente sobre o cabeçalho preto. */
.brand__viewport {
  width: 238px;
  display: block;
}
.brand__viewport img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-menu > a:not(.button) {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .035em;
}
.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.6rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav-menu > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 1.25rem; height: 1px; margin: .28rem auto; background: var(--white); transition: transform .25s ease, opacity .25s ease; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(208,160,68,.20), transparent 32%),
    radial-gradient(circle at 30% 92%, rgba(255,255,255,.055), transparent 34%),
    linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.78)),
    #000000;
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 25%, #000 80%, transparent);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -8rem;
  width: min(50vw, 720px);
  aspect-ratio: 1;
  background: url("../assets/pattern-botanical.svg") center/contain no-repeat;
  opacity: .28;
  transform: rotate(-16deg);
}
.hero__noise { position: absolute; inset: 0; opacity: .03; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.hero__grid { padding-top: 10.5rem; padding-bottom: 7rem; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); align-items: center; gap: clamp(3rem, 7vw, 8rem); }
.hero__copy { max-width: 760px; }
.hero h1 { max-width: 830px; color: var(--ivory); }
.hero__copy > p { max-width: 700px; margin-top: 1.75rem; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }
.hero__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero__meta div { display: grid; gap: .15rem; }
.hero__meta strong { color: var(--ivory); font-family: "DM Sans", sans-serif; font-size: .85rem; letter-spacing: .02em; }
.hero__meta span { color: rgba(255,255,255,.52); font-size: .72rem; }
.hero__visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero__orbit { position: absolute; border: 1px solid rgba(208,175,116,.28); border-radius: 50%; }
.hero__orbit--one { width: 460px; height: 460px; animation: slow-spin 24s linear infinite; }
.hero__orbit--one::after { content: ""; position: absolute; top: 30px; left: 54px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 9px rgba(180,141,82,.12); }
.hero__orbit--two { width: 325px; height: 325px; border-style: dashed; opacity: .55; animation: slow-spin-reverse 19s linear infinite; }
.hero__monogram {
  width: 350px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(208,175,116,.48);
  border-radius: 24px;
  background: #000000;
  box-shadow: inset 0 0 0 9px rgba(208,175,116,.06), 0 28px 80px rgba(0,0,0,.42);
}
.hero__monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__card { position: absolute; max-width: 210px; padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.17); border-radius: 14px; background: rgba(0,0,0,.72); box-shadow: 0 18px 50px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.hero__card--top { top: 56px; right: 0; }
.hero__card--bottom { bottom: 0; left: 0; }
.hero__card-label { display: block; margin-bottom: .25rem; color: var(--gold-bright); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.hero__card strong { display: block; color: var(--ivory); font-size: .83rem; line-height: 1.4; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.48); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll i { width: 1px; height: 2.5rem; background: linear-gradient(var(--gold), transparent); animation: scroll-line 1.8s ease-in-out infinite; }

@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes slow-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes scroll-line { 0%,100% { transform: scaleY(.55); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* Institutional strip */
.institutional-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.institutional-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.institutional-strip__grid > div { min-height: 7.5rem; display: flex; align-items: center; gap: 1.1rem; padding: 1.5rem 1.7rem; border-right: 1px solid var(--line); }
.institutional-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.institutional-strip span { color: var(--gold); font-family: "Playfair Display", serif; font-size: 1.5rem; font-style: italic; }
.institutional-strip strong { color: var(--green-900); font-size: .85rem; line-height: 1.4; }

/* Editorial */
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 9rem); }
.section-heading h2 { max-width: 620px; color: var(--green-900); }
.editorial-copy { position: relative; padding-top: .5rem; }
.editorial-copy::before { content: ""; position: absolute; left: -3rem; top: .8rem; width: 1px; height: 100%; background: linear-gradient(var(--gold), transparent); }
.editorial-copy p { max-width: 680px; color: var(--ink-soft); }
.editorial-copy p + p { margin-top: 1.3rem; }
.editorial-copy .lead { color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.45; }

.section-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); align-items: end; gap: 4rem; margin-bottom: 4rem; }
.section-intro h2 { max-width: 820px; color: var(--green-900); }
.section-intro > p { padding-bottom: .4rem; color: var(--ink-soft); }
.section-intro--light h2 { color: var(--ivory); }
.section-intro--light > p { color: rgba(255,255,255,.65); }

/* Practice cards */
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.practice-card { position: relative; min-height: 350px; display: flex; flex-direction: column; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.16); overflow: hidden; transition: background-color .35s ease, transform .35s ease, box-shadow .35s ease; }
.practice-card::before { content: ""; position: absolute; inset: auto -22% -48% auto; width: 230px; aspect-ratio: 1; border: 1px solid rgba(180,141,82,.22); border-radius: 50%; transition: transform .5s ease; }
.practice-card:hover { z-index: 2; background: var(--ivory); transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.practice-card:hover::before { transform: scale(1.15); }
.practice-card__number { color: var(--gold); font-family: "Playfair Display", serif; font-size: .85rem; font-style: italic; }
.practice-card__icon { width: 3.2rem; height: 3.2rem; display: grid; place-items: center; margin: 2.1rem 0 1.6rem; border: 1px solid rgba(180,141,82,.46); border-radius: 50%; color: var(--green-800); font-size: 1.35rem; }
.practice-card h3 { color: var(--green-900); }
.practice-card p { margin-top: 1rem; color: var(--muted); font-size: .91rem; }
.practice-card__trigger { align-self: flex-start; margin-top: auto; padding: 1.2rem 0 0; border: 0; background: transparent; color: var(--green-700); cursor: pointer; font-size: .77rem; font-weight: 700; }
.practice-card__trigger span { display: inline-block; margin-left: .35rem; transition: transform .25s ease; }
.practice-card__trigger:hover span { transform: translate(.2rem, -.2rem); }

/* Sector */
.sector-section { position: relative; padding: 9rem 0; overflow: hidden; background: var(--green-900); color: var(--white); }
.sector-section__pattern { position: absolute; right: -9rem; bottom: -9rem; width: min(54vw, 760px); aspect-ratio: 1; background: url("../assets/pattern-botanical.svg") center/contain no-repeat; opacity: .42; transform: rotate(-5deg); }
.sector-section__grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: clamp(4rem, 10vw, 9rem); }
.sector-section__copy h2 { max-width: 710px; color: var(--ivory); }
.sector-section__copy p { max-width: 670px; margin-top: 1.25rem; color: rgba(255,255,255,.66); }
.sector-section__copy .button { margin-top: 2.2rem; }
.sector-list { align-self: center; border-top: 1px solid var(--line-light); }
.sector-list__item { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.2rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line-light); }
.sector-list__item > span { color: var(--gold-bright); font-family: "Playfair Display", serif; font-style: italic; }
.sector-list__item h3 { color: var(--ivory); font-size: 1.4rem; }
.sector-list__item p { margin-top: .55rem; color: rgba(255,255,255,.58); font-size: .87rem; }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process::before { content: ""; position: absolute; top: 2.35rem; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent); }
.process__item { position: relative; padding: 0 1.4rem; text-align: center; }
.process__item > span { position: relative; z-index: 1; width: 4.7rem; height: 4.7rem; display: grid; place-items: center; margin: 0 auto 1.8rem; border: 1px solid var(--gold); border-radius: 50%; background: var(--ivory); color: var(--gold); font-family: "Playfair Display", serif; font-style: italic; }
.process__item h3 { color: var(--green-900); font-size: 1.45rem; }
.process__item p { margin-top: .8rem; color: var(--muted); font-size: .88rem; }

/* Manifesto */
.manifesto { position: relative; padding: 7.5rem 0; overflow: hidden; background: var(--paper-deep); }
.manifesto::after { content: ""; position: absolute; left: -12rem; top: -10rem; width: 460px; aspect-ratio: 1; background: url("../assets/pattern-botanical.svg") center/contain no-repeat; opacity: .4; transform: rotate(155deg); }
.manifesto__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 7rem; }
.manifesto__quote { position: relative; }
.quote-mark { position: absolute; left: -1.5rem; top: -3.2rem; color: rgba(180,141,82,.28); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.manifesto blockquote { position: relative; max-width: 760px; color: var(--green-900); font-size: clamp(2.3rem, 4vw, 4.4rem); }
.manifesto__copy { padding-left: 2.5rem; border-left: 1px solid rgba(0,0,0,.18); }
.manifesto__copy p { color: var(--ink-soft); }
.manifesto .text-link--light { color: var(--green-800); }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.profile-card { min-height: 420px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--ivory); box-shadow: var(--shadow-soft); }
.profile-card__portrait { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--green-850), var(--green-700)); }
.profile-card__portrait::before, .profile-card__portrait::after { content: ""; position: absolute; border: 1px solid rgba(208,175,116,.26); border-radius: 50%; }
.profile-card__portrait::before { width: 250px; height: 250px; }
.profile-card__portrait::after { width: 170px; height: 170px; border-style: dashed; }
.profile-card__portrait span { position: relative; z-index: 1; color: var(--gold-bright); font-family: "Playfair Display", serif; font-size: 4.4rem; letter-spacing: -.08em; }
.profile-card__portrait--lais::after { background: radial-gradient(circle, rgba(255,255,255,.05), transparent 65%); }
.profile-card__portrait--team { background: linear-gradient(145deg, #151515, #9b7747); }
.profile-card__content { display: flex; flex-direction: column; justify-content: center; padding: 2.3rem; }
.profile-card__role { color: var(--gold); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.profile-card h3 { margin-top: .7rem; color: var(--green-900); }
.profile-card__content > p { margin-top: .7rem; color: var(--muted); font-size: .88rem; }
.profile-card__content > p:first-of-type { color: var(--green-700); font-weight: 700; }
.profile-card a { align-self: flex-start; margin-top: 1.4rem; color: var(--green-700); font-size: .78rem; font-weight: 700; }

/* Locations */
.locations { padding: 8.5rem 0; background: var(--green-950); color: var(--white); }
.locations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.location-card { min-height: 330px; display: grid; grid-template-columns: .66fr 1.34fr; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.location-card__map { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, rgba(196,151,67,.28), transparent 62%); }
.location-card__map::before, .location-card__map::after { content: ""; position: absolute; border: 1px solid rgba(208,175,116,.3); border-radius: 50%; }
.location-card__map::before { width: 210px; height: 210px; }
.location-card__map::after { width: 125px; height: 125px; }
.location-card__map span { position: relative; z-index: 1; color: var(--gold-bright); font-family: "Playfair Display", serif; font-size: 3.5rem; }
.location-card__content { display: flex; flex-direction: column; justify-content: center; padding: 2.3rem; }
.location-card__label { color: var(--gold-bright); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.location-card h3 { margin-top: .45rem; color: var(--ivory); font-size: 2.2rem; }
.location-card p { margin-top: 1rem; color: rgba(255,255,255,.62); font-size: .86rem; }
.location-card a { align-self: flex-start; margin-top: 1.25rem; color: var(--gold-bright); font-size: .78rem; font-weight: 700; }

/* Insights */
.insights-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1.2rem; }
.insight-card { min-height: 310px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); background: rgba(242,231,214,.4); transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease; }
.insight-card:hover { transform: translateY(-7px); background: var(--paper); box-shadow: var(--shadow-soft); }
.insight-card--featured { min-height: 390px; background: var(--green-900); color: var(--white); }
.insight-card__tag { color: var(--gold); font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.insight-card h3 { margin-top: 1.35rem; color: var(--green-900); }
.insight-card--featured h3 { color: var(--ivory); font-size: clamp(2rem, 3vw, 3rem); }
.insight-card p { margin-top: 1rem; color: rgba(255,255,255,.62); }
.insight-card a { align-self: flex-start; margin-top: auto; padding-top: 1.5rem; color: var(--green-700); font-size: .78rem; font-weight: 700; }
.insight-card--featured a { color: var(--gold-bright); }

/* Contact */
.contact-section { position: relative; padding: 9rem 0; overflow: hidden; background: linear-gradient(135deg, var(--green-850), var(--green-950)); color: var(--white); }
.contact-section::after { content: ""; position: absolute; right: -10rem; top: -11rem; width: 540px; aspect-ratio: 1; background: url("../assets/pattern-botanical.svg") center/contain no-repeat; opacity: .32; transform: rotate(8deg); }
.contact-section__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 9vw, 8rem); }
.contact-section__copy h2 { max-width: 540px; color: var(--ivory); }
.contact-section__copy > p { max-width: 540px; margin-top: 1.3rem; color: rgba(255,255,255,.64); }
.contact-list { margin-top: 2.5rem; border-top: 1px solid var(--line-light); }
.contact-list > a, .contact-list > div { display: grid; gap: .18rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-light); }
.contact-list span { color: var(--gold-bright); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { color: var(--ivory); font-size: .87rem; font-weight: 600; overflow-wrap: anywhere; }
.contact-form { padding: clamp(1.5rem, 3.5vw, 3rem); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row { display: grid; gap: .45rem; margin-bottom: 1rem; }
.form-row label { color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(0,0,0,.12);
  color: var(--white);
  padding: .9rem 1rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.form-row input, .form-row select { min-height: 3.2rem; }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row select option { color: var(--ink); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold-bright); background: rgba(0,0,0,.2); }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin: .3rem 0 1.3rem; color: rgba(255,255,255,.58); font-size: .72rem; }
.checkbox-row input { margin-top: .22rem; accent-color: var(--gold); }
.form-note { margin-top: 1rem; color: rgba(255,255,255,.44); font-size: .66rem; text-align: center; }

/* Footer */
.footer { background: #000000; color: var(--white); }
.footer__top { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 3rem; padding: 5.5rem 0 4rem; }
.footer__brand {
  align-self: start;
  padding: 0;
  background: transparent;
}
.footer__logo-viewport {
  width: 235px;
  display: block;
}
.footer__logo-viewport img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__brand p {
  max-width: 330px;
  margin-top: 1.3rem;
  color: rgba(255,255,255,.56);
  font-size: .84rem;
}
.footer__column { display: flex; flex-direction: column; gap: .65rem; }
.footer__column h2 { margin-bottom: .5rem; color: var(--gold-bright); font-family: "DM Sans", sans-serif; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__column a, .footer__column p, .footer-link { color: rgba(255,255,255,.56); font-size: .78rem; }
.footer__column a:hover, .footer-link:hover { color: var(--gold-bright); }
.footer-link { align-self: flex-start; padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.footer__bottom { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .67rem; }

/* Floating / cookie / modal */
.floating-whatsapp { position: fixed; z-index: 80; right: 1.4rem; bottom: 1.4rem; width: 3.8rem; height: 3.8rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: var(--green-700); box-shadow: 0 12px 35px rgba(0,0,0,.24); transition: transform .25s ease, background-color .25s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); background: var(--green-600); }
.floating-whatsapp svg { width: 1.7rem; fill: var(--white); }
.cookie-banner { position: fixed; z-index: 110; left: 50%; bottom: 1.3rem; width: min(calc(100% - 2rem), 760px); display: none; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(0,0,0,.96); color: rgba(255,255,255,.7); box-shadow: var(--shadow); transform: translateX(-50%); backdrop-filter: blur(12px); }
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { font-size: .75rem; }
.cookie-banner p button { padding: 0; border: 0; background: transparent; color: var(--gold-bright); cursor: pointer; text-decoration: underline; }
.modal { width: min(calc(100% - 2rem), 660px); padding: clamp(1.5rem, 4vw, 3rem); border: 0; border-radius: var(--radius-md); background: var(--ivory); color: var(--ink); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 2.6rem; height: 2.6rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.45rem; line-height: 1; }
.modal h2 { color: var(--green-900); font-size: clamp(2rem, 4vw, 3.3rem); }
.modal > p { margin: 1.2rem 0 1.8rem; color: var(--ink-soft); }
.modal__scroll { max-height: 55vh; overflow-y: auto; margin: 1.3rem 0 1.8rem; padding-right: .7rem; color: var(--ink-soft); }
.modal__scroll p + p { margin-top: 1rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal--delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  :root { --header-height: 92px; }
  .nav-menu { gap: .9rem; }
  .nav-menu > a:not(.button) { font-size: .69rem; }
  .hero__grid { grid-template-columns: 1fr .72fr; gap: 2rem; }
  .hero__visual { min-height: 440px; transform: scale(.88); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card__portrait { min-height: 245px; }
  .footer__top { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; }
}

@media (max-width: 900px) {
  .section { padding: 6.5rem 0; }
  .topbar__content > span { font-size: .62rem; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(.29rem) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-.29rem) rotate(-45deg); }
  .nav-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    padding: 7rem 2rem 2rem;
    background: var(--green-950);
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.2,.65,.25,1);
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu > a:not(.button) { font-family: "Playfair Display", serif; font-size: 1.9rem; }
  .nav-menu .button { margin-top: .8rem; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 12rem; padding-bottom: 7rem; }
  .hero__visual { min-height: 420px; max-width: 520px; width: 100%; margin-inline: auto; }
  .hero__scroll { display: none; }
  .institutional-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .institutional-strip__grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .split-layout, .section-intro, .sector-section__grid, .manifesto__grid, .contact-section__grid { grid-template-columns: 1fr; gap: 3rem; }
  .editorial-copy::before { display: none; }
  .section-intro { align-items: start; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .process::before { display: none; }
  .manifesto__copy { padding-left: 0; border-left: 0; }
  .team-grid, .locations__grid { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: .8fr 1.2fr; }
  .profile-card__portrait { min-height: 360px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card--featured { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .section { padding: 5.2rem 0; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .navbar__content { min-height: 84px; }
  .brand { padding: 0; }
  .brand__viewport { width: 188px; }
  .brand__viewport img { width: 100%; height: auto; }
  .hero__grid { padding-top: 8.2rem; padding-bottom: 4.8rem; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.55rem); }
  .hero__copy > p { font-size: .94rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__meta { grid-template-columns: 1fr; gap: .9rem; }
  .hero__meta div { padding-bottom: .8rem; border-bottom: 1px solid rgba(255,255,255,.09); }
  .hero__visual { min-height: 330px; transform: scale(.73); margin: -2.5rem auto; }
  .hero__card--top { right: -48px; }
  .hero__card--bottom { left: -48px; }
  .institutional-strip__grid { grid-template-columns: 1fr; }
  .institutional-strip__grid > div, .institutional-strip__grid > div:nth-child(3) { min-height: 5.3rem; border-left: 1px solid var(--line); }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 320px; }
  .sector-section { padding: 6rem 0; }
  .process { grid-template-columns: 1fr; }
  .process__item { padding: 0; text-align: left; display: grid; grid-template-columns: 4rem 1fr; column-gap: 1rem; }
  .process__item > span { width: 4rem; height: 4rem; grid-row: 1 / 3; margin: 0; }
  .process__item p { margin-top: .5rem; }
  .manifesto { padding: 5.5rem 0; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-card__portrait { min-height: 240px; }
  .location-card { grid-template-columns: 1fr; }
  .location-card__map { min-height: 200px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card--featured { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__column:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 1.2rem 0; }
  .floating-whatsapp { width: 3.4rem; height: 3.4rem; right: .9rem; bottom: .9rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: .7rem; }
  .cookie-banner .button { width: 100%; }
}


/* Ajustes institucionais — versão 7 */
.site-header .navbar {
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.brand__viewport {
  width: 285px;
}
.brand__viewport img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}

/* The repeated central logo was removed; the lighting effect remains. */
.hero__center-glow {
  position: relative;
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(208,175,116,.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(207,165,75,.20) 0%, rgba(207,165,75,.06) 32%, transparent 68%);
  box-shadow:
    inset 0 0 70px rgba(207,165,75,.08),
    0 0 100px rgba(207,165,75,.07);
}
.hero__center-glow::before,
.hero__center-glow::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(207,165,75,.18);
  border-radius: 50%;
}
.hero__center-glow::after {
  inset: 35%;
  border-style: dashed;
}

/* With one institutional item left, the hero information remains compact. */
.hero__meta {
  grid-template-columns: minmax(220px, 360px);
}

/* Photographic team cards */
.team-grid--photos {
  align-items: stretch;
  gap: 1.5rem;
}
.team-photo-card {
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}
.team-photo-card__media {
  position: relative;
  aspect-ratio: 1.53 / 1;
  margin: 0;
  overflow: hidden;
  background: #080808;
}
.team-photo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.58), transparent 48%);
  pointer-events: none;
}
.team-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.65,.25,1);
}
.team-photo-card:hover .team-photo-card__media img {
  transform: scale(1.025);
}
.team-photo-card__media figcaption {
  position: absolute;
  z-index: 1;
  left: 2rem;
  bottom: 1.55rem;
  color: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.team-photo-card__content {
  min-height: 215px;
  padding: 2.2rem;
}
.team-photo-card__content h3 {
  margin-top: .65rem;
  color: var(--green-900);
}
.team-photo-card__content p {
  max-width: 560px;
  margin-top: .85rem;
  color: var(--muted);
  font-size: .9rem;
}

/* Footer brand is now text-only. */
.footer__brand {
  padding-top: .15rem;
}
.footer__brand p {
  max-width: 310px;
  margin-top: 0;
  color: rgba(255,255,255,.62);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .brand__viewport { width: 240px; }
  .hero__center-glow { width: 300px; }
}
@media (max-width: 640px) {
  .brand__viewport { width: 205px; }
  .hero__visual { min-height: 300px; }
  .hero__center-glow { width: 300px; }
  .team-photo-card__content { min-height: auto; padding: 1.65rem; }
}


/* Ajustes solicitados — versão 8 */

/* Assinatura visual refeita integralmente em SVG vetorial. */
.brand__viewport {
  width: 310px;
  max-width: 36vw;
}
.brand__viewport img {
  display: block;
  width: 100%;
  height: auto;
}

/* Verde tradicional do WhatsApp. */
.floating-whatsapp {
  border-color: rgba(255,255,255,.48);
  background: #25D366;
  box-shadow:
    0 14px 36px rgba(0,0,0,.28),
    0 0 0 7px rgba(37,211,102,.13);
}
.floating-whatsapp:hover {
  background: #1FBE5B;
  box-shadow:
    0 17px 42px rgba(0,0,0,.32),
    0 0 0 9px rgba(37,211,102,.16);
}

/* Mais legibilidade na faixa de compromissos. */
.institutional-strip__grid > div {
  min-height: 8.6rem;
  gap: 1.35rem;
  padding: 1.65rem 1.8rem;
}
.institutional-strip span {
  flex: 0 0 auto;
  font-size: clamp(2rem, 2.35vw, 2.65rem);
  line-height: 1;
}
.institutional-strip strong {
  font-size: clamp(.96rem, 1.08vw, 1.12rem);
  line-height: 1.45;
}

/* Áreas de atuação sem numeração e sem pictogramas. */
.practice-card {
  min-height: 315px;
  padding-top: 2.5rem;
}
.practice-card h3 {
  max-width: 290px;
  margin-top: 0;
}
.practice-card p {
  margin-top: 1.25rem;
}
.practice-card__number,
.practice-card__icon {
  display: none !important;
}

/* Redes sociais em dourado sobre o rodapé preto. */
.footer__social {
  align-items: flex-start;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .2rem;
}
.social-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209,166,74,.58);
  border-radius: 50%;
  color: #D1A64A;
  background: rgba(209,166,74,.035);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease;
}
.social-icon:hover {
  transform: translateY(-3px);
  border-color: #D1A64A;
  background: rgba(209,166,74,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
}
.social-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon svg rect,
.social-icon svg circle {
  fill: none;
}
.social-icon__cutout {
  fill: #000 !important;
  stroke: #000 !important;
}

@media (max-width: 900px) {
  .brand__viewport {
    width: 270px;
    max-width: 56vw;
  }
}
@media (max-width: 640px) {
  .brand__viewport {
    width: 225px;
    max-width: 66vw;
  }
  .institutional-strip__grid > div {
    min-height: 6.4rem;
  }
  .institutional-strip span {
    font-size: 2.05rem;
  }
  .institutional-strip strong {
    font-size: .98rem;
  }
  .social-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}


/* Ajustes solicitados — versão 9 */
.brand__viewport {
  width: 360px;
  max-width: 40vw;
}
.brand__viewport img {
  width: 100%;
  height: auto;
  image-rendering: auto;
}
@media (max-width: 900px) {
  .brand__viewport { width: 300px; max-width: 60vw; }
}
@media (max-width: 640px) {
  .brand__viewport { width: 230px; max-width: 72vw; }
}

/* Melhor enquadramento da fotografia dos sócios */
.team-photo-card:first-child .team-photo-card__media img {
  object-position: center 18%;
}

/* Elementos adicionais em torno do círculo inicial */
.hero__chip {
  position: absolute;
  max-width: 220px;
  padding: .85rem 1rem;
  border: 1px solid rgba(209,166,74,.26);
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
.hero__chip span {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: .73rem;
  line-height: 1.35;
}
.hero__chip--left { left: -38px; top: 142px; max-width: 185px; }
.hero__chip--right { right: -26px; top: 196px; max-width: 230px; }
.hero__chip--upper { left: 50%; top: 34px; transform: translateX(-50%); max-width: 280px; }
.hero__chip--lower { left: 54%; bottom: 38px; transform: translateX(-14%); max-width: 270px; }
@media (max-width: 900px) {
  .hero__chip { padding: .72rem .9rem; }
  .hero__chip span { font-size: .69rem; }
  .hero__chip--left { left: -10px; top: 126px; }
  .hero__chip--right { right: -4px; top: 206px; }
}
@media (max-width: 640px) {
  .hero__chip { display: none; }
}


/* Ajustes finais solicitados — versão 10 */

/* Mantém a logo de alta definição nas dimensões aprovadas na versão anterior. */
.brand__viewport {
  width: 310px;
  max-width: 36vw;
}
.brand__viewport img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

/* Informações distribuídas de modo equilibrado ao redor do círculo. */
.hero__card,
.hero__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: .72rem .9rem;
  text-align: center;
  border: 1px solid rgba(209,166,74,.30);
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.hero__card {
  max-width: 184px;
  flex-direction: column;
}
.hero__chip {
  max-width: 205px;
}
.hero__card strong,
.hero__chip span {
  display: block;
  color: rgba(255,255,255,.94);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
}
.hero__card-label {
  margin-bottom: .15rem;
  font-size: .54rem;
  line-height: 1.2;
}
.hero__card--top {
  top: 68px;
  right: 10px;
}
.hero__chip--upper {
  top: 46px;
  left: 50%;
  max-width: 232px;
  transform: translateX(-50%);
}
.hero__chip--left {
  top: 218px;
  left: 2px;
  max-width: 176px;
}
.hero__chip--right {
  top: 218px;
  right: 2px;
  max-width: 188px;
}
.hero__card--bottom {
  bottom: 54px;
  left: 10px;
}
.hero__chip--lower {
  bottom: 38px;
  left: 50%;
  max-width: 236px;
  transform: translateX(-50%);
}

/* Alinhamento óptico uniforme entre os números e os compromissos. */
.institutional-strip__grid > div {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
}
.institutional-strip span,
.institutional-strip strong {
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  margin: 0;
}
.institutional-strip span {
  justify-content: center;
  line-height: 1;
}
.institutional-strip strong {
  position: relative;
  top: .02em;
  line-height: 1.32;
}

/* Textos corridos justificados; títulos e chamadas maiores permanecem à esquerda. */
.hero__copy > p,
.editorial-copy p:not(.lead),
.section-intro > p,
.practice-card p,
.sector-section__copy p,
.sector-list__item p,
.process__item p,
.manifesto__copy p,
.team-photo-card__content p,
.location-card p,
.insight-card p,
.contact-section__copy > p,
.modal p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Atuação setorial sem números e com títulos no dourado da identidade. */
.sector-list__item {
  grid-template-columns: 1fr;
  gap: 0;
}
.sector-list__item > span {
  display: none !important;
}
.sector-list__item h3 {
  color: #D1A64A;
}

@media (max-width: 900px) {
  .brand__viewport {
    width: 270px;
    max-width: 56vw;
  }
  .hero__card,
  .hero__chip {
    padding: .65rem .78rem;
  }
  .hero__card strong,
  .hero__chip span {
    font-size: .68rem;
  }
  .hero__chip--upper { top: 58px; }
  .hero__chip--left { left: 6px; top: 210px; }
  .hero__chip--right { right: 6px; top: 210px; }
  .hero__card--top { top: 76px; right: 6px; }
  .hero__card--bottom { bottom: 52px; left: 6px; }
  .hero__chip--lower { bottom: 38px; }
}

@media (max-width: 640px) {
  .brand__viewport {
    width: 225px;
    max-width: 66vw;
  }
  .institutional-strip__grid > div {
    grid-template-columns: 3rem minmax(0, 1fr);
  }
  .institutional-strip span,
  .institutional-strip strong {
    min-height: 2.75rem;
  }
}

/* Refinamento da composição circular — versão 10.1 */
.hero__chip--upper {
  top: 74px;
  left: 4px;
  max-width: 214px;
  transform: none;
}
.hero__card--top {
  top: 74px;
  right: 4px;
  max-width: 176px;
}
.hero__chip--left {
  top: 224px;
  left: -4px;
  max-width: 164px;
}
.hero__chip--right {
  top: 224px;
  right: -4px;
  max-width: 184px;
}
.hero__card--bottom {
  bottom: 64px;
  left: 4px;
  max-width: 174px;
}
.hero__chip--lower {
  right: 4px;
  bottom: 64px;
  left: auto;
  max-width: 224px;
  transform: none;
}

@media (max-width: 900px) {
  .hero__chip--upper { top: 80px; left: 4px; }
  .hero__card--top { top: 80px; right: 4px; }
  .hero__chip--left { top: 220px; left: 0; }
  .hero__chip--right { top: 220px; right: 0; }
  .hero__card--bottom { bottom: 58px; left: 4px; }
  .hero__chip--lower { right: 4px; bottom: 58px; }
}

@media (max-width: 640px) {
  .hero__card,
  .hero__chip {
    display: none;
  }
  .hero__visual {
    min-height: 240px;
  }
}


/* Ajustes finais solicitados — versão 11 */

/* Logo compacta, mantendo a imagem em alta definição. */
.brand__viewport {
  width: 238px;
  max-width: 30vw;
}
.brand__viewport img {
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

/* Textos alinhados, sem divisão automática de palavras. */
.hero__copy > p,
.editorial-copy p,
.section-intro > p,
.practice-card p,
.sector-section__copy p,
.sector-list__item p,
.process__item p,
.manifesto__copy p,
.team-photo-card__content p,
.location-showcase p,
.insight-card p,
.contact-section__copy > p,
.modal p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

/* O texto institucional de abertura editorial também permanece justificado. */
.editorial-copy .lead {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Unidades em uma única composição: imagem circular e dados empilhados. */
.location-showcase {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.location-showcase__photo {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(208,175,116,.42);
  border-radius: 50%;
  background: #0b0b0b;
  box-shadow:
    0 0 0 14px rgba(208,175,116,.045),
    0 24px 70px rgba(0,0,0,.34);
}
.location-showcase__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0,0,0,.42);
  pointer-events: none;
}
.location-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-showcase__photo figcaption {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 1.55rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,.72);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.location-showcase__details {
  border-top: 1px solid rgba(255,255,255,.14);
}
.location-showcase__unit {
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.location-showcase__unit h3 {
  margin-top: .45rem;
  color: var(--ivory);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}
.location-showcase__unit p {
  max-width: 660px;
  margin-top: .85rem;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}
.location-showcase__unit a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .brand__viewport {
    width: 205px;
    max-width: 48vw;
  }
  .location-showcase {
    grid-template-columns: 1fr;
  }
  .location-showcase__photo {
    width: min(78vw, 390px);
  }
}

@media (max-width: 640px) {
  .brand__viewport {
    width: 188px;
    max-width: 62vw;
  }
  .location-showcase {
    gap: 2.25rem;
    padding: 1.4rem;
  }
  .location-showcase__photo {
    width: min(82vw, 330px);
  }
  .location-showcase__unit {
    padding: 1.7rem 0;
  }
}


/* Ajustes editoriais e seção de depoimentos — versão 12 */

.hero__visual { top: -42px; }

.editorial-copy .lead--left {
  text-align: left !important;
  text-justify: auto !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  word-break: normal;
  overflow-wrap: normal;
}

.editorial-copy p:not(.lead),
.hero__copy > p,
.section-intro > p,
.practice-card p,
.sector-section__copy p,
.sector-list__item p,
.process__item p,
.manifesto__copy p,
.team-photo-card__content p,
.location-showcase p,
.insight-card p,
.contact-section__copy > p,
.modal p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  word-break: normal;
  overflow-wrap: normal;
}

.section-intro--stacked {
  display: block;
  margin-bottom: 4rem;
}
.section-intro--stacked > div { width: 100%; }
.section-intro--stacked h2 {
  width: 100%;
  max-width: none;
}
.section-intro--stacked > p {
  max-width: 920px;
  margin-top: 1.35rem;
  padding-bottom: 0;
}

/* Avaliações e depoimentos */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(180,141,82,.10), transparent 26%),
    var(--paper-deep);
}
.testimonials::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  width: 470px;
  aspect-ratio: 1;
  background: url("../assets/pattern-botanical.svg") center/contain no-repeat;
  opacity: .16;
  transform: rotate(-22deg);
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials__heading {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.testimonials__heading .eyebrow { justify-content: center; }
.testimonials__heading .eyebrow::before { display: none; }
.testimonials__heading h2 { color: var(--green-900); }
.testimonials__heading > p {
  max-width: 650px;
  margin: 1.3rem auto 0;
  color: var(--ink-soft);
  text-align: center;
  hyphens: none;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.testimonial-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: .14em;
}
.testimonial-card blockquote {
  margin: 2rem 0;
  color: var(--green-900);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .95rem;
  margin-top: auto;
}
.testimonial-card__avatar {
  width: 3.3rem;
  height: 3.3rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: .95rem;
}
.testimonial-card__author div {
  display: grid;
  gap: .1rem;
}
.testimonial-card__author strong {
  color: var(--green-900);
  font-size: .84rem;
}
.testimonial-card__author div > span {
  color: var(--muted);
  font-size: .72rem;
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 2.2rem;
}
.testimonials__dots span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
}
.testimonials__dots .is-active { background: var(--green-900); }

/* Rodapé em três colunas alinhadas à esquerda. */
.footer__top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: start;
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}
.footer__column,
.footer__social {
  width: 100%;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 900px) {
  .hero__visual { top: -22px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 280px; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .hero__visual { top: 0; }
  .section-intro--stacked { margin-bottom: 3rem; }
  .testimonials { padding: 6rem 0; }
  .testimonials__heading {
    margin-bottom: 2.7rem;
    text-align: left;
  }
  .testimonials__heading .eyebrow { justify-content: flex-start; }
  .testimonials__heading > p {
    margin-left: 0;
    text-align: left;
  }
  .testimonial-card { padding: 1.7rem; }
  .footer__top { grid-template-columns: 1fr; }
}


/* Refinamentos de alinhamento e rodapé — versão 13 */

/*
 * As introduções editoriais continuam alinhadas à esquerda,
 * mas passam a ocupar um bloco centralizado e visualmente equilibrado.
 */
.section-intro--stacked {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

/*
 * O texto menor utiliza a mesma largura do título,
 * evitando o recuo visual e terminando no mesmo alinhamento lateral.
 */
.section-intro--stacked > p {
  width: 100%;
  max-width: none;
  margin-top: 1.45rem;
}

/*
 * Rodapé mais compacto: as três colunas ficam agrupadas,
 * em vez de ocupar toda a largura disponível.
 */
.footer__top {
  width: min(calc(100% - 2.5rem), 900px);
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
  margin-right: auto;
  grid-template-columns: 1.15fr .9fr 1fr;
  gap: 2.4rem;
  padding: 3.6rem 0 2.8rem;
}

.footer__column {
  gap: .45rem;
}

.footer__column h2 {
  margin-bottom: .25rem;
}

.footer__column a,
.footer__column p,
.footer-link {
  line-height: 1.45;
}

.social-icons {
  gap: .55rem;
}

.social-icon {
  width: 2.8rem;
  height: 2.8rem;
}

@media (max-width: 900px) {
  .section-intro--stacked {
    max-width: 760px;
  }

  .footer__top {
    width: min(calc(100% - 2.5rem), 700px);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .section-intro--stacked {
    max-width: none;
  }

  .footer__top {
    width: min(calc(100% - 2.5rem), 420px);
    grid-template-columns: 1fr;
    gap: 2.1rem;
    padding: 3.2rem 0 2.5rem;
  }
}


/* Compactação adicional do rodapé — versão 14 */

@media (min-width: 1101px) {
  .footer__top {
    width: min(50vw, 720px);
    grid-template-columns: 1.2fr .85fr .9fr;
    gap: 1.15rem;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .footer__top {
    width: min(calc(100% - 2.5rem), 680px);
    grid-template-columns: 1.15fr .85fr .9fr;
    gap: 1.25rem;
  }
}

.footer__column {
  min-width: 0;
}

.footer__column a,
.footer__column p,
.footer-link {
  font-size: .76rem;
}

.social-icons {
  flex-wrap: nowrap;
  gap: .42rem;
}

.social-icon {
  width: 2.6rem;
  height: 2.6rem;
}


/* Alinhamento proporcional definitivo do rodapé — versão 15 */

@media (min-width: 1101px) {
  .footer__top {
    width: max-content;
    max-width: calc(100% - 2.5rem);
    margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
    margin-right: auto;
    grid-template-columns: 180px 180px max-content;
    column-gap: 2.1rem;
    row-gap: 0;
    justify-content: start;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .footer__top {
    width: max-content;
    max-width: calc(100% - 2.5rem);
    margin-inline: auto;
    grid-template-columns: 170px 180px max-content;
    column-gap: 1.8rem;
    row-gap: 0;
    justify-content: start;
  }
}

.footer__column,
.footer__social {
  width: auto;
}

.footer__social {
  min-width: max-content;
}

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

/* ============================================================
   Barra de acessibilidade
   ============================================================ */
.a11y-bar {
  position: fixed;
  z-index: 79;
  left: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  gap: .35rem;
  padding: .35rem;
  border-radius: 999px;
  background: var(--green-800);
  border: 1px solid var(--line-light);
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
}
.a11y-btn {
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 .5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.a11y-btn:hover { background: var(--gold); color: var(--green-950); }
.a11y-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.a11y-btn.contrast-control[aria-pressed="true"] { background: var(--gold); color: var(--green-950); }
@media (max-width: 600px) {
  .a11y-bar { left: .9rem; bottom: .9rem; padding: .28rem; gap: .28rem; }
  .a11y-btn { min-width: 2.1rem; height: 2.1rem; font-size: .88rem; }
}

/* ============================================================
   Blog — índice e artigos
   ============================================================ */
.page-hero {
  background: var(--green-950);
  color: var(--white);
  padding: calc(var(--header-height) + 3.4rem) 0 3.4rem;
}
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: .6rem 0 .8rem;
  max-width: 18ch;
}
.page-hero p { color: rgba(255,255,255,.72); max-width: 60ch; margin: 0; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,.78); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__tag {
  align-self: flex-start;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.post-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.22;
  margin: 0;
}
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card h2 a:hover { color: var(--gold); }
.post-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.post-card__meta { font-size: .82rem; color: var(--muted); margin-top: auto; padding-top: .4rem; }

/* Artigo individual */
.article { background: var(--paper); }
.article__wrap { max-width: 760px; margin: 0 auto; }
.article__body { font-size: 1.06rem; color: var(--ink); }
.article__body h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 2.4rem 0 .8rem;
}
.article__body h3 { font-size: 1.2rem; margin: 1.8rem 0 .5rem; }
.article__body p { margin: 0 0 1.15rem; }
.article__body ul { margin: 0 0 1.3rem; padding-left: 1.2rem; }
.article__body li { margin-bottom: .5rem; }
.article__body strong { color: var(--ink); }
.article__meta { font-size: .9rem; color: var(--muted); margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.article__cta {
  margin-top: 2.6rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--green-950);
  color: var(--white);
  text-align: center;
}
.article__cta h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; margin: 0 0 .6rem; color: var(--white); }
.article__cta p { color: rgba(255,255,255,.72); margin: 0 0 1.2rem; }
.article__disclaimer { margin-top: 2rem; font-size: .85rem; color: var(--muted); font-style: italic; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.back-to-blog { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2.2rem; color: var(--ink); font-weight: 600; text-decoration: none; }
.back-to-blog:hover { color: var(--gold); }
