/* ===================================================================
   GRAZIELA OLIVEIRA — Design System
   Fontes: Playfair Display (serif) + Inter (sans)
   Paleta: referência divorcio-graziela.html
   =================================================================== */

/* ── TOKENS ── */
:root {
  --gold:       #c9a96e;
  --gold-dark:  #9a7a48;
  --gold-pale:  rgba(201,169,110,.12);
  --bg:         #0d0d0d;
  --surface:    #141414;
  --surface2:   #1a1a1a;
  --line:       rgba(201,169,110,.2);
  --line-soft:  rgba(255,255,255,.07);
  --white:      #ffffff;
  --soft:       #c8c2b8;
  --muted:      #7a756e;
  --max:        1200px;
  --px:         clamp(1.25rem, 5vw, 3rem);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--soft);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .75rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.2rem; }

em     { font-style: italic; color: var(--gold); }
strong { font-weight: 600; color: var(--white); }

/* ── WRAP ── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── LABEL ── */
.label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; }
.label2 {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.label-underline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  margin-bottom: 1.1rem;
}
/* ── PILL ── */
.pill {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}

/* ── BOTÕES ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold);
  color: #000;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-gold .ti { font-size: 1.5rem; }
.btn-gold:hover { background: #d9ba82; color: #000; transform: translateY(-1px); }
.btn-gold.btn-sm { padding: .5rem 1.25rem; font-size: .72rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--soft);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  transition: .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  transition: .2s;
}
.btn-primary-sm:hover { background: var(--gold); color: #000; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.link-arrow:hover { gap: .8rem; color: var(--gold); }

/* ── SEÇÕES ── */
.section        { padding: 6rem 0; }
.section--alt   { background: var(--surface); }
.section--light { background: #f7f4ef; color: #1a1a1a; }
.section--light h1,
.section--light h2,
.section--light h3 { color: #111; }
.section--light p  { color: #444; }
.section--light em { color: var(--gold-dark); }
.section-alt    { background: var(--surface); }
.section-border { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { text-align: center; margin-bottom: 3rem; }

/* ── MARQUEE ── */
.marquee { overflow: hidden; background: var(--gold); padding: .7rem 0; }
.marquee > div {
  display: flex;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
}
.marquee > div > span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #000;
  padding: 0 2.5rem;
  flex-shrink: 0;
}
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header--transparent { background: transparent; border-bottom: none; }
.site-header--scrolled    { background: rgba(13,13,13,.98); }

.site-header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__logo > img {
  height: 55px;
  /* filter: brightness(0) invert(1);
  opacity: .85; */
  display: block;
}

/* ── DESKTOP ── */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__link {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.site-header__link:hover,
.site-header__link[aria-current="page"] { color: var(--gold); }

/* ── MOBILE ACTIONS ── */
.site-header__mobile-actions {
  display: none;
  align-items: center;
  gap: .6rem;
}
.site-header__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}
.site-header__wa-btn:hover { opacity: .85; }

.site-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  width: 2.4rem; height: 2.4rem;
}
.site-header__toggle > span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
}

/* ── OVERLAY MOBILE ── */
.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.site-header__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-header__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}
.site-header__overlay-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.site-header__overlay-link:hover,
.site-header__overlay-link[aria-current="page"] { color: var(--gold); }

.site-header__overlay-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold);
  color: #000;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 2rem;
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .site-header__nav            { display: none; }
  .site-header__mobile-actions { display: flex; }
}

/* ── HERO (home) ── */
.hero--home {
  text-align: center; 
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 3rem;
  align-items: center;
  justify-content: center;
  padding-block: 8rem 5rem;
}
.hero__content > h1 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); margin-bottom: 1.25rem; }
.hero__line { display: block; }
.hero__content > p { color: var(--soft); margin-bottom: 2.25rem;  }
.hero__img > img { width: 100%; max-height: 90vh; object-fit: cover; object-position: top; filter: grayscale(20%) brightness(.8); }

/* ── PAGE HERO ── */
.page-hero { padding: 9rem 0 5rem; background: var(--bg); border-bottom: 1px solid var(--line); }
.page-hero--area { position: relative; overflow: hidden; }
.page-hero > .wrap > h1 { max-width: 760px; margin-bottom: 1.25rem; }
.page-hero__sub { color: var(--soft); max-width: 520px; font-size: .97rem; }
.area-logo { margin-bottom: 3rem; filter: brightness(0) invert(1); opacity: .85; }
.contato-head { max-width: 820px; }
.contato-wait { color: var(--muted); font-size: .9rem; margin-top: 1rem; }

/* ── TIPOS (divórcio — grid 2 colunas com número decorativo) ── */
.tipos > .wrap > .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 2.5rem;
}
.tipos > .wrap > .grid > article {
  background: var(--bg);
  padding: 2.25rem;
  position: relative;
  transition: background .2s;
}
.tipos > .wrap > .grid > article:hover { background: var(--surface); }
.tipos > .wrap > .grid > article > .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold-pale);
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  line-height: 1;
  user-select: none;
}
.tipos > .wrap > .grid > article > .tag {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: .18rem .65rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.tipos > .wrap > .grid > article > h3 { margin-bottom: .6rem; }
.tipos > .wrap > .grid > article > p  { font-size: .88rem; color: var(--soft); line-height: 1.8; }

/* ── ETAPAS (timeline vertical) ── */
.etapas > .wrap { max-width: 860px; }
.etapas > .wrap > .timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.etapas > .wrap > .timeline::before {
  content: '';
  position: absolute;
  left: 1.6rem; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.etapas > .wrap > .timeline > li {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-bottom: 2.75rem;
  position: relative;
}
.etapas > .wrap > .timeline > li:last-child { padding-bottom: 0; }
.etapas > .wrap > .timeline > li > .circle {
  width: 3.2rem; height: 3.2rem;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  z-index: 1;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  position: relative;
  top: .1rem;
}
.etapas > .wrap > .timeline > li > div > h3 { padding-top: .5rem; }
.etapas > .wrap > .timeline > li > div > p  { font-size: .88rem; color: var(--soft); line-height: 1.8; }

/* ── DIFERENCIAIS (grid 3 colunas separadas por 1px) ── */
.difs > .wrap > .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 2.5rem;
}
.difs > .wrap > .grid > div {
  background: var(--bg);
  padding: 2.25rem 2rem;
  transition: background .2s;
}
.difs > .wrap > .grid > div:hover { background: var(--surface); }
.difs > .wrap > .grid > div > .icon {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.difs > .wrap > .grid > div > .icon > svg {
  width: 1rem; height: 1rem;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.difs > .wrap > .grid > div > h3 { font-size: 1.05rem; }
.difs > .wrap > .grid > div > p  { font-size: .86rem; color: var(--soft); line-height: 1.85; }

/* ── ADVOGADA (foto + texto) ── */
.about > .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.about > .wrap > figure { position: relative; }
.about > .wrap > figure > img {
  display: block; width: 100%;
  aspect-ratio: 3/4; object-fit: cover; object-position: top;
  filter: grayscale(15%) brightness(.82);
}
.about > .wrap > figure::after {
  content: '';
  position: absolute;
  top: 1.1rem; left: 1.1rem; right: -1.1rem; bottom: -1.1rem;
  border: 1px solid var(--gold-dark);
  z-index: -1;
}
.about > .wrap > div > p { font-size: .9rem; color: var(--soft); margin-bottom: 1rem; }
.about > .wrap > div > p > strong { color: var(--white); font-weight: 400; }
.about > .wrap > div > blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #d9c9a8;
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.7;
}
.about > .wrap > div > .sig { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.about > .wrap > div > .oab { font-size: .72rem; color: var(--muted); margin-top: .2rem; }

/* ── DEPOIMENTOS ── */
.deps > .wrap > .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.deps > .wrap > .grid > blockquote {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.75rem;
}
.deps > .wrap > .grid > blockquote > .stars { color: var(--gold); font-size: .8rem; margin-bottom: .9rem; }
.deps > .wrap > .grid > blockquote > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .97rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.deps > .wrap > .grid > blockquote > cite {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.deps > .wrap > .cta-row { text-align: center; margin-top: 2rem; }

/* ── ABOUT SPLIT (advogada em outras páginas) ── */
.about-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split__text > h2 { margin-bottom: 1rem; }
.about-split__text > p  { color: var(--soft); margin-bottom: 1.5rem; }
.about-split__photo { position: relative; }
.about-split__photo > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; filter: grayscale(15%) brightness(.82); }
.about-split__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
}
.about-split__caption > strong { display: block; color: var(--white); font-size: .85rem; margin-bottom: .35rem; }
.about-split__caption > em { font-family: var(--serif); color: var(--soft); font-size: .9rem; }

/* ── BADGES GRID ── */
.badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.badge-card {
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.badge-card > i { font-size: 2rem; color: var(--gold); }
.badge-card > span { font-size: .85rem; color: var(--soft); line-height: 1.4; }

/* ── SERVICES GRID (lista de serviços com ícone) ── */
.services-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.service-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.service-item > i { font-size: 2rem; color: var(--gold); flex-shrink: 0; line-height: 1.2; }
.service-item > div > strong { display: block; color: var(--white); margin-bottom: .3rem; font-size: 1rem; }
.service-item > div > p { color: var(--soft); font-size: .88rem; margin: 0; }

/* ── DIFS GRID (diferenciais sem ícone SVG, versão simples) ── */
.difs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 2.5rem;
}
.dif-card {
  /* background: var(--bg); */
  padding: 2rem 1.75rem;
  transition: background .2s;
}
/* .dif-card:hover { background: var(--surface2); } */
.dif-card > h3 { font-size: 1.05rem; padding-top: 1rem; border-top: 1px solid var(--line); margin-bottom: .5rem; }
.dif-card > p  { font-size: .86rem;  }
.dif-card .ti { font-size: 1.5rem }

/* ── ACCORDION ── */
.areas-accordion__inner { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; }
.sticky-label { position: sticky; top: 6rem; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.acc-item { border: 1px solid var(--line); margin-bottom: 1px; }
.acc-item__btn {
  width: 100%; text-align: left; background: var(--surface);
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 1.5rem;
  font-family: var(--serif); font-size: 1.3rem; color: var(--white);
  transition: background .2s;
}
.acc-item__btn:hover, .acc-item__btn:not(.collapsed) { background: var(--surface2); }
.acc-item__ico { transition: transform .25s; font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.acc-item__btn:not(.collapsed) > .acc-item__ico { transform: rotate(180deg); }
.acc-item__body { padding: 1.25rem 1.5rem 1.75rem; color: var(--soft); font-size: .9rem; }
.acc-item__actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }

/* ── POSTS ── */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.post-card { position: relative; }
.post-card__img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1rem; }
.post-card__img > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__img > img { transform: scale(1.04); }
.post-card > h3 { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--white); }
.post-card > h3 > a { color: inherit; }
.post-card > h3 > a:hover { color: var(--gold); }
.post-card > h3 > i { flex-shrink: 0; color: var(--gold); margin-top: .2rem; }

.posts-list__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.posts-list__search { display: flex; gap: .75rem; }
.search-input { position: relative; }
.search-input > input { background: var(--surface); border: 1px solid var(--line); color: var(--white); padding: .55rem 2.5rem .55rem .9rem; font-size: .85rem; }
.search-input > button { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; }
.select-cat { background: var(--surface); border: 1px solid var(--line); color: var(--white); padding: .55rem .9rem; font-size: .85rem; }

/* ── ARTIGO SINGLE ── */
.artigo-single { padding-block: 5rem; }
.artigo-single__head { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.artigo-single__head > div > h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.artigo-single__byline > strong { display: block; color: var(--gold-dark); font-weight: 600; font-size: .85rem; padding-left: .75rem; border-left: 2px solid var(--gold-dark); margin-bottom: .5rem; }
.artigo-single__byline > p { font-size: .8rem; color: #555; }
.artigo-single__cover { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 3rem; }
.artigo-single__cover > img { width: 100%; height: 100%; object-fit: cover; }
.artigo-single__body { max-width: 760px; }
.artigo-cta { background: #f1ede6; padding: 2.5rem; margin-top: 3rem; }
.artigo-cta > h3 { color: #111; font-size: 1.6rem; }
.artigo-cta > p { color: #444; }

/* ── CONTATO ── */
.contato-body { display: grid; grid-template-columns: 1fr 320px; gap: 5rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field > input,
.form-field > textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--white);
  padding: .9rem 1rem;
  font-family: var(--sans);
  font-size: .95rem;
  transition: border-color .2s;
}
.form-field > input:focus,
.form-field > textarea:focus { outline: none; border-color: var(--gold-dark); }
.form-field > textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; align-items: flex-start; gap: .75rem; font-size: .8rem; color: var(--muted); }
.form-check > input { flex-shrink: 0; margin-top: .2rem; accent-color: var(--gold); }
.form-check > span > a { color: var(--gold); }
.alert { padding: 1rem 1.25rem; margin-top: .75rem; font-size: .88rem; }
.alert-success { background: rgba(30,120,60,.15); border: 1px solid rgba(30,120,60,.3); color: #5cca88; }
.alert-danger  { background: rgba(180,30,30,.15); border: 1px solid rgba(180,30,30,.3); color: #e07070; }
.contato-aside { display: flex; flex-direction: column; gap: .75rem; }
.contato-aside__link { display: flex; gap: .75rem; align-items: center; color: var(--soft); font-size: .9rem; transition: color .2s; }
.contato-aside__link > i { font-size: 1.25rem; color: var(--gold); }
.contato-aside__link:hover { color: var(--gold); }
.contato-aside__social { display: flex; gap: .75rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.btn-round { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border: 1px solid var(--line); color: var(--soft); font-size: 1.3rem; transition: .2s; border-radius: 50%; }
.btn-round:hover { border-color: var(--gold); color: var(--gold); }

/* ── SOBRE ── */
.mission-row { display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 4rem; }
.mission-row > blockquote { font-family: var(--sans); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.3; color: #111; margin: 0; border: none; padding: 0; }
.about-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo-row__img > img { width: 100% }
.about-photo-row__text > p { font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 400; color: #111; }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.purpose-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 2rem; }
.purpose-row__left > p { font-size: 1.25rem; color: #222; margin-bottom: .5rem; }
.purpose-row__em { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.5rem); color: #111; }
.about-lawyer { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.about-lawyer__photo { position: relative; }
.about-lawyer__photo > img { width: 100%; object-fit: cover}
.about-lawyer__quote { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%); }
.about-lawyer__quote > strong { display: block; color: var(--white); font-size: .82rem; margin-bottom: .4rem; }
.about-lawyer__quote > em { font-family: var(--serif); font-size: .88rem; color: var(--soft); }
.about-lawyer__bio > h2.gold { color: var(--gold); font-size: 1.8rem; }
.about-lawyer__bio > p { font-size: .9rem; color: var(--soft); margin-bottom: 1rem; }

/* ── SECTION TALK ── */
.talk-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.talk-section__marquee { position: absolute; inset: 0; display: flex; align-items: center; overflow: hidden; pointer-events: none; opacity: .15; }
.talk-section__inner { position: relative; z-index: 1; }
.talk-section__inner > h2 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; line-height: 1.05; position: relative; display: inline-block; cursor: default; }
.talk-section__inner > h2 > strong { display: block; font-weight: 700; font-size: .85em; text-transform: uppercase; letter-spacing: .02em; }
.talk-section__inner > h2 > em { display: block; font-family: var(--serif); }
.follow-button { position: absolute; transform: translate(-50%, -50%); pointer-events: none; display: none; }
@media (min-width: 992px) { .follow-button { display: inline-flex; pointer-events: auto; } }
.talk-section__mobile-btn { margin-top: 2rem; }
@media (min-width: 992px) { .talk-section__mobile-btn { display: none; } }

/* ── INC ARTIGOS ── */
.inc-artigos { background: #f7f4ef; padding: 5rem 0; }
.inc-artigos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.inc-art-card__img { aspect-ratio: 16/9; overflow: hidden; margin-bottom: .75rem; }
.inc-art-card__img > img { width: 100%; height: 100%; object-fit: cover; }
.inc-art-card > h6 { font-family: var(--sans); font-size: .97rem; font-weight: 600; color: #111; display: flex; justify-content: space-between; gap: 1rem; }
.inc-art-card > h6 > a { color: inherit; }
.inc-art-card > h6 > i { color: var(--gold-dark); flex-shrink: 0; }

/* ── INC CIDADES ── */
.inc-cidades { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--line); }
.inc-cidades > .wrap > h2 { color: var(--white); text-align: center; margin-bottom: 2.5rem; }
.inc-cidades-grid { line-height:1; display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.inc-cidades-grid > div > a { font-size: .8rem; color: var(--muted); transition: color .2s;  }
.inc-cidades-grid > div > a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); font-size: .85rem; }
.site-footer__bio > .wrap { padding-block: 2.5rem; border-bottom: 1px solid var(--line-soft); }
.site-footer__bio p { color: var(--muted); }
.site-footer__main { display: grid; grid-template-columns: 80px auto auto 1fr auto; gap: 3rem; padding-block: 3.5rem; align-items: start; }
.site-footer__brand > a > img { filter: brightness(0) invert(1); opacity: .5; }
.site-footer__nav,
.site-footer__area-col,
.site-footer__insights,
.site-footer__contact { display: flex; flex-direction: column; gap: .4rem; }
.site-footer__nav > a,
.site-footer__area-col > a,
.site-footer__insights > a,
.site-footer__contact > a { font-size: .8rem; color: var(--muted); transition: color .2s; }
.site-footer__nav > a:hover,
.site-footer__area-col > a:hover,
.site-footer__insights > a:hover,
.site-footer__contact > a:hover { color: var(--gold); }
.site-footer__area-title { font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .25rem; margin-top: .5rem; }
.site-footer__insights > a { display: flex; align-items: flex-start; gap: .4rem; font-size: .78rem; }
.site-footer__insights > a > i { flex-shrink: 0; color: var(--gold); margin-top: .2rem; }
.site-footer__contact > a { display: flex; gap: .6rem; align-items: center; }
.site-footer__contact > a > i { color: var(--white); font-size: 1rem; }
.site-footer__bar { background: var(--bg); border-top: 1px solid var(--line-soft); }
.site-footer__bar > .wrap { display: flex; justify-content: space-between; align-items: center; height: 48px; }
.site-footer__bar > .wrap > span { font-size: .72rem; color: var(--muted); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  width: 3.1rem; height: 3.1rem;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; color: #fff; font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ── ANIMATE WORD ── */
.animate-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition: opacity .3s ease, transform .3s ease, filter .3s ease;
}
.word { display: inline-block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-footer__main { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer__brand { display: none; }
  .about-split__inner, .about-lawyer, .contato-body { grid-template-columns: 1fr; gap: 3rem; }
  .about-split__photo > img { aspect-ratio: 1/1; }
  .about-split__caption { position: static; background: rgba(0,0,0,.6); }
  .about-lawyer__photo > img { aspect-ratio: 1/1; }
  .about-lawyer__quote { position: static; background: var(--surface); padding: 1.25rem; }
  .areas-accordion__inner { grid-template-columns: 1fr; }
  .sticky-label { position: static; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { display: none; }
  .difs-grid { grid-template-columns: 1fr 1fr; }
  .deps > .wrap > .grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .two-col-text, .purpose-row, .about-photo-row, .mission-row { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .inc-cidades-grid { grid-template-columns: repeat(3, 1fr); }
  .about > .wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about > .wrap > figure::after { display: none; }
}

@media (max-width: 860px) {
  .tipos > .wrap > .grid { grid-template-columns: 1fr; }
  .difs > .wrap > .grid { grid-template-columns: 1fr 1fr; }
  .deps > .wrap > .grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .difs-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .artigo-single__head { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .inc-cidades-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .difs > .wrap > .grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__main { grid-template-columns: 1fr; }
  .inc-cidades-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─── CTA FINAL ─── */
.cta-band {
  padding: 7rem var(--px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-band > h2 { max-width: 580px; margin-inline: auto; }
.cta-band > p { max-width: 460px; margin: .75rem auto 2.5rem; color: var(--soft); }
.cta-band > .row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.footer > .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer > .wrap > div > img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer > .wrap > div > p { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.footer > .wrap > div > h4 {
  font-size: .67rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer > .wrap > div > ul { list-style: none; }
.footer > .wrap > div > ul > li { margin-bottom: .5rem; 
  color: var(--muted);
  font-size: .83rem; }
.footer > .wrap > div > ul > li > a {color: var(--muted); text-decoration: none; transition: color .2s;
}
.footer > .wrap > div > ul > li > a:hover { color: var(--gold); }

.footer-bar {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.footer-bar > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
}
.footer-bar > .wrap > p { font-size: .72rem; color: var(--muted); }

/* ──────────────────────────────────────────
   FOOTER RESPONSIVO
────────────────────────────────────────── */

/* Tablet */
@media (max-width: 992px){

    .footer > .wrap{
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer > .wrap > div:first-child{
        grid-column: 1 / -1;
    }

}

/* Mobile */
@media (max-width: 768px){

    .footer > .wrap{
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        text-align: center;
    }

    .footer > .wrap > div{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer > .wrap > div > img{
        margin-left: auto;
        margin-right: auto;
    }

    .footer > .wrap > div > ul{
        padding: 0;
        margin: 0;
    }

    .footer > .wrap > div > p{
        max-width: 500px;
    }

    .footer-bar > .wrap{
        flex-direction: column;
        justify-content: center;
        gap: .35rem;
        padding: .9rem 0;
        height: auto;
        text-align: center;
    }

}

/* Celulares pequenos */
@media (max-width: 480px){

    .footer > .wrap{
        gap: 1.75rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer > .wrap > div > h4{
        margin-bottom: .75rem;
    }

    .footer > .wrap > div > p,
    .footer > .wrap > div > ul > li > a{
        font-size: .9rem;
    }

    .footer-bar > .wrap > p{
        font-size: .7rem;
        line-height: 1.5;
    }

}

.areas-showcase {
  background: #080808;
  color: #fff;
  padding: 90px 0;
}

.areas-showcase__inner {
  display: grid;
  gap: 60px;
  align-items: flex-start;
}

.areas-showcase__label {
  position: relative;
}

.sticky-label {
  position: sticky;
  top: 110px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c69c5d;
  margin: 0;
}

.areas-showcase__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1100px) {

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

}

.area-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid rgba(198, 156, 93, .25);
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.015)
    );
    min-height: 100%;
}

.area-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c69c5d;
}

.area-card__title {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
}

.area-card__text {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.area-card__text p {
  margin: 0;
}

.area-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    min-width: auto;
}

.area-card__link,
.area-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: .25s ease;
  white-space: nowrap;
}

.area-card__link {
  color: #c69c5d;
  border: 1px solid rgba(198, 156, 93, .35);
}

.area-card__btn {
  color: #111;
  background: #c69c5d;
  border: 1px solid #c69c5d;
}

.area-card:hover {
  border-color: rgba(198, 156, 93, .65);
  transform: translateY(-2px);
}

.area-card__link:hover {
  background: rgba(198, 156, 93, .08);
}

.area-card__btn:hover {
  background: #d8b172;
}

@media (max-width: 900px) {
  .areas-showcase__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .sticky-label {
    position: relative;
    top: auto;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .area-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .areas-showcase {
    padding: 60px 0;
  }

  .area-card {
    padding: 26px;
  }

  .area-card__title {
    font-size: 23px;
  }

  .area-card__actions {
    flex-direction: column;
  }

  .area-card__link,
  .area-card__btn {
    width: 100%;
  }
}

.area-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.area-services__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.area-services__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c69c5d;
  font-size: 26px;
  line-height: 1;
}

.area-services__content strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.area-services__content small {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .area-services {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.btn-wapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 24px;

    background: #25D366;
    color: #141414;

    border: 1px solid #25D366;

    font-size: 15px;
    line-height: 1;
    font-weight: bold;

    text-decoration: none;
    cursor: pointer;

    transition: all .25s ease;
}

.btn-wapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #141414;

    transform: translateY(-2px);
}

.btn-wapp:active {
    transform: translateY(0);
}

.btn-wapp:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .20);
}

.btn-wapp i {
    font-size: 18px;
    line-height: 1;
}