:root {
  --gold: #c9a84c;
  --gold-light: #ddb96a;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.22);
  --gold-border-strong: rgba(201, 168, 76, 0.5);
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #272727;
  --cream: #f2ede4;
  --cream-dim: rgba(242, 237, 228, 0.65);
  --cream-faint: rgba(242, 237, 228, 0.1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-border-strong);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 110px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: height 0.3s;
}
nav.scrolled {
  height: 90px;
}
.nav-logo {
  display: none;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .nav-logo-img {
    height: 100px;
  }
}
.nav-logo-fallback {
  display: none;
  align-items: center;
  gap: 13px;
}
.nav-logo-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-ring svg {
  width: 22px;
  height: 22px;
}
.nav-logo-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-txt b {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.nav-logo-txt small {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--cream-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--black);
  padding: 96px 6% 40px;
  flex-direction: column;
  justify-content: center;
}
.mob-menu.open {
  display: flex;
}
.mob-menu ul {
  list-style: none;
}
.mob-menu ul li {
  border-bottom: 1px solid var(--gold-border);
}
.mob-menu ul li a {
  display: block;
  padding: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s;
}
.mob-menu ul li a:hover {
  color: var(--gold);
}
.mob-cta {
  margin-top: 36px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 70% at 75% 45%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 35% 55% at 15% 85%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-body {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-label-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 10px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-h1 strong {
  font-weight: 600;
}
.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dim);
  margin-bottom: 40px;
}
.hero-quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin-bottom: 48px;
  max-width: 500px;
}
.hero-quote p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 15px 34px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 34px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(242, 237, 228, 0.25);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-ornament {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 22vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-logo-grande {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}
.hero-orn-fallback {
  display: none;
  position: absolute;
  inset: 0;
}
.orn-r1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: spin 40s linear infinite;
}
.orn-r2 {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: spin 30s linear infinite reverse;
}
.orn-core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 1px solid var(--gold-border-strong);
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orn-core svg {
  width: 46%;
  height: 46%;
  opacity: 0.6;
}
.orn-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%;
  left: -3px;
  margin-top: -3px;
  opacity: 0.6;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* TICKER */
.ticker {
  background: var(--dark2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 30s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.tick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid var(--gold-border);
  white-space: nowrap;
}
.tick-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.tick-item span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.tick-item b {
  color: var(--gold);
  font-weight: 600;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION COMMONS */
.s-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.s-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
}
.s-title em {
  font-style: italic;
  color: var(--gold);
}
.s-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 18px;
}
.s-rule.mx {
  margin-left: auto;
  margin-right: auto;
}

/* AREAS */
#áreas {
  padding: 96px 6%;
  background: var(--dark);
}
.sec-head {
  text-align: center;
  margin-bottom: 64px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-border);
}
.area-card {
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.35s;
  cursor: default;
}
.area-card:nth-child(3n) {
  border-right: none;
}
.area-card:nth-last-child(-n + 3) {
  border-bottom: none;
}
.area-card-empty {
  pointer-events: none;
  cursor: default;
}
.area-card-empty:hover {
  background: transparent;
}
.area-card-empty::after {
  display: none;
}
.area-card:hover {
  background: var(--dark2);
}
.area-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.area-card:hover::after {
  transform: scaleX(1);
}
.area-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 20px;
}
.area-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}
.area-card p {
  font-size: 0.73rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.85;
}

/* SOBRE */
#sobre {
  padding: 96px 6%;
  background: var(--black);
}
.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.sobre-body {
  margin-top: 32px;
}
.sobre-body p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
}
.sobre-body p + p {
  margin-top: 14px;
}
.sobre-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border: 1px solid var(--gold-border);
}
.pilar {
  padding: 24px 22px;
  border-right: 1px solid var(--gold-border);
}
.pilar:last-child {
  border-right: none;
}
.pilar b {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.pilar p {
  font-size: 0.68rem;
  color: var(--cream-dim);
  line-height: 1.75;
}
.sobre-card {
  border: 1px solid var(--gold-border);
  background: var(--dark);
  padding: 48px 44px;
  position: relative;
}
.sobre-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 36px;
  width: 64px;
  height: 2px;
  background: var(--gold);
}
.sobre-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 24px;
}
.sobre-src {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.sobre-foto-wrap {
  position: relative;
  border: 1px solid var(--gold-border);
  overflow: hidden;
}
.sobre-foto {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sobre-foto-fallback {
  display: none;
  width: 100%;
  height: 420px;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.sobre-foto-fallback span {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(242, 237, 228, 0.3);
  letter-spacing: 0.1em;
}
.sobre-foto-caption {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(6px);
  padding: 16px 24px;
  border-top: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sobre-foto-caption span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.sobre-foto-caption small {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border: 1px solid var(--gold-border);
}
.stat {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-l {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--cream-dim);
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}

/* EQUIPE */
#equipe {
  padding: 96px 6%;
  background: var(--dark2);
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--gold-border);
}
.membro {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.3s;
  position: relative;
}
.membro:nth-child(5n) {
  border-right: none;
}
.membro:nth-last-child(-n + 5):nth-child(5n + 1),
.membro:nth-last-child(-n + 5):nth-child(5n + 1) ~ .membro {
  border-bottom: none;
}
.membro:hover {
  background: var(--dark3);
}
.membro-av {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gold-border-strong);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  background: var(--dark3);
}
.membro-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.membro-av .av-init {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membro-av .av-init span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
}
.membro h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 4px;
}
.membro-cargo {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.membro-oab {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--cream-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 14px;
}
.membro-bio {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.78;
  margin-bottom: 16px;
}
.membro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 3px 9px;
}

/* EQUIPE DIVIDER & ASSISTENTES */
.equipe-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 6% 0;
}
.equipe-divider-line {
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}
.equipe-divider span {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.equipe-grid--assistentes {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin: 0 auto;
  border-top: none;
}
.equipe-grid--assistentes .membro:nth-child(2n) {
  border-right: none;
}
.equipe-grid--assistentes .membro {
  border-bottom: none;
}

/* ARTIGOS */
#artigos {
  padding: 96px 6%;
  background: var(--black);
}
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 48px;
}
.artigo-card {
  background: var(--dark);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.artigo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.artigo-card:hover {
  background: var(--dark2);
}
.artigo-card:hover::after {
  transform: scaleX(1);
}
.artigo-cat {
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.artigo-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}
.artigo-card p {
  font-size: 0.73rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.85;
  flex: 1;
}
.artigo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border);
  margin-top: auto;
}
.artigo-autor {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}
.artigo-data {
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.artigos-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.artigos-cta p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dim);
}

/* UNIDADES */
#unidades {
  padding: 96px 6%;
  background: var(--black);
}
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gold-border);
  max-width: 1100px;
  margin: 0 auto;
}
.unidade {
  padding: 44px 40px;
  border-right: 1px solid var(--gold-border);
  position: relative;
  transition: background 0.3s;
}
.unidade:last-child {
  border-right: none;
}
.unidade:hover {
  background: var(--dark2);
}
.unidade.principal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.u-badge {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 22px;
}
.u-badge.main {
  background: var(--gold);
  color: var(--black);
}
.u-badge.sec {
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.unidade h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.u-city {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.u-addr {
  border-top: 1px solid var(--gold-border);
  padding-top: 22px;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
}
.u-addr strong {
  display: block;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.u-horário {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-border);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
}
.u-horário strong {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.u-map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 3px;
  transition: border-color 0.25s;
}
.u-map:hover {
  border-color: var(--gold);
}
.u-map svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* CONTATO */
#contato {
  background: var(--dark);
}
.contato-cta-block {
  padding: 96px 6% 0;
}
.contato-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gold-border);
}
.contato-cta-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-top: 24px;
}
.contato-wa-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #25d366;
  padding: 20px 28px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  width: 100%;
}
.contato-wa-btn:hover {
  background: #1ebe5d;
  transform: translateX(4px);
}
.contato-wa-btn-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.contato-wa-btn-txt span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.contato-wa-btn-txt b {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
}
.contato-outros {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.c-outro-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--cream-dim);
  transition: color 0.25s;
}
.c-outro-link:hover {
  color: var(--gold);
}
.contato-form-block {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6% 96px;
}
.contato-form-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--gold-border);
  transition: color 0.25s;
}
.contato-form-toggle span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--cream-dim);
}
.contato-form-toggle:hover span {
  color: var(--gold);
}
#form-arrow {
  transition: transform 0.3s;
}
#form-arrow.open {
  transform: rotate(180deg);
}
.form-box {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  padding: 40px 42px;
  border-top: none;
}
.c-aviso {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--gold-border);
  background: var(--dark2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.c-aviso p {
  font-size: 0.66rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
}
.c-aviso p strong {
  color: var(--cream);
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-g {
  margin-bottom: 18px;
}
.form-g label {
  display: block;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.form-g input,
.form-g select,
.form-g textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  color: var(--cream);
  padding: 13px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  outline: none;
  appearance: none;
  transition: border-color 0.25s;
}
.form-g input:focus,
.form-g select:focus,
.form-g textarea:focus {
  border-color: var(--gold);
}
.form-g input::placeholder,
.form-g textarea::placeholder {
  color: rgba(242, 237, 228, 0.2);
}
.form-g select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-g select option {
  background: var(--dark2);
}
.form-g textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.65;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 15px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--dark);
  border: 1px solid var(--gold-border);
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  animation: mIn 0.3s ease;
}
@keyframes mIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-head {
  padding: 30px 38px 24px;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
.m-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
}
.m-title em {
  font-style: italic;
  color: var(--gold);
}
.modal-x {
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--cream-dim);
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.modal-x:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal-body {
  padding: 34px 38px;
  overflow-y: auto;
  flex: 1;
}
.modal-body::-webkit-scrollbar {
  width: 3px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--gold-border-strong);
}
.priv-sec {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gold-border);
}
.priv-sec:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.priv-sec h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}
.priv-sec p {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
}
.priv-sec p + p {
  margin-top: 10px;
}
.priv-sec ul {
  list-style: none;
  margin-top: 10px;
}
.priv-sec ul li {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
  padding-left: 16px;
  position: relative;
}
.priv-sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.modal-foot {
  padding: 18px 38px;
  border-top: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.modal-foot p {
  font-size: 0.6rem;
  color: rgba(242, 237, 228, 0.3);
}
.modal-close-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 9px 26px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.modal-close-btn:hover {
  background: var(--gold-light);
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--gold-border);
  padding: 64px 6% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 28px;
}
.f-brand p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.85;
  margin: 18px 0 22px;
}
.f-social {
  display: flex;
  gap: 9px;
}
.f-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  text-decoration: none;
  transition: all 0.25s;
}
.f-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.f-social a svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.f-col h4 {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.f-col ul {
  list-style: none;
}
.f-col ul li {
  margin-bottom: 9px;
}
.f-col ul li a {
  text-decoration: none;
  font-size: 0.71rem;
  font-weight: 300;
  color: var(--cream-dim);
  transition: color 0.25s;
}
.f-col ul li a:hover {
  color: var(--gold);
}
.f-col address {
  font-style: normal;
  font-size: 0.71rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.85;
}
.f-col address strong {
  display: block;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.f-col address + address {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(242, 237, 228, 0.3);
}
.footer-bottom a {
  color: rgba(242, 237, 228, 0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-oab-aviso {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold-border);
}
.footer-oab-aviso p {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(242, 237, 228, 0.45);
  line-height: 1.8;
}
.footer-dev {
  margin-top: 14px;
  text-align: center;
}
.footer-dev p {
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(242, 237, 228, 0.2);
}
.footer-dev a {
  color: rgba(242, 237, 228, 0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-dev a:hover {
  color: var(--gold);
}

/* WA FLOAT */
.wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (min-width: 1400px) {
  nav {
    padding: 0 8%;
  }
  #hero,
  #áreas,
  #sobre,
  #equipe,
  #unidades,
  #contato .contato-cta-block {
    padding-left: 8%;
    padding-right: 8%;
  }
}
@media (max-width: 1100px) {
  .equipe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .membro {
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }
  .membro:nth-child(5n) {
    border-right: 1px solid var(--gold-border);
  }
  .membro:nth-child(3n) {
    border-right: none;
  }
  .membro:nth-last-child(-n + 5):nth-child(5n + 1),
  .membro:nth-last-child(-n + 5):nth-child(5n + 1) ~ .membro {
    border-bottom: 1px solid var(--gold-border);
  }
  .membro:nth-last-child(-n + 3):nth-child(3n + 1),
  .membro:nth-last-child(-n + 3):nth-child(3n + 1) ~ .membro {
    border-bottom: none;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-card {
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }
  .area-card:nth-child(3n) {
    border-right: 1px solid var(--gold-border);
  }
  .area-card:nth-child(2n) {
    border-right: none;
  }
  .area-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--gold-border);
  }
  .area-card-empty {
    display: none;
  }
  .area-card:last-child {
    border-bottom: none;
    border-right: none;
  }
  .area-card:nth-last-child(2) {
    border-bottom: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .artigos-grid {
    grid-template-columns: 1fr;
  }
  .equipe-grid--assistentes {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .nav-logo {
    display: flex;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero-ornament {
    display: none;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-gold,
  .btn-outline {
    text-align: center;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-card {
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }
  .area-card:nth-child(3n) {
    border-right: 1px solid var(--gold-border);
  }
  .area-card:nth-child(2n) {
    border-right: none;
  }
  .area-card-empty {
    display: none;
  }
  .area-card:last-child {
    border-bottom: none;
    border-right: none;
  }
  .area-card:nth-last-child(2) {
    border-bottom: none;
  }
  .sobre-wrap {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .sobre-pillars {
    grid-template-columns: 1fr;
  }
  .sobre-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membro {
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
  }
  .membro:nth-child(3n) {
    border-right: 1px solid var(--gold-border);
  }
  .membro:nth-child(2n) {
    border-right: none;
  }
  .membro:nth-last-child(-n + 3):nth-child(3n + 1) ~ .membro {
    border-bottom: 1px solid var(--gold-border);
  }
  .membro:nth-last-child(-n + 2):nth-child(2n + 1),
  .membro:nth-last-child(-n + 2):nth-child(2n + 1) ~ .membro {
    border-bottom: none;
  }
  .membro:last-child {
    border-bottom: none;
    border-right: none;
  }
  .unidades-grid {
    grid-template-columns: 1fr;
  }
  .unidade {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
  .unidade:last-child {
    border-bottom: none;
  }
  .contato-cta-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  #hero {
    padding: 130px 5% 60px;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .area-card,
  .area-card:nth-child(2n),
  .area-card:nth-child(3n) {
    border-right: none !important;
    border-bottom: 1px solid var(--gold-border) !important;
  }
  .area-card:last-child {
    border-bottom: none !important;
  }
  .area-card-empty {
    display: none !important;
  }
  .sobre-pillars {
    grid-template-columns: 1fr;
  }
  .pilar {
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
  }
  .pilar:last-child {
    border-bottom: none;
  }
  .sobre-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipe-grid {
    grid-template-columns: 1fr;
  }
  .membro,
  .membro:nth-child(2n),
  .membro:nth-child(3n),
  .membro:nth-child(5n) {
    border-right: none !important;
    border-bottom: 1px solid var(--gold-border) !important;
  }
  .membro:last-child {
    border-bottom: none !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: 28px 20px;
  }
  .artigos-grid {
    grid-template-columns: 1fr;
  }
  .artigo-card {
    padding: 28px 22px;
  }
  .equipe-grid--assistentes {
    max-width: 100%;
  }
  .equipe-divider {
    padding: 30px 5% 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .modal-head {
    padding: 22px 20px 18px;
  }
  .modal-body {
    padding: 24px 20px;
  }
  .modal-foot {
    padding: 14px 20px;
  }
}
@media (max-width: 400px) {
  .hero-h1 {
    font-size: 2.6rem;
  }
  .sobre-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  nav {
    height: 80px;
  }
  nav.scrolled {
    height: 70px;
  }
  .nav-logo-img {
    height: 80px;
  }
}
