:root {
  --navy-950: #071b25;
  --navy-900: #0b2733;
  --navy-800: #123b49;
  --navy-700: #1b5362;
  --sage-700: #42695b;
  --sage-600: #557d6d;
  --sage-100: #e8f0ec;
  --gold-500: #b8965d;
  --gold-300: #d8c298;
  --cream: #f6f3ed;
  --paper: #fffefa;
  --white: #fff;
  --ink: #15282f;
  --muted: #617178;
  --line: #dfe5e3;
  --danger-soft: #f5ebe7;
  --shadow-sm: 0 8px 24px rgba(7, 27, 37, .07);
  --shadow-lg: 0 28px 70px rgba(7, 27, 37, .14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -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);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(184, 150, 93, .5); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-navy { color: var(--white); background: var(--navy-950); }
.section-sage { background: var(--sage-100); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--sage-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 1px; background: currentColor; content: ''; }
.section-navy .eyebrow, .cta-band .eyebrow { color: var(--gold-300); }
.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.section-navy .section-title { color: var(--white); }
.section-lead { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 1.07rem; }
.section-navy .section-lead { color: #bac8cd; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 800px; }
.text-link { color: var(--sage-700); font-size: .9rem; font-weight: 750; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 16px; transform: translateY(-150%); border-radius: 8px; color: white; background: var(--navy-950); }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: white;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled, .site-header.inner-header { border-color: var(--line); color: var(--navy-950); background: rgba(255, 254, 250, .96); box-shadow: 0 6px 24px rgba(7, 27, 37, .06); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 218px; font-size: .75rem; font-weight: 800; letter-spacing: .04em; line-height: 1.3; text-transform: none; }
.brand-mark { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; border: 1px solid rgba(216, 194, 152, .7); border-radius: 50%; color: var(--gold-300); font-family: var(--serif); font-size: 1.05rem; font-weight: 500; letter-spacing: -.08em; }
.brand-mark.logo-mark { overflow: hidden; border-color: rgba(216, 194, 152, .78); background-color: #061713; background-image: url('../assets/logo-margarida-gomes.png'); background-position: center 28%; background-repeat: no-repeat; background-size: 315% auto; }
.brand > span:last-child { display: block; }
.brand strong { font-weight: 850; }
.site-header.scrolled .brand-mark, .site-header.inner-header .brand-mark { color: var(--gold-500); border-color: var(--gold-300); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; font-size: .77rem; font-weight: 700; white-space: nowrap; }
.nav-links a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; transform: scaleX(0); background: var(--gold-500); content: ''; transition: transform .2s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; font-size: .77rem; font-weight: 800; white-space: nowrap; }
.site-header.scrolled .header-cta, .site-header.inner-header .header-cta { color: white; border-color: var(--sage-700); background: var(--sage-700); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; color: inherit; background: rgba(255,255,255,.1); cursor: pointer; }
.menu-toggle svg { width: 22px; }

.hero { position: relative; min-height: 820px; overflow: hidden; color: white; background: var(--navy-950); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.04); }
.hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,18,16,.98) 0%, rgba(4,18,16,.91) 37%, rgba(4,18,16,.52) 70%, rgba(4,18,16,.18) 100%); content: ''; }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 820px; align-items: center; padding: 146px 0 94px; }
.hero-copy { width: min(690px, 62%); min-width: 0; }
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5.3vw, 5rem); font-weight: 500; letter-spacing: -.045em; line-height: .99; }
.hero-subtitle { max-width: 650px; margin: 25px 0 0; color: #d6dfe2; font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.65; }
.hero-support { max-width: 600px; margin: 12px 0 0; color: #aebdc3; font-size: .91rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 99px; cursor: pointer; font-size: .86rem; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--sage-600); }
.btn-primary:hover { background: var(--sage-700); }
.btn-light { color: var(--navy-950); background: white; }
.btn-outline { color: inherit; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark { color: white; background: var(--navy-950); }
.btn svg, .header-cta svg { width: 18px; height: 18px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; max-width: 650px; margin: 38px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.15); list-style: none; }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; color: #d5dfe2; font-size: .76rem; font-weight: 650; }
.trust-list svg { width: 15px; height: 15px; color: var(--gold-300); }

.quick-section { position: relative; z-index: 4; margin-top: -34px; }
.quick-shell { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); }
.quick-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.quick-head h2 { margin: 0; color: var(--navy-950); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.1; }
.quick-head p { max-width: 410px; margin: 0; color: var(--muted); font-size: .92rem; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quick-card { display: flex; min-height: 205px; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfcfa; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.quick-card:hover { transform: translateY(-4px); border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.icon-box { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 12px; color: var(--sage-700); background: var(--sage-100); }
.icon-box svg { width: 21px; height: 21px; }
.quick-card h3 { margin: 18px 0 7px; color: var(--navy-950); font-family: var(--serif); font-size: 1.22rem; font-weight: 600; line-height: 1.2; }
.quick-card p { margin: 0 0 17px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.quick-card .card-action { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; color: var(--sage-700); font-size: .75rem; font-weight: 800; }

.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 78px; }
.portrait-card { position: relative; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.portrait-visual { position: absolute; inset: 0; background: radial-gradient(circle at 50% 32%, rgba(216,194,152,.18), transparent 33%), linear-gradient(160deg, transparent 50%, rgba(85,125,109,.25)); }
.portrait-monogram { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -58%); color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 13rem; letter-spacing: -.14em; white-space: nowrap; }
.portrait-card::before { position: absolute; top: 38px; right: 38px; width: 120px; height: 120px; border: 1px solid rgba(216,194,152,.35); border-radius: 50%; content: ''; }
.logo-card { background: #020805; }
.logo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.logo-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 42%, rgba(2,8,5,.78) 100%); content: ''; }
.portrait-info { position: absolute; right: 22px; bottom: 22px; left: 22px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; color: white; background: rgba(7,27,37,.72); backdrop-filter: blur(10px); }
.logo-card .portrait-info { z-index: 1; background: rgba(2,8,5,.72); }
.portrait-info span { display: block; color: var(--gold-300); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.portrait-info strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.about-copy p { color: var(--muted); }
.profile-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.fact { padding: 18px; background: white; }
.fact small { display: block; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.fact strong { display: block; margin-top: 4px; color: var(--navy-950); font-size: .9rem; }

.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.right-card { position: relative; min-height: 238px; overflow: hidden; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.right-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.right-card::after { position: absolute; right: -30px; bottom: -45px; width: 110px; height: 110px; border: 1px solid var(--sage-100); border-radius: 50%; content: ''; }
.right-number { color: var(--gold-500); font-family: var(--serif); font-size: .83rem; }
.right-card h3 { margin: 20px 0 10px; color: var(--navy-950); font-family: var(--serif); font-size: 1.2rem; font-weight: 600; line-height: 1.22; }
.right-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.58; }
.rights-toggle { display: none; margin: 28px auto 0; }

.denied-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.denied-panel { padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); }
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reason { display: flex; gap: 10px; align-items: center; padding: 13px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #d3dde0; background: rgba(255,255,255,.035); font-size: .79rem; }
.reason svg { width: 15px; flex: 0 0 15px; color: var(--gold-300); }
.ethical-note { display: flex; gap: 13px; margin-top: 24px; padding: 17px; border-left: 2px solid var(--gold-500); color: #b9c7cb; background: rgba(255,255,255,.04); font-size: .8rem; }
.ethical-note svg { width: 20px; flex: 0 0 20px; color: var(--gold-300); }

.planning-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 74px; }
.planning-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #dce9e2, #f8f6f0); }
.planning-circle { position: absolute; width: 330px; height: 330px; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(66,105,91,.25); border-radius: 50%; }
.planning-circle::before, .planning-circle::after { position: absolute; border: 1px solid rgba(66,105,91,.2); border-radius: 50%; content: ''; }
.planning-circle::before { inset: 40px; }
.planning-circle::after { inset: 80px; background: rgba(255,255,255,.4); }
.planning-icon { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 92px; height: 92px; transform: translate(-50%, -50%); place-items: center; border-radius: 50%; color: white; background: var(--navy-900); box-shadow: var(--shadow-lg); }
.planning-icon svg { width: 40px; }
.orbit-label { position: absolute; z-index: 3; padding: 10px 14px; border: 1px solid rgba(66,105,91,.15); border-radius: 99px; color: var(--navy-800); background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); font-size: .7rem; font-weight: 750; }
.orbit-label:nth-of-type(1) { top: 18%; left: 12%; }
.orbit-label:nth-of-type(2) { top: 22%; right: 7%; }
.orbit-label:nth-of-type(3) { bottom: 20%; left: 10%; }
.orbit-label:nth-of-type(4) { right: 10%; bottom: 16%; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin: 28px 0 34px; }
.check-item { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.check-item svg { width: 16px; flex: 0 0 16px; margin-top: 4px; color: var(--sage-700); }

.docs-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 28px; }
.tab-btn { padding: 10px 17px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); background: white; cursor: pointer; font-size: .76rem; font-weight: 750; }
.tab-btn.active { color: white; border-color: var(--navy-900); background: var(--navy-900); }
.docs-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.doc-item { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid #edf0ef; color: var(--ink); font-size: .85rem; }
.doc-item svg { width: 17px; flex: 0 0 17px; color: var(--sage-700); }

.form-wrap { display: grid; grid-template-columns: .76fr 1.24fr; overflow: hidden; border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); }
.form-aside { position: relative; padding: 54px 44px; color: white; background: var(--navy-950); }
.form-aside::after { position: absolute; right: -80px; bottom: -90px; width: 260px; height: 260px; border: 1px solid rgba(216,194,152,.22); border-radius: 50%; content: ''; }
.form-aside .section-title { color: white; font-size: clamp(2rem, 3.5vw, 3rem); }
.form-aside p { color: #b9c8cd; font-size: .9rem; }
.privacy-note { display: flex; gap: 10px; margin-top: 32px; color: #c5d0d4; font-size: .74rem; }
.privacy-note svg { width: 18px; flex: 0 0 18px; color: var(--gold-300); }
.lead-form { padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-size: .76rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d7dfdc; border-radius: 10px; color: var(--ink); background: #fbfcfa; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage-600); box-shadow: 0 0 0 3px rgba(85,125,109,.12); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; }
.form-disclaimer { max-width: 330px; margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.45; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); }
.step-card { min-height: 230px; padding: 30px; background: white; }
.step-number { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: white; background: var(--sage-700); font-family: var(--serif); font-size: .9rem; }
.step-card h3 { margin: 26px 0 9px; color: var(--navy-950); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.step-card p { margin: 0; color: var(--muted); font-size: .82rem; }

.difference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; margin-top: 40px; }
.difference-item { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .86rem; font-weight: 650; }
.difference-item svg { width: 19px; flex: 0 0 19px; color: var(--gold-500); }

.cta-band { position: relative; overflow: hidden; padding: 80px 0; color: white; background: var(--sage-700); }
.cta-band::before, .cta-band::after { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; content: ''; }
.cta-band::before { top: -180px; left: -110px; width: 390px; height: 390px; }
.cta-band::after { right: -80px; bottom: -240px; width: 500px; height: 500px; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.cta-band p { max-width: 660px; margin: 18px 0 0; color: #dce7e2; }

.faq-wrap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; color: var(--navy-950); background: transparent; cursor: pointer; text-align: left; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; line-height: 1.35; }
.faq-question span:last-child { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 1rem; transition: transform .2s ease; }
.faq-item.open .faq-question span:last-child { 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 { margin: 0; padding: 0 48px 21px 0; color: var(--muted); font-size: .85rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.site-footer { padding: 74px 0 28px; color: #bdc9cd; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 55px; }
.footer-brand .brand { color: white; }
.footer-brand p { max-width: 340px; margin: 22px 0; font-size: .78rem; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-size: .75rem; font-weight: 750; }
.footer-col h3 { margin: 0 0 18px; color: white; font-size: .73rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col li, .footer-col a { font-size: .76rem; }
.footer-col a:hover { color: white; }
.footer-contact { display: grid; gap: 12px; }
.footer-contact span, .footer-contact a { display: flex; gap: 9px; align-items: flex-start; font-size: .76rem; }
.footer-contact a:hover { color: white; }
.footer-contact svg { width: 15px; flex: 0 0 15px; margin-top: 4px; color: var(--gold-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 56px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { max-width: 830px; margin: 0; font-size: .65rem; line-height: 1.6; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: white; background: #2d8065; box-shadow: 0 10px 28px rgba(7,27,37,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float span { position: absolute; right: 68px; width: max-content; padding: 8px 12px; border-radius: 8px; color: white; background: var(--navy-950); font-size: .68rem; font-weight: 750; opacity: 0; pointer-events: none; transform: translateX(5px); transition: .2s ease; }
.whatsapp-float:hover span { opacity: 1; transform: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Service pages */
.inner-hero { padding: 168px 0 86px; color: white; background: linear-gradient(140deg, var(--navy-950), var(--navy-800)); }
.inner-hero .eyebrow { color: var(--gold-300); }
.inner-hero h1 { max-width: 820px; margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.7rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.inner-hero p { max-width: 710px; margin: 24px 0 0; color: #c4d0d4; font-size: 1.06rem; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 30px; color: #9eb0b7; font-size: .72rem; }
.breadcrumb a { color: white; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: start; }
.prose h2 { margin: 0 0 18px; color: var(--navy-950); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.03em; }
.prose h3 { margin: 42px 0 14px; color: var(--navy-950); font-family: var(--serif); font-size: 1.4rem; }
.prose p { color: var(--muted); }
.prose ul { display: grid; gap: 10px; padding-left: 20px; color: var(--muted); }
.service-sidebar { position: sticky; top: 108px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.service-sidebar h3 { margin: 0; color: var(--navy-950); font-family: var(--serif); font-size: 1.35rem; }
.service-sidebar p { color: var(--muted); font-size: .82rem; }
.service-sidebar .btn { width: 100%; margin-top: 12px; }
.mini-docs { display: grid; gap: 8px; margin: 22px 0; padding: 0; list-style: none; }
.mini-docs li { display: flex; gap: 9px; color: var(--muted); font-size: .76rem; }
.mini-docs svg { width: 15px; flex: 0 0 15px; margin-top: 4px; color: var(--sage-700); }
.service-faq { margin-top: 60px; }
.service-form { margin-top: 80px; }

@media (max-width: 1100px) {
  .nav-links { gap: 15px; }
  .nav-links li:nth-child(5), .nav-links li:nth-child(6) { display: none; }
  .hero-copy { width: 68%; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; top: 0; right: 0; bottom: 0; display: flex; width: min(86vw, 380px); flex-direction: column; align-items: stretch; gap: 0; padding: 100px 30px 40px; transform: translateX(105%); color: var(--navy-950); background: white; box-shadow: -20px 0 50px rgba(7,27,37,.18); transition: transform .25s ease; }
  .nav-links.open { transform: none; }
  .nav-links li:nth-child(5), .nav-links li:nth-child(6) { display: block; }
  .nav-links a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .site-header .header-cta { display: none; }
  .site-header.menu-active { color: var(--navy-950); }
  .hero, .hero-content { min-height: 760px; }
  .hero-copy { width: 77%; }
  .quick-grid, .rights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .denied-grid, .planning-grid, .form-wrap, .faq-wrap { grid-template-columns: 1fr; }
  .portrait-card { min-height: 500px; }
  .about-grid, .denied-grid, .planning-grid, .faq-wrap { gap: 50px; }
  .form-aside { padding: 46px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 52px 0; }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: auto; font-size: .66rem; }
  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .hero, .hero-content { min-height: 780px; }
  .hero-image { object-position: 66% center; opacity: .52; }
  .hero::after { background: linear-gradient(90deg, rgba(7,27,37,.98), rgba(7,27,37,.7)); }
  .hero-content { align-items: flex-end; padding: 120px 0 55px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  .hero-support { display: none; }
  .button-row .btn { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; padding-top: 20px; }
  .trust-list li:nth-child(n+5) { display: none; }
  .quick-section { margin-top: 0; padding-top: 14px; background: var(--cream); }
  .quick-shell { padding: 28px 18px; border-radius: 24px; box-shadow: none; }
  .quick-head, .section-head { display: block; }
  .quick-head p { margin-top: 12px; }
  .section-head .text-link { display: inline-block; margin-top: 18px; }
  .quick-grid, .rights-grid, .docs-panel, .form-grid, .steps-grid, .difference-grid, .reason-grid, .check-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 190px; }
  .rights-grid .right-card:nth-child(n+7) { display: none; }
  .rights-grid.expanded .right-card { display: block; }
  .rights-toggle { display: inline-flex; }
  .portrait-card { min-height: 440px; }
  .portrait-monogram { font-size: 8rem; }
  .profile-facts { grid-template-columns: 1fr; }
  .denied-panel, .docs-panel { padding: 24px; }
  .planning-visual { min-height: 420px; }
  .planning-circle { width: 270px; height: 270px; }
  .orbit-label { font-size: .62rem; }
  .docs-tabs { flex-wrap: nowrap; margin-right: -14px; overflow-x: auto; padding-bottom: 4px; }
  .tab-btn { flex: 0 0 auto; }
  .lead-form, .form-aside { padding: 31px 22px; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .step-card { min-height: 205px; }
  .cta-inner { display: block; }
  .cta-inner .btn { width: 100%; margin-top: 28px; }
  .faq-wrap { gap: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 12px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
  .inner-hero { padding: 132px 0 68px; }
  .inner-hero h1 { font-size: 2.7rem; }
}

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

/* Direção visual institucional — marinho, dourado e marfim */
:root {
  --navy-950: #071725;
  --navy-900: #0b2534;
  --navy-800: #143b4b;
  --navy-700: #22596b;
  --sage-700: #315d56;
  --sage-600: #4a7669;
  --sage-100: #edf3ef;
  --gold-500: #b78432;
  --gold-300: #e3bd72;
  --cream: #f4f0e7;
  --paper: #fcfbf8;
  --ink: #1b2b34;
  --muted: #64747a;
  --line: #e2e1da;
  --shadow-sm: 0 12px 30px rgba(7, 23, 37, .08);
  --shadow-lg: 0 30px 80px rgba(7, 23, 37, .16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

::selection { color: #fff; background: var(--gold-500); }
:focus-visible { outline-color: rgba(183, 132, 50, .7); }
body { color: var(--ink); background: var(--paper); }
.section-cream { background: var(--cream); }
.section-sage { background: #edf2ee; }
.section-navy { background: var(--navy-950); }

.site-header { border-bottom-color: rgba(255,255,255,.08); }
.site-header.scrolled, .site-header.inner-header { border-color: rgba(15, 42, 54, .12); background: rgba(252,251,248,.94); box-shadow: 0 10px 32px rgba(7,23,37,.08); }
.nav-wrap { min-height: 90px; }
.brand { gap: 13px; min-width: 238px; letter-spacing: .015em; }
.brand-mark.logo-mark { width: 52px; height: 52px; flex-basis: 52px; border: 1px solid rgba(227,189,114,.72); border-radius: 50%; background-color: transparent; background-position: center 34%; background-size: 235% auto; filter: drop-shadow(0 4px 9px rgba(183,132,50,.18)); }
.site-header.scrolled .brand-mark.logo-mark, .site-header.inner-header .brand-mark.logo-mark { border-color: rgba(183,132,50,.55); background-color: transparent; }
.brand > span:last-child { font-size: .72rem; line-height: 1.35; }
.brand strong { display: inline-block; color: inherit; font-size: .82rem; letter-spacing: .01em; }
.nav-links { gap: 22px; }
.nav-links a { font-size: .74rem; letter-spacing: .01em; }
.header-cta { min-height: 46px; padding-inline: 18px; border-color: rgba(227,189,114,.42); background: rgba(255,255,255,.04); }
.site-header.scrolled .header-cta, .site-header.inner-header .header-cta { border-color: #197d6d; background: #197d6d; box-shadow: 0 8px 22px rgba(25,125,109,.18); }

.hero { min-height: 830px; background: radial-gradient(circle at 74% 42%, rgba(183,132,50,.15), transparent 28%), var(--navy-950); }
.hero::before { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 5px 5px; opacity: .22; content: ''; pointer-events: none; }
.hero-image { top: 0; right: auto; bottom: 0; left: 37%; width: 63%; height: 100%; object-fit: contain; object-position: center; opacity: .92; filter: drop-shadow(0 18px 45px rgba(183,132,50,.18)); }
.hero::after { background: linear-gradient(90deg, rgba(7,23,37,.995) 0%, rgba(7,23,37,.94) 34%, rgba(7,23,37,.62) 60%, rgba(7,23,37,.08) 100%); }
.hero-content { min-height: 830px; padding: 164px 0 92px; }
.hero-copy { width: min(650px, 57%); max-width: 650px; }
.hero .eyebrow { color: var(--gold-300); letter-spacing: .2em; }
.hero h1 { max-width: 680px; font-size: clamp(3.15rem, 5.05vw, 5.15rem); letter-spacing: -.052em; line-height: .97; }
.hero-subtitle { max-width: 610px; margin-top: 28px; color: #dce4e4; font-size: clamp(1rem, 1.35vw, 1.14rem); }
.hero-support { color: #aabcc2; }
.button-row { gap: 14px; margin-top: 34px; }
.btn { min-height: 54px; padding-inline: 24px; box-shadow: 0 8px 18px rgba(7,23,37,.08); }
.btn-primary { color: #fff; background: linear-gradient(135deg, #d2a24e, #a66f20); box-shadow: 0 12px 24px rgba(183,132,50,.22); }
.btn-primary:hover { background: linear-gradient(135deg, #e0b45e, #b47d27); }
.btn-outline { border-color: rgba(227,189,114,.55); background: rgba(7,23,37,.24); }
.btn-outline:hover { border-color: var(--gold-300); background: rgba(227,189,114,.12); }
.btn-dark { background: var(--navy-950); box-shadow: 0 10px 22px rgba(7,23,37,.15); }
.trust-list { max-width: 640px; margin-top: 42px; border-top-color: rgba(227,189,114,.25); }
.trust-list li { color: #d6e0e1; }
.trust-list svg { color: var(--gold-300); }

.quick-section { margin-top: -54px; }
.quick-shell { padding: 44px; border-color: rgba(8,35,48,.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.quick-head { margin-bottom: 28px; }
.quick-head h2 { font-size: clamp(2rem, 3vw, 2.65rem); }
.quick-card { min-height: 214px; border-color: #e6e5df; background: linear-gradient(145deg, #fff, #f8f7f2); }
.quick-card:hover { border-color: rgba(183,132,50,.68); box-shadow: 0 18px 36px rgba(7,23,37,.1); }
.icon-box { color: var(--navy-900); border: 1px solid rgba(183,132,50,.24); background: #f8f1e2; }
.quick-card h3 { font-size: 1.28rem; }
.quick-card .card-action, .text-link { color: #90651d; }

.about-grid { gap: 82px; }
.portrait-card { min-height: 610px; border-radius: var(--radius-lg); box-shadow: 0 22px 54px rgba(7,23,37,.14); }
.portrait-card::before { border-color: rgba(227,189,114,.46); }
.logo-card { background: radial-gradient(circle at 50% 40%, rgba(183,132,50,.22), transparent 38%), linear-gradient(145deg, #123444, #061521); }
.logo-card > img { object-fit: contain; object-position: center; padding: 32px; filter: drop-shadow(0 16px 28px rgba(183,132,50,.18)); }
.logo-card::after { background: linear-gradient(180deg, transparent 50%, rgba(4,16,26,.72) 100%); }
.portrait-info { right: 26px; bottom: 26px; left: 26px; padding: 22px 24px; border-color: rgba(227,189,114,.26); background: rgba(7,23,37,.78); }
.logo-card .portrait-info { background: rgba(7,23,37,.78); }
.portrait-info span { color: var(--gold-300); }
.about-copy p { color: #5f7077; }
.profile-facts { margin: 34px 0; border-color: #e4e4de; }
.fact { padding: 20px; background: rgba(255,255,255,.82); }
.fact strong { color: var(--navy-950); }

.rights-grid { gap: 16px; }
.right-card { min-height: 248px; padding: 29px; border-color: #e6e5df; box-shadow: 0 2px 0 rgba(7,23,37,.015); }
.right-card:hover { box-shadow: 0 18px 34px rgba(7,23,37,.09); }
.right-card::after { border-color: rgba(183,132,50,.2); }
.right-number { color: var(--gold-500); font-weight: 700; }
.right-card h3 { font-size: 1.25rem; }

.section-navy .denied-panel { border-color: rgba(227,189,114,.2); background: rgba(255,255,255,.045); }
.reason { border-color: rgba(227,189,114,.16); background: rgba(255,255,255,.035); }
.ethical-note { border-left-color: var(--gold-500); }

.planning-visual { background: radial-gradient(circle at 50% 50%, rgba(183,132,50,.15), transparent 24%), linear-gradient(145deg, #f7f3e9, #e4ece8); box-shadow: var(--shadow-sm); }
.planning-circle { border-color: rgba(183,132,50,.34); }
.planning-circle::before, .planning-circle::after { border-color: rgba(49,93,86,.18); }
.planning-icon { color: #fff; background: var(--navy-950); box-shadow: 0 18px 35px rgba(7,23,37,.2); }
.orbit-label { color: var(--navy-900); border-color: rgba(183,132,50,.22); }
.check-item svg { color: var(--gold-500); }

.docs-tabs { margin-top: 34px; }
.tab-btn { border-color: #d9dcd5; background: rgba(255,255,255,.7); }
.tab-btn:hover { border-color: rgba(183,132,50,.6); color: var(--navy-950); }
.tab-btn.active { border-color: var(--navy-950); background: var(--navy-950); box-shadow: 0 8px 18px rgba(7,23,37,.14); }
.docs-panel { border-color: #e1e3dc; box-shadow: 0 12px 28px rgba(7,23,37,.05); }
.doc-item svg { color: var(--gold-500); }

.steps-grid { border-color: #e0e1dc; }
.step-card { padding: 32px; }
.step-number { color: #fff; background: linear-gradient(135deg, #c4933e, #95651e); }
.difference-item svg { color: var(--gold-500); }

.cta-band { background: linear-gradient(120deg, #0a2434 0%, #214b4e 100%); }
.cta-band::before, .cta-band::after { border-color: rgba(227,189,114,.2); }
.cta-band h2 { max-width: 760px; }
.cta-band .btn-light { color: var(--navy-950); font-weight: 850; box-shadow: 0 12px 26px rgba(0,0,0,.16); }

.faq-question { padding-block: 24px; }
.faq-question span:last-child { color: var(--gold-500); border-color: rgba(183,132,50,.32); }
.site-footer { border-top: 3px solid rgba(183,132,50,.68); background: #061522; }
.footer-social, .footer-contact svg { color: var(--gold-300); }
.footer-bottom { border-top-color: rgba(227,189,114,.18); }
.whatsapp-float { width: 62px; height: 62px; right: 24px; bottom: 24px; background: #168b76; box-shadow: 0 14px 32px rgba(7,23,37,.3); }
.whatsapp-float:hover { background: #117764; }

.inner-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 30%, rgba(183,132,50,.16), transparent 24%), linear-gradient(135deg, #061522, #123b4b); }
.inner-hero::after { position: absolute; right: -130px; bottom: -240px; width: 460px; height: 460px; border: 1px solid rgba(227,189,114,.2); border-radius: 50%; content: ''; }
.inner-hero > .container { position: relative; z-index: 1; }
.service-sidebar { border-top: 3px solid var(--gold-500); box-shadow: 0 16px 32px rgba(7,23,37,.08); }
.service-sidebar .btn-dark { background: linear-gradient(135deg, #b78432, #95651e); }

@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .hero-copy { width: 62%; }
  .hero-image { left: 33%; width: 67%; }
}

@media (max-width: 900px) {
  .nav-wrap { min-height: 82px; }
  .hero, .hero-content { min-height: 780px; }
  .hero-image { left: 18%; width: 82%; opacity: .34; object-position: center; }
  .hero::after { background: linear-gradient(90deg, rgba(7,23,37,.98) 0%, rgba(7,23,37,.88) 52%, rgba(7,23,37,.42) 100%); }
  .hero-content { align-items: center; }
  .hero-copy { width: min(100%, 680px); }
  .quick-section { margin-top: -36px; }
  .quick-shell { padding: 34px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 76px; }
  .brand { gap: 9px; font-size: .62rem; }
  .brand-mark.logo-mark { width: 42px; height: 42px; flex-basis: 42px; background-size: 235% auto; }
  .brand > span:last-child { font-size: .62rem; }
  .brand strong { font-size: .7rem; }
  .hero, .hero-content { min-height: 790px; }
  .hero-image { top: 28px; right: auto; bottom: auto; left: 0; width: 100%; height: 560px; object-fit: contain; object-position: center top; opacity: .25; }
  .hero::after { background: linear-gradient(180deg, rgba(7,23,37,.76) 0%, rgba(7,23,37,.93) 43%, rgba(7,23,37,1) 100%); }
  .hero-content { align-items: flex-end; padding: 140px 0 48px; }
  .hero-copy { width: 100%; max-width: 100%; }
  .hero h1 { max-width: 100%; font-size: clamp(2.55rem, 12vw, 3.7rem); overflow-wrap: anywhere; }
  .hero-subtitle { max-width: 100%; margin-top: 23px; font-size: .98rem; }
  .hero-support { display: block; max-width: 100%; font-size: .84rem; }
  .button-row .btn { width: 100%; }
  .trust-list { margin-top: 28px; padding-top: 20px; }
  .quick-section { margin-top: 0; padding-top: 18px; }
  .quick-shell { padding: 28px 18px; border-radius: 22px; box-shadow: none; }
  .quick-card { min-height: 196px; }
  .portrait-card { min-height: 460px; }
  .logo-card > img { padding: 22px; }
  .portrait-info { right: 18px; bottom: 18px; left: 18px; }
  .cta-band { padding: 68px 0; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 56px; height: 56px; }
}

.attorney-card { background: #101a20; }
.attorney-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.92) contrast(1.03); }
.attorney-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,23,37,.02) 38%, rgba(7,23,37,.8) 100%); content: ''; }
.attorney-card .portrait-info { z-index: 1; }

@media (max-width: 640px) {
  .attorney-card > img { object-position: center 16%; }
}
