/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --ink:        #1c1a17;
  --ink-light:  #3a3630;
  --cream:      #f4efe6;
  --cream-mid:  #ede5d4;
  --cream-dark: #e2d9c8;
  --gold:       #9e7438;
  --gold-lt:    #c9a46a;
  --gold-pale:  #e8d9be;
  --stone:      #6b6356;
  --stone-lt:   #8e8276;
  --divider:    rgba(158,116,56,.18);
  --divider-lt: rgba(28,26,23,.1);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', system-ui, -apple-system, sans-serif;
  --max:        1160px;
  --pad-x:      clamp(1.5rem, 5vw, 3rem);
  --section:    clamp(5rem, 9vw, 7.5rem);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #fff; }

/* ─── Grain texture ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─── Scroll progress ───────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 1001;
  transition: width .08s linear;
}

/* ─── Utility ───────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.eyebrow-light { color: var(--gold-lt); }
.eyebrow-light::before { background: var(--gold-lt); }

/* ─── Reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: rgba(244,239,230,.52);
  font-family: var(--sans); font-size: .71rem; font-weight: 300;
  letter-spacing: .06em;
}
.topbar-inner {
  max-width: var(--max); margin-inline: auto;
  padding: .5rem var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.topbar-dot { display: inline-flex; align-items: center; gap: .55rem; }
.topbar-dot::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-lt); opacity: .55; flex-shrink: 0;
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,230,.95);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--divider-lt);
  transition: box-shadow .35s;
}
.site-header.scrolled { box-shadow: 0 2px 32px rgba(28,26,23,.08); }
.header-inner {
  max-width: var(--max); margin-inline: auto;
  padding: 1.1rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand h1 {
  font-family: var(--serif); font-size: clamp(1.1rem,2.4vw,1.32rem);
  font-weight: 400; letter-spacing: .04em; color: var(--ink); line-height: 1;
}
.brand span {
  display: block; font-family: var(--sans); font-size: .63rem;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone); margin-top: .22rem;
}
nav { display: flex; align-items: center; gap: clamp(1rem,2.2vw,1.8rem); }
nav a {
  font-size: .74rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--stone);
  position: relative; transition: color .25s;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px;
  left: 0; right: 100%; height: 1px; background: var(--gold);
  transition: right .3s;
}
nav a:hover, nav a.active { color: var(--ink); }
nav a:hover::after, nav a.active::after { right: 0; }
.nav-cta {
  padding: .5rem 1.3rem; border: 1px solid var(--gold);
  color: var(--gold) !important; transition: background .25s, color .25s !important;
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }
.nav-cta::after, .nav-cta.active::after { display: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all .3s; }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: .82rem 2rem;
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .25s, transform .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #7d5c2a; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--stone);
  border-bottom: 1px solid var(--divider); padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-outline-gold {
  display: inline-block; padding: .82rem 2rem;
  border: 1px solid var(--gold-lt); color: var(--gold-lt);
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-outline-gold:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ─── Section shared ─────────────────────────────────────── */
section { padding-block: var(--section); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-mid  { background: var(--cream-mid); }
.section-white { background: #fff; }
.section-heading { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-heading.center { text-align: center; }
.section-heading .eyebrow { margin-bottom: 1rem; }
h2.sh {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.85rem,3.8vw,2.85rem);
  line-height: 1.15; letter-spacing: -.01em; color: var(--ink);
  text-wrap: pretty;
}
.section-dark h2.sh { color: var(--cream); }
h2.sh em { font-style: italic; color: var(--gold); }
.section-dark h2.sh em { color: var(--gold-lt); }
.section-sub {
  font-size: clamp(.9rem,1.35vw,1rem); color: var(--stone);
  max-width: 640px; line-height: 1.9; margin-top: .85rem;
}
.section-dark .section-sub { color: rgba(244,239,230,.58); }
.section-heading.center .section-sub { margin-inline: auto; }

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: .9rem var(--pad-x);
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-family: var(--sans); font-size: .7rem;
  color: var(--stone-lt); letter-spacing: .04em;
}
.breadcrumb a { color: var(--stone-lt); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--divider); }
.breadcrumb-current { color: var(--stone); }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: clamp(3.5rem,7vw,6rem) 0 clamp(3rem,5vw,5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 90% 30%, rgba(158,116,56,.12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 5% 80%, rgba(158,116,56,.07) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem,4.5vw,3.8rem);
  line-height: 1.1; letter-spacing: -.01em;
  color: var(--cream); margin-bottom: 1.25rem;
  text-wrap: pretty;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-lead {
  font-size: clamp(.97rem,1.5vw,1.08rem); font-weight: 300;
  color: rgba(244,239,230,.65); line-height: 1.9; max-width: 640px;
}
.page-hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── Content Layout (inner pages) ──────────────────────── */
.content-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: clamp(3rem,6vw,5rem); align-items: start;
}
.content-body h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem,2.8vw,2.1rem);
  line-height: 1.2; color: var(--ink); margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h2 em { font-style: italic; color: var(--gold); }
.content-body p {
  font-size: clamp(.92rem,1.4vw,1.02rem); color: var(--stone);
  line-height: 1.9; margin-bottom: 1rem;
}
.content-body ul.prose-list {
  list-style: none; display: grid; gap: .6rem; margin-bottom: 1rem;
}
.content-body ul.prose-list li {
  font-size: clamp(.9rem,1.35vw,1rem); color: var(--stone);
  padding-left: 1.2rem; position: relative; line-height: 1.7;
}
.content-body ul.prose-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold); font-size: .75rem; top: .1em;
}

/* Sidebar */
.content-sidebar { position: sticky; top: 7rem; display: grid; gap: 1.25rem; }
.sidebar-card {
  background: var(--ink-light); padding: 1.75rem;
  position: relative;
}
.sidebar-card::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(158,116,56,.2); pointer-events: none;
}
.sidebar-card h4 {
  font-family: var(--sans); font-size: .66rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1rem; position: relative; z-index: 1;
}
.sidebar-card ul { list-style: none; display: grid; gap: .55rem; position: relative; z-index: 1; }
.sidebar-card li {
  font-size: .82rem; color: rgba(244,239,230,.72);
  padding-left: 1rem; position: relative; line-height: 1.55;
}
.sidebar-card li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold-lt); font-size: .65rem; top: .1em;
}
.sidebar-cta {
  background: var(--gold); padding: 1.75rem; text-align: center;
}
.sidebar-cta p {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 300;
  color: #fff; line-height: 1.4; margin-bottom: 1.25rem;
}
.sidebar-cta .btn-white {
  display: inline-block; padding: .7rem 1.5rem;
  background: #fff; color: var(--gold);
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.sidebar-cta .btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ─── Area services list ─────────────────────────────────── */
.area-services {
  margin-top: 2rem; display: grid; gap: 1px;
  background: var(--divider-lt); border: 1px solid var(--divider-lt);
}
.area-service-item {
  background: #fff; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background .2s;
}
.area-service-item:hover { background: #faf7f2; }
.area-service-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(158,116,56,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 600; flex-shrink: 0;
}
.area-service-item span {
  font-size: .875rem; color: var(--stone); line-height: 1.55;
}

/* ─── Related areas ──────────────────────────────────────── */
.related-areas { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); }
.related-area-card {
  background: var(--cream-mid); padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: .5rem;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.related-area-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--gold); transition: right .4s ease;
}
.related-area-card:hover { background: var(--cream-dark); }
.related-area-card:hover::after { right: 0; }
.related-area-card .area-num { font-family: var(--serif); font-size: .78rem; color: var(--gold); letter-spacing: .06em; }
.related-area-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ink); line-height: 1.25; }
.related-area-card .link-arrow {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  margin-top: .5rem;
}

/* ─── CTA band ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink); padding: clamp(3rem,6vw,5rem) 0;
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 300; color: var(--cream); line-height: 1.2; max-width: 540px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-lt); }
.cta-band p { font-size: .9rem; color: rgba(244,239,230,.58); line-height: 1.8; margin-top: .75rem; max-width: 500px; }

/* ─── Areas grid (home) ──────────────────────────────────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--divider-lt);
  border: 1px solid var(--divider-lt);
}
.area-card {
  background: #fff;
  padding: clamp(1.75rem,3.5vw,2.75rem) clamp(1.5rem,2.5vw,2.25rem);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.area-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--gold); transition: right .5s ease;
}
.area-card:hover { background: #faf7f2; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(28,26,23,.06); z-index: 2; }
.area-card:hover::after { right: 0; }
.area-num { font-family: var(--serif); font-size: .82rem; color: var(--gold); letter-spacing: .06em; margin-bottom: .5rem; }
.area-card h3 {
  font-family: var(--serif); font-size: clamp(1.18rem,1.85vw,1.4rem);
  font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: .85rem;
}
.area-card > p { font-size: .875rem; color: var(--stone); line-height: 1.78; flex: 1; margin-bottom: 1.2rem; }
.area-card ul { list-style: none; display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.area-card li { font-size: .8rem; color: var(--stone-lt); padding-left: 1rem; position: relative; }
.area-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .05em; }
.area-card-link {
  font-family: var(--sans); font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: auto;
  transition: gap .2s;
}
.area-card:hover .area-card-link { gap: .7rem; }

/* ─── Trust row ──────────────────────────────────────────── */
.trust-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--divider-lt); border: 1px solid var(--divider-lt);
}
.trust-item { background: rgba(244,239,230,.7); padding: 1.1rem 1.15rem; }
.trust-item strong {
  display: block; font-family: var(--serif); font-size: .97rem;
  font-weight: 500; color: var(--ink); margin-bottom: .3rem; line-height: 1.3;
}
.trust-item span { font-size: .8rem; color: var(--stone); line-height: 1.65; }

/* ─── Profile / Sobre ────────────────────────────────────── */
.profile-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem,7vw,7rem); align-items: center;
}
.profile-visual { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.profile-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 1s ease; }
.profile-visual:hover .profile-img { transform: scale(1.04); }
.profile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,23,.05) 0%, rgba(28,26,23,.05) 40%, rgba(28,26,23,.82) 78%, rgba(28,26,23,.95) 100%);
}
.profile-badge {
  position: absolute; top: 2rem; left: -1px;
  background: var(--gold); color: #fff;
  padding: 1rem 1.2rem; text-align: center; z-index: 2;
}
.profile-badge strong { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 300; line-height: 1; }
.profile-badge span { font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.profile-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 2.25rem; z-index: 2; }
.profile-caption h3 { font-family: var(--serif); font-size: clamp(1.15rem,2.4vw,1.7rem); font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: .6rem; }
.profile-caption p { font-size: .82rem; color: rgba(244,239,230,.62); line-height: 1.75; }
.profile-content .eyebrow { margin-bottom: 1rem; }
.profile-content h2.sh { margin-top: .85rem; margin-bottom: 1.25rem; }
.profile-content p { font-size: clamp(.9rem,1.35vw,1rem); color: var(--stone); line-height: 1.88; margin-bottom: 1rem; }
.credentials { display: grid; grid-template-columns: repeat(2,1fr); gap: .85rem; margin-top: 1.75rem; }
.credential { border: 1px solid var(--divider-lt); padding: 1rem 1.1rem; background: rgba(255,255,255,.5); transition: border-color .25s; }
.credential:hover { border-color: var(--gold); }
.credential strong { display: block; font-family: var(--sans); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .32rem; }
.credential p { font-size: .82rem; color: var(--stone); line-height: 1.6; margin: 0; }

/* ─── E-E-A-T strip ──────────────────────────────────────── */
.eeat-strip { display: flex; flex-wrap: wrap; gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); margin-top: 1.75rem; }
.eeat-item { flex: 1; min-width: 130px; background: rgba(255,255,255,.5); padding: .85rem 1rem; display: flex; align-items: center; gap: .65rem; }
.eeat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.eeat-item span { font-family: var(--sans); font-size: .72rem; color: var(--stone-lt); line-height: 1.4; }
.eeat-item strong { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); }

/* ─── Método ─────────────────────────────────────────────── */
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(244,239,230,.1); border: 1px solid rgba(244,239,230,.1); }
.method-card { padding: clamp(1.75rem,3vw,2.5rem); border-bottom: 2px solid transparent; transition: border-color .3s, background .3s; }
.method-card:hover { border-bottom-color: var(--gold-lt); background: rgba(244,239,230,.04); }
.method-num { font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.25rem; }
.method-card h3 { font-family: var(--serif); font-size: clamp(1.15rem,1.75vw,1.38rem); font-weight: 400; color: var(--cream); margin-bottom: .8rem; line-height: 1.25; }
.method-card p { font-size: .875rem; color: rgba(244,239,230,.6); line-height: 1.78; }

/* ─── Image banner ───────────────────────────────────────── */
.image-banner { position: relative; overflow: hidden; min-height: clamp(280px,42vw,520px); display: flex; align-items: center; padding: 0; }
.image-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center 38%; transform: scale(1.05); transition: transform 1.2s ease; }
.image-banner:hover .image-banner-bg { transform: scale(1); }
.image-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,26,23,.9) 0%, rgba(28,26,23,.72) 55%, rgba(28,26,23,.58) 100%); }
.image-banner-content { position: relative; z-index: 1; max-width: 800px; padding-block: clamp(4rem,9vw,7rem); }
.image-banner-content .eyebrow { margin-bottom: 1.5rem; }
.image-banner-content blockquote { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(1.55rem,3.6vw,2.75rem); line-height: 1.3; color: var(--cream); letter-spacing: -.01em; }
.image-banner-content blockquote em { font-style: normal; color: var(--gold-lt); }
.image-banner-content cite { display: block; margin-top: 1.5rem; font-style: normal; font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,230,.4); }

/* ─── Service band ───────────────────────────────────────── */
.service-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); }
.service-box { background: #fff; padding: clamp(2rem,4vw,3rem); }
.service-box h3 { font-family: var(--serif); font-size: clamp(1.25rem,2.1vw,1.68rem); font-weight: 400; color: var(--ink); line-height: 1.22; margin-bottom: 1rem; }
.service-box > p { font-size: .9rem; color: var(--stone); line-height: 1.82; margin-bottom: 1.5rem; }
.service-list { list-style: none; display: grid; gap: .7rem; }
.service-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; color: var(--stone); }
.service-list .check { background: rgba(158,116,56,.12); color: var(--gold); flex-shrink: 0; }

/* ─── Formação ───────────────────────────────────────────── */
.formacao-separator { display: flex; align-items: center; gap: 1.5rem; margin-bottom: clamp(2.5rem,5vw,4rem); }
.formacao-separator::before, .formacao-separator::after { content: ''; flex: 1; height: 1px; background: var(--divider-lt); }
.formacao-separator span { font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-lt); white-space: nowrap; }
.formacao-intro { max-width: 680px; margin-inline: auto; text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.formacao-intro p { font-size: clamp(.92rem,1.35vw,1rem); color: var(--stone); line-height: 1.9; }
.formacao-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); margin-bottom: clamp(2.5rem,5vw,4rem); }
.formacao-card { background: var(--cream-mid); padding: clamp(2rem,3.5vw,2.75rem); transition: background .3s; }
.formacao-card:hover { background: var(--cream-dark); }
.formacao-card-accent { width: 32px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.formacao-card h3 { font-family: var(--serif); font-size: clamp(1.18rem,1.85vw,1.4rem); font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: .85rem; }
.formacao-card > p { font-size: .875rem; color: var(--stone); line-height: 1.82; margin-bottom: 1.25rem; }
.formacao-card ul { list-style: none; display: grid; gap: .45rem; }
.formacao-card li { font-size: .8rem; color: var(--stone-lt); padding-left: 1rem; position: relative; }
.formacao-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .05em; }
.formacao-cta { background: var(--ink); padding: clamp(2rem,4vw,3rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.formacao-cta-text h3 { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.75rem); font-weight: 300; color: var(--cream); line-height: 1.22; margin-bottom: .6rem; }
.formacao-cta-text p { font-size: .875rem; color: rgba(244,239,230,.6); line-height: 1.78; max-width: 500px; }

/* ─── Contato ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem,5vw,5rem); align-items: start; }
.contact-card-info p { font-size: clamp(.9rem,1.35vw,1rem); color: var(--stone); line-height: 1.88; margin-bottom: 1rem; }
.contact-card-info .btn-primary { margin-top: .5rem; margin-bottom: 2rem; }
.contact-info-list { display: grid; gap: .7rem; }
.contact-info-item { border: 1px solid var(--divider-lt); padding: .9rem 1.1rem; transition: border-color .25s; }
.contact-info-item:hover { border-color: var(--gold); }
.contact-info-item strong { display: block; font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .22rem; }
.contact-info-item p { font-size: .875rem; color: var(--stone); margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field label { font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.field input, .field select, .field textarea { background: rgba(244,239,230,.6); border: 1px solid var(--divider-lt); padding: .8rem 1rem; font-family: var(--sans); font-size: .9rem; font-weight: 300; color: var(--ink); outline: none; transition: border-color .25s, background .25s; -webkit-appearance: none; border-radius: 0; }
.field input::placeholder, .field textarea::placeholder { color: var(--stone-lt); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(244,239,230,.9); }
.field select { color: var(--stone); cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .75rem; color: var(--stone-lt); line-height: 1.7; }
.form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-feedback { font-size: .78rem; color: var(--gold); font-family: var(--sans); opacity: 0; transition: opacity .3s; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); }
.faq-item { background: #fff; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.35rem 1.75rem; background: none; border: none; cursor: pointer; text-align: left; transition: background .2s; }
.faq-btn:hover { background: #faf7f2; }
.faq-btn-text { font-family: var(--serif); font-size: clamp(1.05rem,1.7vw,1.25rem); font-weight: 400; color: var(--ink); line-height: 1.3; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(158,116,56,.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 300; transition: transform .35s, background .25s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 1.75rem; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p { font-size: clamp(.88rem,1.3vw,.97rem); color: var(--stone); line-height: 1.88; border-top: 1px solid var(--divider-lt); padding-top: 1.1rem; }

/* ─── Concept grid ───────────────────────────────────────── */
.concept-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.quote-box { background: var(--ink-light); color: var(--cream); padding: clamp(2rem,3.5vw,3rem); position: sticky; top: 7rem; }
.quote-box blockquote { font-family: var(--serif); font-size: clamp(1.25rem,2.1vw,1.62rem); font-weight: 300; font-style: italic; line-height: 1.46; color: var(--cream-mid); margin-bottom: 1.5rem; }
.quote-box cite { font-style: normal; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); }
.text-block p { font-size: clamp(.92rem,1.4vw,1.02rem); color: var(--stone); line-height: 1.9; margin-bottom: 1.1rem; }
.text-block em { color: var(--gold); font-style: italic; }
.pill-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.75rem; }
.pill { font-family: var(--sans); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; padding: .32rem .85rem; border: 1px solid var(--divider); color: var(--stone); background: rgba(244,239,230,.7); transition: border-color .2s, color .2s, background .2s; }
.pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(244,239,230,1); }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: #141210; padding-block: 3.5rem 1.75rem; }
.footer-inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: clamp(2rem,5vw,4rem); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(244,239,230,.07); }
.footer-brand { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--cream-mid); letter-spacing: .04em; margin-bottom: .75rem; }
.footer-brand span { display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,239,230,.26); margin-top: .22rem; }
footer p { font-size: .82rem; color: rgba(244,239,230,.4); line-height: 1.75; }
.footer-col h4 { font-family: var(--sans); font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { font-size: .82rem; color: rgba(244,239,230,.4); transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .7rem; color: rgba(244,239,230,.24); }

/* ─── Floating buttons ───────────────────────────────────── */
.float-buttons { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200; display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; }
.float-btn { position: relative; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,.22); transition: transform .25s, box-shadow .25s; color: #fff; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(0,0,0,.3); }
.float-btn svg { width: 22px; height: 22px; }
.float-whatsapp { background: #25D366; }
.float-email { background: var(--gold); }
.float-tip { position: absolute; right: calc(100% + .75rem); top: 50%; transform: translateY(-50%); background: var(--ink); color: var(--cream); font-family: var(--sans); font-size: .67rem; font-weight: 500; letter-spacing: .06em; white-space: nowrap; padding: .28rem .7rem; opacity: 0; transition: opacity .2s; pointer-events: none; }
.float-btn:hover .float-tip { opacity: 1; }

/* ─── Blog listing ───────────────────────────────────────── */
.blog-hero { background: var(--ink); padding: clamp(3.5rem,7vw,6rem) 0 clamp(3rem,5vw,5rem); position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 60% at 90% 30%, rgba(158,116,56,.12) 0%, transparent 60%); }
.blog-hero-inner { position: relative; z-index: 1; }

.blog-filters { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: clamp(2rem,4vw,3rem); }
.blog-filter-btn { font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border: 1px solid var(--divider-lt); color: var(--stone); background: transparent; cursor: pointer; transition: all .2s; }
.blog-filter-btn:hover, .blog-filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(158,116,56,.06); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); }
.blog-card { background: #fff; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .25s, transform .25s, box-shadow .25s; }
.blog-card:hover { background: #faf7f2; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(28,26,23,.07); z-index: 2; }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-family: var(--sans); font-size: .63rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; display: block; }
.blog-card h3 { font-family: var(--serif); font-size: clamp(1.08rem,1.55vw,1.28rem); font-weight: 400; color: var(--ink); line-height: 1.25; margin-bottom: .7rem; text-wrap: pretty; }
.blog-card p { font-size: .875rem; color: var(--stone); line-height: 1.75; flex: 1; margin-bottom: 1rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.blog-card-meta { font-size: .68rem; color: var(--stone-lt); font-family: var(--sans); }
.blog-card-link { font-family: var(--sans); font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; flex-shrink: 0; }
.blog-card:hover .blog-card-link { gap: .65rem; }

/* ─── Article page ───────────────────────────────────────── */
.article-hero { background: var(--ink); padding: clamp(3rem,6vw,5rem) 0 clamp(2.5rem,4.5vw,4rem); position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 60% at 88% 25%, rgba(158,116,56,.12) 0%, transparent 60%); }
.article-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .12; transform: scale(1.06); }
.article-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.article-cat { font-family: var(--sans); font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1rem; display: block; }
h1.article-title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.85rem,4vw,3.1rem); line-height: 1.12; letter-spacing: -.01em; color: var(--cream); margin-bottom: 1.25rem; text-wrap: pretty; }
.article-lead { font-size: clamp(.97rem,1.5vw,1.08rem); color: rgba(244,239,230,.65); line-height: 1.85; margin-bottom: 1.5rem; }
.article-meta-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; font-family: var(--sans); font-size: .7rem; color: rgba(244,239,230,.4); letter-spacing: .04em; }
.article-meta-row a { color: rgba(244,239,230,.5); transition: color .2s; }
.article-meta-row a:hover { color: var(--gold-lt); }

.article-featured-img { width: 100%; aspect-ratio: 21/7; overflow: hidden; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-outer { padding-block: clamp(2.5rem,5vw,4.5rem) clamp(3rem,6vw,5.5rem); }
.article-layout { display: grid; grid-template-columns: 1fr 290px; gap: clamp(3rem,5vw,5rem); align-items: start; }

.article-content h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.42rem,2.5vw,1.95rem); line-height: 1.2; color: var(--ink); margin: 2.25rem 0 .9rem; text-wrap: pretty; }
.article-content h2:first-child { margin-top: 0; }
.article-content h2 em { font-style: italic; color: var(--gold); }
.article-content h3 { font-family: var(--serif); font-size: clamp(1.12rem,1.75vw,1.38rem); font-weight: 400; color: var(--ink); margin: 1.75rem 0 .7rem; line-height: 1.3; }
.article-content p { font-size: clamp(.93rem,1.4vw,1.03rem); color: var(--stone); line-height: 1.92; margin-bottom: 1.1rem; }
.article-content ul, .article-content ol { padding: 0; list-style: none; display: grid; gap: .6rem; margin-bottom: 1.25rem; }
.article-content li { font-size: clamp(.91rem,1.35vw,1rem); color: var(--stone); padding-left: 1.3rem; position: relative; line-height: 1.78; }
.article-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .72rem; top: .12em; }
.article-content ol { counter-reset: art; }
.article-content ol li { counter-increment: art; }
.article-content ol li::before { content: counter(art) '.'; position: absolute; left: 0; color: var(--gold); font-size: .75rem; font-weight: 600; top: .08em; }
.article-content blockquote { border-left: 2px solid var(--gold); padding: 1.1rem 1.5rem; margin: 1.75rem 0; background: rgba(158,116,56,.05); }
.article-content blockquote p { font-family: var(--serif); font-size: clamp(1.08rem,1.75vw,1.3rem); font-style: italic; font-weight: 300; color: var(--ink-light); margin: 0; line-height: 1.55; }
.article-content strong { color: var(--ink); }
.article-content .note-box { background: var(--cream-mid); border: 1px solid var(--divider-lt); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.article-content .note-box strong { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.article-content .note-box p { font-size: .9rem; margin: 0; }

.article-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--divider-lt); }

.article-sidebar { position: sticky; top: 7rem; display: grid; gap: 1.25rem; }

.related-posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--divider-lt); border: 1px solid var(--divider-lt); }
.related-post { background: var(--cream-mid); padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .5rem; transition: background .2s; }
.related-post:hover { background: var(--cream-dark); }
.related-post .blog-card-cat { margin: 0; }
.related-post h4 { font-family: var(--serif); font-size: clamp(1rem,1.5vw,1.18rem); font-weight: 400; color: var(--ink); line-height: 1.3; }
.related-post .blog-card-link { margin-top: .35rem; }

@media (max-width: 1020px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: relative; top: auto; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .related-posts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid, .related-posts { grid-template-columns: 1fr; }
}

/* ─── Page hero with background image ───────────────────── */
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 1.4s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,26,23,.92) 0%,
    rgba(28,26,23,.80) 55%,
    rgba(28,26,23,.65) 100%
  );
}

/* ─── Content image (area pages) ────────────────────────── */
.content-img-wrap {
  margin-bottom: 2.25rem;
  position: relative; overflow: hidden;
  aspect-ratio: 16/7;
}
.content-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .9s ease;
}
.content-img-wrap:hover img { transform: scale(1.03); }
.content-img-caption {
  font-family: var(--sans); font-size: .7rem;
  color: var(--stone-lt); letter-spacing: .05em;
  margin-top: .55rem; line-height: 1.5;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: relative; top: auto; }
  .related-areas { grid-template-columns: 1fr 1fr; }
  .formacao-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .method-grid { grid-template-columns: repeat(2,1fr); }
  .service-band { grid-template-columns: 1fr; }
  .concept-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-box { position: relative; top: auto; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  nav { display: none; flex-direction: column; align-items: flex-start; gap: 1rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(244,239,230,.98); backdrop-filter: blur(16px); padding: 1.5rem var(--pad-x); border-top: 1px solid var(--divider-lt); border-bottom: 1px solid var(--divider-lt); }
  nav.open { display: flex; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .areas-grid, .method-grid, .related-areas { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .credentials, .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .float-buttons { bottom: 1.25rem; right: 1.25rem; }
  .topbar-inner span:last-child { display: none; }
}
