/* ============================================================
   MCFL ADVOGADOS — Stylesheet (inspirado no tema LawSight)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ── RESET & VARIÁVEIS ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #1b2a3b;
  --darker:     #0d1b27;
  --gold:       #c9a96e;
  --gold-light: #dfc18a;
  --gold-dark:  #a8854d;
  --light:      #f7f6f2;
  --white:      #ffffff;
  --text:       #444444;
  --text-muted: #888888;
  --border:     #e2ddd5;
  --heading:    'Playfair Display', Georgia, serif;
  --body:       'Open Sans', Arial, sans-serif;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --radius:     2px;
  --trans:      all .3s ease;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.75; font-size: 15px; }
a     { text-decoration: none; color: inherit; transition: color .3s; }
ul    { list-style: none; }
img   { max-width: 100%; height: auto; display: block; }

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 36px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  border-radius: var(--radius);
}
.btn:hover { background: var(--gold); color: var(--dark); }
.btn-solid  { background: var(--gold); color: var(--dark); }
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-dark   { background: var(--dark); border-color: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── NAVEGAÇÃO ───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  background: var(--darker);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 48px; width: auto; }

.logo-fallback {
  font-family: var(--heading);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}
.logo-fallback small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  margin-top: 4px;
}

.nav-menu { display: flex; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 28px 16px;
  display: block;
  position: relative;
  transition: color .3s;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .3s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--darker);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,20,32,.88) 0%, rgba(27,42,59,.80) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--heading);
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 24px;
}
.hero-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 28px; }
.hero p {
  color: rgba(255,255,255,.78);
  font-size: 16px; line-height: 1.85;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ── BARRA DE INFORMAÇÕES ────────────────────────────────── */
.info-bar {
  background: var(--gold);
  padding: 22px 48px;
  display: flex; justify-content: center; align-items: center;
  gap: 60px; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 14px; }
.info-item i { font-size: 22px; color: var(--darker); opacity: .75; }
.info-label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(27,42,59,.65);
  margin-bottom: 3px;
}
.info-value { display: block; font-size: 14px; font-weight: 700; color: var(--darker); }

/* ── SEÇÕES GENÉRICAS ────────────────────────────────────── */
section { padding: 90px 48px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--dark); font-weight: 700; line-height: 1.2;
  margin-bottom: 20px;
}
.section-divider { width: 48px; height: 2px; background: var(--gold); margin: 0 auto 22px; }
.section-subtitle { font-size: 15px; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ── SEÇÃO SOBRE (HOME) ──────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: '';
  position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 2px solid var(--gold); z-index: 0; pointer-events: none;
}
.about-image-wrap img,
.about-image-placeholder {
  position: relative; z-index: 1;
  width: 100%; height: 420px; object-fit: cover;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, #2c4a66 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-image-placeholder i { font-size: 80px; color: rgba(255,255,255,.12); }

.about-text .section-title,
.about-text .section-divider { text-align: left; }
.about-text .section-divider { margin-left: 0; }
.about-text p { color: var(--text); line-height: 1.9; font-size: 15px; margin-bottom: 18px; }

/* ── ÁREAS DE ATUAÇÃO ────────────────────────────────────── */
.areas-section { background: var(--light); }

.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.area-card {
  background: var(--white);
  padding: 44px 30px 36px;
  text-align: center;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.area-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.area-icon {
  display: block; font-size: 42px; color: var(--gold); margin-bottom: 22px;
}
.area-card h3 {
  font-family: var(--heading);
  font-size: 18px; color: var(--dark); font-weight: 600; margin-bottom: 14px;
}
.area-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── PUBLICAÇÕES (HOME) ──────────────────────────────────── */
.publications-section { background: var(--white); }

.pub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.pub-card {
  border: 1px solid var(--border);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: var(--trans);
}
.pub-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.pub-card:hover { box-shadow: var(--shadow-lg); }
.pub-card:hover::before { transform: scaleX(1); }
.pub-date {
  display: block; color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.pub-card h3 {
  font-family: var(--heading);
  font-size: 19px; color: var(--dark); font-weight: 600; line-height: 1.4;
  margin-bottom: 14px;
}
.pub-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.pub-link {
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
}
.pub-link:hover { color: var(--dark); }
.pub-link i { font-size: 10px; }

/* ── ADVOGADOS ───────────────────────────────────────────── */
.lawyers-section { background: var(--darker); }
.lawyers-section .section-title { color: var(--white); }

.lawyers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.lawyer-card { text-align: center; }
.lawyer-photo-wrap {
  position: relative; overflow: hidden;
  width: 100%; padding-bottom: 130%;
  background: rgba(255,255,255,.06);
}
.lawyer-photo-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%); transition: filter .4s;
}
.lawyer-card:hover .lawyer-photo-wrap img { filter: none; }
.lawyer-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-size: 52px; color: var(--gold); opacity: .2;
  font-style: italic;
}
.lawyer-info { padding: 20px 10px 8px; }
.lawyer-name {
  font-family: var(--heading);
  font-size: 16px; color: var(--white); font-weight: 600; margin-bottom: 7px;
}
.lawyer-role {
  color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}

/* ── MAPA ────────────────────────────────────────────────── */
.map-wrap { padding: 0; line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: none; }

/* ── CONTATO ─────────────────────────────────────────────── */
.contact-section { background: var(--light); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}
.contact-info-col h3 {
  font-family: var(--heading);
  font-size: 28px; color: var(--dark); margin-bottom: 18px;
}
.contact-info-col p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 34px; }

.cdetail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.cdetail i { color: var(--gold); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.cdetail-body strong {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dark); margin-bottom: 4px;
}
.cdetail-body span { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--dark);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }

.form-control {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); background: var(--light);
  font-family: var(--body); font-size: 14px; color: var(--text);
  outline: none; transition: border-color .3s, background .3s;
  border-radius: var(--radius);
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
textarea.form-control { min-height: 140px; resize: vertical; }

.form-privacy {
  font-size: 12px; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 26px;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }

.btn-submit {
  background: var(--dark); border: 2px solid var(--dark); color: var(--white);
  padding: 13px 40px;
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: var(--trans); border-radius: var(--radius);
}
.btn-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── BANNER DE PÁGINAS INTERNAS ──────────────────────────── */
.page-banner {
  position: relative;
  padding: 140px 48px 70px;
  text-align: center;
  background: var(--darker);
  background-image: url('../images/page-banner.jpg');
  background-size: cover; background-position: center;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,20,30,.82);
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--heading);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white); font-weight: 700; margin-bottom: 18px;
}
.page-banner .section-divider { margin-bottom: 16px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb sep { margin: 0 8px; }

/* ── SEÇÃO SOBRE (PÁGINA SOBRE) ──────────────────────────── */
.sobre-section { padding: 90px 48px; }
.sobre-section.bg-light { background: var(--light); }

.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.sobre-grid.reverse { direction: rtl; }
.sobre-grid.reverse > * { direction: ltr; }

.sobre-img-wrap img,
.sobre-img-placeholder {
  width: 100%; height: 460px; object-fit: cover;
}
.sobre-img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, #2c4a66 100%);
  display: flex; align-items: center; justify-content: center;
}
.sobre-img-placeholder i { font-size: 80px; color: rgba(255,255,255,.12); }

.sobre-text h2 {
  font-family: var(--heading);
  font-size: clamp(26px, 3vw, 38px); color: var(--dark); font-weight: 700;
  margin-bottom: 16px;
}
.sobre-divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 26px; }
.sobre-text p { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 18px; }

/* ── PUBLICAÇÕES (LISTA) ─────────────────────────────────── */
.pub-list-section { background: var(--white); padding: 80px 48px; }
.pub-list { max-width: 920px; margin: 0 auto; }

.pub-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 32px; align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.pub-item:first-child { border-top: 1px solid var(--border); }

.pub-cal {
  background: var(--dark); text-align: center; padding: 14px 10px;
  flex-shrink: 0;
}
.pub-cal .cal-day {
  display: block; font-family: var(--heading); font-size: 32px;
  color: var(--gold); line-height: 1; font-weight: 700;
}
.pub-cal .cal-month {
  display: block; font-size: 10px; color: rgba(255,255,255,.6);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 5px;
}

.pub-item-content h2 {
  font-family: var(--heading);
  font-size: 21px; color: var(--dark); font-weight: 700; line-height: 1.3;
  margin-bottom: 10px; transition: color .3s;
}
.pub-item-content h2 a:hover { color: var(--gold); }

.pub-item-authors {
  display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 14px;
}
.pub-item-authors span {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--gold);
  text-transform: uppercase;
}
.pub-item-authors span + span::before { content: ' · '; color: var(--text-muted); font-weight: 400; }

.pub-item-content p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

/* ── RODAPÉ ──────────────────────────────────────────────── */
.footer { background: var(--darker); color: rgba(255,255,255,.62); }

.footer-main {
  max-width: 1120px; margin: 0 auto;
  padding: 72px 48px 44px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand .footer-logo { display: block; margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 46px; width: auto; filter: brightness(0) invert(1) opacity(.9); }
.footer-brand .logo-fallback { color: var(--gold); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 270px; }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-link {
  width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.55); transition: var(--trans);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.footer-col h4 {
  font-family: var(--heading); font-size: 17px; color: var(--white); font-weight: 600;
  padding-bottom: 14px; margin-bottom: 22px; position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px; background: var(--gold);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.58);
  display: flex; align-items: center; gap: 8px; transition: color .3s;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 17px; }
.footer-links a:hover { color: var(--gold); }

.fcontact-item { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.fcontact-item i { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.fcontact-item span { font-size: 14px; line-height: 1.65; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 48px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); }

/* ── PERFIS DE ADVOGADOS (PÁGINA ADVOGADOS) ──────────────── */
.lawyers-page-section { background: var(--white); padding: 70px 48px; }
.lawyers-page-list { max-width: 1000px; margin: 0 auto; }

.lawyer-profile {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 50px; align-items: start;
  padding: 50px 0; border-bottom: 1px solid var(--border);
}
.lawyer-profile:first-child { border-top: 1px solid var(--border); }

.lawyer-profile.reverse { grid-template-columns: 1fr 260px; }
.lawyer-profile.reverse .lawyer-profile-photo { grid-column: 2; grid-row: 1; }
.lawyer-profile.reverse .lawyer-profile-info  { grid-column: 1; grid-row: 1; }

.lawyer-profile-photo { flex-shrink: 0; }
.lawyer-profile-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  filter: grayscale(15%); transition: filter .4s;
}
.lawyer-profile:hover .lawyer-profile-photo img { filter: none; }

.lp-initials {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark) 0%, #2c4a66 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 60px; font-style: italic;
  color: var(--gold); opacity: .4;
}

.lawyer-profile-info { padding-top: 6px; }

.lp-name {
  font-family: var(--heading); font-size: 28px;
  color: var(--dark); font-weight: 700; margin-bottom: 8px; line-height: 1.2;
}
.lp-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 13px; font-weight: 600;
  margin-bottom: 16px; transition: color .3s;
}
.lp-email:hover { color: var(--dark); }

.lp-area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.lp-area-tag {
  background: var(--light); border: 1px solid var(--border);
  color: var(--text); font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 2px;
}

.lp-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 18px; }

.lp-bio { font-size: 14px; color: var(--text); line-height: 1.9; margin-bottom: 24px; }

.linkedin-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0077B5; color: var(--white);
  padding: 10px 22px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--radius);
  transition: background .3s;
}
.linkedin-btn:hover { background: #005885; }

/* ── ARTIGO (PÁGINA INDIVIDUAL) ──────────────────────────── */
.article-section { background: var(--white); padding: 70px 48px; }
.article-container { max-width: 820px; margin: 0 auto; }

.article-header { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.article-title {
  font-family: var(--heading);
  font-size: clamp(24px, 3.5vw, 38px); color: var(--dark); font-weight: 700;
  line-height: 1.3; margin-bottom: 22px;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; margin-bottom: 18px; }
.article-date {
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; display: flex; align-items: center; gap: 7px;
}
.article-author-card {
  background: var(--light); padding: 12px 18px;
  border-left: 3px solid var(--gold); margin-bottom: 8px;
}
.article-author-name {
  font-family: var(--heading); font-size: 15px; color: var(--dark);
  font-weight: 600; display: block; margin-bottom: 2px;
}
.article-author-role { font-size: 12px; color: var(--text-muted); }

.article-divider { width: 52px; height: 2px; background: var(--gold); margin: 24px 0 36px; }

.article-body { font-size: 15.5px; line-height: 1.92; color: var(--text); }
.article-body p { margin-bottom: 22px; }
.article-body ul { list-style: none; padding: 0; margin: 0 0 22px 0; }
.article-body ul li { padding-left: 22px; position: relative; margin-bottom: 12px; line-height: 1.75; }
.article-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.article-body ol { margin: 0 0 22px 26px; }
.article-body ol li { margin-bottom: 12px; line-height: 1.75; }

.legal-cite {
  background: var(--light); border-left: 4px solid var(--dark);
  padding: 20px 26px; margin: 28px 0;
  font-size: 14px; line-height: 1.85; color: var(--text);
}
.legal-cite p { margin-bottom: 14px; }
.legal-cite p:last-child { margin-bottom: 0; }
.legal-cite strong { display: block; margin-bottom: 10px; font-size: 13px; letter-spacing: .5px; }

.article-nav { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; transition: color .3s;
}
.back-btn:hover { color: var(--dark); }

@media (max-width: 768px) { .article-section { padding: 50px 24px; } }

/* ── ÁREAS DE ATUAÇÃO (LISTA) ────────────────────────────── */
.areas-list-section { background: var(--white); padding: 70px 48px; }
.areas-list-inner { max-width: 1120px; margin: 0 auto; }

.areas-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar, section, .pub-list-section, .sobre-section, .page-banner, .info-bar,
  .lawyers-page-section, .areas-list-section { padding-left: 28px; padding-right: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lawyers-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .sobre-grid { gap: 48px; }
  .areas-full-grid { grid-template-columns: repeat(2, 1fr); }
  .lawyer-profile         { grid-template-columns: 200px 1fr; gap: 36px; }
  .lawyer-profile.reverse { grid-template-columns: 1fr 200px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 80px; left: 0; right: 0;
    background: var(--darker); flex-direction: column;
    align-items: stretch; padding: 10px 0; gap: 0;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: var(--trans); z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-menu a::after { display: none; }

  section { padding: 60px 24px; }
  .page-banner, .pub-list-section, .sobre-section { padding-left: 24px; padding-right: 24px; }

  .about-grid, .contact-grid, .sobre-grid, .sobre-grid.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .about-image-wrap::before { display: none; }

  .areas-grid  { grid-template-columns: 1fr; }
  .pub-grid    { grid-template-columns: 1fr; }
  .lawyers-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .info-bar { gap: 28px; flex-direction: column; text-align: center; }
  .info-item { flex-direction: column; gap: 6px; }

  .pub-item { grid-template-columns: 1fr; }
  .pub-cal { display: none; }

  .lawyer-profile { grid-template-columns: 1fr; gap: 28px; }
  .lawyer-profile.reverse { grid-template-columns: 1fr; }
  .lawyer-profile.reverse .lawyer-profile-photo,
  .lawyer-profile.reverse .lawyer-profile-info { grid-column: 1; grid-row: auto; }
  .lawyers-page-section { padding: 60px 24px; }
  .areas-list-section { padding: 60px 24px; }
  .areas-full-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px 30px; }
  .footer-bottom { padding: 18px 24px; }
}

@media (max-width: 480px) {
  .lawyers-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 34px; }
  .navbar { padding: 0 20px; }
}

/* ═══════════════════════════════════════ ANIMAÇÕES */

.navbar { transition: box-shadow .35s ease; }
.navbar.scrolled { box-shadow: 0 6px 32px rgba(0,0,0,.22); }

.hero-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
}
.hero-child--in { opacity: 1; transform: none; }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.fade-up--in { opacity: 1; transform: none; }

.divider-anim {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.divider-anim--in { transform: scaleX(1); }

.lawyer-photo-wrap img {
  transition: filter .4s ease, transform .5s ease;
}
.lawyer-card:hover .lawyer-photo-wrap img { transform: scale(1.06); }

.lawyer-profile-photo { overflow: hidden; }
.lawyer-profile-photo img {
  transition: filter .4s ease, transform .5s ease;
}
.lawyer-profile:hover .lawyer-profile-photo img { transform: scale(1.04); }

.pub-card:hover { transform: translateY(-5px); }

@media (prefers-reduced-motion: reduce) {
  .hero-child, .fade-up, .divider-anim {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .lawyer-photo-wrap img,
  .lawyer-profile-photo img { transition: filter .4s ease; }
}