/* ================================================================
   styles.css — Design System — Marcos Pereira Advocacia
   ================================================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

/* ── 2. CUSTOM PROPERTIES (TOKENS) ──────────────────────────── */
:root {
  /* Cores */
  --ink:          #141414;
  --ink-deep:     #0a0a0a;
  --ink-soft:     #3a3b3c;
  --gold:         #5b5b5b;
  --gold-deep:    #474747;
  --paper:        #f4f2ee;
  --paper-2:      #e7e4de;
  --surface:      #ffffff;
  --line:         #dcd8d0;
  --text:         #161616;
  --muted:        #6f6e6a;
  --on-ink:       #f5f3ef;
  --on-ink-muted: #a3a09a;

  /* Tipografia */
  --font-display: "Newsreader", Georgia, serif;
  --font-body:    "Mulish", system-ui, sans-serif;

  /* Layout */
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 10vw, 140px);
  --radius:    4px;
  --radius-lg: 10px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.13), 0 4px 8px rgba(0,0,0,.07);

  /* Animações */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: 220ms;
}

/* ── 3. TIPOGRAFIA ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

h1 em, h2 em { font-style: italic; font-weight: 400; }

p { text-wrap: pretty; text-align: justify; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.on-ink { color: var(--on-ink-muted); }
.eyebrow.on-ink::before { background: var(--on-ink-muted); }

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}
.section.alt { background: var(--paper-2); }
.section.ink {
  background: var(--ink);
  color: var(--on-ink);
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}
.sec-head.center {
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-head p { color: var(--muted); font-size: 1.05rem; }
.section.ink .sec-head p { color: var(--on-ink-muted); }

/* ── 5. BOTÕES ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: var(--ink);
  color: var(--on-ink);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover {
  background: var(--ink-deep);
  box-shadow: var(--shadow-md);
}

.btn--lg { padding: 15px 32px; font-size: 15px; }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--on-ink);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--on-ink-ghost {
  background: transparent;
  border-color: var(--on-ink);
  color: var(--on-ink);
}
.btn--on-ink-ghost:hover {
  background: var(--on-ink);
  color: var(--ink);
}

/* Textlink */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.textlink:hover { border-color: var(--ink); gap: 10px; }
.textlink svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── 6. UTILITY BAR ──────────────────────────────────────────── */
.util-bar {
  background: var(--ink-deep);
  color: var(--on-ink-muted);
  font-size: 12px;
  font-family: var(--font-body);
  padding: 8px 0;
}
.util-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.util-bar__left, .util-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.util-bar a { color: var(--on-ink-muted); transition: color var(--dur); }
.util-bar a:hover { color: var(--on-ink); }
.util-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.util-bar__item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── 7. NAVEGAÇÃO ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color var(--dur);
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--ink);
  border-color: var(--ink);
}
.nav__cta { margin-left: 8px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  gap: 24px;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  font-size: 24px;
  line-height: 1;
  padding: 8px;
  color: var(--ink);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.mobile-menu__links a {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.mobile-menu__cta { margin-top: 8px; align-self: flex-start; }

/* ── 8. HERO ─────────────────────────────────────────────────── */
.hero { padding-block: clamp(64px, 10vw, 120px); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.hero__stat span {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Coluna de imagem */
.hero__media {
  position: relative;
}
.hero__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
}
.hero__photo-wrap img,
.hero__photo-wrap image-slot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.hero__badge img { width: 32px; height: 32px; }
.hero__badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-ink);
}
.hero__badge-sub {
  font-size: 11px;
  color: var(--on-ink-muted);
}

/* ── 9. TRUST STRIP ──────────────────────────────────────────── */
.trust { padding-block: clamp(40px, 6vw, 72px); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.trust__icon {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust__icon svg { width: 20px; height: 20px; color: var(--on-ink); }
.trust__text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.trust__text p { font-size: 13px; color: var(--muted); text-align: left; }

/* ── 10. CARDS DE SERVIÇO ────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-card.feature {
  background: var(--ink);
  border-color: var(--ink-soft);
  color: var(--on-ink);
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card.feature .svc-card__icon {
  background: rgba(255,255,255,.08);
}
.svc-card__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.svc-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 8px;
  background: rgba(91,91,91,.1);
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}
.svc-card.feature .svc-card__tag { color: var(--on-ink-muted); background: rgba(255,255,255,.08); }
.svc-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: inherit;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  text-align: left;
  flex: 1;
}
.svc-card.feature p { color: var(--on-ink-muted); }
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-top: auto;
}
.svc-card.feature .svc-card__link { color: var(--on-ink-muted); }
.svc-card__link svg { width: 14px; height: 14px; transition: transform var(--dur); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ── 11. SOBRE ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__photo img,
.about__photo image-slot {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text p { color: var(--muted); }
.about__sig {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.about__oab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* ── 12. DEPOIMENTOS ─────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: left;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.testimonial__role {
  font-size: 12px;
  color: var(--muted);
}
.testimonial__stars {
  display: flex;
  gap: 2px;
  color: #c9a84c;
  font-size: 14px;
}

/* ── 13. FAQ ─────────────────────────────────────────────────── */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--dur);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms var(--ease), padding var(--dur);
  padding-inline: 24px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 20px;
}
.faq-a p { color: var(--muted); font-size: 15px; }

/* ── 14. BLOG / POST CARDS ───────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur);
  text-decoration: none;
  color: inherit;
}
.post:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.post:hover .post-img img { transform: scale(1.04); }
.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.post-body h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.3;
}
.post-body p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
  text-align: left;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

/* ── 15. CONTATO ─────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__items { display: flex; flex-direction: column; gap: 12px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  font-size: 15px;
  color: var(--ink-soft);
  transition: box-shadow var(--dur);
}
.contact__item:hover { box-shadow: var(--shadow-sm); }
.contact__item a { color: inherit; }
.contact__icon {
  width: 38px;
  height: 38px;
  background: var(--paper-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--line);
}
.contact__map iframe { display: block; width: 100%; height: 220px; border: none; }

/* Formulário */
.contact__form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact__form-card h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.contact__form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20,20,20,.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.form-actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ── 16. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink-deep);
  color: var(--on-ink);
  padding-block: clamp(48px, 7vw, 80px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer__desc {
  font-size: 14px;
  color: var(--on-ink-muted);
  line-height: 1.6;
  max-width: 280px;
  text-align: left;
}
.footer__oab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  margin-top: 12px;
  display: block;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--on-ink-muted);
  transition: color var(--dur);
}
.footer__links a:hover { color: var(--on-ink); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--on-ink-muted);
}
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: inherit; transition: color var(--dur); }
.footer__contact-item a:hover { color: var(--on-ink); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: var(--on-ink-muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--on-ink-muted); transition: color var(--dur); }
.footer__legal a:hover { color: var(--on-ink); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur), box-shadow var(--dur);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37,211,102,.35);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── 17. PÁGINAS INTERNAS ────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  color: var(--on-ink);
  padding-block: clamp(56px, 8vw, 100px);
}
.page-hero .wrap { display: flex; flex-direction: column; gap: 16px; }

/* Breadcrumb */
.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-ink-muted);
}
.crumb a { color: var(--on-ink-muted); transition: color var(--dur); }
.crumb a:hover { color: var(--on-ink); }
.crumb svg { width: 12px; height: 12px; }
.crumb span { color: var(--on-ink-muted); }

.page-hero h1 { color: var(--on-ink); margin-top: 8px; }
.page-hero__lead {
  font-size: 1.1rem;
  color: var(--on-ink-muted);
  max-width: 640px;
  margin-top: 4px;
}
.page-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ── 18. PÁGINA DE SERVIÇO ───────────────────────────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 64px);
  align-items: flex-start;
}
.svc-main { display: flex; flex-direction: column; gap: 40px; }
.svc-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}
.svc-block { display: flex; flex-direction: column; gap: 24px; }
.svc-block h2 { margin-bottom: 8px; }
.svc-block__items { display: flex; flex-direction: column; gap: 24px; }
.svc-block__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.svc-block__item:last-child { border-bottom: none; }
.svc-block__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--line);
  line-height: 1;
  padding-top: 4px;
}
.svc-block__item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.svc-block__item p { color: var(--muted); }
.svc-closing {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  padding: 24px;
  border-left: 3px solid var(--line);
  background: var(--paper-2);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Aside */
.svc-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.aside-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.aside-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.aside-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.aside-card.dark {
  background: var(--ink);
  border-color: var(--ink-soft);
  color: var(--on-ink);
}
.aside-card.dark h4 { color: var(--on-ink-muted); }
.aside-card.dark p { color: var(--on-ink-muted); font-size: 14px; margin-bottom: 16px; }
.aside-card.dark .btn { width: 100%; justify-content: center; }

/* Mais áreas */
.more-areas { padding-block: var(--section-y); background: var(--paper-2); }
.more-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.more-areas__item {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: box-shadow var(--dur), color var(--dur);
  display: flex;
  align-items: center;
  gap: 8px;
}
.more-areas__item:hover { box-shadow: var(--shadow-sm); color: var(--ink); }
.more-areas__item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── 19. BLOG — destaque e artigo ────────────────────────────── */
.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 80px);
  margin-bottom: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--line);
}
.blog-feature__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-feature__body { display: flex; flex-direction: column; gap: 16px; }
.blog-feature__body h2 { line-height: 1.15; }
.blog-feature__body p { color: var(--muted); }
.blog-feature__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Capa do artigo */
.article-cover {
  margin-top: -60px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.cover-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}
.cover-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Corpo do artigo */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(40px, 5vw, 64px);
  align-items: flex-start;
}
.article-body { display: flex; flex-direction: column; gap: 24px; }
.article-body h2 {
  font-size: 1.35rem;
  margin-top: 12px;
  color: var(--ink);
}
.article-body p { color: var(--muted); line-height: 1.75; font-size: 1.02rem; }
.article-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 1.02rem;
}
.article-body ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 10px;
  flex-shrink: 0;
}

/* Compartilhar */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  margin-top: 8px;
  flex-wrap: wrap;
}
.article-share span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  background: var(--surface);
  transition: border-color var(--dur), color var(--dur);
  cursor: pointer;
  text-decoration: none;
}
.share-btn:hover { border-color: var(--ink); color: var(--ink); }
.share-btn svg { width: 14px; height: 14px; }

/* Autor */
.author-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.author-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-card h4 { font-size: 1rem; margin-bottom: 4px; }
.author-card p { font-size: 13px; color: var(--muted); text-align: left; }
.author-card__oab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

/* Aside do artigo */
.article-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }

/* ── 20. REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── 21. RESPONSIVIDADE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .more-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .util-bar { display: none; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lede { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__media { order: -1; }
  .hero__badge { left: 12px; bottom: -12px; }
  .hero__photo-wrap { max-height: 380px; aspect-ratio: 4/5; }

  .svc-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .about__grid { grid-template-columns: 1fr; }
  .about__photo { order: -1; }

  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .svc-detail { grid-template-columns: 1fr; }
  .svc-aside { position: static; }

  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature__img { order: -1; }

  .footer__grid { grid-template-columns: 1fr; }
  .more-areas__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .more-areas__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
