:root {
  --paper: #f4f0e9;
  --paper-2: #eee9e0;
  --ink: #1f282b;
  --muted: #5f696a;
  --line: rgba(31, 40, 43, .16);
  --deep: #18333a;
  --deep-2: #10282e;
  --clay: #b77a58;
  --wine: #704554;
  --bluegray: #687a80;
  --white: #fffdf8;
  --radius: 18px;
  --max: 1240px;
  --shadow: 0 16px 42px rgba(27, 35, 37, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }

.section-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section-spaced { padding-block: 112px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31,40,43,.08);
}
.brand { text-decoration: none; display: grid; gap: 1px; min-width: max-content; }
.brand-name { font-family: ui-serif, Georgia, Cambria, serif; font-size: 21px; letter-spacing: -.015em; }
.brand-role { font-size: 12.5px; color: var(--muted); letter-spacing: .015em; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-link, .nav-trigger { text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 560; background: none; border: 0; cursor: pointer; padding: 12px 0; }
.nav-link:hover { color: var(--deep); }
.nav-cta { text-decoration: none; font-size: 14px; font-weight: 700; padding: 11px 18px; background: var(--deep); color: var(--white); border-radius: 999px; }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; left: -18px; min-width: 250px; padding: 10px; background: var(--white); border: 1px solid rgba(31,40,43,.10); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-4px); transition: .18s ease;
}
.nav-dropdown:hover .dropdown-panel, .nav-dropdown.open .dropdown-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-panel a { display: block; padding: 10px 12px; border-radius: 9px; text-decoration: none; font-size: 14px; color: var(--ink); }
.dropdown-panel a:hover { background: var(--paper); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; padding: 10px; }
.menu-toggle span { display: block; height: 1.5px; background: var(--ink); margin: 7px 0; transition: .2s; }

.hero { min-height: auto; display: grid; grid-template-columns: 1.18fr .82fr; align-items: start; gap: clamp(42px, 6vw, 88px); padding-block: 42px 76px; }
.hero-copy { max-width: 710px; padding-top: 8px; }
@media (max-width: 820px) { .hero-copy { padding-top: 0; } }
.eyebrow { margin: 0 0 20px; font-size: 12px; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; color: var(--deep); }
.hero h1, .section-heading h2, .about h2, .how h2, .final-cta h2 {
  margin: 0; font-family: ui-serif, Georgia, Cambria, serif; font-weight: 500; letter-spacing: -.035em; line-height: 1.03;
}
.hero h1 { font-size: clamp(44px, 4.25vw, 61px); max-width: 780px; }
.hero-lead { margin: 24px 0 0; max-width: 650px; font-size: clamp(17px, 1.42vw, 20px); line-height: 1.5; color: #394447; }
.hero-meta { margin: 16px 0 0; color: var(--muted); font-size: 15px; }
.hero-actions { margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 760; font-size: 14px; transition: transform .16s ease, background .16s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--deep); color: var(--white); }
.button-primary:hover { background: var(--deep-2); }
.hero-signature { margin-top: 28px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.hero-signature strong { color: var(--ink); font-weight: 740; }
.hero-portrait { margin: 0; width: min(100%, 340px); justify-self: end; align-self: start; }
.hero-portrait img { height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; border-radius: 3px 38px 3px 3px; box-shadow: 0 18px 50px rgba(29,36,38,.08); }

.compact-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading h2 { font-size: clamp(38px, 4vw, 58px); }
.paths-intro { margin: 18px 0 0; max-width: 690px; color: var(--muted); font-size: 17px; line-height: 1.6; }

.paths { padding-top: 92px; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.path-card { display: flex; flex-direction: column; min-width: 0; text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,.20); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: rgba(255,255,255,.36); }
.path-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-2); }
.path-image img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.path-card:hover .path-image img { transform: scale(1.018); }
.path-general .path-image img { object-position: 49% 42%; }
.path-lgbt .path-image img { object-position: 52% 44%; }
.path-abroad .path-image img { object-position: 48% 43%; }
.path-content { display: flex; flex-direction: column; flex: 1; padding: 28px 26px 26px; border-top: 4px solid transparent; }
.path-general .path-content { border-top-color: var(--clay); }
.path-lgbt .path-content { border-top-color: var(--wine); }
.path-abroad .path-content { border-top-color: var(--bluegray); }
.path-kicker { margin: 0 0 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; color: var(--muted); }
.path-content h3, .other-card h3 { margin: 0; font-family: ui-serif, Georgia, Cambria, serif; font-weight: 500; letter-spacing: -.025em; line-height: 1.08; font-size: 29px; }
.path-content p:not(.path-kicker) { margin: 16px 0 26px; color: #4d585a; font-size: 15px; }
.text-link { margin-top: auto; display: inline-flex; gap: 8px; align-items: center; font-size: 13px; text-decoration: none; font-weight: 800; color: var(--deep); }
.text-link span { transition: transform .16s; }
a:hover .text-link span, .text-link:hover span { transform: translateX(3px); }
.text-link.standalone { margin-top: 24px; }

.about { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 150px); border-top: 1px solid var(--line); }
.about-label { align-self: start; }
.about-years { margin-top: 70px; color: var(--muted); font-size: 14px; }
.about-years span { display: block; font-family: ui-serif, Georgia, serif; font-size: 82px; color: var(--deep); line-height: .9; letter-spacing: -.06em; }
.about-copy { max-width: 720px; }
.about h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 30px; }
.about-copy > p { font-size: 17px; line-height: 1.7; color: #445053; }

.how { background: var(--paper-2); border-block: 1px solid rgba(31,40,43,.08); }
.how-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); }
.how h2 { font-size: clamp(38px, 4vw, 58px); max-width: 520px; }
.how-intro { margin: 0 0 38px; font-size: 19px; line-height: 1.65; color: #3e4a4c; max-width: 730px; }
.facts { border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.fact > span { font-family: ui-serif, Georgia, serif; font-size: 24px; color: var(--bluegray); }
.fact h3 { margin: 0 0 5px; font-size: 16px; }
.fact p { margin: 0; color: var(--muted); font-size: 14px; }

.other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.other-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 34px; text-decoration: none; border: 1px solid var(--line); background: rgba(255,255,255,.22); min-height: 250px; transition: .2s ease; }
.other-card:hover { background: rgba(255,255,255,.42); transform: translateY(-2px); }
.other-index { font-family: ui-serif, Georgia, serif; font-size: 26px; color: var(--bluegray); }
.other-card p:not(.path-kicker) { color: var(--muted); max-width: 520px; }

.faq { border-top: 1px solid var(--line); }
.faq-list { max-width: 920px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 25px 50px 25px 0; font-family: ui-serif, Georgia, serif; font-size: 24px; line-height: 1.25; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 10px; top: 21px; font-family: ui-sans-serif, sans-serif; font-weight: 300; color: var(--deep); font-size: 28px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: -3px 70px 26px 0; max-width: 760px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.final-cta { background: var(--deep); color: var(--white); padding-block: 110px; }
.final-cta-inner { max-width: 920px; margin-left: max(24px, calc((100vw - var(--max))/2)); margin-right: auto; }
.eyebrow.light { color: #d9e0dc; }
.final-cta h2 { font-size: clamp(45px, 5vw, 72px); max-width: 820px; }
.final-cta p:not(.eyebrow) { max-width: 720px; color: #d8e0dc; font-size: 18px; line-height: 1.65; margin: 28px 0 34px; }
.button-light { background: var(--white); color: var(--deep); }

.site-footer { background: #0f252a; color: #d4ddda; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 36px; }
.footer-grid h3 { margin: 0 0 15px; color: var(--white); font-size: 13px; }
.footer-grid a { display: block; color: #bdc9c5; text-decoration: none; font-size: 13px; margin: 9px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-grid p { font-size: 13px; color: #bdc9c5; }
.footer-name { color: var(--white)!important; font-family: ui-serif, Georgia, serif; font-size: 22px!important; margin-top: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 54px; padding-top: 22px; font-size: 12px; color: #91a39d; }

@media (max-width: 980px) {
  .section-spaced { padding-block: 84px; }
  .hero { grid-template-columns: 1fr .68fr; gap: 40px; min-height: auto; padding-top: 36px; }
  .hero h1 { font-size: clamp(42px, 5.4vw, 58px); }
  .path-grid { gap: 16px; }
  .path-content { padding: 22px 20px; }
  .path-content h3 { font-size: 25px; }
  .about, .how-grid { gap: 70px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 70px; padding-inline: 20px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 70px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 22px 28px; display: none; flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav.open { display: flex; }
  .nav-link, .nav-trigger { width: 100%; text-align: left; padding: 13px 0; font-size: 16px; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .dropdown-panel { position: static; display: none; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 12px; background: transparent; }
  .nav-dropdown.open .dropdown-panel { display: block; }
  .hero { display: flex; flex-direction: column; align-items: stretch; padding-top: 24px; gap: 26px; }
  .hero-portrait { order: -1; width: 52%; max-width: 280px; justify-self: auto; align-self: flex-end; }
  .hero-portrait img { border-radius: 3px 34px 3px 3px; }
  .path-grid { grid-template-columns: 1fr; gap: 38px; }
  .path-card { max-width: 650px; }
  .path-image { aspect-ratio: 5 / 4; }
  .path-general .path-image img { object-position: 50% 37%; }
  .path-lgbt .path-image img { object-position: 50% 39%; }
  .path-abroad .path-image img { object-position: 50% 40%; }
  .about, .how-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-years { margin-top: 30px; }
  .about-years span { font-size: 60px; }
  .other-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section-shell { width: min(calc(100% - 32px), var(--max)); }
  .section-spaced { padding-block: 72px; }
  .brand-name { font-size: 19px; }
  .brand-role { font-size: 11.5px; }
  .hero { padding-bottom: 74px; }
  .hero-portrait { width: 58%; max-width: 260px; margin-right: 0; }
  .hero h1 { font-size: 43px; line-height: 1.04; }
  .hero-lead { font-size: 18px; }
  .button { width: 100%; }
  .hero-signature { margin-top: 30px; }
  .compact-heading { margin-bottom: 34px; }
  .section-heading h2, .about h2, .how h2 { font-size: 38px; }
  .path-card { border-left: 0; border-right: 0; }
  .path-image { aspect-ratio: 4 / 3; }
  .path-content { padding-inline: 6px; }
  .about { border-top: 0; }
  .other-card { grid-template-columns: 38px 1fr; padding: 28px 20px; }
  .faq summary { font-size: 21px; padding-right: 42px; }
  .faq details p { margin-right: 12px; }
  .final-cta { padding-block: 82px; }
  .final-cta h2 { font-size: 46px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PÁGINA TEMÁTICA — LGBTQIA+
   ========================================================= */
.theme-lgbtqia { --lgbt-accent: #744b5b; --lgbt-soft: #ece3e4; --lgbt-deep: #243c38; }
.theme-lgbtqia .dropdown-panel a[aria-current="page"] { color: var(--lgbt-accent); font-weight: 800; }
.theme-lgbtqia .eyebrow { color: var(--lgbt-accent); }
.theme-lgbtqia .eyebrow.light { color: #e6dadd; }
.lgbt-button { background: var(--lgbt-deep); }
.lgbt-button:hover { background: #182e2a; }

.theme-hero { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(48px, 6.5vw, 92px); align-items: start; min-height: auto; padding-block: 42px 78px; }
.theme-hero-copy { max-width: 720px; }
.theme-hero h1 { margin: 12px 0 22px; font-size: clamp(46px, 4.7vw, 67px); line-height: 1.01; max-width: 720px; }
.theme-hero-key { margin: 0 0 14px; font-family: ui-serif, Georgia, Cambria, serif; font-size: clamp(21px, 1.95vw, 28px); line-height: 1.25; color: var(--deep); }
.theme-hero-lead { margin: 0 0 11px; max-width: 670px; font-size: 17px; line-height: 1.58; color: #465255; }
.theme-hero .hero-actions { margin-top: 22px; }
.theme-hero-image { margin: 0; width: min(100%, 360px); aspect-ratio: 4 / 4.55; overflow: hidden; justify-self: end; position: relative; border-radius: 3px 48px 3px 3px; box-shadow: 0 18px 50px rgba(29,36,38,.07); }
.theme-hero-image::before { content: ""; position: absolute; z-index: -1; left: -34px; bottom: -32px; width: 62%; height: 58%; border-radius: 46% 54% 38% 62% / 54% 35% 65% 46%; background: var(--lgbt-soft); }
.theme-hero-image img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.theme-hero-image-lgbt img { object-position: 52% 61%; }

.theme-about { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 9vw, 150px); border-top: 1px solid var(--line); align-items: start; }
.theme-about-portrait { margin: 0; position: static; }
.theme-about-portrait img { display: block; width: 100%; max-width: 440px; border-radius: 3px 42px 3px 3px; }
.theme-about-copy { max-width: 760px; }
.theme-about-copy h2 { margin-bottom: 30px; font-size: clamp(40px, 4.2vw, 61px); }
.theme-about-copy > p { font-size: 17px; line-height: 1.74; color: #435053; }
.theme-pullquote { margin-top: 36px!important; padding: 28px 0 4px 28px; border-left: 3px solid var(--lgbt-accent); font-family: ui-serif, Georgia, Cambria, serif; font-size: 22px!important; line-height: 1.5!important; color: var(--deep)!important; }

.lgbt-life { background: var(--lgbt-soft); border-block: 1px solid rgba(55,42,47,.08); }
.lgbt-life-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(70px, 9vw, 150px); }
.lgbt-life-heading h2 { margin-bottom: 26px; font-size: clamp(42px, 4.5vw, 64px); }
.lgbt-life-heading > p:not(.eyebrow) { font-size: 17px; line-height: 1.7; color: #4a5150; }
.experience-list { border-top: 1px solid rgba(47,39,41,.22); }
.experience-list > div { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(47,39,41,.18); align-items: start; }
.experience-list span { font-family: ui-serif, Georgia, serif; color: var(--lgbt-accent); font-size: 20px; }
.experience-list p { margin: 0; font-size: 15px; line-height: 1.55; color: #3e4746; }
.lgbt-life-close { margin-top: 54px; padding-top: 31px; border-top: 1px solid rgba(47,39,41,.22); }
.lgbt-life-close p { margin: 5px 0; font-family: ui-serif, Georgia, serif; font-size: clamp(22px, 2.5vw, 32px); color: var(--deep); }

.theme-how { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 9vw, 150px); }
.theme-how-heading h2 { font-size: clamp(42px, 4.5vw, 64px); max-width: 560px; }
.theme-how-copy { max-width: 760px; }
.theme-how-copy > p { font-size: 17px; line-height: 1.72; color: #435053; }
.theme-how-intro { margin-top: 0!important; font-size: 20px!important; color: #354244!important; }
.theme-how-points { margin-top: 34px; border-top: 1px solid var(--line); }
.theme-how-points > div { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.theme-how-points span { font-family: ui-serif, Georgia, serif; color: var(--lgbt-accent); font-size: 21px; }
.theme-how-points p { margin: 0; font-size: 15px; color: #465154; }

.theme-practical { background: var(--paper-2); border-block: 1px solid rgba(31,40,43,.08); }
.theme-practical .section-heading { max-width: 850px; }
.practical-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.practical-item { padding: 31px 26px 33px 0; min-height: 210px; }
.practical-item + .practical-item { padding-left: 26px; border-left: 1px solid var(--line); }
.practical-item span { display: block; margin-bottom: 28px; font-family: ui-serif, Georgia, serif; font-size: 25px; color: var(--lgbt-accent); }
.practical-item h3 { margin: 0 0 10px; font-family: ui-serif, Georgia, serif; font-size: 24px; font-weight: 500; }
.practical-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.practical-note { margin-top: 38px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.practical-note p { max-width: 650px; margin: 0; font-size: 17px; line-height: 1.6; color: #415053; }

.theme-faq { border-top: 0; }
.theme-faq .faq-list { max-width: 1040px; }
.lgbt-final-cta { background: var(--lgbt-deep); }

@media (max-width: 980px) {
  .theme-hero { grid-template-columns: 1fr .72fr; gap: 40px; min-height: auto; }
  .theme-about, .lgbt-life-grid, .theme-how { gap: 70px; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .practical-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .practical-item:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .theme-hero { display: flex; flex-direction: column; align-items: stretch; gap: 26px; padding-top: 24px; }
  .theme-hero-image { order: -1; width: 52%; align-self: flex-end; max-width: 300px; }
  .theme-hero-image img { border-radius: inherit; }
  .theme-about, .lgbt-life-grid, .theme-how { grid-template-columns: 1fr; gap: 38px; }
  .theme-about-portrait { position: static; width: 56%; }
  .theme-about-portrait img { max-width: none; }
  .practical-note { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .theme-hero { padding-bottom: 62px; }
  .theme-hero-image { width: 62%; max-width: 270px; }
  .theme-hero h1 { font-size: 43px; }
  .theme-hero-key { font-size: 24px; }
  .theme-hero-lead { font-size: 17px; }
  .theme-about-portrait { width: 72%; }
  .theme-about-copy h2, .lgbt-life-heading h2, .theme-how-heading h2 { font-size: 38px; }
  .theme-pullquote { padding-left: 18px; font-size: 20px!important; }
  .experience-list > div { grid-template-columns: 42px 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .practical-item { min-height: 0; padding: 24px 0; }
  .practical-item + .practical-item, .practical-item:nth-child(3), .practical-item:nth-child(4) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .practical-item span { margin-bottom: 13px; }
}

/* v0.10 — portrait correction on /lgbtqia/: natural proportions, larger visual presence */
@media (min-width: 821px) {
  .theme-about {
    grid-template-columns: minmax(430px, .94fr) minmax(0, 1.06fr);
    gap: clamp(48px, 6vw, 88px);
  }
  .theme-about-portrait {
    width: 100%;
    max-width: 520px;
    justify-self: start;
  }
  .theme-about-portrait img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center;
  }
}

/* -----------------------------
   Página Sobre — v12
   ----------------------------- */
.page-about .site-header .nav-link[aria-current="page"] { color: var(--deep); }

.aboutpage-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(54px, 7vw, 108px);
  align-items: start;
  padding-block: 48px 80px;
}
.aboutpage-hero-copy { max-width: 760px; padding-top: 4px; }
.aboutpage-hero h1 {
  margin: 14px 0 24px;
  max-width: 790px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.01;
  font-size: clamp(48px, 4.8vw, 70px);
}
.aboutpage-lead {
  margin: 0;
  max-width: 720px;
  color: #394447;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.58;
}
.aboutpage-meta {
  margin: 24px 0 0;
  max-width: 700px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.aboutpage-portrait {
  margin: 0;
  width: min(100%, 370px);
  justify-self: end;
}
.aboutpage-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px 46px 3px 3px;
  box-shadow: 0 18px 50px rgba(29,36,38,.08);
}

.aboutpage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.aboutpage-stat {
  min-height: 150px;
  padding: 30px 28px 28px 0;
  border-right: 1px solid var(--line);
}
.aboutpage-stat + .aboutpage-stat { padding-left: 28px; }
.aboutpage-stat:last-child { border-right: 0; }
.aboutpage-stat strong {
  display: block;
  margin-bottom: 11px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(34px, 3.3vw, 49px);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--deep);
}
.aboutpage-stat span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.aboutpage-story {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}
.aboutpage-story-label { max-width: 300px; }
.aboutpage-side-note { margin: 54px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.aboutpage-story-copy { max-width: 790px; }
.aboutpage-story-copy h2,
.aboutpage-personal h2,
.aboutpage-clinic h2 {
  margin: 0 0 30px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 61px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.aboutpage-story-copy p,
.aboutpage-personal-copy > p,
.aboutpage-clinic-copy > p {
  color: #435053;
  font-size: 17px;
  line-height: 1.76;
}

.aboutpage-context { background: var(--paper-2); }
.aboutpage-context-heading { max-width: 900px; }
.aboutpage-context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.aboutpage-context-card {
  padding: 34px 36px 36px 0;
  border-right: 1px solid var(--line);
}
.aboutpage-context-card + .aboutpage-context-card { padding-left: 36px; }
.aboutpage-context-card:last-child { border-right: 0; }
.aboutpage-context-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--bluegray);
  font-family: ui-serif, Georgia, serif;
  font-size: 25px;
}
.aboutpage-context-card h3 {
  margin: 0 0 18px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.aboutpage-context-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.aboutpage-personal {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 150px);
  border-bottom: 1px solid var(--line);
}
.aboutpage-personal-heading { max-width: 590px; }
.aboutpage-personal-copy { max-width: 700px; }
.aboutpage-personal-copy .standalone { margin-top: 20px; }

.aboutpage-clinic { background: #ebe7df; }
.aboutpage-clinic-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}
.aboutpage-clinic-copy { max-width: 730px; }
.aboutpage-clinic-copy strong { color: var(--ink); }

.aboutpage-project-grid { margin-top: 50px; }
.aboutpage-final-cta { background: #18333a; }

@media (max-width: 980px) {
  .aboutpage-hero { grid-template-columns: 1fr .62fr; gap: 42px; }
  .aboutpage-hero h1 { font-size: clamp(44px, 5.5vw, 60px); }
  .aboutpage-stats { grid-template-columns: repeat(2, 1fr); }
  .aboutpage-stat:nth-child(2) { border-right: 0; }
  .aboutpage-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .aboutpage-stat:nth-child(3) { padding-left: 0; }
  .aboutpage-story,
  .aboutpage-personal,
  .aboutpage-clinic-grid { gap: 70px; }
  .aboutpage-context-grid { grid-template-columns: 1fr; }
  .aboutpage-context-card,
  .aboutpage-context-card + .aboutpage-context-card {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .aboutpage-context-card:last-child { border-bottom: 0; }
  .aboutpage-context-card > span { margin-bottom: 22px; }
}

@media (max-width: 820px) {
  .aboutpage-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 28px;
    padding-bottom: 68px;
  }
  .aboutpage-portrait {
    order: -1;
    width: 52%;
    max-width: 300px;
    align-self: flex-end;
  }
  .aboutpage-story,
  .aboutpage-personal,
  .aboutpage-clinic-grid { grid-template-columns: 1fr; gap: 38px; }
  .aboutpage-story-label { max-width: none; }
  .aboutpage-side-note { margin-top: 22px; max-width: 650px; }
}

@media (max-width: 560px) {
  .aboutpage-hero { padding-bottom: 56px; }
  .aboutpage-portrait { width: 64%; max-width: 280px; }
  .aboutpage-hero h1 { font-size: 43px; }
  .aboutpage-lead { font-size: 18px; }
  .aboutpage-stats { grid-template-columns: 1fr 1fr; }
  .aboutpage-stat { min-height: 130px; padding: 24px 18px 24px 0; }
  .aboutpage-stat + .aboutpage-stat { padding-left: 18px; }
  .aboutpage-stat:nth-child(3) { padding-left: 0; }
  .aboutpage-stat strong { font-size: 34px; }
  .aboutpage-story-copy h2,
  .aboutpage-personal h2,
  .aboutpage-clinic h2 { font-size: 38px; }
  .aboutpage-story-copy p,
  .aboutpage-personal-copy > p,
  .aboutpage-clinic-copy > p { font-size: 16px; }
}

/* =========================================================
   PÁGINA TEMÁTICA — BRASILEIROS NO EXTERIOR — v13
   ========================================================= */
.theme-exterior {
  --lgbt-accent: #5d727b;
  --lgbt-soft: #e6ebec;
  --lgbt-deep: #223b44;
  --exterior-accent: #5d727b;
  --exterior-soft: #e6ebec;
  --exterior-deep: #223b44;
}
.theme-exterior .dropdown-panel a[aria-current="page"] { color: var(--exterior-accent); font-weight: 800; }
.theme-exterior .eyebrow { color: var(--exterior-accent); }
.theme-exterior .eyebrow.light { color: #dbe5e8; }
.theme-exterior .theme-pullquote { border-left-color: var(--exterior-accent); }
.theme-exterior .experience-list span,
.theme-exterior .theme-how-points span,
.theme-exterior .practical-item span { color: var(--exterior-accent); }
.exterior-button { background: var(--exterior-deep); }
.exterior-button:hover { background: #172e35; }
.exterior-final-cta { background: var(--exterior-deep); }

.theme-hero-image-exterior img { object-position: 50% 48%; }

.exterior-context {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(70px, 9vw, 150px);
  border-top: 1px solid var(--line);
  align-items: start;
}
.exterior-context-heading { max-width: 560px; }
.exterior-context-heading h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.exterior-context-copy { max-width: 760px; }
.exterior-context-copy > p {
  color: #435053;
  font-size: 17px;
  line-height: 1.74;
}

.exterior-life { background: var(--exterior-soft); border-block: 1px solid rgba(44,58,63,.08); }
.exterior-life-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(70px, 9vw, 150px);
}
.exterior-life-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.5vw, 64px);
}
.exterior-life-heading > p:not(.eyebrow) { font-size: 17px; line-height: 1.7; color: #465255; }
.exterior-life-close { margin-top: 54px; padding-top: 31px; border-top: 1px solid rgba(47,60,65,.20); }
.exterior-life-close p { margin: 5px 0; font-family: ui-serif, Georgia, serif; font-size: clamp(22px, 2.5vw, 32px); color: var(--deep); }

@media (max-width: 980px) {
  .exterior-context, .exterior-life-grid { gap: 70px; }
}

@media (max-width: 820px) {
  .exterior-context, .exterior-life-grid { grid-template-columns: 1fr; gap: 38px; }
  .theme-hero-image-exterior { width: 58%; }
}

@media (max-width: 560px) {
  .exterior-context-heading h2, .exterior-life-heading h2 { font-size: 38px; }
  .theme-hero-image-exterior { width: 66%; max-width: 280px; }
}


/* =========================================================
   PÁGINA GERAL — PSICOTERAPIA PARA ADULTOS — v14
   ========================================================= */
.theme-psychotherapy {
  --lgbt-accent: #a76e50;
  --lgbt-soft: #eee5dc;
  --lgbt-deep: #18333a;
  --psych-accent: #a76e50;
  --psych-soft: #eee5dc;
  --psych-deep: #18333a;
}
.theme-psychotherapy .dropdown-panel a[aria-current="page"] { color: var(--psych-accent); font-weight: 800; }
.theme-psychotherapy .eyebrow { color: var(--psych-accent); }
.theme-psychotherapy .eyebrow.light { color: #e8ddd4; }
.theme-psychotherapy .theme-pullquote { border-left-color: var(--psych-accent); }
.theme-psychotherapy .experience-list span,
.theme-psychotherapy .theme-how-points span,
.theme-psychotherapy .practical-item span { color: var(--psych-accent); }
.psychotherapy-button { background: var(--psych-deep); }
.psychotherapy-button:hover { background: #10282e; }
.psychotherapy-final-cta { background: var(--psych-deep); }

.theme-hero-image-psychotherapy img { object-position: 49% 46%; }

.psychotherapy-context {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(70px, 9vw, 150px);
  border-top: 1px solid var(--line);
  align-items: start;
}
.psychotherapy-context-heading { max-width: 575px; }
.psychotherapy-context-heading h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.psychotherapy-context-copy { max-width: 760px; }
.psychotherapy-context-copy > p { color: #435053; font-size: 17px; line-height: 1.74; }

.psychotherapy-life { background: var(--psych-soft); border-block: 1px solid rgba(63,46,38,.08); }
.psychotherapy-life-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(70px, 9vw, 150px); }
.psychotherapy-life-heading h2 { margin-bottom: 26px; font-size: clamp(42px, 4.5vw, 64px); }
.psychotherapy-life-heading > p:not(.eyebrow) { font-size: 17px; line-height: 1.7; color: #4e514e; }
.psychotherapy-life-close { margin-top: 54px; padding-top: 31px; border-top: 1px solid rgba(62,48,41,.20); }
.psychotherapy-life-close p { margin: 5px 0; font-family: ui-serif, Georgia, serif; font-size: clamp(22px, 2.5vw, 32px); color: var(--deep); }

.psychotherapy-about { border-top: 0; }

@media (max-width: 980px) {
  .psychotherapy-context, .psychotherapy-life-grid { gap: 70px; }
}
@media (max-width: 820px) {
  .psychotherapy-context, .psychotherapy-life-grid { grid-template-columns: 1fr; gap: 38px; }
  .theme-hero-image-psychotherapy { width: 58%; }
}
@media (max-width: 560px) {
  .psychotherapy-context-heading h2, .psychotherapy-life-heading h2 { font-size: 38px; }
  .theme-hero-image-psychotherapy { width: 66%; max-width: 280px; }
}

/* -----------------------------
   Página Sobre — revisão curricular v15
   ----------------------------- */
.aboutpage-formation { background: #ebe7df; }
.aboutpage-formation-heading { max-width: 920px; }
.aboutpage-formation-list {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}
.aboutpage-formation-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}
.aboutpage-formation-year {
  margin: 2px 0 0;
  color: var(--bluegray);
  font-family: ui-serif, Georgia, Cambria, serif;
  font-size: 24px;
  line-height: 1;
}
.aboutpage-formation-item h3 {
  margin: 0 0 10px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.aboutpage-formation-item p:not(.aboutpage-formation-year) {
  margin: 0;
  max-width: 850px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
}
.aboutpage-world {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.aboutpage-world-heading { max-width: 590px; }
.aboutpage-world-heading h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 61px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.aboutpage-world-copy { max-width: 720px; }
.aboutpage-world-copy p {
  color: #435053;
  font-size: 17px;
  line-height: 1.76;
}
.aboutpage-world-copy .standalone { margin-top: 20px; }

@media (max-width: 820px) {
  .aboutpage-formation-item { grid-template-columns: 100px 1fr; gap: 24px; }
  .aboutpage-world { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 560px) {
  .aboutpage-formation-list { margin-top: 38px; }
  .aboutpage-formation-item { grid-template-columns: 1fr; gap: 12px; padding: 24px 0 26px; }
  .aboutpage-formation-year { font-size: 21px; }
  .aboutpage-world-heading h2 { font-size: 38px; }
  .aboutpage-world-copy p { font-size: 16px; }
}


/* =========================================================
   Auditoria global de UX, navegação e acessibilidade — v17
   ========================================================= */
.skip-link {
  position: fixed; left: 18px; top: 10px; z-index: 9999;
  transform: translateY(-140%); padding: 10px 14px; border-radius: 8px;
  background: var(--deep); color: var(--white); text-decoration: none; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, summary):focus-visible { outline: 3px solid #a5633f; outline-offset: 4px; }
[id] { scroll-margin-top: 96px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-bottom a { color: inherit; text-underline-offset: 3px; }
.footer-legal { display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.simplepage-hero { padding-block: 58px 76px; max-width: var(--max); }
.simplepage-hero h1 { margin: 0; max-width: 900px; font-family: ui-serif, Georgia, Cambria, serif; font-size: clamp(48px, 5vw, 72px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.simplepage-lead { margin: 26px 0 0; max-width: 760px; color: #3f4b4d; font-size: 19px; line-height: 1.65; }
.faq-page { padding-top: 54px; border-top: 1px solid var(--line); }
.faq-page .faq-list { max-width: 980px; }
.faq-context-links { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 42px; }
.faq-context-links .text-link { margin-top: 0; }
.legal-page { border-top: 1px solid var(--line); padding-top: 64px; }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 50px 0 14px; font-family: ui-serif, Georgia, Cambria, serif; font-size: 31px; line-height: 1.15; font-weight: 500; letter-spacing: -.025em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { margin: 0 0 18px; color: #465255; font-size: 16px; line-height: 1.75; }
.legal-copy .legal-note { margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
@media (max-width: 820px) {
  .site-nav { max-height: calc(100dvh - 70px); overflow-y: auto; overscroll-behavior: contain; }
  .simplepage-hero { padding-block: 36px 58px; }
  .simplepage-hero h1 { font-size: 46px; }
  .simplepage-lead { font-size: 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
  .simplepage-hero h1 { font-size: 42px; }
  .faq-context-links { flex-direction: column; gap: 16px; }
  .legal-copy h2 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* =========================================================
   Página Agendar — ponte para plataforma externa — v21
   ========================================================= */
.booking-hero { padding-block: clamp(46px, 7vw, 92px) clamp(70px, 9vw, 120px); }
.booking-card { max-width: 880px; }
.booking-card h1 { margin: 0; max-width: 820px; font-family: ui-serif, Georgia, Cambria, serif; font-size: clamp(48px, 5.6vw, 78px); font-weight: 500; line-height: 1.01; letter-spacing: -.048em; }
.booking-lead { max-width: 720px; margin: 28px 0 0; color: #3f4b4d; font-size: 20px; line-height: 1.68; }
.booking-action { margin-top: 36px; }
.booking-note { margin: 14px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.booking-details { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(62px, 9vw, 140px); border-top: 1px solid var(--line); }
.booking-details h2 { margin: 0; max-width: 540px; font-family: ui-serif, Georgia, Cambria, serif; font-size: clamp(38px, 4vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.booking-copy { max-width: 700px; }
.booking-copy p { margin: 0 0 20px; color: #435053; font-size: 17px; line-height: 1.74; }
.booking-copy strong { color: var(--deep); font-weight: 650; }
.booking-paths { padding-top: 58px; border-top: 1px solid var(--line); }
@media (max-width: 820px) { .booking-hero { padding-block: 38px 72px; } .booking-details { grid-template-columns: 1fr; gap: 34px; } .booking-card h1 { font-size: 47px; } .booking-lead { font-size: 18px; } }
@media (max-width: 560px) { .booking-card h1 { font-size: 41px; } .booking-action .button { width: 100%; text-align: center; } .booking-details h2 { font-size: 36px; } }

/* =========================================================
   Página Sobre — edição por significado v22
   ========================================================= */
.aboutpage-impact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}
.aboutpage-impact-heading { max-width: 620px; }
.aboutpage-impact-heading h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 61px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.aboutpage-impact-copy { max-width: 730px; }
.aboutpage-impact-copy p {
  margin: 0 0 20px;
  color: #435053;
  font-size: 17px;
  line-height: 1.76;
}
.aboutpage-axes { background: var(--paper-2); }
.aboutpage-axes-heading { max-width: 900px; }
.aboutpage-axes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.aboutpage-axis {
  padding: 32px 34px 34px 0;
  border-right: 1px solid var(--line);
}
.aboutpage-axis + .aboutpage-axis { padding-left: 34px; }
.aboutpage-axis:last-child { border-right: 0; }
.aboutpage-axis-index {
  display: block;
  margin-bottom: 42px;
  color: var(--bluegray);
  font-family: ui-serif, Georgia, Cambria, serif;
  font-size: 24px;
}
.aboutpage-axis h3 {
  margin: 8px 0 16px;
  font-family: ui-serif, Georgia, Cambria, serif;
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.028em;
}
.aboutpage-axis > p:not(.path-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.aboutpage-axis .standalone { margin-top: 20px; }

@media (max-width: 980px) {
  .aboutpage-impact { gap: 70px; }
  .aboutpage-axes-grid { grid-template-columns: 1fr; }
  .aboutpage-axis,
  .aboutpage-axis + .aboutpage-axis {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .aboutpage-axis:last-child { border-bottom: 0; }
  .aboutpage-axis-index { margin-bottom: 20px; }
}
@media (max-width: 820px) {
  .aboutpage-impact { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 560px) {
  .aboutpage-impact-heading h2 { font-size: 38px; }
  .aboutpage-impact-copy p { font-size: 16px; }
  .aboutpage-axes-grid { margin-top: 38px; }
  .aboutpage-axis h3 { font-size: 29px; }
}

/* =========================================================
   Auditoria visual mobile — v25
   Objetivo: primeira dobra mais compacta, hierarquia tipográfica
   mais confortável e menos rolagem antes da proposta principal.
   ========================================================= */
@media (max-width: 560px) {
  /* Estrutura geral */
  .section-shell { width: min(calc(100% - 30px), var(--max)); }
  .section-spaced { padding-block: 60px; }
  .site-header { min-height: 66px; padding: 10px 16px; }
  .site-nav { inset: 66px 0 auto 0; max-height: calc(100dvh - 66px); }
  .menu-toggle { width: 40px; height: 40px; }
  .brand-name { font-size: 18px; }
  .brand-role { font-size: 11px; }
  .eyebrow { margin-bottom: 13px; font-size: 10.5px; letter-spacing: .14em; }
  .button { min-height: 48px; padding-inline: 19px; font-size: 13.5px; }

  /* Homepage — primeira dobra */
  .hero {
    padding-top: 16px;
    padding-bottom: 54px;
    gap: 18px;
  }
  .hero-portrait {
    width: 49%;
    max-width: 220px;
    align-self: flex-end;
  }
  .hero-portrait img { border-radius: 3px 28px 3px 3px; }
  .hero h1 {
    font-size: 38px;
    line-height: 1.01;
    letter-spacing: -.04em;
  }
  .hero-lead {
    margin-top: 17px;
    font-size: 16.5px;
    line-height: 1.5;
  }
  .hero-meta { margin-top: 12px; font-size: 13.5px; }
  .hero-actions { margin-top: 19px; }
  .hero-signature { margin-top: 22px; font-size: 12.5px; }

  /* Homepage — ritmo entre blocos */
  .paths { padding-top: 66px; }
  .compact-heading { margin-bottom: 28px; }
  .section-heading h2,
  .about h2,
  .how h2 { font-size: 34px; line-height: 1.05; }
  .paths-intro { margin-top: 13px; font-size: 15.5px; }
  .path-grid { gap: 30px; }
  .path-image { aspect-ratio: 16 / 11; }
  .path-content { padding-top: 20px; padding-bottom: 20px; }
  .path-content h3, .other-card h3 { font-size: 27px; }
  .path-content p:not(.path-kicker) { margin: 12px 0 20px; font-size: 14.5px; }
  .about, .how-grid { gap: 26px; }
  .about-years { margin-top: 22px; }
  .about-years span { font-size: 54px; }
  .about-copy > p { font-size: 16px; }
  .how-intro { margin-bottom: 28px; font-size: 17px; }
  .fact { padding: 20px 0; }
  .other-card { min-height: 0; padding: 24px 16px; }
  .faq summary { padding-block: 21px; font-size: 20px; }
  .faq summary::after { top: 17px; }
  .final-cta { padding-block: 68px; }
  .final-cta h2 { font-size: 40px; line-height: 1.03; }
  .final-cta p:not(.eyebrow) { margin: 22px 0 28px; font-size: 16.5px; }
  .site-footer { padding-top: 58px; }

  /* Heros das portas temáticas */
  .theme-hero {
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 50px;
  }
  .theme-hero-image,
  .theme-hero-image-exterior,
  .theme-hero-image-psychotherapy {
    width: 54%;
    max-width: 230px;
  }
  .theme-hero-image { border-radius: 3px 34px 3px 3px; }
  .theme-hero h1 {
    margin-top: 9px;
    margin-bottom: 16px;
    font-size: 38px;
    line-height: 1.01;
  }
  .theme-hero-key { margin-bottom: 10px; font-size: 21px; line-height: 1.22; }
  .theme-hero-lead { margin-bottom: 8px; font-size: 16px; line-height: 1.52; }
  .theme-hero .hero-actions { margin-top: 18px; }
  .theme-about-portrait { width: 62%; max-width: 250px; }
  .theme-about-copy h2,
  .lgbt-life-heading h2,
  .theme-how-heading h2,
  .exterior-context-heading h2,
  .exterior-life-heading h2,
  .psychotherapy-context-heading h2,
  .psychotherapy-life-heading h2 { font-size: 34px; line-height: 1.06; }
  .theme-pullquote { font-size: 19px !important; }
  .experience-list > div { grid-template-columns: 38px 1fr; gap: 12px; }
  .experience-list { margin-top: 30px; }
  .exterior-life-close,
  .psychotherapy-life-close { margin-top: 36px; padding-top: 24px; }

  /* Sobre — primeira dobra e seções */
  .aboutpage-hero {
    gap: 20px;
    padding-top: 16px;
    padding-bottom: 50px;
  }
  .aboutpage-portrait {
    width: 54%;
    max-width: 235px;
    align-self: flex-end;
  }
  .aboutpage-hero h1 {
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 38px;
    line-height: 1.01;
  }
  .aboutpage-lead { font-size: 16.5px; line-height: 1.52; }
  .aboutpage-meta { margin-top: 18px; padding-top: 16px; font-size: 13px; }
  .aboutpage-story-copy h2,
  .aboutpage-personal h2,
  .aboutpage-clinic h2,
  .aboutpage-impact-heading h2,
  .aboutpage-world-heading h2 { font-size: 34px; line-height: 1.06; }
  .aboutpage-impact-copy p,
  .aboutpage-world-copy p,
  .aboutpage-story-copy p,
  .aboutpage-personal-copy > p,
  .aboutpage-clinic-copy > p { font-size: 16px; }
  .aboutpage-axes-grid { margin-top: 30px; }
  .aboutpage-axis h3 { font-size: 27px; }
  .aboutpage-formation-list { margin-top: 30px; }

  /* Páginas simples / dúvidas / legais */
  .simplepage-hero { padding-block: 28px 46px; }
  .simplepage-hero h1 { font-size: 38px; line-height: 1.02; }
  .simplepage-lead { margin-top: 18px; font-size: 16.5px; line-height: 1.58; }
  .faq-page { padding-top: 42px; }
  .legal-page { padding-top: 48px; }

  /* Agendamento */
  .booking-hero { padding-block: 28px 58px; }
  .booking-card h1 { font-size: 38px; line-height: 1.02; }
  .booking-lead { margin-top: 20px; font-size: 16.5px; line-height: 1.58; }
  .booking-action { margin-top: 26px; }
  .booking-details h2 { font-size: 33px; }
  .booking-copy p { font-size: 16px; }
}
