:root {
  --ink: #171512;
  --ink-soft: #2a2722;
  --paper: #f6f1e9;
  --paper-deep: #ece3d7;
  --white: #fffdf9;
  --bronze: #a47e49;
  --bronze-dark: #76562f;
  --bronze-light: #d7c09f;
  --muted: #6f685e;
  --line: rgba(23, 21, 18, 0.14);
  --line-dark: rgba(255, 253, 249, 0.15);
  --success: #315f49;
  --danger: #8a3d35;
  --shadow: 0 24px 70px rgba(31, 24, 16, 0.13);
  --shadow-soft: 0 14px 35px rgba(31, 24, 16, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--bronze-light); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-paper-deep { background: var(--paper-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--bronze-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--bronze-light); }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(3rem, 7vw, 6.3rem); line-height: .97; margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 5vw, 4.3rem); line-height: 1.05; margin-bottom: 24px; }
h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.15; margin-bottom: 14px; }
h4 { margin-bottom: 10px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.section-dark .lead { color: rgba(255,255,255,.72); }
.text-muted { color: var(--muted); }
.text-small { font-size: .9rem; }
.max-copy { max-width: 760px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(246, 241, 233, .94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(31,24,16,.06);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--container);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 52px; height: 52px; }
.brand-copy strong { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; line-height: 1.05; }
.brand-copy span { display: block; margin-top: 5px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-link { position: relative; font-size: .9rem; font-weight: 700; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--bronze); transition: right .2s ease; }
.nav-link:hover::after, .nav-link[aria-current]::after { right: 0; }
.nav-cta { padding: 12px 18px; color: var(--white); background: var(--ink); border-radius: 999px; font-size: .84rem; font-weight: 800; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); }
.menu-toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 94px;
  background:
    radial-gradient(circle at 82% 18%, rgba(164,126,73,.18), transparent 30%),
    linear-gradient(135deg, var(--paper) 0%, #f8f4ee 62%, #e7ddd0 100%);
}
.hero::after {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  right: -250px;
  bottom: -280px;
  border: 1px solid rgba(164,126,73,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(164,126,73,.04), 0 0 0 160px rgba(164,126,73,.025);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 78px; align-items: center; }
.hero-copy { max-width: 700px; }
.hero-copy h1 span { display: block; color: var(--bronze-dark); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .88rem; }
.hero-note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--bronze-dark); }
.hero-visual { position: relative; min-height: 560px; }
.portrait-card {
  position: absolute;
  inset: 0 24px;
  overflow: hidden;
  border-radius: 230px 230px 24px 24px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-rail { position: absolute; top: 46px; right: 0; width: 2px; height: 220px; background: linear-gradient(var(--bronze), transparent); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: var(--white); background: var(--ink); }
.btn-primary:hover { background: var(--bronze-dark); }
.btn-secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.btn-secondary:hover { color: var(--white); background: var(--ink); }
.btn-bronze { color: var(--white); background: var(--bronze-dark); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { color: var(--ink); background: var(--white); }
.btn[aria-disabled='true'], .btn.is-disabled { opacity: .45; pointer-events: none; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,249,.62); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.trust-item span { display: block; margin-top: 5px; color: var(--muted); font-size: .8rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 52px; }
.section-heading > div:first-child { max-width: 770px; }
.section-heading .lead { margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.about-visual { position: relative; min-height: 620px; }
.about-frame { position: absolute; inset: 30px 40px 0 0; border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-soft); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-quote { position: absolute; right: 0; bottom: 32px; width: min(360px, 80%); padding: 28px; color: var(--white); background: var(--ink); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.about-quote p { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; }
.about-copy p { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 3px; color: var(--bronze-dark); }

.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.practice-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.practice-card:hover { transform: translateY(-6px); border-color: rgba(164,126,73,.5); box-shadow: var(--shadow-soft); }
.practice-card .icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--bronze-dark); }
.practice-card .icon-box svg { width: 24px; height: 24px; }
.practice-card p { max-width: 520px; color: var(--muted); }
.practice-card .card-link { position: absolute; left: 34px; right: 34px; bottom: 30px; display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.practice-card .card-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.practice-card:hover .card-link svg { transform: translateX(5px); }
.practice-card.dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.practice-card.dark p { color: rgba(255,255,255,.68); }
.practice-card.dark .icon-box, .practice-card.dark .card-link { border-color: var(--line-dark); }
.practice-card.dark .icon-box { color: var(--bronze-light); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.audience-panel { padding: 54px; }
.audience-panel + .audience-panel { border-left: 1px solid var(--line-dark); }
.audience-panel p { color: rgba(255,255,255,.68); }
.audience-panel ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.audience-panel li { display: flex; gap: 12px; color: rgba(255,255,255,.88); }
.audience-panel li::before { content: '—'; color: var(--bronze-light); }

.process-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { counter-increment: steps; position: relative; padding: 28px; border-top: 1px solid var(--ink); }
.process-card::before { content: '0' counter(steps); display: block; margin-bottom: 44px; color: var(--bronze-dark); font-family: var(--serif); font-size: 1.15rem; }
.process-card p { color: var(--muted); font-size: .94rem; }

.testimonial-placeholder { padding: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,249,.6); }
.testimonial-placeholder p { margin-bottom: 0; color: var(--muted); }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: var(--serif); font-size: 1.25rem; }
.faq-question svg { flex: 0 0 auto; width: 20px; height: 20px; transition: transform .2s ease; }
.faq-question[aria-expanded='true'] svg { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 760px; padding: 0 0 24px; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.cta-band { position: relative; overflow: hidden; padding: 80px 0; color: var(--white); background: var(--bronze-dark); }
.cta-band::after { content: ''; position: absolute; width: 360px; height: 360px; right: -100px; top: -180px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 120px rgba(255,255,255,.025); }
.cta-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-grid h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.1rem, 4vw, 3.8rem); }

.site-footer { color: var(--white); background: #0f0e0c; }
.footer-main { padding: 72px 0 42px; display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 46px; }
.footer-brand p { max-width: 380px; margin-top: 22px; color: rgba(255,255,255,.6); }
.footer-brand .brand-copy span { color: rgba(255,255,255,.5); }
.footer-title { margin-bottom: 18px; color: var(--bronze-light); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0 28px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.48); font-size: .78rem; }
.social-list { display: flex; gap: 10px; margin-top: 22px; }
.social-link { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; }
.social-link svg { width: 17px; height: 17px; }

.page-hero { padding: 176px 0 92px; background: linear-gradient(140deg, var(--paper) 0%, #f4ede3 62%, #e6dbcc 100%); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: end; }
.page-hero h1 { max-width: 800px; font-size: clamp(3.1rem, 6vw, 5.7rem); }
.page-hero-aside { padding: 30px 0 12px 38px; border-left: 1px solid var(--bronze); }
.page-hero-aside p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 32px; color: var(--bronze-dark); text-decoration: none; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--ink); border-bottom-color: currentColor; }
.breadcrumb [aria-current='page'] { color: var(--muted); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: start; }
.content-main > p { color: var(--muted); font-size: 1.06rem; }
.content-main h2 { margin-top: 56px; font-size: clamp(2rem, 3vw, 3.1rem); }
.service-groups { display: grid; gap: 20px; margin-top: 38px; }
.service-group { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.service-group h3 { font-size: 1.55rem; }
.service-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.service-list li { position: relative; padding-left: 20px; color: var(--muted); }
.service-list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); }
.sidebar-card { position: sticky; top: 110px; padding: 30px; border-radius: var(--radius); color: var(--white); background: var(--ink); box-shadow: var(--shadow-soft); }
.sidebar-card p { color: rgba(255,255,255,.65); }
.sidebar-card .btn { width: 100%; margin-top: 12px; }
.sidebar-mini { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.55); font-size: .78rem; }
.related-links { display: grid; gap: 12px; margin-top: 24px; }
.related-links a { display: flex; justify-content: space-between; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.78); font-size: .86rem; }
.related-links a svg { width: 16px; height: 16px; }

.highlight-box { margin: 42px 0; padding: 34px; border-left: 3px solid var(--bronze); background: var(--paper-deep); }
.highlight-box p:last-child { margin-bottom: 0; }

.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.profile-card { position: sticky; top: 110px; overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow); }
.profile-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.profile-card-body { padding: 28px; color: var(--white); }
.profile-card-body p { color: rgba(255,255,255,.64); }
.profile-details { display: grid; gap: 18px; margin: 34px 0; }
.profile-detail { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.profile-detail span { display: block; color: var(--muted); font-size: .8rem; }
.profile-detail strong { display: block; margin-top: 5px; font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 38px; }
.value-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 68px; align-items: start; }
.contact-intro { position: sticky; top: 110px; }
.contact-options { display: grid; gap: 12px; margin-top: 34px; }
.contact-option { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,253,249,.6); }
.contact-option .icon-box { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--ink); }
.contact-option .icon-box svg { width: 20px; height: 20px; }
.contact-option span { display: block; color: var(--muted); font-size: .75rem; }
.contact-option strong { display: block; margin-top: 3px; font-size: .95rem; }
.contact-service-note { margin-top: 18px; padding: 16px 18px; border-left: 3px solid var(--bronze); background: rgba(255,253,249,.7); color: var(--muted); font-size: .9rem; line-height: 1.65; }
.contact-service-note strong { color: var(--ink); }
.contact-form { padding: 38px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .8rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(164,126,73,.13); }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0; color: var(--muted); font-size: .8rem; }
.checkbox-row input { margin-top: 4px; accent-color: var(--bronze-dark); }
.form-status { display: none; margin-top: 16px; padding: 13px 15px; border-radius: 9px; font-size: .84rem; }
.form-status.is-visible { display: block; }
.form-status.success { color: var(--success); background: rgba(49,95,73,.1); }
.form-status.error { color: var(--danger); background: rgba(138,61,53,.1); }
.form-note { margin-top: 14px; color: var(--muted); font-size: .75rem; }

.privacy-content { max-width: 900px; }
.privacy-content h2 { margin-top: 52px; font-size: 2.2rem; }
.privacy-content h3 { margin-top: 32px; font-size: 1.45rem; }
.privacy-content p, .privacy-content li { color: var(--muted); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #276749;
  box-shadow: 0 16px 35px rgba(39,103,73,.3);
  transition: transform .2s ease;
}
.whatsapp-float.is-visible { display: grid; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 27px; height: 27px; }

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 22px;
  z-index: 899;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, .16);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(23, 21, 18, .24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top.with-whatsapp { bottom: 94px; }
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--bronze-dark); transform: translateY(-3px); }
.back-to-top:focus-visible { outline: 3px solid var(--bronze-light); outline-offset: 3px; }
.back-to-top svg { width: 23px; height: 23px; }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.reveal-pending.is-visible { opacity: 1; transform: none; }

.config-warning { display: none; position: fixed; inset: auto 18px 18px 18px; z-index: 2000; max-width: 760px; margin: 0 auto; padding: 16px 18px; border: 1px solid rgba(138,61,53,.25); border-radius: 12px; color: #623029; background: #fff4f1; box-shadow: var(--shadow-soft); font-size: .82rem; }
.config-warning.is-visible { display: block; }
.config-warning button { float: right; margin-left: 16px; border: 0; background: transparent; font-weight: 900; }

@media (max-width: 1050px) {
  .nav-list { gap: 18px; }
  .nav-link { font-size: .82rem; }
  .hero-grid, .page-hero-grid { gap: 46px; }
  .hero-visual { min-height: 510px; }
  .portrait-card { left: 30px; }
  .about-grid, .profile-grid, .contact-grid { gap: 48px; }
  .footer-main { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 82px 0; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 84px 0 0;
    padding: 28px 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  .site-nav.is-open { transform: none; }
  .nav-list { display: grid; align-content: start; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-link { display: block; padding: 18px 4px; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
  .nav-link::after { display: none; }
  .nav-cta { display: flex; margin-top: 22px; justify-content: center; }
  .hero { min-height: auto; padding-top: 128px; }
  .hero-grid, .page-hero-grid, .about-grid, .profile-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-visual { min-height: 570px; margin-top: 20px; }
  .portrait-card { inset: 0 30px 0 70px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { align-items: start; flex-direction: column; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-panel + .audience-panel { border-left: 0; border-top: 1px solid var(--line-dark); }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .page-hero-aside { padding-left: 24px; }
  .sidebar-card, .profile-card, .contact-intro { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 24px, 560px); --radius: 18px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy strong { font-size: .98rem; }
  .brand-copy span { font-size: .62rem; }
  .site-nav { top: 76px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
  .hero { padding: 118px 0 70px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .portrait-card { inset: 0 8px; }
  .trust-grid, .practice-grid, .process-grid, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .practice-card { min-height: 340px; padding: 28px; }
  .practice-card .card-link { left: 28px; right: 28px; }
  .about-visual { min-height: 510px; }
  .about-frame { inset: 0 18px 0 0; }
  .about-quote { right: 0; bottom: 20px; padding: 22px; }
  .audience-panel { padding: 32px 24px; }
  .process-card { padding: 24px 10px; }
  .cta-band { padding: 62px 0; }
  .page-hero { padding: 140px 0 70px; }
  .page-hero-grid { gap: 24px; }
  .page-hero-aside { padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--bronze); }
  .content-grid { gap: 42px; }
  .service-group, .contact-form { padding: 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .form-field.full { grid-column: auto; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .back-to-top { right: 19px; bottom: 16px; width: 48px; height: 48px; }
  .back-to-top.with-whatsapp { bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
}

@media print {
  .site-header, .whatsapp-float, .back-to-top, .cta-band, .site-footer, .btn, .config-warning { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding: 30px 0; }
  .container { width: 100%; }
  .page-hero { border: 0; }
}

/* Identidade visual oficial e fotografia */
.brand > img { object-fit: contain; }
.portrait-card picture,
.about-frame picture,
.profile-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.portrait-card img,
.about-frame img,
.profile-card img {
  object-position: center 36%;
}
.footer-logo {
  display: inline-block;
  line-height: 0;
}
.footer-logo img {
  width: 122px;
  height: auto;
}
.identity-card {
  display: grid;
  place-items: center;
  padding: 54px;
  background: var(--white);
}
.identity-card img {
  width: min(228px, 78%);
  height: auto;
  object-fit: contain;
}

@media (max-width: 620px) {
  .footer-logo img { width: 108px; }
  .identity-card { padding: 34px; }
}


/* Conteúdo consolidado: modalidade de atendimento e canais */
.profile-detail-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.55;
}
.service-notice {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--bronze);
  background: rgba(177, 126, 71, .08);
  border-radius: 0 12px 12px 0;
}
.service-notice strong { display: block; margin-bottom: 6px; color: var(--ink); }
.service-notice p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.contact-option small { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; font-weight: 600; }

/* Retrato secundário — evita repetição da fotografia principal */
.secondary-portrait { object-position: center center !important; }

/* Gestão de consentimento de cookies */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 3200;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 24px 70px rgba(23, 21, 18, .22);
  backdrop-filter: blur(14px);
}
.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 22px 24px;
}
.cookie-banner__copy strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; }
.cookie-banner__copy p { max-width: 760px; margin: 0 0 7px; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.cookie-banner__copy a, .cookie-modal__links a { color: var(--bronze-dark); font-size: .82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: grid; grid-template-columns: repeat(2, max-content); align-items: center; justify-content: end; gap: 8px 10px; }
.cookie-btn {
  min-height: 43px;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn:focus-visible, .cookie-modal__close:focus-visible, .footer-cookie-button:focus-visible { outline: 3px solid var(--bronze-light); outline-offset: 3px; }
.cookie-btn--primary { color: var(--white); background: var(--ink); }
.cookie-btn--secondary { color: var(--ink); background: transparent; }
.cookie-btn--text { grid-column: 1 / -1; min-height: auto; padding: 4px; border: 0; color: var(--bronze-dark); background: transparent; justify-self: center; text-decoration: underline; text-underline-offset: 3px; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3300;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 21, 18, .66);
}
.cookie-modal__dialog {
  width: min(100%, 660px);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 30px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.cookie-modal__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.cookie-modal__eyebrow { margin: 0 0 5px; color: var(--bronze-dark); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cookie-modal__header h2 { margin: 0; font-size: clamp(1.8rem, 5vw, 2.5rem); }
.cookie-modal__close { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.cookie-modal__dialog > p { margin: 0 0 20px; color: var(--muted); font-size: .91rem; line-height: 1.65; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 20px 0; border-top: 1px solid var(--line); }
.cookie-category strong { display: block; margin-bottom: 4px; color: var(--ink); }
.cookie-category p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.cookie-switch { position: relative; display: inline-flex; cursor: pointer; }
.cookie-switch input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch span { width: 52px; height: 29px; border-radius: 999px; background: #c8c2b8; transition: background .2s ease; }
.cookie-switch span::after { content: ''; position: absolute; top: 4px; left: 4px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.25); transition: transform .2s ease; }
.cookie-switch input:checked + span { background: var(--bronze-dark); }
.cookie-switch input:checked + span::after { transform: translateX(23px); }
.cookie-switch input:focus-visible + span { outline: 3px solid var(--bronze-light); outline-offset: 3px; }
.cookie-switch--locked { cursor: not-allowed; opacity: .78; }
.cookie-modal__links { display: flex; flex-wrap: wrap; gap: 10px 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.cookie-modal__actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cookie-modal-open { overflow: hidden; }
.footer-cookie-button { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; text-align: left; cursor: pointer; }
.footer-cookie-button:hover { color: var(--bronze-light); }

@media (max-width: 860px) {
  .cookie-banner__content { grid-template-columns: 1fr; gap: 18px; }
  .cookie-banner__actions { justify-content: start; }
}
@media (max-width: 620px) {
  .cookie-banner { inset: auto 10px 10px; border-radius: 15px; }
  .cookie-banner__content { padding: 18px; }
  .cookie-banner__actions { grid-template-columns: 1fr; width: 100%; }
  .cookie-btn { width: 100%; }
  .cookie-btn--text { grid-column: auto; }
  .cookie-modal { padding: 10px; }
  .cookie-modal__dialog { padding: 22px 18px; border-radius: 16px; }
  .cookie-category { gap: 14px; }
  .cookie-modal__actions { flex-direction: column-reverse; }
}
@media print {
  .cookie-banner, .cookie-modal, .footer-cookie-button { display: none !important; }
}
