/* ============================================================
   DE GODOY CINTRA ADVOGADOS — Quiet Luxury Design System
   UI/UX Pro Max: "Classic Elegant" — Playfair Display + Inter
   Strategy: Trust & Authority + Minimal Editorial
   ============================================================ */

/* Fonts loaded via <link> in HTML to avoid render-blocking @import */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — Quiet Luxury · Verde & Dourado */
  --bg:            #F9F9F6;        /* off-white premium — conforto na leitura */
  --bg-alt:        #F4F4F0;        /* alternate sections */
  --bg-dark:       #1A2F24;        /* verde musgo escuro — destaque */
  --bg-dark-alt:   #0B1C14;        /* verde profundo */
  --ink:           #111111;        /* grafite profundo */
  --ink-muted:     #6A6A6A;        /* secondary text */
  --ink-light:     #999999;        /* tertiary / metadata */
  --ink-on-dark:   #EEE9DF;        /* text on dark bg */
  --ink-muted-dark:#8FA898;        /* muted text on dark green bg */

  /* Brand Colors */
  --midnight:      #1A2F24;        /* primary — verde musgo escuro */
  --midnight-light:#2A4A38;        /* lighter forest green for hover */
  --gold:          #CBA052;        /* ouro envelhecido premium */
  --gold-dim:      rgba(203,160,82,0.12); /* gold wash */

  /* Structural */
  --border:        #E2DDD5;        /* warm light border */
  --border-dark:   rgba(255,255,255,0.1); /* border on dark bg */
  --divider:       rgba(26,26,26,0.08);   /* ultra-subtle divider */

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spacing — Architectural White Space */
  --section-py:    7rem;
  --container:     1320px;
  --container-sm:  860px;

  /* Shape — Architectural (no pills) */
  --radius:        2px;

  /* Motion — Slow & Deliberate */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:           0.45s;
  --dur-slow:      0.75s;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* animation: pageFadeIn 0.45s var(--ease) both; — removido: causava opacity:0 no carregamento */
}

body.page-fade-out {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.12s ease, transform 0.12s ease;
  pointer-events: none;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; }

p {
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-light);
  display: block;
}

.eyebrow-gold {
  color: var(--gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: var(--section-py) 0; }

.section-header {
  margin-bottom: 4rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-header--center .eyebrow::before,
.section-header--center .eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header .eyebrow {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  max-width: 580px;
}

.section-header--center p {
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL — AOS-compatible
   UI/UX Pro Max: prefers-reduced-motion respected
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   BUTTONS
   UI/UX Pro Max: cursor-pointer, no pills, smooth hover
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 50px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

/* Solid dark — primary CTA */
.btn-primary {
  background: var(--midnight);
  color: #F9F9F6;
  border-color: var(--midnight);
}
.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Gold — Hero primary CTA */
.btn-gold {
  background: var(--gold);
  color: #0B1C14;
  border-color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-gold:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Outline — secondary CTA */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-outline:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Outline white — on dark backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(238,233,223,0.5);
}
.btn-outline-light:hover {
  background: rgba(238,233,223,0.08);
  border-color: var(--ink-on-dark);
}

/* WhatsApp */
.btn-whatsapp {
  background: #1DA851;
  color: #fff;
  border-color: #1DA851;
}
.btn-whatsapp:hover {
  background: #178A43;
  border-color: #178A43;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 28, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.3s ease;
}

/* Ao scrollar: mais opaco com blur completo */
.site-header.scrolled {
  background: rgba(26, 47, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(203,160,82,0.12), 0 2px 24px rgba(0,0,0,0.22);
}

/* Hide on scroll down, show on scroll up */
.site-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--dur) var(--ease);
}

.site-logo:hover { opacity: 0.8; }

.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-on-dark);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

.logo-tagline {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(238, 233, 223, 0.65);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

/* Logo image (header) */
.logo-img {
  display: block;
  max-height: 96px;
  width: auto;
  object-fit: contain;
}

/* Logo image (footer) */
.logo-img-footer {
  display: block;
  width: 280px;
  height: auto;
  object-fit: contain;
}

/* Garante que nenhum estilo aplique fundo sobre as logos */
img[alt="De Godoy Cintra Advogados"] {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 233, 223, 0.82);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink-on-dark);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  /* delay ao fechar evita que feche antes do cursor chegar */
  transition: opacity 0.25s var(--ease) 0.12s, transform 0.25s var(--ease) 0.12s;
  box-shadow: 0 8px 32px rgba(17,17,17,0.08);
}

/* Ponte invisível entre o trigger e o dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s; /* abre imediatamente, fecha com delay */
}

.dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.dropdown a:hover {
  color: var(--ink);
  background: rgba(26,26,26,0.04);
}

/* Header CTA — default: sobre hero (fundo verde) */
.nav-cta {
  font-size: 0.75rem !important;
  padding: 0.65rem 1.4rem !important;
  min-height: 40px !important;
  background: transparent !important;
  color: var(--ink-on-dark) !important;
  border: 1px solid rgba(238, 233, 223, 0.45) !important;
  border-radius: var(--radius) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all var(--dur) var(--ease) !important;
  cursor: pointer !important;
}

.nav-cta:hover {
  background: #CBA052 !important;
  border-color: #CBA052 !important;
  color: #1A2F24 !important;
}

@media (max-width: 768px) {
  .nav-cta:active {
    background: #CBA052 !important;
    border-color: #CBA052 !important;
    color: #1A2F24 !important;
  }
}

.nav-cta:focus-visible {
  outline: 2px solid #CBA052;
  outline-offset: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--ink-on-dark);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease);
}

.mobile-nav-link:hover { color: var(--ink-muted); }

.mobile-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.mobile-toggle-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}

.mobile-toggle-btn.open svg { transform: rotate(180deg); }

.mobile-submenu-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

.mobile-submenu-wrap.open { max-height: 400px; }

.mobile-submenu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--divider);
  letter-spacing: 0.04em;
}

.mobile-submenu a:hover { color: var(--ink); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ============================================================
   HERO — Asymmetric Split Layout
   ============================================================ */
.hero {
  min-height: 100svh;
  background-color: #0d1f14; /* fallback enquanto a imagem carrega */
  background-image: url('../../fotos/LOGO_ESCRITORIO_HOME_HERO2.png');
  background-attachment: fixed; /* Efeito Parallax clássico */
  background-size: cover;
  background-position: 35% 20%;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px; /* compensa a navbar fixa */
}

/* Overlay horizontal — escuro à esquerda (texto), revelando a foto à direita */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(6,15,10,0.97)  0%,
    rgba(9,22,15,0.95)  20%,
    rgba(11,28,20,0.84) 40%,
    rgba(11,28,20,0.48) 65%,
    rgba(11,28,20,0.12) 100%
  );
  pointer-events: none;
}

/* Gold accent line — top */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* Grid: coluna de conteúdo */
.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

/* OAB — gutter editorial: fixo ao viewport como o bg-attachment:fixed da hero */
.hero-oab-gutter {
  display: none; /* hidden por padrão — sem gutter em telas pequenas */
  position: fixed; /* âncora ao viewport — parallax idêntico ao background-attachment:fixed */
  left: 3vw; /* lg baseline */
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 1; /* controlado por JS — fade proporcional ao scroll */
  pointer-events: none;
}

.hero-oab-gutter .hero-aside-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.55;
}

.hero-oab-gutter .hero-aside-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg); /* leitura de baixo para cima — natural no gutter esquerdo */
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203,160,82,0.78);
  user-select: none;
}

.hero-oab-gutter .hero-aside-oab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(203,160,82,0.12);
  user-select: none;
}

.hero-content { /* left column — all text */ }

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-left: 4rem;
  border-left: 1px solid rgba(203,160,82,0.18);
  min-height: 320px;
  justify-content: center;
}

.hero-aside-line {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.6;
}

.hero-aside-tag {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(203,160,82,0.45);
  user-select: none;
}

.hero-aside-oab {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(203,160,82,0.08);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  user-select: none;
}

/* Badge OAB vertical — realocado do hero para o footer */
.footer-oab-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-oab-badge-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

.footer-oab-badge-tag {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203,160,82,0.75);
  user-select: none;
}

.footer-oab-badge-dgc {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(203,160,82,0.18);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  user-select: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(203,160,82,0.85);
}

.hero h1 {
  color: var(--ink-on-dark);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  font-weight: 700;
  max-width: 760px;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-muted-dark);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   TEAM SECTION — Executive Directory
   ============================================================ */
.team-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-directory {
  border-top: 1px solid var(--border);
}

.team-entry {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.team-entry:hover {
  background: rgba(26,26,26,0.025);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.team-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.team-oab {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.team-name-link {
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.team-name-link:hover {
  color: var(--midnight);
}

.team-intro-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 620px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.team-cta-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ============================================================
   AREAS SECTION — Editorial Grid
   ============================================================ */
.areas-section {
  background: var(--bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.area-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
  position: relative;
  cursor: default;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease);
  transform-origin: left;
}

.area-card:hover {
  background: rgba(26,26,26,0.025);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-number {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.area-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.area-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
  cursor: pointer;
}

.area-link:hover {
  color: var(--ink);
  gap: 0.85rem;
}

.area-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   AREAS LIST — Editorial rows (clickable, UI/UX Pro Max compliant)
   ============================================================ */
.areas-list {
  border-top: 1px solid var(--border);
}

.area-row {
  display: grid;
  grid-template-columns: 64px 1fr auto 32px;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease);
}

/* Gold accent line — reveals on hover */
.area-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-slow) var(--ease);
  transform-origin: left;
}

.area-row:hover {
  background: rgba(26,26,26,0.022);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
}

.area-row:hover::before {
  transform: scaleX(1);
}

.area-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.area-row-number {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.area-row-body h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.45rem;
  transition: color var(--dur) var(--ease);
}

.area-row:hover .area-row-body h3 {
  color: var(--midnight);
}

.area-row-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  margin: 0;
}

.area-row-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.area-row:hover .area-row-tag {
  border-color: var(--gold);
  color: var(--gold);
}

.area-row-arrow {
  width: 18px;
  height: 18px;
  color: var(--ink-light);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}

.area-row:hover .area-row-arrow {
  transform: translateX(5px);
  color: var(--midnight);
}

@media (max-width: 768px) {
  .area-row {
    grid-template-columns: 48px 1fr 20px;
    gap: 1rem;
  }
  .area-row-tag { display: none; }
}

@media (max-width: 480px) {
  .area-row {
    grid-template-columns: 1fr 20px;
    gap: 0.75rem;
  }
  .area-row-number { display: none; }
  .area-row:hover {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 -0.5rem;
  }
}

/* ============================================================
   DIFERENCIAIS — Minimal editorial columns
   ============================================================ */
.diferenciais-section {
  background: linear-gradient(160deg, #172B1D 0%, #1A2F24 60%, #152619 100%);
  color: var(--ink-on-dark);
}

.diferenciais-section .section-header h2 {
  color: var(--ink-on-dark);
}

.diferenciais-section .section-header p {
  color: var(--ink-muted-dark);
}

.diferenciais-section .eyebrow {
  color: var(--gold);
}

.diferenciais-section .section-header--center .eyebrow::before,
.diferenciais-section .section-header--center .eyebrow::after {
  background: rgba(196,168,79,0.4);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.diferencial-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur) var(--ease);
}

.diferencial-item:last-child {
  border-right: none;
}

.diferencial-item:hover {
  background: rgba(255,255,255,0.025);
}

.diferencial-counter {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(196,168,79,0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.diferencial-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-on-dark);
  margin-bottom: 0.9rem;
}

.diferencial-item p {
  font-size: 0.88rem;
  color: var(--ink-muted-dark);
  line-height: 1.8;
}

/* ============================================================
   PLANOS EMPRESARIAIS — Minimal callout
   ============================================================ */
.planos-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.planos-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.planos-inner h2 { margin-bottom: 1rem; }
.planos-inner p  { max-width: 480px; }

.planos-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .planos-actions {
    flex-direction: column;
    width: 100%;
  }
  .planos-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   CTA FINAL SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(160deg, #172B1D 0%, #1A2F24 60%, #152619 100%);
  text-align: center;
  padding: 8rem 0;
}

.cta-section .eyebrow {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-section .eyebrow::before,
.cta-section .eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: rgba(196,168,79,0.5);
}

.cta-section h2 {
  color: var(--ink-on-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.cta-section > .container--sm > p {
  color: var(--ink-muted-dark);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-muted-dark);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER — Minimal Quiet Luxury
   ============================================================ */
.site-footer {
  background: var(--bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-link {
  display: block;
  transition: opacity var(--dur) var(--ease);
}

.footer-logo-link:hover { opacity: 0.75; }

.footer-info {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink-muted);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.social-link svg { width: 15px; height: 15px; }

.social-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  padding: 0;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}

.whatsapp-float svg,
.whatsapp-float img,
.whatsapp-float i {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-float span,
.whatsapp-float .btn-text {
  display: none;
}

/* ============================================================
   RESPONSIVE — Breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 5.5rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-aside {
    padding-left: 2rem;
    min-height: 240px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .diferencial-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 0;
  }

  .diferencial-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-cta {
    display: none !important;
  }

  .hamburger { display: flex; }
  .mobile-menu { display: block; }

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

  .planos-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .planos-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root { --section-py: 4rem; }

  .container,
  .container--sm { padding: 0 1.25rem; }

  .hero {
    background-image: url('../../fotos/LOGO_ESCRITORIO_HOME_HERO2m.png');
    background-attachment: scroll; /* bg-fixed não funciona em browsers mobile */
    background-size: cover;
    background-position: center center;
  }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }

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

  .hero-actions .btn { text-align: center; justify-content: center; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 7rem 1.25rem 4rem;
  }

  .hero-aside { display: none; }

  .team-entry {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .contact-row { gap: 1.5rem; flex-direction: column; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 20px; right: 20px; border-radius: 50%; }
}

/* ============================================================
   PÁGINAS INTERNAS — Tipografia e Layout
   ============================================================ */

/* Aliases para compatibilidade com páginas internas */
:root {
  --accent:         var(--gold);
  --text-secondary: var(--ink-muted);
  --bg-primary:     var(--bg);
}

/* Page Hero — banner interno com padding para navbar fixa */
.page-hero {
  background: linear-gradient(160deg, #172B1D 0%, #1A2F24 60%, #152619 100%);
  color: var(--ink-on-dark);
  padding: calc(72px + 4rem) 0 4rem;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.55);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a { color: inherit; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { opacity: 0.4; }
.page-hero .breadcrumb .current { color: var(--gold); }

.page-hero .label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  color: var(--ink-on-dark);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(238,233,223,0.72);
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.8;
}

/* Content layout — dois colunas: artigo + sidebar */
.content-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.content-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.content-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.75rem 0 0.5rem;
}

.content-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.content-body ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-body ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(72px + 2rem);
}

.sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sidebar-card h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sidebar-nav-link {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--divider);
  transition: color var(--dur) var(--ease);
}

.sidebar-nav-link:last-of-type { border-bottom: none; }
.sidebar-nav-link:hover { color: var(--ink); }

.sidebar-cta p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.mt-2 { margin-top: 0.75rem; }

/* CTA final section em páginas internas */
.cta-final-section {
  background: linear-gradient(160deg, #172B1D 0%, #1A2F24 60%, #152619 100%);
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-final-section h2 {
  color: var(--ink-on-dark);
  margin-bottom: 1rem;
}

.cta-final-section p {
  color: rgba(238,233,223,0.7);
  margin-bottom: 2rem;
}

/* Footer das páginas internas (footer-grid) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--ink-muted);
  transition: color var(--dur) var(--ease);
}

.footer-col ul li a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-light);
}

.oab-badge {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
}

/* Team grid nas páginas internas */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.team-photo-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--ink-light);
  fill: none;
  stroke-width: 1;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-info .team-oab {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.team-bio-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.team-bio-item::before {
  content: '♦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.6rem;
  margin-top: 0.4rem;
}

.team-bio-item span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.team-contact {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-contact a {
  font-size: 0.82rem;
  color: var(--gold);
}

/* Responsive — páginas internas */
@media (max-width: 900px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SEÇÕES ALTERNADAS — Verde #1A2F24 ↔ Off-white #F9F9F6
   Ordem: Hero(verde) → Diferenciais(off) → Áreas(verde) →
          Planos(off) → Equipe(verde) → CTA(off) → Contatos(verde) → Footer(off)
   ============================================================ */

/* ── 2. DIFERENCIAIS — Off-white (invertido do original) ── */
.diferenciais-section {
  background: var(--bg);
  color: var(--ink);
}
.diferenciais-section .section-header h2          { color: var(--ink); }
.diferenciais-section .section-header p           { color: var(--ink-muted); }
.diferenciais-section .eyebrow                    { color: var(--gold); }
.diferenciais-section .section-header--center .eyebrow::before,
.diferenciais-section .section-header--center .eyebrow::after { background: rgba(196,168,79,0.4); }
.diferenciais-section .diferenciais-grid { border-top: 1px solid var(--border); }
.diferenciais-section .diferencial-item  { border-right: 1px solid var(--border); }
.diferenciais-section .diferencial-item:last-child { border-right: none; }
.diferenciais-section .diferencial-item:hover      { background: rgba(26,26,26,0.025); }
.diferenciais-section .diferencial-counter         { color: rgba(196,168,79,0.22); }
.diferenciais-section .diferencial-item h3         { color: var(--ink); }
.diferenciais-section .diferencial-item p          { color: var(--ink-muted); }

@media (max-width: 1024px) {
  .diferenciais-section .diferencial-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .diferenciais-section .diferencial-item:last-child { border-bottom: none; }
}

/* ── 3. ÁREAS DE ATUAÇÃO — Verde escuro (invertido do original) ── */
.areas-section { background: linear-gradient(160deg, #172B1D 0%, #1A2F24 60%, #152619 100%); }
.areas-section .section-header h2  { color: var(--ink-on-dark); }
.areas-section .section-header p   { color: var(--ink-muted-dark); }
.areas-section .eyebrow-gold        { color: var(--gold); }
.areas-section .areas-list { border-top: 1px solid rgba(255,255,255,0.08); }
.areas-section .area-row {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-on-dark);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.areas-section .area-row:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.areas-section .area-row-body h3              { color: var(--ink-on-dark); }
.areas-section .area-row-body p               { color: var(--ink-muted-dark); }
.areas-section .area-row:hover .area-row-body h3 { color: var(--gold); }
.areas-section .area-row-title                { color: var(--ink-on-dark); }
.areas-section .area-row:hover .area-row-title { color: var(--gold); }
.areas-section .area-row-number               { color: var(--gold); }
.areas-section .area-row-tag {
  color: rgba(238,233,223,0.45);
  border-color: rgba(238,233,223,0.18);
}
.areas-section .area-row:hover .area-row-tag {
  border-color: var(--gold);
  color: var(--gold);
}
.areas-section .area-row-arrow     { color: rgba(238,233,223,0.35); }
.areas-section .area-row-arrow-link { color: rgba(238,233,223,0.35); }
.areas-section .area-row:hover .area-row-arrow,
.areas-section .area-row:hover .area-row-arrow-link { color: var(--gold); }

/* ── 4. PLANOS EMPRESARIAIS — Off-white exato ── */
.planos-section { background: var(--bg); }
.planos-section .planos-inner h2 { color: var(--ink); }
.planos-section .planos-inner p  { color: var(--ink-muted); }
.planos-section .eyebrow-gold    { color: var(--gold); }

/* ── 5. EQUIPE — Verde escuro com foto de fundo ── */
.team-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.team-section .section-header h2        { color: var(--ink-on-dark); }
.team-section .section-header .eyebrow { color: var(--gold); }
.team-section .team-directory { border-top: 1px solid rgba(255,255,255,0.08); }
.team-section .team-entry     { border-bottom: 1px solid rgba(255,255,255,0.08); }
.team-section .team-entry:hover { background: rgba(255,255,255,0.03); margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem; }
.team-section .team-name-link { color: var(--ink-on-dark); }
.team-section .team-name-link:hover { color: var(--gold); }
.team-section .team-oab { color: var(--ink-muted-dark); }

/* Foto de fundo com parallax */
.equipe-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.equipe-bg-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  will-change: transform;
}

.equipe-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 28, 20, 0.72) 0%,
    rgba(10, 28, 20, 0.85) 100%
  );
}

/* Conteúdo acima do fundo */
.team-section > *:not(.equipe-bg) {
  position: relative;
  z-index: 1;
}

/* ── 6. CTA AGENDE UMA CONSULTA — Off-white ── */
.cta-section {
  background: var(--bg);
  padding: 8rem 0 5rem;
}
.cta-section .eyebrow::before,
.cta-section .eyebrow::after { background: rgba(196,168,79,0.4); }
.cta-section .eyebrow  { color: var(--gold); }
.cta-section h2        { color: var(--ink); }
.cta-section > .container--sm > p { color: var(--ink-muted); }
/* Botão outline-light → substitui para outline no fundo claro */
.cta-section .btn-outline-light {
  color: var(--ink);
  border-color: rgba(17,17,17,0.35);
}
.cta-section .btn-outline-light:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ── 7. BLOCO DE CONTATOS — Verde escuro ── */
.contact-strip {
  background: var(--bg-dark);
  padding: 4rem 0;
}
.contact-strip .contact-row {
  border-top: none;
  padding-top: 0;
}
.contact-strip .contact-item span { color: var(--ink-muted-dark); }
.contact-strip .contact-item svg  { color: var(--gold); opacity: 0.7; }

/* ── Area row: estrutura com links separados (div wrapper) ── */
.area-row-title {
  color: inherit;
  text-decoration: none;
  display: block;
}
.area-row-arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
a.area-row-tag {
  text-decoration: none;
  cursor: pointer;
}
/* Remove cursor pointer do div wrapper (os links internos têm o cursor) */
div.area-row { cursor: default; }
div.area-row:hover { cursor: default; }
.area-row-title:hover, .area-row-arrow-link:hover { cursor: pointer; }
a.area-row-tag:hover { cursor: pointer; }

/* ============================================================
   AJUSTE DE ALTURA DO NAV para logo maior
   ============================================================ */
.nav-inner { height: 88px; }

/* ============================================================
   TEXT JUSTIFY — visual de revista editorial
   ============================================================ */
.hero-subtitle,
.content-body p,
.diferencial-item p,
.section-header p,
.planos-inner p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

/* ============================================================
   FOOTER UNIFICADO — substitui contact-strip + footer-minimal
   ============================================================ */
.footer-unified {
  background: linear-gradient(160deg, #0B1C14 0%, #0A1610 50%, #091410 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-unified-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-unified-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-unified-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(238,233,223,0.4);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.footer-unified-contact {
  display: flex;
  flex-direction: column;
}

.footer-unified-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer-unified-contact .footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 0.2rem;
}

.footer-unified-contact .footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(238,233,223,0.55);
  line-height: 1.55;
  font-weight: 300;
}

.footer-unified-links {
  display: flex;
  flex-direction: column;
}

.footer-unified-links a {
  font-size: 0.82rem;
  color: rgba(238,233,223,0.5);
  padding: 0.3rem 0;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  font-weight: 300;
}

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

.footer-unified .footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-unified .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(238,233,223,0.18);
  border-radius: var(--radius);
  color: rgba(238,233,223,0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-unified .footer-social .social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-unified .footer-social .social-link svg {
  width: 14px;
  height: 14px;
}

.footer-unified-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.footer-unified-bottom .container,
.footer-unified-bottom > .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-unified-bottom p {
  font-size: 0.74rem;
  color: rgba(238,233,223,0.28);
  font-weight: 300;
  text-align: left;
}

.footer-unified-bottom span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(238,233,223,0.28);
}

/* Responsive footer-unified */
@media (max-width: 960px) {
  .footer-unified-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }
  .footer-unified-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-unified-grid {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
  .footer-unified-brand { flex-direction: column; gap: 1rem; }
  .footer-unified-bottom .container,
  .footer-unified-bottom > .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .footer-unified-bottom p { text-align: center; }
}

/* ── Área grid hub: areas-de-atuacao.html ── */
.areas-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.area-hub-card {
  display: block;
  background: var(--bg-dark);
  padding: 2rem 1.75rem;
  text-decoration: none;
  transition: background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.area-hub-card:hover { background: #0A1610; }

.area-hub-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.area-hub-card:hover::after { transform: scaleX(1); }

.area-hub-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

.area-hub-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ink-on-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.area-hub-desc {
  font-size: 0.875rem;
  color: var(--ink-muted-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.area-hub-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-hub-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}

.area-hub-card:hover .area-hub-cta svg {
  transform: translateX(4px);
}

@media (max-width: 1023px) {
  .areas-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .areas-hub-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SECTION TITLE LINK (clickable h2 titles)
   ===================================================== */
.section-title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}
.section-title-link:hover {
  color: var(--gold, #CBA052);
}

/* =====================================================
   REVIEWS SECTION — Social Proof
   ===================================================== */
.reviews-section {
  background: #F9F9F6;
  padding: var(--section-py, 6rem) 0;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(203,160,82,0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--ink-light, #555);
  letter-spacing: 0.04em;
}

.review-stars-inline {
  color: #CBA052;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Carousel wrapper */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.reviews-carousel-outer {
  overflow: hidden;
  flex: 1;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #fff;
  border: 1px solid #e0e0d8;
  border-radius: 2px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Carousel arrows */
.carousel-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid #CBA052;
  background: transparent;
  color: #CBA052;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background var(--dur, 0.25s) ease;
  padding: 0;
}

.carousel-arrow:hover {
  background: rgba(203,160,82,0.12);
}

.carousel-arrow svg {
  stroke: #CBA052;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #CBA052;
  background: transparent;
  cursor: pointer;
  transition: background var(--dur, 0.25s) ease;
  padding: 0;
}

.carousel-dot.active {
  background: #CBA052;
}

@media (max-width: 767px) {
  .review-card { flex: 0 0 100%; }
  .carousel-arrow { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

.review-stars {
  color: #CBA052;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
  font-style: italic;
  margin: 0;
  flex: 1;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid #e0e0d8;
  padding-top: 1rem;
  margin-top: auto;
}

.review-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: #111111;
}

.review-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: #CBA052;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =====================================================
   EQUIPE PAGE — Aligned grid
   ===================================================== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

.equipe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  background: var(--bg, #F9F9F6);
  border: 1px solid var(--border, #e8e4dd);
  border-radius: 2px;
  overflow: hidden;
}

.equipe-card .team-photo {
  width: 100%;
  aspect-ratio: unset;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border, #e8e4dd);
}

.equipe-card .team-photo-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.equipe-card .team-info {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.equipe-card .team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  text-align: center;
  margin-bottom: 0.35rem;
}

.equipe-card .team-oab {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #CBA052;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.equipe-card .team-bio-item span {
  font-size: 0.85rem;
  color: #555;
  text-align: left;
}

.equipe-card .team-contact {
  text-align: center;
  margin-top: 1rem;
}

.equipe-card .team-contact a {
  display: block;
  font-size: 0.82rem;
  color: var(--gold, #CBA052);
  text-align: center;
}

@media (max-width: 767px) {
  .equipe-grid {
    grid-template-columns: 1fr;
  }
  .equipe-card .team-photo {
    height: 260px;
  }
}

/* =====================================================
   DIFERENCIAIS PHOTO SECTION — Glass Cards
   ===================================================== */
.diferenciais-photo-section {
  position: relative;
  padding: 7rem 0;
  min-height: 600px;
  background-color: #1A2F24;
  background-image: none;
}

/* Overlay oculto — seção usa fundo sólido #1A2F24 */
.diferenciais-overlay {
  display: none;
}

.diferenciais-photo-inner {
  position: relative;
  z-index: 1;
}

/* Mobile: seção Nossa Equipe — parallax reduzido */
@media (max-width: 768px) {
  .equipe-bg-img {
    height: 115%;
    object-position: center 20%;
  }
}

.diferenciais-photo-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.diferenciais-photo-header h2 {
  color: #F9F9F6;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0.75rem;
}

.diferenciais-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius, 8px);
  padding: 2.25rem 2rem;
  transition: background var(--dur, 0.25s) var(--ease, ease), transform var(--dur, 0.25s) var(--ease, ease);
}

.glass-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.glass-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(203,160,82,0.15);
  border: 1px solid rgba(203,160,82,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.glass-card-icon svg {
  stroke: #CBA052;
}

.glass-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #F9F9F6;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.glass-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(249,249,246,0.78);
  margin: 0;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

@media (max-width: 767px) {
  .diferenciais-photo-section {
    padding: 5rem 1.5rem;
    min-height: unset;
  }
  .diferenciais-photo-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .diferenciais-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-photo-grid .glass-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* =====================================================
   FOOTER UNIFIED
   ===================================================== */
.footer-unified {
  background: linear-gradient(160deg, #0B1C14 0%, #0A1610 50%, #091410 100%);
  color: #F9F9F6;
  padding: 4rem 0 0;
}

.footer-unified-grid {
  max-width: var(--container, 1320px);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem 4rem;
}

.footer-unified-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-unified-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249,249,246,0.45);
  margin: 0;
}

.footer-unified-contact,
.footer-unified-links,
.footer-unified-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #CBA052);
  margin-bottom: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(249,249,246,0.7);
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent, #CBA052);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.footer-unified-links a,
.footer-unified-nav a {
  font-size: 0.88rem;
  color: rgba(249,249,246,0.65);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}

.footer-unified-links a::after,
.footer-unified-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent, #CBA052);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease, cubic-bezier(0.25, 0.46, 0.45, 0.94));
}

.footer-unified-links a:hover,
.footer-unified-nav a:hover {
  color: var(--accent, #CBA052);
}

.footer-unified-links a:hover::after,
.footer-unified-nav a:hover::after {
  transform: scaleX(1);
}

.footer-unified .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-unified .social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(249,249,246,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-unified .social-link:hover {
  border-color: var(--accent, #CBA052);
  background: rgba(203,160,82,0.1);
}

.footer-unified .social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(249,249,246,0.6);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.2s;
}

.footer-unified .social-link:hover svg {
  stroke: var(--accent, #CBA052);
}

.footer-unified-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(249,249,246,0.08);
  padding: 1.25rem 0;
}

.footer-unified-bottom .container {
  max-width: var(--container, 1320px);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-unified-bottom p {
  font-size: 0.78rem;
  color: rgba(249,249,246,0.35);
  margin: 0;
}

.footer-unified-bottom span {
  font-size: 0.75rem;
  color: rgba(249,249,246,0.25);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .footer-unified-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-unified-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-unified-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-unified-brand {
    grid-column: auto;
  }
  .footer-unified-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* =====================================================
   AREAS DE ATUAÇÃO — PHOTO CARDS (full-bleed)
   ===================================================== */

.areas-photo-section {
  width: 100%;
  padding: 0;
}

.areas-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
  color: #F9F9F6;
  cursor: pointer;
}

.area-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.area-card:hover .area-card-img {
  transform: scale(1.06);
}

.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,28,20,0.18) 0%, rgba(10,28,20,0.55) 45%, rgba(10,28,20,0.82) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.area-card:hover .area-card-overlay {
  background: linear-gradient(to bottom, rgba(10,28,20,0.25) 0%, rgba(10,28,20,0.62) 45%, rgba(10,28,20,0.88) 100%);
}

.area-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.area-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CBA052;
  opacity: 0.9;
}

.area-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #F9F9F6;
  line-height: 1.25;
  margin: 0;
}

.area-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(249,249,246,0.82);
  line-height: 1.55;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.area-card:hover .area-card-desc {
  max-height: 6rem;
  opacity: 1;
}

.area-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #CBA052;
  margin-top: 0.5rem;
  display: inline-block;
  transition: letter-spacing 0.25s ease;
}

.area-card:hover .area-card-cta {
  letter-spacing: 0.13em;
}

/* Divisor vertical sutil entre cards */
.area-card + .area-card {
  border-left: 1px solid rgba(249,249,246,0.08);
}

@media (max-width: 1023px) {
  .areas-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-card + .area-card {
    border-left: none;
  }
  .area-card:nth-child(2n) {
    border-left: 1px solid rgba(249,249,246,0.08);
  }
  .area-card:nth-child(n+3) {
    border-top: 1px solid rgba(249,249,246,0.08);
  }
}

@media (max-width: 599px) {
  .areas-photo-grid {
    grid-template-columns: 1fr;
  }
  .area-card {
    min-height: 360px;
  }
  .area-card + .area-card,
  .area-card:nth-child(2n),
  .area-card:nth-child(n+3) {
    border-left: none;
    border-top: 1px solid rgba(249,249,246,0.08);
  }
  .area-card-desc {
    max-height: 6rem;
    opacity: 1;
  }
  .area-card:hover .area-card-desc {
    max-height: 6rem;
    opacity: 1;
  }
}

/* =====================================================
   MOBILE — ACESSIBILIDADE E VISIBILIDADE DE LINKS
   ===================================================== */

@media (max-width: 768px) {

  /* Menu mobile — links maiores e área de toque adequada */
  .mobile-menu a,
  .mobile-nav-link {
    display: flex !important;
    align-items: center;
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    min-height: 56px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    text-decoration: none;
  }

  .mobile-menu a:active,
  .mobile-nav-link:active {
    color: #CBA052;
    padding-left: 32px;
  }

  /* Links do rodapé mobile */
  footer a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    min-height: 44px;
    color: rgba(249,249,246,0.85);
    font-size: 15px;
    transition: color 0.2s ease;
  }

  footer a:active {
    color: #CBA052;
  }

  /* Botões CTA mobile — full width */
  .btn-primary,
  .btn-secondary {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Focus visible global mobile */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid #CBA052;
    outline-offset: 3px;
    border-radius: 1px;
  }

  /* Botão "Veja mais" — Nossos Serviços (mobile only, ornado) */
  .btn-ver-mais-areas {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 13px 24px;
    border: 1px solid rgba(203,160,82,0.55);
    color: #CBA052;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(203,160,82,0.05);
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, letter-spacing 0.25s ease;
  }

  /* Linha decorativa dourada acima do botão */
  .btn-ver-mais-areas::before {
    content: '';
    display: block;
    position: absolute;
    top: -18px;
    left: 0;
    width: 32px;
    height: 1px;
    background: rgba(203,160,82,0.4);
  }

  .btn-ver-mais-areas::after {
    content: '→';
    font-size: 14px;
    letter-spacing: 0;
    margin-left: auto;
  }

  .btn-ver-mais-areas:active {
    background: rgba(203,160,82,0.14);
    border-color: #CBA052;
    letter-spacing: 0.22em;
  }
}

/* Botão "Veja mais" oculto em desktop */
@media (min-width: 769px) {
  .btn-ver-mais-areas {
    display: none;
  }
}

/* ============================================================
   HERO OAB GUTTER — responsive vw positioning (lg / xl / 2xl)
   ============================================================ */

/* lg: 1024px — aparece no gutter, posição base */
@media (min-width: 1024px) {
  .hero-oab-gutter {
    display: flex;
    left: 3vw;
  }
}

/* xl: 1280px — gutter mais largo, afastar da borda */
@media (min-width: 1280px) {
  .hero-oab-gutter {
    left: 6vw;
  }
}

/* 2xl: 1536px — gutter generoso, centro do espaço lateral */
@media (min-width: 1536px) {
  .hero-oab-gutter {
    left: 10vw;
  }
}
