/* ═══════════════════════════════════════════════════════
   PMO Advocacia — main.css v2.0
   Prezoto, Mendes & Oliveira Advocacia e Consultoria
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --verde:          #0d2318;
  --verde-2:        #1a3d2b;
  --verde-3:        #224d36;
  --verde-4:        #2d6347;
  --dourado:        #b8924a;
  --dourado-2:      #cfa55a;
  --dourado-3:      #d4af6e;
  --dourado-esc:    #8a6a2e;
  --creme:          #f5f0e8;
  --branco:         #fdfaf5;
  --texto:          #1e150a;
  --texto-2:        #4a3a28;
  --texto-3:        #7a6a58;
  --wa-green:       #25D366;
  --wa-hover:       #1ebe5d;

  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-full: 999px;

  --shadow-gold: 0 8px 32px rgba(184,146,74,.18);
  --shadow-card: 0 4px 24px rgba(13,35,24,.08);
  --shadow-hover: 0 16px 48px rgba(13,35,24,.14);

  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--branco); color: var(--texto); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }
svg  { display: block; }

/* ── TYPOGRAPHY SCALE ─────────────────────────────────── */
.pmo-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--dourado-esc); margin-bottom: 12px;
}
.pmo-label::before { content: ''; width: 28px; height: 1px; background: var(--dourado); flex-shrink: 0; }
.pmo-label--light   { color: rgba(212,175,110,.8); }
.pmo-label--light::before { background: var(--dourado-3); }

.pmo-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300; color: var(--verde); line-height: 1.1; margin-bottom: 18px;
}
.pmo-heading em  { font-style: italic; color: var(--dourado-esc); }
.pmo-heading--light      { color: var(--creme); }
.pmo-heading--light em   { color: var(--dourado-3); }

.pmo-lead {
  font-size: .95rem; color: var(--texto-2); line-height: 1.85;
  font-weight: 300; max-width: 560px; margin-bottom: 40px;
}
.pmo-lead--light { color: rgba(245,240,232,.62); }

/* ── BUTTONS ─────────────────────────────────────────── */
.pmo-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: .73rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 13px 30px; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.pmo-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.pmo-btn--gold  { background: var(--dourado); color: var(--verde); }
.pmo-btn--gold:hover { background: var(--dourado-2); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.pmo-btn--outline { border: 1.5px solid rgba(184,146,74,.55); color: var(--dourado-3); }
.pmo-btn--outline:hover { background: rgba(184,146,74,.09); border-color: var(--dourado-3); transform: translateY(-2px); }

.pmo-btn--outline-dark { border: 1.5px solid rgba(184,146,74,.4); color: var(--dourado-3); padding: 12px 26px; }
.pmo-btn--outline-dark:hover { background: rgba(184,146,74,.08); }

.pmo-btn--sm { padding: 10px 24px; font-size: .68rem; }

.pmo-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 15px 24px;
  background: var(--wa-green); color: #fff;
  font-family: var(--font-sans); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  border-radius: var(--radius-md); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 12px;
}
.pmo-btn-wa svg  { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.pmo-btn-wa:hover { background: var(--wa-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.35); color: #fff; }

.pmo-tag {
  display: inline-block; font-size: .58rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: var(--radius-full); border: 1px solid;
}
.pmo-tag { color: var(--dourado); border-color: rgba(184,146,74,.35); }
.pmo-tag--dark  { color: var(--verde-2); border-color: rgba(26,61,43,.28); }
.pmo-tag--green { color: rgba(245,240,232,.75); border-color: rgba(184,146,74,.28); }

/* ── FADE-IN (scroll reveal) ─────────────────────────── */
.pmo-fade-in { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.pmo-fade-in.visible { opacity: 1; transform: none; }

/* ── SECTION WRAPPERS ─────────────────────────────────── */
.pmo-section { padding: 96px 0; }
.pmo-section__inner  { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.pmo-section__header { max-width: 640px; }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.pmo-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,18,13,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,146,74,.2);
  transition: height var(--transition);
  height: 72px;
}
.pmo-header--scrolled { height: 60px; }
.pmo-header__inner {
  max-width: 1300px; margin: 0 auto; padding: 0 5%;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Brand */
.pmo-header__brand { display: flex; align-items: center; gap: 14px; }
.pmo-header__emblem, .pmo-header__logo-img {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--verde-2); border: 1.5px solid rgba(184,146,74,.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.pmo-header__emblem svg { width: 32px; height: 32px; }
.pmo-header__logo-img img { width: 100%; height: 100%; object-fit: cover; }
.pmo-header__brand-name {
  display: block; font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: var(--dourado-3); letter-spacing: .04em; line-height: 1.1;
}
.pmo-header__brand-sub {
  display: block; font-size: .57rem; color: rgba(184,146,74,.55);
  letter-spacing: .18em; text-transform: uppercase;
}

/* Menu */
.pmo-header__menu { display: flex; align-items: center; gap: 28px; }
.pmo-header__menu a {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 500; color: rgba(245,240,232,.72);
  transition: color var(--transition); position: relative;
}
.pmo-header__menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--dourado); transform: scaleX(0);
  transition: transform .3s ease; transform-origin: left;
}
.pmo-header__menu a:hover, .pmo-header__menu a.active { color: var(--dourado-3); }
.pmo-header__menu a:hover::after, .pmo-header__menu a.active::after { transform: scaleX(1); }

.pmo-header__cta-item a {
  display: flex; align-items: center; gap: 7px;
  background: var(--dourado); color: var(--verde) !important;
  padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.pmo-header__cta-item a::after { display: none !important; }
.pmo-header__cta-item a:hover { background: var(--dourado-2) !important; }
.pmo-header__cta-item svg { width: 14px; height: 14px; fill: var(--verde); flex-shrink: 0; }

/* Toggle mobile */
.pmo-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 10;
}
.pmo-header__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dourado); border-radius: 2px;
  transition: all .3s ease;
}
.pmo-header__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pmo-header__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pmo-header__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.pmo-hero {
  min-height: 100vh; background: var(--verde);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}
.pmo-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 85% 45%, rgba(184,146,74,.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 75% at 8%  80%, rgba(34,77,54,.45)   0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(45,99,71,.2)   0%, transparent 70%);
}
.pmo-hero__grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .025;
  background-image:
    linear-gradient(rgba(184,146,74,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,74,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.pmo-hero__inner {
  position: relative; z-index: 2;
  max-width: 820px; width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.pmo-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(184,146,74,.38); padding: 7px 20px;
  border-radius: var(--radius-full); margin-bottom: 36px;
  animation: fadeInUp .8s ease both;
}
.pmo-hero__badge span:last-child {
  font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dourado); font-weight: 500;
}
.pmo-hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--dourado);
  animation: pulse 2.2s infinite;
}

.pmo-hero__emblem {
  width: 126px; height: 126px; border-radius: 50%;
  border: 2px solid rgba(184,146,74,.45);
  box-shadow: 0 0 0 10px rgba(184,146,74,.05), 0 0 48px rgba(184,146,74,.12);
  overflow: hidden; margin-bottom: 32px;
  animation: fadeInUp .8s .1s ease both;
}
.pmo-hero__emblem img { width: 100%; height: 100%; object-fit: cover; }
.pmo-hero__emblem-inner {
  width: 100%; height: 100%; background: var(--verde-2);
  display: flex; align-items: center; justify-content: center;
}
.pmo-hero__emblem-inner svg { width: 86px; height: 86px; }

.pmo-hero__eyebrow {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(184,146,74,.68); margin-bottom: 18px;
  animation: fadeInUp .8s .2s ease both;
}
.pmo-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--creme); line-height: 1.02;
  letter-spacing: -.01em; margin-bottom: 0;
  animation: fadeInUp .8s .25s ease both;
}
.pmo-hero__title em { font-style: italic; color: var(--dourado-3); }

.pmo-hero__rule {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin: 28px 0;
  animation: fadeInUp .8s .32s ease both;
}
.pmo-hero__rule-line { flex: 1; max-width: 72px; height: 1px; background: linear-gradient(to right, transparent, rgba(184,146,74,.5)); }
.pmo-hero__rule-line:last-child { background: linear-gradient(to left, transparent, rgba(184,146,74,.5)); }
.pmo-hero__rule-diamond { width: 7px; height: 7px; background: var(--dourado); transform: rotate(45deg); flex-shrink: 0; }

.pmo-hero__desc {
  font-size: 1.05rem; color: rgba(245,240,232,.6); max-width: 560px;
  line-height: 1.8; font-weight: 300; margin-bottom: 40px;
  animation: fadeInUp .8s .38s ease both;
}

.pmo-hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp .8s .44s ease both;
  margin-bottom: 56px;
}
.pmo-hero__actions .pmo-btn svg { fill: var(--verde); stroke: none; }

.pmo-hero__stats {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(184,146,74,.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  animation: fadeInUp .8s .52s ease both;
}
.pmo-hero__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 36px; gap: 3px;
}
.pmo-hero__stat strong {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600;
  color: var(--dourado-3); line-height: 1;
}
.pmo-hero__stat span {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,240,232,.45); font-weight: 400;
}
.pmo-hero__stat-divider { width: 1px; height: 48px; background: rgba(184,146,74,.18); flex-shrink: 0; }

.pmo-hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s 1.1s ease both;
}
.pmo-hero__scroll span { font-size: .57rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(184,146,74,.45); }
.pmo-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,146,74,.5), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ═══════════════════════════════════════════════════════
   O ESCRITÓRIO
═══════════════════════════════════════════════════════ */
.pmo-escritorio { background: var(--creme); }

.pmo-escritorio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid rgba(184,146,74,.18);
  background: rgba(184,146,74,.1);
  margin-top: 8px;
}
.pmo-escritorio__item {
  background: var(--branco); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background var(--transition);
  display: flex; flex-direction: column;
}
.pmo-escritorio__item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--dourado), var(--dourado-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pmo-escritorio__item:hover::before { transform: scaleX(1); }
.pmo-escritorio__item:hover { background: #fffcf5; }
.pmo-escritorio__num {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 300;
  color: rgba(184,146,74,.15); line-height: 1; margin-bottom: 18px;
}
.pmo-escritorio__title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
  color: var(--verde); margin-bottom: 12px; line-height: 1.2;
}
.pmo-escritorio__text {
  font-size: .82rem; color: var(--texto-2); line-height: 1.78; font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   ÁREAS DE ATUAÇÃO
═══════════════════════════════════════════════════════ */
.pmo-areas {
  background: var(--verde);
  position: relative;
}
.pmo-areas__bg-detail {
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(184,146,74,.06); pointer-events: none;
}

.pmo-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(184,146,74,.1);
  margin-top: 8px;
}
.pmo-area-card {
  background: rgba(255,255,255,.025);
  padding: 38px 30px;
  display: flex; flex-direction: column;
  transition: background var(--transition);
  outline: none;
}
.pmo-area-card:hover, .pmo-area-card:focus { background: rgba(184,146,74,.07); }
.pmo-area-card__icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(184,146,74,.28); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: border-color var(--transition);
}
.pmo-area-card:hover .pmo-area-card__icon,
.pmo-area-card:focus .pmo-area-card__icon { border-color: var(--dourado); }
.pmo-area-card__icon svg {
  width: 22px; height: 22px; stroke: var(--dourado);
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.pmo-area-card__name {
  font-family: var(--font-serif); font-size: 1.38rem; font-weight: 600;
  color: var(--creme); margin-bottom: 10px; line-height: 1.2;
}
.pmo-area-card__desc {
  font-size: .78rem; color: rgba(245,240,232,.5);
  line-height: 1.78; font-weight: 300; flex: 1; margin-bottom: 18px;
}
.pmo-area-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }

/* ═══════════════════════════════════════════════════════
   SÓCIOS
═══════════════════════════════════════════════════════ */
.pmo-socios { background: var(--creme); }

.pmo-socios__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 16px;
}
.pmo-socio-card {
  background: var(--branco);
  border: 1px solid rgba(184,146,74,.14);
  padding: 40px 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.pmo-socio-card::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(to right, var(--dourado), transparent);
}
.pmo-socio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.pmo-socio-card__top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.pmo-socio-card__avatar {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.3rem; color: var(--dourado-3);
  font-weight: 600; border: 1.5px solid rgba(184,146,74,.35);
}
.pmo-socio-card__nome {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--verde); line-height: 1.1; margin-bottom: 4px;
}
.pmo-socio-card__oab {
  font-size: .66rem; letter-spacing: .1em; color: var(--dourado-esc);
  font-weight: 500; text-transform: uppercase;
}
.pmo-socio-card__rule { width: 32px; height: 1px; background: var(--dourado); opacity: .45; margin-bottom: 16px; }
.pmo-socio-card__bio { font-size: .82rem; color: var(--texto-2); line-height: 1.82; font-weight: 300; flex: 1; }
.pmo-socio-card__areas { display: flex; flex-wrap: wrap; gap: 5px; margin: 18px 0; }
.pmo-socio-card__wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border: 1px solid rgba(37,211,102,.35);
  border-radius: var(--radius-md); color: var(--wa-green);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
  margin-top: auto;
}
.pmo-socio-card__wa svg { width: 16px; height: 16px; fill: var(--wa-green); }
.pmo-socio-card__wa:hover { background: rgba(37,211,102,.06); border-color: var(--wa-green); color: var(--wa-green); }

/* ═══════════════════════════════════════════════════════
   IADVOGA
═══════════════════════════════════════════════════════ */
.pmo-iadvoga { background: var(--verde-2); }

.pmo-iadvoga__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.pmo-iadvoga__content .pmo-btn svg { fill: var(--verde); stroke: none; }

.pmo-iadvoga__features { display: flex; flex-direction: column; gap: 14px; }
.pmo-iadvoga__feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,146,74,.1);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.pmo-iadvoga__feat:hover { background: rgba(184,146,74,.07); }
.pmo-iadvoga__feat-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--dourado); margin-top: 5px; }
.pmo-iadvoga__feat strong { display: block; font-size: .84rem; color: var(--creme); font-weight: 500; margin-bottom: 3px; }
.pmo-iadvoga__feat span  { font-size: .76rem; color: rgba(245,240,232,.48); font-weight: 300; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════════════════ */
.pmo-contato { background: var(--branco); }

.pmo-contato__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}

.pmo-contato__intro {
  font-size: .92rem; color: var(--texto-2); line-height: 1.85;
  font-weight: 300; margin-bottom: 36px;
}
.pmo-contato__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.pmo-contato__item { display: flex; align-items: flex-start; gap: 14px; }
.pmo-contato__icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--verde); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.pmo-contato__icon svg {
  width: 16px; height: 16px; stroke: var(--dourado);
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.pmo-contato__item > div { display: flex; flex-direction: column; gap: 2px; }
.pmo-contato__item strong { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--dourado-esc); font-weight: 600; }
.pmo-contato__item span  { font-size: .84rem; color: var(--texto-2); font-weight: 300; }
.pmo-contato__item a     { font-size: .84rem; color: var(--verde-2); transition: color var(--transition); }
.pmo-contato__item a:hover { color: var(--dourado-esc); }

.pmo-contato__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(184,146,74,.15); }

/* CTA Box */
.pmo-contato__cta-box {
  background: var(--verde);
  padding: 48px 44px;
  border-top: 3px solid var(--dourado);
  position: relative; overflow: hidden;
}
.pmo-contato__cta-box::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(184,146,74,.07); pointer-events: none;
}
.pmo-contato__cta-header h3 {
  font-family: var(--font-serif); font-size: 2.1rem; font-weight: 300;
  color: var(--creme); line-height: 1.15; margin-bottom: 10px;
}
.pmo-contato__cta-header h3 em { font-style: italic; color: var(--dourado-3); }
.pmo-contato__cta-header p {
  font-size: .82rem; color: rgba(245,240,232,.52);
  line-height: 1.75; margin-bottom: 30px; font-weight: 300;
}
.pmo-contato__cta-actions { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.pmo-contato__cta-actions .pmo-btn--outline-dark { width: 100%; justify-content: center; }

.pmo-contato__areas-rapidas { margin-bottom: 24px; }
.pmo-contato__areas-label {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(184,146,74,.5); margin-bottom: 10px; font-weight: 500;
}
.pmo-contato__areas-list { display: flex; flex-wrap: wrap; gap: 6px; }

.pmo-contato__oab-notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: rgba(184,146,74,.05);
  border-left: 2px solid rgba(184,146,74,.25);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pmo-contato__oab-notice svg { width: 14px; height: 14px; min-width: 14px; stroke: rgba(184,146,74,.45); fill: none; stroke-width: 2; margin-top: 1px; }
.pmo-contato__oab-notice p { font-size: .67rem; color: rgba(245,240,232,.35); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.pmo-footer {
  background: var(--verde);
  border-top: 1px solid rgba(184,146,74,.12);
}
.pmo-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.pmo-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 56px 0 48px;
  border-bottom: 1px solid rgba(184,146,74,.08);
}
.pmo-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pmo-footer__emblem {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--verde-3); border-radius: 50%;
  border: 1.5px solid rgba(184,146,74,.35);
  display: flex; align-items: center; justify-content: center;
}
.pmo-footer__emblem svg { width: 36px; height: 36px; }
.pmo-footer__brand-name { display: block; font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--dourado-3); letter-spacing: .04em; line-height: 1.2; }
.pmo-footer__brand-sub  { font-size: .56rem; color: rgba(184,146,74,.45); letter-spacing: .18em; text-transform: uppercase; }
.pmo-footer__tagline { font-family: var(--font-serif); font-size: .82rem; font-style: italic; color: rgba(245,240,232,.3); line-height: 1.7; margin-bottom: 16px; }
.pmo-footer__address { font-size: .75rem; color: rgba(245,240,232,.3); line-height: 1.7; font-weight: 300; }

.pmo-footer__col h4 { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dourado); font-weight: 600; margin-bottom: 18px; }
.pmo-footer__col li { margin-bottom: 9px; }
.pmo-footer__col a, .pmo-footer__col span { font-size: .78rem; color: rgba(245,240,232,.38); font-weight: 300; transition: color var(--transition); }
.pmo-footer__col a:hover { color: var(--dourado-3); }

.pmo-footer__wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; padding: 9px 18px;
  border: 1px solid rgba(37,211,102,.3); border-radius: var(--radius-md);
  color: var(--wa-green); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.pmo-footer__wa-btn svg  { width: 14px; height: 14px; fill: var(--wa-green); }
.pmo-footer__wa-btn:hover { background: rgba(37,211,102,.06); border-color: var(--wa-green); color: var(--wa-green); }

.pmo-footer__bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.pmo-footer__bottom p { font-size: .67rem; color: rgba(245,240,232,.22); font-weight: 300; }
.pmo-footer__oab { font-size: .63rem; color: rgba(184,146,74,.38); letter-spacing: .06em; }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════════════════════════════ */
.pmo-wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.pmo-wa-float__tooltip {
  background: var(--verde-2); color: var(--creme);
  font-size: .72rem; padding: 8px 16px; border-radius: var(--radius-full);
  border: 1px solid rgba(184,146,74,.28); white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: opacity .3s, transform .3s; pointer-events: none;
}
.pmo-wa-float__btn {
  position: relative; width: 58px; height: 58px;
  background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pmo-wa-float__btn svg { width: 28px; height: 28px; fill: white; }
.pmo-wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 26px rgba(37,211,102,.55); }
.pmo-wa-float__pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite;
}
.pmo-wa-float:hover .pmo-wa-float__tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════ */
@keyframes fadeInUp  { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeIn    { from { opacity:0; }  to { opacity:1; } }
@keyframes pulse     { 0%,100%{opacity:1;} 50%{opacity:.35;} }
@keyframes scrollPulse {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  40%  { opacity:1; transform:scaleY(1); transform-origin:top; }
  60%  { opacity:1; transform:scaleY(1); transform-origin:bottom; }
  100% { opacity:0; transform:scaleY(0); transform-origin:bottom; }
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6;} 100%{transform:scale(1.6);opacity:0;} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pmo-escritorio__grid { grid-template-columns: repeat(2, 1fr); }
  .pmo-areas__grid       { grid-template-columns: repeat(2, 1fr); }
  .pmo-footer__top       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .pmo-iadvoga__layout { grid-template-columns: 1fr; gap: 40px; }
  .pmo-contato__layout { grid-template-columns: 1fr; }
  .pmo-socios__grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Nav mobile */
  .pmo-header__nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(8,18,13,.98);
    padding: 20px 5% 28px;
    border-bottom: 1px solid rgba(184,146,74,.18);
    flex-direction: column;
  }
  .pmo-header__nav.open { display: flex; }
  .pmo-header__menu { flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
  .pmo-header__menu a { font-size: .8rem; }
  .pmo-header__cta-item { width: 100%; }
  .pmo-header__cta-item a { justify-content: center; width: 100%; }
  .pmo-header__toggle { display: flex; }

  .pmo-hero__stats { flex-direction: column; width: auto; }
  .pmo-hero__stat-divider { width: 80%; height: 1px; }
  .pmo-hero__actions { flex-direction: column; align-items: center; width: 100%; }
  .pmo-hero__actions .pmo-btn { width: 100%; max-width: 320px; justify-content: center; }

  .pmo-section { padding: 72px 0; }
  .pmo-escritorio__grid { grid-template-columns: 1fr; }
  .pmo-areas__grid      { grid-template-columns: 1fr; }
  .pmo-footer__top      { grid-template-columns: 1fr; gap: 32px; }
  .pmo-footer__bottom   { flex-direction: column; text-align: center; }

  .pmo-contato__cta-box { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .pmo-hero__title { font-size: 2.5rem; }
  .pmo-hero__emblem { width: 96px; height: 96px; }
  .pmo-socio-card__top { flex-direction: column; }
  .pmo-wa-float { bottom: 18px; right: 18px; }
}

/* ═══════════════════════════════════════════════════════
   BOTÃO ATENDIMENTO JURÍDICO FLUTUANTE
═══════════════════════════════════════════════════════ */
.pmo-chat-float {
  position: fixed; bottom: 98px; right: 28px; z-index: 998;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.pmo-chat-float__tooltip {
  background: var(--verde-2); color: var(--creme);
  font-size: .7rem; padding: 7px 14px; border-radius: var(--radius-full);
  border: 1px solid rgba(184,146,74,.3); white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: opacity .3s, transform .3s; pointer-events: none;
}
.pmo-chat-float__btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--verde-2);
  border: 1.5px solid var(--dourado);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 14px;
  color: var(--dourado-2);
  box-shadow: 0 4px 20px rgba(13,35,24,.35);
  transition: all var(--transition);
  text-decoration: none;
}
.pmo-chat-float__btn svg {
  width: 20px; height: 20px;
  fill: var(--dourado); flex-shrink: 0;
}
.pmo-chat-float__label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dourado-2);
  white-space: nowrap;
}
.pmo-chat-float__btn:hover {
  background: var(--verde-3);
  border-color: var(--dourado-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,35,24,.4);
  color: var(--dourado-2);
}
.pmo-chat-float:hover .pmo-chat-float__tooltip {
  opacity: 1; transform: translateX(0);
}

/* Ajuste mobile — esconde label no mobile para não sobrepor */
@media (max-width: 480px) {
  .pmo-chat-float { bottom: 88px; right: 18px; }
  .pmo-chat-float__label { display: none; }
  .pmo-chat-float__btn { padding: 11px; border-radius: 50%; }
}
