/* ==========================================================================
   Christiano Melo Advogados — Direito Previdenciário | Goiânia-GO
   Paleta: Navy #14213D + Prata #C9CCD1 (accent) + Dourado #C9A24B (so botao principal)
   ========================================================================== */

:root {
  --navy: #14213D;
  --navy-2: #1D2E52;
  --navy-3: #0E1730;
  --gold: #C9A24B;
  --gold-2: #B8912F;
  --gold-soft: #E8D9B0;
  --silver: #C9CCD1;
  --silver-2: #6E7378;
  --silver-soft: #E3E5E8;
  --ink: #1A1A1A;
  --muted: #555B66;
  --line: #E6E3DC;
  --bg: #FFFFFF;
  --bg-soft: #F6F4EF;
  --bg-cream: #FAF8F3;
  --white: #FFFFFF;
  --wa: #25D366;
  --wa-dark: #1DA851;
  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20,33,61,.06);
  --shadow-md: 0 10px 30px rgba(20,33,61,.10);
  --shadow-lg: 0 20px 55px rgba(20,33,61,.16);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.18; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
section { padding: 92px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-cream { background: var(--bg-cream); }
.bg-navy { background: var(--navy); color: #E9ECF3; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .76rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--silver-2);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .85; flex-shrink: 0; }
.bg-navy .eyebrow { color: var(--silver); }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.bg-navy .section-head p { color: #C3C9D6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 50px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  min-height: 52px; text-align: center;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(201,162,75,.24); }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,75,.34); }
/* CTAs unificados no dourado (idioma único); verde reservado à bolha flutuante do WhatsApp */
.btn-wa { background: var(--gold); color: var(--navy); box-shadow: 0 6px 18px rgba(201,162,75,.24); }
.btn-wa:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,75,.34); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.bg-navy .btn-outline, .hero .btn-outline, .adv-hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.bg-navy .btn-outline:hover, .hero .btn-outline:hover, .adv-hero .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20,33,61,.98);
  transition: box-shadow .3s ease, padding .3s ease, background .3s ease;
  padding: 16px 0;
}
.header.scrolled { padding: 10px 0; box-shadow: 0 6px 24px rgba(0,0,0,.22); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 50px; height: 42px; flex-shrink: 0;
  background: url("/assets/images/logo-mark.png") center/contain no-repeat;
  font-size: 0; color: transparent;
}
.logo-txt { line-height: 1.1; }
.logo-txt b { font-family: var(--serif); font-size: 1.16rem; color: #fff; display: block; letter-spacing: .3px; }
.logo-txt span { font-size: .66rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--silver); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #DCE1EC; font-size: .95rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--silver); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; min-height: 44px; font-size: .92rem; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: .3s; border-radius: 2px; }

/* ---------- Dropdown areas ---------- */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: #fff; min-width: 260px; border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transition: .25s ease; border: 1px solid var(--line);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: block; color: var(--ink); padding: 10px 14px; border-radius: 8px; font-size: .92rem; }
.drop a:hover { background: var(--bg-soft); color: var(--navy); }
/* Mega-dropdown: todos os serviços com descrição */
.drop-mega { min-width: 560px; padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.drop-mega a { padding: 11px 13px; }
.drop-mega a b { display: block; color: var(--navy); font-size: .92rem; font-weight: 600; margin-bottom: 2px; }
.drop-mega a span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.3; }
.drop-mega a:hover b { color: var(--gold-2); }
.drop-foot { grid-column: 1 / -1; margin-top: 6px; border-top: 1px solid var(--line); }
.drop-foot a { display: flex; align-items: center; gap: 8px; padding: 12px 13px; color: var(--gold-2); font-weight: 600; font-size: .88rem; }
.drop-foot a:hover { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 150px 0 100px;
  background:
    linear-gradient(90deg, var(--navy-3) 0%, rgba(14,23,48,.97) 30%, rgba(20,33,61,.86) 50%, rgba(20,33,61,.66) 72%, rgba(20,33,61,.55) 100%),
    url("/assets/images/hero-justica.jpg") right center / cover no-repeat,
    var(--navy);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,23,48,.35) 0%, transparent 22%, transparent 68%, rgba(14,23,48,.6) 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 600px); gap: 0; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,204,209,.35); padding: 8px 16px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; color: var(--silver-soft); margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--silver); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .hl { background: linear-gradient(120deg,#EEF0F2,#AEB3B9 55%,#EEF0F2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.16rem; color: #CBD2E0; max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: #C3C9D6; }
.hero-trust .t svg { width: 20px; height: 20px; color: var(--silver); flex-shrink: 0; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 34px; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.hero-card p { color: #C3C9D6; font-size: .95rem; margin-bottom: 22px; }
.hero-card ul { margin-bottom: 24px; }
.hero-card li { display: flex; align-items: flex-start; gap: 11px; color: #E4E8F0; font-size: .96rem; padding: 8px 0; }
.hero-card li svg { width: 20px; height: 20px; color: var(--silver); flex-shrink: 0; margin-top: 2px; }
.hero-card .btn { width: 100%; }

/* ---------- Stats strip ---------- */
.stats { background: #EAECEF; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats .s { position: relative; padding: 2px 10px; }
.stats .s + .s::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 46px; background: rgba(20,33,61,.14); }
.stats .s b { font-family: var(--serif); font-size: 2.05rem; color: var(--navy); display: block; line-height: 1; letter-spacing: .5px; }
.stats .s span { font-size: .84rem; color: var(--silver-2); font-weight: 600; display: block; margin-top: 9px; letter-spacing: .2px; }

/* ---------- Cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  box-shadow: var(--shadow-sm); height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--silver); }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: .25s;
}
.card:hover .ic { background: var(--navy); }
.card .ic svg { width: 28px; height: 28px; color: var(--silver-2); transition: .25s; }
.card:hover .ic svg { color: var(--silver); }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.card .more { color: var(--silver-2); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.card:hover .more { gap: 11px; }

/* ---------- Zigzag / about ---------- */
.zig { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.zig.rev .zig-media { order: 2; }
.zig-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  min-height: 380px; position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
}
.zig-media .seal {
  width: 190px; height: 190px; border-radius: 50%; border: 2px solid rgba(201,204,209,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--silver);
}
.zig-media .seal b { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }
.zig-media .seal span { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; color: var(--silver-soft); }
.zig-body h2 { margin-bottom: 18px; }
.zig-body p { color: var(--muted); margin-bottom: 16px; }
.zig-list { margin: 22px 0 28px; }
.zig-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--ink); }
.zig-list li svg { width: 22px; height: 22px; color: var(--silver-2); flex-shrink: 0; margin-top: 3px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .n {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--navy); color: var(--silver); font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--silver);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-size: 1.05rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--sans);
}
.faq-q .ico { color: var(--silver-2); font-size: 1.4rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--muted); }

/* ---------- Contact / Map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: stretch; }
.contact-info .ci { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ci .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .ci .ic svg { width: 22px; height: 22px; color: var(--silver); }
.contact-info .ci b { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.contact-info .ci span { color: var(--muted); font-size: .96rem; }
.map-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #C3C9D6; max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 110px 0 6px; font-size: .88rem; background: var(--navy-3); }
.crumb .container { display: flex; gap: 8px; align-items: center; color: var(--silver); }
.crumb a { color: var(--silver); }
.crumb a:hover { color: #fff; }
.crumb span.sep { color: rgba(255,255,255,.35); }

/* ---------- Service page hero ---------- */
.svc-hero { background: linear-gradient(120deg, var(--navy-3), var(--navy-2)); color: #fff; padding: 60px 0 70px; }
.svc-hero .eyebrow { color: var(--silver); }
.svc-hero h1 { color: #fff; max-width: 780px; margin-bottom: 16px; }
.svc-hero p { color: #CBD2E0; max-width: 640px; font-size: 1.12rem; }
.svc-body { display: grid; grid-template-columns: 1.6fr .9fr; gap: 46px; align-items: start; }
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose ul.check { margin: 8px 0 20px; }
.prose ul.check li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--ink); }
.prose ul.check li svg { width: 21px; height: 21px; color: var(--silver-2); flex-shrink: 0; margin-top: 3px; }
.svc-aside {
  position: sticky; top: 100px; background: var(--navy); color: #fff;
  border-radius: var(--r-md); padding: 30px; box-shadow: var(--shadow-lg);
}
.svc-aside h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.svc-aside p { color: #C3C9D6; font-size: .95rem; margin-bottom: 20px; }
.svc-aside .btn { width: 100%; margin-bottom: 10px; }
.svc-aside .mini { font-size: .82rem; color: #9aa3b8; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-3); color: #AEB6C6; padding: 66px 0 26px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 44px; }
.footer .logo-txt b { color: #fff; }
.footer p { font-size: .93rem; margin: 16px 0; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .93rem; transition: color .2s; }
.footer ul a:hover { color: var(--silver); }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: .93rem; }
.footer .fcontact svg { width: 18px; height: 18px; color: var(--silver); flex-shrink: 0; margin-top: 3px; }
.foot-social { display: flex; gap: 12px; margin-top: 8px; }
.foot-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: .2s; }
.foot-social a:hover { background: var(--silver); }
.foot-social a:hover svg { color: var(--navy); }
.foot-social svg { width: 20px; height: 20px; color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: #7d879b; }
.foot-bottom a { color: var(--silver); }
.oab-note { font-size: .78rem; color: #6b7488; margin-top: 10px; max-width: 640px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s; animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wapulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.45); } 50% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.12); } }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease; height: 100%;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.pc-tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver-2); background: var(--bg-soft); padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }
.pc-body h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.pc-body p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; flex: 1; }
.card-link { color: var(--silver-2); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
.post-card:hover .card-link { gap: 12px; }
.card-link svg { width: 17px; height: 17px; }
.blog-empty { text-align: center; padding: 40px 0; color: var(--muted); grid-column: 1 / -1; }
/* Post individual */
.post-body { max-width: 780px; margin: 0 auto; }
.post-body h2 { margin: 1.8em 0 .5em; font-size: clamp(1.5rem,3vw,1.9rem); }
.post-body h3 { margin: 1.5em 0 .4em; font-size: 1.3rem; }
.post-body p, .post-body li { font-size: 1.08rem; line-height: 1.8; color: var(--muted); margin-bottom: 1em; }
.post-body strong { color: var(--ink); }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 1.2em; }
.post-body li { margin-bottom: .5em; }
.post-body img { border-radius: var(--r-md); margin: 28px 0; box-shadow: var(--shadow-sm); }
.post-body a { color: var(--silver-2); font-weight: 600; text-decoration: underline; }
.post-meta { display: flex; gap: 18px; flex-wrap: wrap; color: #C3C9D6; font-size: .9rem; margin-top: 16px; }
.post-hero-img { margin: 0 0 34px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.post-hero-img img { width: 100%; height: auto; display: block; margin: 0; border-radius: 0; }
.post-cta { background: var(--bg-cream); border: 1px solid var(--line); border-left: 4px solid var(--silver-2); border-radius: var(--r-md); padding: 30px; margin: 42px auto; text-align: center; max-width: 780px; }
.post-cta h3 { margin-bottom: 8px; }
.post-cta p { color: var(--muted); margin-bottom: 18px; }
.author-box { display: flex; gap: 16px; align-items: center; background: var(--bg-soft); padding: 20px; border-radius: var(--r-md); margin: 40px auto; border: 1px solid var(--line); max-width: 780px; }
.author-box .ab-ic { width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg,#9BA0A6,#6E7378); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.2rem; }
.author-box strong { color: var(--navy); display: block; font-family: var(--serif); font-size: 1.05rem; }
.author-box span { color: var(--muted); font-size: .9rem; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 30px; }
@media (max-width: 980px) { .blog-grid, .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 720px) { .blog-grid, .related-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation (só esconde com JS ativo — fallback visível sem JS) ---------- */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Página do advogado ---------- */
.adv-hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: 820px; display: flex; align-items: center; padding-top: 96px;
  background:
    linear-gradient(180deg, rgba(14,23,48,.50) 0%, rgba(14,23,48,.66) 44%, rgba(14,23,48,.90) 100%),
    linear-gradient(90deg, #14213D 0%, #14213D 26%, rgba(20,33,61,0) 43%, rgba(20,33,61,0) 57%, #14213D 74%, #14213D 100%),
    radial-gradient(120% 80% at 50% 10%, rgba(201,204,209,.12), transparent 55%),
    url("/assets/images/christiano-hero.jpg") center top / auto 100% no-repeat,
    var(--navy);
}
.adv-hero > .container { width: 100%; }
.adv-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M0 45h46M45 0v46' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
  -webkit-mask-image: radial-gradient(120% 100% at 50% 30%, #000 30%, transparent 82%);
  mask-image: radial-gradient(120% 100% at 50% 30%, #000 30%, transparent 82%);
}
.adv-hero::after {
  content: ""; position: absolute; left: 50%; bottom: -140px; transform: translateX(-50%); z-index: 0; pointer-events: none;
  width: 440px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,204,209,.09), transparent 66%);
}
.adv-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.adv-hero-inner .eyebrow { justify-content: center; }
.adv-hero-inner .lead { margin: 0 auto 28px; }
.adv-hero-inner .hero-cta { justify-content: center; }
.adv-hero .eyebrow { color: var(--silver); }
.adv-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 12px; }
.adv-role { color: var(--gold); font-weight: 600; font-size: 1.02rem; margin-bottom: 20px; }
.adv-hero p.lead { color: #C7CEDC; font-size: 1.1rem; margin-bottom: 28px; max-width: 520px; }
.adv-portrait { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.adv-portrait::before { content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 1px; background: rgba(201,204,209,.55); z-index: 2; }
.adv-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; display: block; }

/* Livro de credenciais (assinatura) */
.ledger { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.ledger-row { display: grid; grid-template-columns: 210px 1fr; gap: 26px; padding: 22px 4px; border-bottom: 1px solid var(--line); align-items: baseline; }
.ledger-row .inst { font-family: var(--serif); font-size: 1.16rem; font-weight: 700; color: var(--navy); letter-spacing: .3px; }
.ledger-row .inst small { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--silver-2); margin-top: 4px; }
.ledger-row .role { color: var(--muted); font-size: 1rem; line-height: 1.5; }

/* Tags de áreas */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.tag { border: 1px solid var(--line); border-radius: 50px; padding: 9px 20px; font-size: .92rem; color: var(--navy); background: #fff; }
.tag.is-focus { border-color: var(--gold); color: var(--gold-2); font-weight: 600; background: #FBF7EE; }

/* Ponte previdenciário */
.bridge { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.bridge .b { padding: 4px 6px; }
.bridge .b .k { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.bridge .b .k::before { content: ""; display: block; width: 30px; height: 1px; background: var(--silver-2); margin-bottom: 14px; }
.bridge .b p { color: var(--muted); font-size: .95rem; }

/* Destaque — citação do advogado */
.fq-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 56px; align-items: center; }
.fq-photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.fq-photo::before { content: ""; position: absolute; top: 0; left: 22px; right: 22px; height: 1px; background: rgba(201,204,209,.55); z-index: 2; }
.fq-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; display: block; }
.fq-body .eyebrow { color: var(--silver); }
.fq-body blockquote { margin: 0 0 22px; font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 2.5vw, 2.15rem); line-height: 1.38; color: #fff; }
.fq-body blockquote .qm { color: var(--gold); font-size: 1.3em; line-height: 0; }
.fq-body cite { display: block; font-style: normal; color: var(--silver); font-weight: 600; font-size: .95rem; letter-spacing: .3px; margin-bottom: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding: 130px 0 80px; background:
      linear-gradient(180deg, rgba(14,23,48,.82) 0%, rgba(14,23,48,.90) 55%, var(--navy) 100%),
      url("/assets/images/hero-justica.jpg") center / cover no-repeat,
      var(--navy); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .zig { grid-template-columns: 1fr; gap: 32px; }
  .zig.rev .zig-media { order: 0; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-body { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .bridge { grid-template-columns: 1fr; gap: 22px; }
  .fq-grid { grid-template-columns: 1fr; gap: 30px; }
  .fq-photo { max-width: 420px; margin: 0 auto; }
  .adv-hero { min-height: 0; display: block; padding: 150px 0 84px; background:
      linear-gradient(180deg, rgba(14,23,48,.42) 0%, rgba(14,23,48,.72) 56%, rgba(14,23,48,.93) 100%),
      url("/assets/images/christiano-hero.jpg") center 84px / contain no-repeat,
      var(--navy); }
}
@media (max-width: 720px) {
  section { padding: 62px 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .burger { display: block; }
  .nav-mobile {
    position: fixed; top: 0; right: -100%; width: 82%; max-width: 340px; height: 100vh;
    background: var(--navy); padding: 90px 30px 30px; transition: right .35s ease; z-index: 1200;
    display: flex; flex-direction: column; gap: 6px; box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav-mobile.open { right: 0; }
  .nav-mobile a { color: #DCE1EC; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-mobile a.sub { padding-left: 18px; font-size: .96rem; color: #AEB6C6; }
  .nav-mobile .btn { margin-top: 18px; }
  .ledger-row { grid-template-columns: 1fr; gap: 5px; padding: 18px 4px; }
  .ledger-row .inst { font-size: 1.08rem; }
  .drop-mega { min-width: 0; grid-template-columns: 1fr; }
  .nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
  .m-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: .3s; }
  .m-overlay.open { opacity: 1; visibility: visible; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .stats .s + .s::before { display: none; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr; gap: 30px; }
  .hero-trust { gap: 14px; }
  body { font-size: 16px; }
}
