:root {
  --green-950: #071b18;
  --green-900: #0b2b26;
  --green-800: #1f392e;
  --graphite: #111513;
  --ivory: #f3efe7;
  --ivory-soft: #e9e1d5;
  --gold: #b89552;
  --gold-bright: #d1ad68;
  --ink-on-dark: #f7f3ec;
  --muted-on-dark: #c9c5bd;
  --ink-on-light: #18221e;
  --line-dark: rgba(243, 239, 231, 0.15);
  --line-light: rgba(11, 43, 38, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-on-dark);
  background: var(--green-950);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand { width: 220px; display: flex; align-items: center; }
.brand img { width: 220px; height: auto; display: block; }
.main-nav { justify-self: center; display: flex; gap: 2.1rem; }
.main-nav a {
  position: relative;
  padding: .4rem 0;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(247,243,236,.83);
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.main-nav a:hover { color: var(--gold-bright); }
.main-nav a:hover::after { right: 0; }
.header-cta {
  padding: .82rem 1.05rem;
  border: 1px solid rgba(209,173,104,.65);
  color: var(--gold-bright);
  font-size: .70rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover { background: var(--gold); color: var(--green-950); }
.menu-toggle { display: none; }

.hero {
  min-height: 690px;
  background:
    radial-gradient(circle at 74% 35%, rgba(31,57,46,.35), transparent 34%),
    linear-gradient(115deg, #071915 0%, #0a211d 50%, #07110f 100%);
  padding-top: 86px;
  overflow: hidden;
}
.hero-grid {
  min-height: 604px;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: stretch;
}
.hero-copy {
  align-self: center;
  max-width: 630px;
  padding: 3.4rem 0 2.5rem;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold-bright);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 625px;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5.45vw, 5.55rem);
  line-height: .93;
  font-weight: 500;
  letter-spacing: -.024em;
  text-wrap: balance;
}
.hero-lead {
  margin: 1.45rem 0 0;
  max-width: 565px;
  color: var(--muted-on-dark);
  font-size: clamp(.96rem, 1.1vw, 1.06rem);
  line-height: 1.72;
}
.hero-actions { margin-top: 1.9rem; display: flex; align-items: center; gap: 1.7rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 48px;
  padding: 0 1.2rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.button-primary { background: var(--gold); color: #0a1613; transition: background .2s ease, transform .2s ease; }
.button-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding-bottom: .38rem;
  color: var(--ivory);
  font-size: .84rem;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(247,243,236,.35);
  transform-origin: left;
  transition: background .2s ease, transform .2s ease;
}
.text-link:hover { color: var(--gold-bright); }
.text-link:hover::after { background: var(--gold); transform: scaleX(.72); }
.link-arrow { transition: transform .2s ease; }
.text-link:hover .link-arrow { transform: translateX(4px); }
.hero-meta {
  margin-top: 3rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.meta-label {
  display: block;
  margin-bottom: .32rem;
  color: rgba(201,197,189,.7);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-meta strong { font-size: .78rem; font-weight: 500; }

.hero-portrait {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 604px;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(7,27,24,.72) 0%, rgba(7,27,24,.12) 22%, transparent 48%), linear-gradient(to top, rgba(7,27,24,.72), transparent 30%);
  pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 34%; }
.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  bottom: 1.7rem;
  right: 1.7rem;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-portrait figcaption span { display: block; color: var(--ivory); font-size: .72rem; }
.hero-portrait figcaption small { display: block; margin-top: .35rem; color: var(--gold-bright); font-size: .58rem; }
.hero-rule { height: 3px; background: linear-gradient(90deg, var(--gold) 0 11%, transparent 11%); }

.positioning { background: var(--ivory); color: var(--ink-on-light); padding: 4.1rem 0 4.7rem; }
.positioning-grid { display: grid; grid-template-columns: .65fr 1.35fr 1fr; gap: 3rem; align-items: start; }
.section-index { color: #6d665d; font-size: .70rem; letter-spacing: .14em; text-transform: uppercase; padding-top: .55rem; }
.positioning h2,
.section-heading h2,
.experience h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.02em;
}
.positioning h2 { font-size: clamp(2.2rem, 3.5vw, 3.6rem); line-height: 1.02; }
.positioning p { margin: .45rem 0 0; color: #4d514d; line-height: 1.75; font-size: .95rem; }

.practice {
  background: var(--green-950);
  color: var(--ink-on-dark);
  padding: 6rem 0 6.5rem;
  border-top: 1px solid var(--line-dark);
}
.section-heading {
  display: grid;
  grid-template-columns: .62fr 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.6rem;
}
.section-index-light { color: rgba(201,197,189,.66); }
.eyebrow-muted { color: var(--gold); margin-bottom: .8rem; }
.section-heading h2 { max-width: 630px; font-size: clamp(2.55rem, 4vw, 4.25rem); line-height: .98; }
.section-intro { margin: .55rem 0 0; max-width: 390px; color: var(--muted-on-dark); font-size: .92rem; line-height: 1.75; }
.practice-list { border-top: 1px solid var(--line-dark); }
.practice-item {
  display: grid;
  grid-template-columns: .25fr 1.45fr .55fr;
  gap: 2.2rem;
  align-items: center;
  min-height: 150px;
  padding: 2.15rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background .25s ease, padding .25s ease;
}
.practice-item:hover {
  background: linear-gradient(90deg, rgba(184,149,82,.06), transparent 70%);
  padding-left: 1rem;
  padding-right: 1rem;
}
.practice-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(209,173,104,.62);
}
.practice-body h3 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1;
}
.practice-body p { margin: 0; max-width: 650px; color: var(--muted-on-dark); font-size: .92rem; line-height: 1.65; }
.practice-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold-bright);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.practice-link span { transition: transform .2s ease; }
.practice-link:hover span { transform: translate(3px,-2px); }
.practice-item-featured .practice-number { color: var(--gold-bright); }

.experience {
  background: var(--ivory);
  color: var(--ink-on-light);
  padding: 6.5rem 0 7rem;
}
.experience-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}
.experience-photo {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  background: #1a1a18;
}
.experience-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(7,27,24,.5), transparent);
  pointer-events: none;
}
.experience-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 53% 34%; }
.experience-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  bottom: 1.4rem;
  color: var(--gold-bright);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.experience-copy { max-width: 650px; }
.experience-copy .section-index { margin-bottom: 2.4rem; }
.experience h2 { max-width: 620px; font-size: clamp(3rem, 4.5vw, 4.85rem); line-height: .95; }
.experience-lead { margin-top: 1.8rem !important; font-size: 1.06rem !important; color: #303a35 !important; }
.experience-copy > p { margin: 1rem 0 0; max-width: 620px; color: #555c57; font-size: .94rem; line-height: 1.78; }
.experience-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  margin: 2.7rem 0 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.experience-facts div {
  min-height: 125px;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.experience-facts dt {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--green-900);
}
.experience-facts dd { margin: 0; color: #626760; font-size: .78rem; line-height: 1.55; }
.experience-note {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: #58605a;
  font-size: .78rem;
}

.preview-note { background: #e8e1d7; color: #52564f; padding: 1rem 0; text-align: center; font-size: .78rem; }
.preview-note p { margin: 0; }

@media (max-width: 1080px) {
  .hero h1 { font-size: clamp(3.25rem, 5.5vw, 4.75rem); }
  .section-heading { grid-template-columns: .48fr 1.4fr 1fr; gap: 2.2rem; }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 150px 1fr auto; min-height: 78px; }
  .brand, .brand img { width: 180px; }
  .main-nav {
    position: absolute;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1.2rem 24px 1.7rem;
    background: rgba(7,27,24,.985);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line-dark); }
  .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    background: transparent;
    border: 1px solid rgba(209,173,104,.4);
    color: white;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--ivory); }
  .hero { padding-top: 78px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 40%; min-height: 590px; gap: 1.8rem; }
  .hero-copy { padding: 3rem 0 2.3rem; }
  .hero h1 { font-size: clamp(3.05rem, 7vw, 4.5rem); }
  .hero-meta { grid-template-columns: 1fr 1fr; margin-top: 2.4rem; }
  .positioning-grid { grid-template-columns: .4fr 1.6fr; }
  .positioning-grid > p { grid-column: 2; }
  .section-heading { grid-template-columns: .4fr 1.6fr; }
  .section-heading .section-intro { grid-column: 2; }
  .practice-item { grid-template-columns: .2fr 1.4fr .5fr; gap: 1.4rem; }
  .experience-grid { grid-template-columns: .85fr 1.15fr; gap: 3rem; }
  .experience-photo, .experience-photo img { min-height: 560px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-inner { grid-template-columns: 145px 1fr auto; }
  .hero-grid { display: flex; flex-direction: column; min-height: auto; gap: 0; }
  .hero-copy { order: 1; padding: 3.4rem 0 2.5rem; }
  .hero-portrait { order: 2; min-height: 445px; width: calc(100% + 34px); margin-left: -17px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .hero-portrait::before { background: linear-gradient(to top, rgba(7,27,24,.75), transparent 36%); }
  .hero-portrait img { object-position: 50% 31%; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.35rem); line-height: .94; }
  .hero-lead { font-size: .96rem; line-height: 1.68; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .button { width: 100%; }
  .hero-meta { margin-top: 2.4rem; grid-template-columns: 1fr 1fr; gap: 1.2rem .8rem; }
  .hero-portrait figcaption { left: 17px; right: auto; text-align: left; bottom: 1.4rem; }
  .positioning { padding: 3.4rem 0 3.8rem; }
  .positioning-grid, .section-heading { display: block; }
  .section-index { margin-bottom: 1.45rem; }
  .positioning h2 { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .positioning p, .section-intro { margin-top: 1.4rem; }

  .practice { padding: 4.5rem 0 4.8rem; }
  .section-heading { margin-bottom: 2.3rem; }
  .section-heading h2 { font-size: clamp(2.55rem, 11vw, 3.45rem); }
  .practice-item {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    align-items: start;
    min-height: auto;
    padding: 1.8rem 0;
  }
  .practice-item:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .practice-number { font-size: 1.75rem; }
  .practice-body h3 { font-size: clamp(2rem, 9vw, 2.55rem); }
  .practice-link { grid-column: 2; justify-self: start; margin-top: .6rem; }

  .experience { padding: 4.8rem 0 5.2rem; }
  .experience-grid { display: flex; flex-direction: column; gap: 2.8rem; }
  .experience-photo { width: calc(100% + 34px); margin-left: -17px; min-height: 500px; }
  .experience-photo img { min-height: 500px; object-position: 50% 26%; }
  .experience h2 { font-size: clamp(3rem, 12vw, 4rem); }
  .experience-copy .section-index { margin-bottom: 1.3rem; }
  .experience-facts { grid-template-columns: 1fr 1fr; }
  .experience-facts div { min-height: 118px; padding: 1.15rem; }
  .experience-facts dt { font-size: 1.65rem; }
}

@media (max-width: 430px) {
  .hero-meta { grid-template-columns: 1fr; }
  .experience-facts { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =========================
   V3 — Conteúdo, contato e rodapé
   ========================= */

.eyebrow-dark { color: #8a6b35; }

.content-section {
  background: var(--ivory-soft);
  color: var(--ink-on-light);
  padding: 6.4rem 0 6.7rem;
  border-top: 1px solid rgba(11,43,38,.08);
}
.content-heading {
  display: grid;
  grid-template-columns: .62fr 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.7rem;
}
.content-heading h2,
.contact-section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.02em;
}
.content-heading h2 {
  max-width: 660px;
  font-size: clamp(2.7rem, 4.1vw, 4.45rem);
  line-height: .98;
}
.content-intro {
  margin: .55rem 0 0;
  max-width: 400px;
  color: #555c57;
  font-size: .92rem;
  line-height: 1.76;
}
.article-list { border-top: 1px solid var(--line-light); }
.article-row {
  display: grid;
  grid-template-columns: .23fr 1.5fr .48fr;
  gap: 2.2rem;
  align-items: center;
  min-height: 185px;
  padding: 2.35rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding .25s ease, background .25s ease;
}
.article-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255,255,255,.22);
}
.article-number {
  align-self: start;
  padding-top: .1rem;
  font-family: var(--font-display);
  font-size: 2.05rem;
  color: #9d804b;
}
.article-meta {
  margin-bottom: .7rem;
  color: #7f765f;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-meta span { padding: 0 .32rem; color: #aa915e; }
.article-copy h3 {
  margin: 0;
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  font-weight: 500;
  line-height: 1.03;
  color: var(--green-900);
}
.article-copy p {
  margin: .82rem 0 0;
  max-width: 700px;
  color: #5e645f;
  font-size: .9rem;
  line-height: 1.68;
}
.article-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #6f5527;
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.article-link span { transition: transform .2s ease; }
.article-link:hover span { transform: translate(3px,-2px); }
.content-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}
.content-footer p {
  margin: 0;
  max-width: 700px;
  color: #74766f;
  font-size: .78rem;
  line-height: 1.6;
}
.text-link-dark { color: var(--green-900); }
.text-link-dark::after { background: rgba(11,43,38,.28); }
.text-link-dark:hover { color: #7c5f2c; }
.text-link-dark:hover::after { background: #8e6c33; }

.contact-section {
  background:
    radial-gradient(circle at 76% 26%, rgba(31,57,46,.3), transparent 30%),
    linear-gradient(120deg, #061a17 0%, #0b2b26 58%, #081d19 100%);
  color: var(--ink-on-dark);
  padding: 6.6rem 0 7rem;
  border-top: 1px solid var(--line-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(3rem, 6vw, 6.8rem);
  align-items: center;
}
.contact-copy .section-index { margin-bottom: 2rem; }
.contact-section h2 {
  max-width: 650px;
  font-size: clamp(3rem, 4.6vw, 4.9rem);
  line-height: .95;
}
.contact-lead {
  margin: 1.55rem 0 0;
  max-width: 590px;
  color: var(--muted-on-dark);
  font-size: .96rem;
  line-height: 1.76;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 3rem 0 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.contact-details > div {
  min-height: 120px;
  padding: 1.35rem 1.4rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.contact-details dt {
  margin-bottom: .55rem;
  color: rgba(209,173,104,.88);
  font-size: .63rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-details dd {
  margin: 0;
  color: var(--ivory);
  font-size: .84rem;
  line-height: 1.62;
}
.contact-details a { transition: color .2s ease; }
.contact-details a:hover { color: var(--gold-bright); }
.location-panel {
  border: 1px solid rgba(209,173,104,.36);
  background: rgba(4,17,15,.45);
}
.location-topline,
.location-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 55px;
  padding: 0 1.25rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.location-topline { color: var(--gold-bright); border-bottom: 1px solid var(--line-dark); }
.location-topline a { color: var(--ivory); transition: color .2s ease; }
.location-topline a:hover { color: var(--gold-bright); }
.location-caption { color: rgba(247,243,236,.66); border-top: 1px solid var(--line-dark); }
.map-frame { min-height: 455px; background: #ded9cf; overflow: hidden; }
.map-frame iframe {
  display: block;
  width: 100%;
  height: 455px;
  border: 0;
  filter: saturate(.90) contrast(.98) brightness(.99);
}

.final-cta {
  background: var(--ivory);
  color: var(--ink-on-light);
  padding: 5.6rem 0 5.9rem;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: .62fr 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}
.final-cta h2 {
  max-width: 690px;
  font-size: clamp(2.7rem, 4.25vw, 4.6rem);
  line-height: .98;
}
.final-cta-action p {
  margin: .5rem 0 1.45rem;
  color: #565d58;
  font-size: .92rem;
  line-height: 1.76;
}
.button-dark {
  background: var(--green-900);
  color: var(--ivory);
  border: 1px solid var(--green-900);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button-dark:hover { background: transparent; color: var(--green-900); transform: translateY(-1px); }

.site-footer {
  background: #061713;
  color: var(--ink-on-dark);
  border-top: 1px solid var(--line-dark);
  padding: 4rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .8fr 1.05fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3.2rem;
}
.footer-brand img { width: 230px; height: auto; display: block; }
.footer-brand p,
.footer-office p {
  margin: 1.3rem 0 0;
  color: rgba(247,243,236,.62);
  font-size: .79rem;
  line-height: 1.7;
}
.footer-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-nav { display: flex; flex-direction: column; gap: .68rem; }
.footer-nav a {
  width: fit-content;
  color: rgba(247,243,236,.72);
  font-size: .8rem;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-dark);
}
.footer-bottom p {
  margin: 0;
  max-width: 620px;
  color: rgba(247,243,236,.43);
  font-size: .64rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .content-heading,
  .final-cta-grid { grid-template-columns: .4fr 1.6fr; gap: 2.2rem; }
  .content-heading .content-intro,
  .final-cta-action { grid-column: 2; }
  .article-row { grid-template-columns: .18fr 1.45fr .45fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .map-frame, .map-frame iframe { min-height: 420px; height: 420px; }
  .footer-grid { grid-template-columns: 1.3fr .8fr .8fr; }
  .footer-office { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid var(--line-dark); }
}

@media (max-width: 700px) {
  .content-section { padding: 4.7rem 0 5rem; }
  .content-heading,
  .final-cta-grid { display: block; }
  .content-heading h2 { font-size: clamp(2.7rem, 11vw, 3.55rem); }
  .content-intro { margin-top: 1.4rem; }
  .article-row {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    align-items: start;
    min-height: auto;
    padding: 1.9rem 0;
  }
  .article-row:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .article-number { font-size: 1.7rem; }
  .article-copy h3 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .article-link { grid-column: 2; justify-self: start; margin-top: .55rem; }
  .content-footer { align-items: flex-start; flex-direction: column; margin-top: 1.6rem; }

  .contact-section { padding: 4.8rem 0 5.2rem; }
  .contact-grid { display: flex; flex-direction: column; gap: 2.8rem; }
  .contact-section h2 { font-size: clamp(3rem, 12vw, 4rem); }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .contact-actions .button { width: 100%; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details > div { min-height: auto; }
  .location-panel { width: calc(100% + 34px); margin-left: -17px; border-left: 0; border-right: 0; }
  .location-topline, .location-caption { padding: 0 17px; }
  .map-frame, .map-frame iframe { min-height: 360px; height: 360px; }

  .final-cta { padding: 4.5rem 0 4.8rem; }
  .final-cta h2 { font-size: clamp(2.75rem, 11vw, 3.65rem); }
  .final-cta-action { margin-top: 1.4rem; }
  .final-cta-action .button { width: 100%; }

  .site-footer { padding-top: 3.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.3rem 1.6rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-office { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .6rem; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-office { grid-column: auto; }
}



html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 700px) {
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; min-height: 72px; }
  .brand, .brand img { width: min(58vw, 190px); max-width: 100%; }
  .menu-toggle { grid-column: 2; }
  .main-nav { inset: 72px 0 auto; }
  .hero { padding-top: 72px; }
  .hero-copy { padding-top: 2.6rem; }
  .hero h1 { font-size: clamp(2.9rem, 12.5vw, 4.15rem); }
  .hero-actions { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .hero-meta strong { overflow-wrap: anywhere; }
  .practice-body p, .section-intro, .experience-copy > p,
  .article-copy p, .contact-lead, .final-cta-action p { overflow-wrap: anywhere; }
}
@media (max-width: 390px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero-portrait, .experience-photo, .location-panel { width: calc(100% + 28px); margin-left: -14px; }
  .location-topline, .location-caption { padding-left: 14px; padding-right: 14px; }
  .hero-portrait figcaption { left: 14px; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .positioning h2, .section-heading h2, .content-heading h2,
  .experience h2, .contact-section h2, .final-cta h2 { text-wrap: pretty; }
}



.mobile-nav { display: none; }
.menu-toggle { text-decoration: none; cursor: pointer; }

@media (max-width: 960px) {
  .main-nav { display: none !important; }

  .menu-toggle {
    position: relative;
    z-index: 45;
    text-decoration: none;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 44;
    display: none;
    flex-direction: column;
    min-height: calc(100vh - 72px);
    padding: 1.15rem max(24px, calc((100vw - var(--container)) / 2)) 2.2rem;
    background: rgba(7, 27, 24, .995);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid rgba(209,173,104,.25);
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
  }

  .mobile-nav:target { display: flex; }

  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .25rem 0 1rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-nav-label {
    color: var(--gold-bright);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(209,173,104,.42);
    color: var(--ivory);
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-links > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line-dark);
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1;
    text-decoration: none;
  }

  .mobile-nav-links > a::after {
    content: "→";
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 1rem;
  }

  .mobile-nav-contact {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: .95rem 1.2rem;
    background: var(--gold);
    color: var(--green-950) !important;
    font-size: .73rem !important;
    font-family: var(--font-sans) !important;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-nav-contact::after { content: "↗" !important; color: inherit !important; }
}


@media (min-width: 961px) {
  .site-header,
  .site-header.article-site-header,
  .site-header.content-site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(7, 27, 24, .94);
    border-bottom: 1px solid rgba(209, 173, 104, .18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
    -webkit-backdrop-filter: blur(14px) saturate(115%);
    backdrop-filter: blur(14px) saturate(115%);
  }

  .site-header .header-inner {
    min-height: 78px;
  }

  /* Evita que âncoras sejam encobertas pelo cabeçalho fixo. */
  #atuacao,
  #experiencia,
  #conteudo,
  #contato,
  .article-section {
    scroll-margin-top: 104px;
  }
}

/* =========================
   V19.1 — Atendimento 24h + galeria do escritório
   ========================= */

.header-cta {
  position: relative;
  background: rgba(184,149,82,.08);
  box-shadow: inset 0 0 0 1px rgba(209,173,104,.08);
}
.header-cta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(209,173,104,.12);
  margin-right: .55rem;
  display: inline-block;
  vertical-align: 1px;
}

.hero-urgent {
  margin-top: 1.35rem;
  max-width: 565px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(209,173,104,.34);
  background: linear-gradient(90deg, rgba(184,149,82,.10), rgba(184,149,82,.025));
}
.hero-urgent-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(209,173,104,.7);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
}
.hero-urgent strong {
  display: block;
  color: var(--gold-bright);
  font-size: .77rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-urgent p {
  margin: .32rem 0 0;
  color: var(--muted-on-dark);
  font-size: .82rem;
  line-height: 1.55;
}

.office-gallery {
  background:
    radial-gradient(circle at 83% 12%, rgba(31,57,46,.38), transparent 28%),
    linear-gradient(120deg, #061a17 0%, #0b2b26 68%, #071b18 100%);
  color: var(--ink-on-dark);
  padding: 6rem 0 6.4rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid rgba(209,173,104,.18);
}
.office-gallery-heading {
  display: grid;
  grid-template-columns: .62fr 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}
.office-gallery-heading h2 {
  margin: 0;
  max-width: 650px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.02em;
}
.office-gallery-copy p {
  margin: .5rem 0 1.2rem;
  color: var(--muted-on-dark);
  font-size: .92rem;
  line-height: 1.76;
}
.office-carousel {
  position: relative;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.office-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  border: 1px solid rgba(209,173,104,.28);
  background: #071b18;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.office-carousel-viewport::-webkit-scrollbar { display: none; }
.office-carousel-viewport:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
.office-carousel-track { display: flex; }
.office-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 16 / 7.6;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #0a1d19;
}
.office-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,22,18,.5) 0%, transparent 40%), linear-gradient(to top, rgba(5,22,18,.74), transparent 48%);
  pointer-events: none;
}
.office-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.65,.3,1);
}
.office-carousel-slide:hover img { transform: scale(1.018); }
.office-carousel-slide-facade img { object-position: 50% 49%; }
.office-carousel-slide figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1.4rem, 4vw, 3.2rem);
  right: clamp(1.4rem, 4vw, 3.2rem);
  bottom: clamp(1.4rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: .15rem;
  align-items: end;
  color: var(--ivory);
}
.office-carousel-slide figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.office-carousel-slide figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}
.office-carousel-slide figcaption small {
  color: rgba(247,243,236,.72);
  font-size: .78rem;
  letter-spacing: .02em;
}
.office-carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(209,173,104,.55);
  background: rgba(7,27,24,.84);
  color: var(--gold-bright);
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.office-carousel-arrow:hover,
.office-carousel-arrow:focus-visible {
  background: var(--gold-bright);
  color: var(--green-950);
  border-color: var(--gold-bright);
  outline: none;
}
.office-carousel-prev { left: 1rem; }
.office-carousel-next { right: 1rem; }
.office-carousel-dots {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin-top: 1.25rem;
}
.office-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(209,173,104,.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.office-carousel-dots button.is-active {
  background: var(--gold-bright);
  transform: scale(1.25);
}
.office-carousel-dots button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.office-gallery-hint {
  display: none;
  margin: .9rem 0 0;
  text-align: center;
  color: rgba(247,243,236,.52);
  font-size: .7rem;
}

@media (max-width: 960px) {
  .office-gallery-heading { grid-template-columns: .4fr 1.6fr; gap: 2.2rem; }
  .office-gallery-copy { grid-column: 2; }
  .office-carousel-slide { aspect-ratio: 4 / 2.65; }
}

@media (max-width: 700px) {
  .hero-urgent { grid-template-columns: 48px 1fr; padding: .95rem 1rem; }
  .hero-urgent-icon { width: 44px; height: 44px; font-size: .96rem; }
  .hero-actions .button-primary { min-height: 54px; }

  .office-gallery { padding: 4.6rem 0 4.9rem; }
  .office-gallery-heading { display: block; margin-bottom: 2.2rem; }
  .office-gallery-heading h2 { font-size: clamp(2.7rem, 11vw, 3.55rem); }
  .office-gallery-copy { margin-top: 1.25rem; }
  .office-carousel { width: 100%; }
  .office-carousel-slide { aspect-ratio: 4 / 3.7; }
  .office-carousel-slide figcaption {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.05rem;
    grid-template-columns: auto 1fr;
  }
  .office-carousel-slide figcaption strong { font-size: 1.55rem; }
  .office-carousel-slide figcaption small { font-size: .68rem; line-height: 1.45; }
  .office-carousel-arrow {
    width: 42px;
    height: 42px;
    top: 46%;
  }
  .office-carousel-prev { left: .55rem; }
  .office-carousel-next { right: .55rem; }
  .office-gallery-hint { display: block; }
}

.contact-urgent {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(209,173,104,.42);
  background: rgba(184,149,82,.09);
}
.contact-urgent-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.contact-urgent span,
.contact-urgent strong,
.contact-urgent small { display: block; }
.contact-urgent span {
  margin-bottom: .2rem;
  color: var(--gold-bright);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-urgent strong {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}
.contact-urgent small {
  margin-top: .35rem;
  color: rgba(247,243,236,.58);
  font-size: .72rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .office-gallery-heading { grid-template-columns: .4fr 1.6fr; gap: 2.2rem; }
  .office-gallery-copy { grid-column: 2; }
  .office-gallery-track { grid-template-columns: 1fr 1fr; }
  .office-gallery-card-facade { grid-column: 1 / -1; min-height: 310px; }
  .office-gallery-card-facade img { min-height: 310px; object-position: 50% 54%; }
}

@media (max-width: 700px) {
  .hero-urgent { grid-template-columns: 48px 1fr; padding: .95rem 1rem; }
  .hero-urgent-icon { width: 44px; height: 44px; font-size: .96rem; }
  .hero-actions .button-primary { min-height: 54px; }

  .office-gallery { padding: 4.6rem 0 4.9rem; }
  .office-gallery-heading { display: block; margin-bottom: 2.2rem; }
  .office-gallery-heading h2 { font-size: clamp(2.7rem, 11vw, 3.55rem); }
  .office-gallery-copy { margin-top: 1.25rem; }
  .office-gallery-track {
    display: flex;
    gap: .85rem;
    width: calc(100% + 17px);
    overflow-x: auto;
    padding: 0 17px .6rem 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .office-gallery-track::-webkit-scrollbar { display: none; }
  .office-gallery-card,
  .office-gallery-card-facade {
    flex: 0 0 86%;
    min-height: 330px;
    grid-column: auto;
    scroll-snap-align: start;
  }
  .office-gallery-card img,
  .office-gallery-card-facade img { min-height: 330px; }
  .office-gallery-card-facade img { object-position: 50% 52%; }
  .office-gallery-hint { display: block; }

  .contact-urgent { grid-template-columns: 50px 1fr; padding: 1rem; }
  .contact-urgent-badge { width: 46px; height: 46px; font-size: 1rem; }
  .contact-urgent strong { font-size: 1.3rem; }

  .mobile-nav-contact {
    background: var(--gold-bright);
    color: var(--green-950) !important;
  }
}
