/* ============================================================
   SANTOS & MANGUEIRA · Advocacia de Contratos
   Sistema visual: escuro, premium, boutique. Acento dourado.
   Tipografia: Cormorant Garamond (display) + Figtree (texto)
   ============================================================ */

:root {
  /* Cores base: preto quente */
  --bg:        oklch(0.165 0.007 72);
  --bg-2:      oklch(0.205 0.008 72);
  --bg-3:      oklch(0.245 0.009 74);
  --panel:     oklch(0.215 0.009 74);

  /* Texto */
  --cream:     oklch(0.945 0.013 82);
  --text:      oklch(0.90 0.012 82);
  --muted:     oklch(0.70 0.012 80);
  --faint:     oklch(0.55 0.010 78);

  /* Dourado champanhe: acento único */
  --gold:      oklch(0.79 0.078 81);
  --gold-soft: oklch(0.86 0.052 83);
  --gold-deep: oklch(0.66 0.072 76);

  /* Linhas */
  --line:        color-mix(in oklab, var(--cream) 12%, transparent);
  --line-soft:   color-mix(in oklab, var(--cream) 7%, transparent);
  --line-gold:   color-mix(in oklab, var(--gold) 32%, transparent);
  --line-gold-s: color-mix(in oklab, var(--gold) 16%, transparent);

  /* Tipografia */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Figtree", system-ui, -apple-system, sans-serif;

  /* Métricas */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(80px, 11vw, 160px);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 350;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--line-gold);
}
.eyebrow.center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--line-gold);
}
.eyebrow.center { justify-content: center; }

.display {
  font-size: clamp(44px, 8.5vw, 124px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.section-title {
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 500;
  line-height: 1.02;
}
.italic { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.7; color: var(--muted); font-weight: 350; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.section-head { display: flex; flex-direction: column; gap: 24px; max-width: 760px; }
.section-head .lead { margin-top: 4px; }

.section-index {
  position: absolute;
  top: clamp(28px, 5vw, 60px);
  right: var(--gutter);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.divider { height: 1px; background: var(--line-soft); border: none; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.45s var(--ease); }
.btn--gold {
  background: var(--gold);
  color: oklch(0.18 0.01 72);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 34px -16px var(--gold-deep); }
.btn--gold:hover svg { transform: translateX(3px); }
.btn--ghost {
  border: 1px solid var(--line-gold);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 8%, transparent); }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-gold-s);
  transition: all 0.4s var(--ease);
}
.textlink svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.textlink:hover { color: var(--gold); border-color: var(--gold); }
.textlink:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 22px;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding-block: 13px;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header__logo { flex: 0 0 auto; }
.header__logo img { height: 104px; width: auto; min-width: 200px; transition: height 0.5s var(--ease); }
.header.scrolled .header__logo img { height: 68px; }

.nav { display: flex; align-items: center; gap: 22px; flex: 0 1 auto; }
.nav a {
  position: relative;
  white-space: nowrap;
  font-size: 14.5px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.35s var(--ease);
  padding-block: 6px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--cream); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }

.burger { display: none; width: 30px; height: 18px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--cream); transition: all 0.4s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
body.menu-open .burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(30px, 9vw, 46px); font-weight: 500;
  color: var(--cream); padding-block: 10px;
  display: flex; align-items: baseline; gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a span { font-family: var(--sans); font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
.mobile-menu .btn { margin-top: 36px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 34px;
  font-size: 13px; color: var(--muted);
}
.hero__rating .stars { display: flex; gap: 2px; color: var(--gold); }
.hero__rating .stars svg { width: 15px; height: 15px; }
.hero__rating strong { color: var(--cream); font-weight: 600; }

.hero h1 { margin-bottom: 30px; }
.hero h1 .sub-serif { display: block; }
.hero__lead { max-width: 540px; margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero__visual { position: relative; }
.hero__photo {
  aspect-ratio: 3 / 4;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero__photo .ph-label { inset: auto 0 0 0; }
.hero__photo .hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero__photo .hero__grad { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, color-mix(in oklab, var(--bg) 42%, transparent)); }
.hero__badge {
  position: absolute; left: -1px; bottom: -1px;
  background: var(--bg);
  border: 1px solid var(--line-gold);
  padding: 20px 26px;
  max-width: 230px;
}
.hero__badge .num { font-family: var(--serif); font-size: 46px; line-height: 1; color: var(--gold); font-weight: 500; }
.hero__badge .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.02em; }
.hero__frame-deco {
  position: absolute; top: 18px; right: -18px; bottom: -18px; left: 18px;
  border: 1px solid var(--line-gold-s); z-index: -1;
}

/* ---------- Marquee de credenciais ---------- */
.credentials {
  border-block: 1px solid var(--line-soft);
  padding-block: 26px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.credentials__track { display: flex; gap: 64px; width: max-content; animation: marquee 38s linear infinite; }
.credentials:hover .credentials__track { animation-play-state: paused; }
.credentials__item {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 21px; color: var(--muted); font-style: italic;
  white-space: nowrap;
}
.credentials__item::after { content: "·"; color: var(--gold); font-style: normal; margin-left: 48px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .credentials__track { animation: none; } }

/* ============================================================
   SOBRE / BIO
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 86px); align-items: start; }
.about__photo { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line); position: sticky; top: 110px; overflow: hidden; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about__sig { font-family: var(--serif); font-size: 38px; font-style: italic; color: var(--gold-soft); margin-top: 30px; }
.about p + p { margin-top: 20px; }
.about p { color: var(--muted); }
.about .lead-para { font-size: clamp(20px, 2.4vw, 26px); font-family: var(--serif); line-height: 1.45; color: var(--cream); font-weight: 400; }

.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 46px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.cred { background: var(--bg); padding: 24px 26px; }
.cred dt { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.cred dd { font-size: 15px; color: var(--text); line-height: 1.4; }

/* ============================================================
   ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas { background: var(--bg-2); }
.areas__list { margin-top: 60px; border-top: 1px solid var(--line); }
.area-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 32px; align-items: center;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.5s var(--ease);
}
.area-row .num { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.area-row .body h3 { font-size: clamp(24px, 3vw, 33px); font-weight: 500; transition: color 0.4s, transform 0.5s var(--ease); }
.area-row .body p { color: var(--muted); margin-top: 8px; max-width: 620px; font-size: 15.5px; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.5s var(--ease), max-height 0.6s var(--ease), margin 0.5s; }
.area-row .arrow { width: 44px; height: 44px; border: 1px solid var(--line-gold-s); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: all 0.5s var(--ease); }
.area-row .arrow svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.area-row:hover { padding-left: 16px; }
.area-row:hover .body h3 { color: var(--gold-soft); }
.area-row:hover .body p { opacity: 1; max-height: 120px; margin-top: 12px; }
.area-row:hover .arrow { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(-45deg); }

/* ============================================================
   SERVIÇOS & PRODUTOS
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.service-card {
  background: var(--bg); padding: 44px 38px; position: relative;
  display: flex; flex-direction: column; min-height: 320px;
  transition: background 0.5s var(--ease);
}
.service-card:hover { background: var(--bg-2); }
.service-card .s-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); margin-bottom: 28px; }
.service-card .s-icon { color: var(--gold); margin-bottom: 22px; }
.service-card .s-icon svg { width: 30px; height: 30px; stroke-width: 1.2; }
.service-card h3 { font-size: 27px; font-weight: 500; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15px; flex-grow: 1; }
.service-card .s-tag { margin-top: 24px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); display: inline-flex; align-items: center; gap: 8px; }
.service-card .s-tag.product { color: var(--gold-soft); }
.service-card .s-tag::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

/* ============================================================
   PROCESSO / COMO FUNCIONA
   ============================================================ */
.process__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; }
.step { padding: 0 24px; position: relative; }
.step:not(:first-child) { border-left: 1px solid var(--line); }
.step:first-child { padding-left: 0; }
.step .st-num { font-family: var(--serif); font-size: 48px; color: var(--gold-deep); line-height: 1; margin-bottom: 22px; font-weight: 500; }
.step h3 { font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   DEPOIMENTOS (clientes)
   ============================================================ */
.testimonials { background: var(--bg-2); }
.tst { position: relative; margin-top: 56px; }
.tst__viewport { overflow: hidden; }
.tst__track { display: flex; transition: transform 0.7s var(--ease); }
.tst__slide { flex: 0 0 100%; padding-inline: clamp(0px, 4vw, 60px); }
.tst__quote { font-family: var(--serif); font-size: clamp(24px, 3.6vw, 42px); line-height: 1.32; font-weight: 400; color: var(--cream); text-align: center; }
.tst__quote::before { content: "\201C"; color: var(--gold); }
.tst__quote::after { content: "\201D"; color: var(--gold); }
.tst__meta { text-align: center; margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.tst__meta .av { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-gold); margin-bottom: 14px; overflow: hidden; }
.tst__meta .name { font-size: 16px; color: var(--cream); font-weight: 600; letter-spacing: 0.02em; }
.tst__meta .role { font-size: 13px; color: var(--gold-soft); letter-spacing: 0.04em; }
.tst__nav { display: flex; justify-content: center; gap: 14px; margin-top: 50px; align-items: center; }
.tst__arrow { width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: all 0.4s var(--ease); }
.tst__arrow:hover { border-color: var(--gold); color: var(--gold); }
.tst__arrow svg { width: 18px; height: 18px; }
.tst__dots { display: flex; gap: 9px; margin-inline: 14px; }
.tst__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: all 0.4s var(--ease); }
.tst__dots button.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.google__head { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-end; justify-content: space-between; }
.google-badge { display: flex; align-items: center; gap: 20px; }
.google-badge .g-logo { font-family: var(--serif); font-size: 0; }
.google-badge .score { font-family: var(--serif); font-size: 60px; line-height: 1; color: var(--cream); font-weight: 500; }
.google-badge .meta .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 5px; }
.google-badge .meta .stars svg { width: 18px; height: 18px; }
.google-badge .meta .count { font-size: 14px; color: var(--muted); }
.google-badge .meta .count b { color: var(--cream); font-weight: 600; }
.gmark { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.gmark svg { width: 19px; height: 19px; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }

/* Carrossel automático de avaliações */
.reviews__marquee { margin-top: 54px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews__row { display: flex; gap: 20px; width: max-content; animation: marquee-rev 80s linear infinite; }
.reviews__marquee:hover .reviews__row { animation-play-state: paused; }
@keyframes marquee-rev { to { transform: translateX(-50%); } }
.reviews__row .review { width: 380px; flex-shrink: 0; }
.review--cta { align-items: flex-start; justify-content: center; gap: 14px; }
.review--cta:hover { border-color: var(--gold); transform: translateY(-4px); }
.review--cta .cta-num { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--cream); font-weight: 500; }
.review--cta .cta-sub { color: var(--muted); font-size: 14.5px; }
.review--cta .cta-link { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); }
.review--cta .cta-link svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.review--cta:hover .cta-link svg { transform: translateX(4px); }
.review--cta .g-big svg { width: 30px; height: 30px; }
@media (prefers-reduced-motion: reduce) { .reviews__row { animation: none; } .reviews__marquee { overflow-x: auto; } }
@media (max-width: 620px) { .reviews__row .review { width: 290px; } }
.review {
  border: 1px solid var(--line); padding: 32px 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.review:hover { border-color: var(--line-gold-s); transform: translateY(-4px); }
.review__top { display: flex; align-items: center; gap: 14px; }
.review__top .av { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; font-family: var(--serif); font-size: 19px; color: var(--gold-soft); flex-shrink: 0; }
.review__top .who { display: flex; flex-direction: column; gap: 2px; }
.review__top .who .n { font-size: 15px; color: var(--cream); font-weight: 600; }
.review__top .who .d { font-size: 12.5px; color: var(--faint); }
.review .stars { display: flex; gap: 2px; color: var(--gold); }
.review .stars svg { width: 15px; height: 15px; }
.review p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.review .g-icon { margin-left: auto; opacity: 0.6; }
.review .g-icon svg { width: 18px; height: 18px; }

/* ============================================================
   ARTIGOS
   ============================================================ */
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 58px; }
.article { display: flex; flex-direction: column; gap: 0; }
.article__img { aspect-ratio: 16 / 11; border: 1px solid var(--line); position: relative; overflow: hidden; margin-bottom: 24px; }
.article__img .inner { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.article:hover .article__img .inner { transform: scale(1.04); }
.article__cat { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.article h3 { font-size: 25px; font-weight: 500; line-height: 1.16; margin-bottom: 12px; transition: color 0.4s; }
.article:hover h3 { color: var(--gold-soft); }
.article p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.article__meta { font-size: 12.5px; color: var(--faint); display: flex; gap: 16px; margin-top: auto; padding-top: 4px; }

/* Artigo em destaque (layout horizontal) */
.article-feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 4vw, 60px); margin-top: 58px; align-items: stretch; border: 1px solid var(--line); transition: border-color 0.4s var(--ease); }
.article-feature:hover { border-color: var(--line-gold-s); }
.article-feature__img { position: relative; overflow: hidden; min-height: 320px; }
.article-feature__img .inner { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.article-feature:hover .article-feature__img .inner { transform: scale(1.04); }
.article-feature__body { padding: clamp(30px, 4vw, 54px) clamp(30px, 4vw, 54px) clamp(30px, 4vw, 54px) 0; display: flex; flex-direction: column; }
.article-feature__tag { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.article-feature__tag::before { content: ""; width: 26px; height: 1px; background: var(--line-gold); }
.article-feature h3 { font-size: clamp(27px, 3.4vw, 40px); font-weight: 500; line-height: 1.1; margin-bottom: 18px; transition: color 0.4s; }
.article-feature:hover h3 { color: var(--gold-soft); }
.article-feature p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 26px; max-width: 46ch; }
.article-feature .article__meta { margin-bottom: 24px; }
.article-feature .textlink { align-self: flex-start; }
@media (max-width: 820px) {
  .article-feature { grid-template-columns: 1fr; }
  .article-feature__img { min-height: 220px; aspect-ratio: 16/10; }
  .article-feature__body { padding: clamp(26px,6vw,40px); padding-top: 0; }
}

/* Aviso "novos artigos em breve" na listagem */
.articles-soon { margin-top: 40px; border: 1px dashed var(--line); padding: clamp(30px,5vw,48px); text-align: center; }
.articles-soon p { color: var(--muted); font-size: 15.5px; max-width: 48ch; margin: 0 auto; }
.articles-soon .eyebrow { justify-content: center; margin-bottom: 16px; }
.articles-soon .eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--line-gold); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: var(--bg-2); position: relative; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact__info .lead { margin-block: 22px 40px; }
.contact-list { display: flex; flex-direction: column; gap: 2px; }
.contact-item { display: flex; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line-soft); transition: padding 0.4s var(--ease); }
.contact-item:first-child { border-top: 1px solid var(--line-soft); }
.contact-item:hover { padding-left: 10px; }
.contact-item .ic { width: 46px; height: 46px; border: 1px solid var(--line-gold-s); border-radius: 50%; display: grid; place-items: center; color: var(--gold); flex-shrink: 0; transition: all 0.4s var(--ease); }
.contact-item:hover .ic { background: var(--gold); color: var(--bg); }
.contact-item .ic svg { width: 19px; height: 19px; }
.contact-item .lbl { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.contact-item .val { font-size: 17px; color: var(--cream); }

/* Form */
.form { display: flex; flex-direction: column; gap: 22px; }
.field { position: relative; }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  color: var(--cream); font-family: var(--sans); font-size: 16px;
  padding: 15px 18px; border-radius: var(--radius);
  transition: border-color 0.4s var(--ease), background 0.4s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--bg-2); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a86a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field.error input, .field.error select, .field.error textarea { border-color: oklch(0.6 0.16 25); }
.field .err-msg { display: none; font-size: 12px; color: oklch(0.7 0.15 28); margin-top: 7px; }
.field.error .err-msg { display: block; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__success {
  display: none; align-items: center; gap: 14px;
  padding: 18px 22px; border: 1px solid var(--line-gold); background: color-mix(in oklab, var(--gold) 7%, transparent);
  color: var(--gold-soft); font-size: 15px; border-radius: var(--radius);
}
.form__success.show { display: flex; }
.form__success svg { width: 22px; height: 22px; flex-shrink: 0; }
.form__error {
  display: none; align-items: center; gap: 14px;
  padding: 18px 22px; border: 1px solid oklch(0.55 0.14 25 / 0.5); background: oklch(0.55 0.14 25 / 0.08);
  color: oklch(0.78 0.11 28); font-size: 15px; border-radius: var(--radius); line-height: 1.5;
}
.form__error.show { display: flex; }
.form__error svg { width: 22px; height: 22px; flex-shrink: 0; }
.form__error a { color: var(--gold-soft); border-bottom: 1px solid var(--line-gold-s); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: clamp(60px, 8vw, 100px) 40px; border-top: 1px solid var(--line-soft); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.footer__brand img { height: 84px; width: auto; margin-bottom: 24px; margin-left: -4px; }
.footer__brand p { color: var(--muted); font-size: 15px; max-width: 340px; }
.footer__col h4 { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 15px; color: var(--muted); transition: color 0.3s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer__bottom p { font-size: 13px; color: var(--faint); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: all 0.4s var(--ease); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

/* ============================================================
   PÁGINA DE ARTIGO
   ============================================================ */
.article-hero { padding-top: clamp(130px, 16vh, 190px); padding-bottom: clamp(30px, 4vw, 50px); }
.article-hero .back { display: flex; width: fit-content; white-space: nowrap; margin-bottom: 38px; }
.article-hero .a-cat { display: flex; }
.article-hero .a-cat { color: var(--gold); }
.article-hero h1 { font-size: clamp(30px, 4.4vw, 54px); font-weight: 500; line-height: 1.08; max-width: 20ch; text-wrap: balance; margin: 22px 0 28px; }
.article-hero .a-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; font-size: 13.5px; color: var(--muted); }
.article-hero .a-meta .author { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.article-hero .a-meta .author .av { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-gold); background: var(--bg-3); display: grid; place-items: center; font-family: var(--serif); color: var(--gold-soft); font-size: 16px; }
.article-cover { aspect-ratio: 21 / 9; border: 1px solid var(--line); position: relative; margin-bottom: clamp(46px, 6vw, 80px); }
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 26px; }
.prose p { color: var(--text); font-size: 18px; line-height: 1.75; }
.prose h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 500; margin-top: 52px; }
.prose h3 { font-size: 23px; font-weight: 500; margin-top: 38px; color: var(--gold-soft); }
.prose ul { display: flex; flex-direction: column; gap: 14px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 30px; color: var(--text); font-size: 17px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--gold); }
.prose blockquote { border-left: 2px solid var(--gold); padding: 6px 0 6px 30px; margin-block: 40px; font-family: var(--serif); font-size: clamp(24px, 3vw, 32px); font-style: italic; line-height: 1.35; color: var(--cream); }
.prose .lead { font-family: var(--serif); font-size: clamp(21px, 2.6vw, 27px); line-height: 1.5; color: var(--cream); font-weight: 400; }
.article-cta { max-width: 760px; margin: clamp(56px, 7vw, 90px) auto 0; border: 1px solid var(--line-gold-s); padding: clamp(34px, 5vw, 54px); text-align: center; background: var(--bg-2); }
.article-cta h3 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 500; margin-bottom: 14px; }
.article-cta p { color: var(--muted); max-width: 46ch; margin: 0 auto 28px; }

/* Resumo (abstract) e referências */
.article-abstract { max-width: 760px; margin: 0 auto clamp(32px,4vw,48px); padding: 28px 32px; border-left: 2px solid var(--gold); background: var(--bg-2); }
.article-abstract .lbl { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.article-abstract p { font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.prose .refs { margin-top: 20px; }
.prose .refs li { font-size: 14px; color: var(--muted); padding-left: 24px; line-height: 1.55; }
.prose .refs li::before { top: 10px; width: 10px; }
.article-orig { max-width: 760px; margin: 40px auto 0; font-size: 13px; color: var(--faint); text-align: center; letter-spacing: 0.02em; }
.article-orig a { color: var(--gold-soft); border-bottom: 1px solid var(--line-gold-s); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed; right: clamp(18px, 4vw, 34px); bottom: clamp(18px, 4vw, 34px); z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px color-mix(in oklab, var(--gold) 60%, transparent);
  transition: transform 0.45s var(--ease), background 0.4s;
  opacity: 0; transform: scale(0.6) translateY(20px); pointer-events: none;
}
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.08); background: var(--gold-soft); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--gold); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ============================================================
   PLACEHOLDERS DE IMAGEM
   ============================================================ */
.ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, color-mix(in oklab, var(--cream) 3%, transparent) 11px 12px),
    var(--bg-2);
  display: grid; place-items: center;
}
.ph-label {
  position: absolute; inset: auto 0 0 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: 0.04em; color: var(--faint);
  padding: 12px 14px; text-align: center;
  background: linear-gradient(transparent, color-mix(in oklab, var(--bg) 70%, transparent));
}
.ph-icon { color: var(--line-gold); }
.ph-icon svg { width: 46px; height: 46px; stroke-width: 1; }

/* ---- Frame de REFERÊNCIA de foto (briefing visual no tom do site) ---- */
.art-ref {
  position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(115% 75% at 62% 32%, color-mix(in oklab, var(--gold) 16%, transparent), transparent 56%),
    linear-gradient(158deg, var(--bg-3), var(--bg) 78%);
  display: flex;
}
.art-ref::before { /* grão sutil + tom editorial */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: screen;
}
.art-ref::after { /* vinheta */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 90px 10px color-mix(in oklab, var(--bg) 85%, transparent);
}
.art-ref .sil { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 64%; height: auto; color: color-mix(in oklab, var(--gold) 26%, var(--bg-2)); opacity: 0.5; }
.art-ref--scene .sil { display: none; }
.art-ref--scene .scene-ic { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); color: var(--line-gold); }
.art-ref--scene .scene-ic svg { width: 40px; height: 40px; stroke-width: 1; }
.art-ref .frameline { position: absolute; inset: 16px; border: 1px solid color-mix(in oklab, var(--gold) 16%, transparent); pointer-events: none; }
.art-ref .brief {
  position: relative; z-index: 2; margin: auto 0 0; width: 100%;
  padding: 16px 18px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; line-height: 1.5;
  color: var(--muted); letter-spacing: 0.01em;
  background: linear-gradient(transparent, color-mix(in oklab, var(--bg) 88%, transparent) 38%);
}
.art-ref .brief b { display: block; color: var(--gold); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.5px; margin-bottom: 6px; }
.art-ref--brief-top { }
.art-ref--brief-top .brief { margin: 0 0 auto; background: linear-gradient(color-mix(in oklab, var(--bg) 88%, transparent) 60%, transparent); }

/* ============================================================
   FAIXA DE DADOS (por que agir antes)
   ============================================================ */
.stats { border-block: 1px solid var(--line-soft); }
.stats__head { max-width: 620px; margin-bottom: 56px; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.stat { background: var(--bg); padding: 44px 38px; }
.stat .kicker { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.stat .fig { font-family: var(--serif); font-size: clamp(46px, 6vw, 74px); line-height: 0.95; color: var(--cream); font-weight: 500; letter-spacing: -0.02em; }
.stat .desc { color: var(--muted); font-size: 15px; margin-top: 16px; max-width: 300px; }
.stat .src { font-size: 11.5px; color: var(--faint); margin-top: 14px; letter-spacing: 0.02em; }

/* Selo de preço nos cards de serviço */
.service-card .s-foot { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card .s-price { font-family: var(--serif); font-size: 21px; color: var(--gold-soft); font-style: italic; white-space: nowrap; }
.service-card .s-price small { font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 2px; }

/* ============================================================
   REVEAL (animação ao rolar)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-top: 20px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { position: relative; top: 0; max-width: 420px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .articles__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(3, 1fr); gap: 44px 0; }
  .step:nth-child(3n+1) { padding-left: 0; border-left: none; }
}
@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .nav a { font-size: 13px; }
  .header__logo img { height: 92px; }
  .header.scrolled .header__logo img { height: 62px; }
}
@media (max-width: 1080px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .header__cta { gap: 0; }
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .services__grid, .reviews__grid, .articles__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .step { padding-left: 0 !important; border-left: none !important; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .form__row { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .area-row { grid-template-columns: 40px 1fr; }
  .area-row .arrow { display: none; }
  .area-row .body p { opacity: 1; max-height: 200px; margin-top: 10px; }
  .footer__top { grid-template-columns: 1fr; }
  .google__head { align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1020px) and (min-width: 621px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 32px 30px; }
}