@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;7..72,500;7..72,600&family=Maven+Pro:wght@400;500;600&family=Poppins:wght@400;500;600&display=swap');

:root {
  --ivory: #f7f4ec;
  --ivory-dark: #ede9dd;
  --blue: #205d80;
  --blue-deep: #103a53;
  --blue-contrast: #0b2d43;
  --gold: #bda472;
  --gold-light: #d7c797;
  --ink: #172130;
  --muted: #48505b;
  --white: #fff;
  --danger: #b4232d;
  --page: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--ivory); color: var(--ink); font-family: Poppins, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, figure, blockquote { margin-top: 0; }
h1, h2, h3, h4 { font-family: Literata, Georgia, serif; font-weight: 400; }
p { line-height: 1.75; }
section[id] { scroll-margin-top: 96px; }
::selection { background: rgba(189,164,114,.35); color: var(--blue-deep); }
:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.wrap { width: min(100% - 64px, var(--page)); margin-inline: auto; }
.section-pad { padding: 128px 0; }
.section-light { background: var(--ivory); }
.section-white { background: var(--white); }
.section-muted { background: color-mix(in srgb, var(--ivory-dark) 65%, var(--ivory)); }
.dark-surface { background: var(--blue-deep); color: var(--ivory); }
.skip-link { position: fixed; z-index: 999; top: 14px; left: 14px; transform: translateY(-200%); background: var(--blue-deep); color: var(--ivory); padding: 11px 16px; border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0; color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: .18em; line-height: 1.5; text-transform: uppercase; }
.eyebrow-light { color: var(--gold-light); }
.gold-line { width: 64px; height: 1px; background: linear-gradient(90deg,var(--gold),rgba(189,164,114,.15)); }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 7px; padding: 12px 20px; font-size: 14px; font-weight: 500; line-height: 1.15; text-align: center; transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(16,58,83,.14); }
.button-primary { background: var(--blue); color: var(--ivory); }
.button-primary:hover { background: var(--blue-deep); }
.button-outline { border-color: rgba(32,93,128,.38); background: transparent; color: var(--blue-deep); }
.button-outline:hover { border-color: var(--gold); color: var(--blue); background: rgba(189,164,114,.06); }
.button-gold { background: var(--gold); color: var(--blue-deep); }
.button-gold:hover { background: var(--gold-light); }
.button-full { width: 100%; }
.button svg { width: 17px; height: 17px; }
.oab-notice { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.oab-notice svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; color: var(--gold); }
.oab-light { color: rgba(247,244,236,.62); justify-content: center; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

/* Header */
.site-header { position: fixed; z-index: 50; inset: 0 0 auto; color: var(--blue-deep); transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(247,244,236,.9); backdrop-filter: blur(13px); box-shadow: 0 1px 0 rgba(16,58,83,.08); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 13px; line-height: 1; }
.brand-shield { display: inline-flex; width: 40px; height: 44px; overflow: hidden; border-radius: 3px; }
.brand-shield img { width: 100%; height: 100%; object-fit: contain; background: transparent; transform: scale(1.55); transition: transform .5s var(--ease); }
.brand:hover .brand-shield img { transform: rotate(-3deg) scale(1.62); }
.shine { position: relative; isolation: isolate; }
.shine:after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg,transparent 35%,rgba(255,245,205,.78) 49%,transparent 63%); background-position: 170% 0; background-size: 260% 100%; -webkit-mask: url('../images/sf-shield.png') center/155% 155% no-repeat; mask: url('../images/sf-shield.png') center/155% 155% no-repeat; mix-blend-mode: screen; opacity: 0; }
.brand:hover .shine:after { animation: shield-shine 1.15s ease-out; }
@keyframes shield-shine { 0% { opacity: 0; background-position: 170% 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { opacity: 0; background-position: -170% 0; } }
.brand-text { display: flex; flex-direction: column; align-items: center; color: var(--blue-deep); }
.brand-text strong { font-family: Literata, Georgia, serif; font-size: 20px; font-weight: 600; letter-spacing: .035em; white-space: nowrap; }
.brand-text small { align-self: stretch; margin-top: 5px; color: var(--gold); font-family: 'Maven Pro', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .4em; text-align: center; }
.desktop-nav { display: flex; align-items: center; gap: 22px; white-space: nowrap; }
.desktop-nav > a:not(.nav-cta):not(.icon-link) { position: relative; padding: 5px 0; color: var(--blue-deep); font-size: 13px; font-weight: 500; transition: color .2s; }
.desktop-nav > a:not(.nav-cta):not(.icon-link)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .32s var(--ease); }
.desktop-nav > a:not(.nav-cta):not(.icon-link):hover, .desktop-nav > a.active:not(.nav-cta):not(.icon-link) { color: var(--blue); }
.desktop-nav > a:not(.nav-cta):not(.icon-link):hover::after, .desktop-nav > a.active:not(.nav-cta):not(.icon-link)::after { transform: scaleX(1); transform-origin: left; }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: transform .2s, color .2s, background .2s; }
.icon-link svg { width: 18px; height: 18px; }
.icon-link:hover { transform: scale(1.1); color: var(--blue); background: rgba(189,164,114,.11); }
.nav-cta { padding: 10px 14px; border: 1px solid var(--blue); border-radius: 6px; font-size: 13px; font-weight: 500; transition: transform .25s, background .25s, border-color .25s, box-shadow .25s; }
.nav-cta:hover { transform: translateY(-2px); border-color: var(--gold); background: rgba(189,164,114,.06); box-shadow: 0 8px 18px rgba(16,58,83,.12); }
.header-rule { height: 3px; border-top: 1px solid rgba(32,93,128,.1); }
.header-rule span { display: block; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.mobile-menu-button { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(32,93,128,.22); background: transparent; border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.mobile-menu-button span { width: 18px; height: 1px; background: var(--blue-deep); }
.mobile-menu { position: fixed; z-index: 60; inset: 0; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(11,45,67,.62); }
.mobile-menu aside { position: absolute; top: 0; right: 0; width: min(86%,390px); height: 100%; display: flex; flex-direction: column; padding: 24px; background: var(--ivory); box-shadow: -18px 0 45px rgba(11,45,67,.22); transform: translateX(35px); transition: transform .28s var(--ease); overflow-y: auto; }
.mobile-menu.is-open aside { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.mobile-menu .brand-shield { width: 34px; height: 38px; }
.mobile-menu .brand-text strong { font-size: 16px; }
.menu-close { width: 44px; height: 44px; border: 1px solid rgba(32,93,128,.22); background: transparent; border-radius: 50%; color: var(--blue-deep); font-size: 27px; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid rgba(32,93,128,.12); color: var(--blue-deep); font-family: Literata,Georgia,serif; font-size: 23px; transition: color .2s, border-color .2s; }
.mobile-menu nav a:hover { color: var(--blue); border-color: var(--gold); }
.mobile-contact { margin-top: 26px; }
.mobile-instagram { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; margin-top: 12px; border: 1px solid rgba(32,93,128,.28); border-radius: 6px; color: var(--blue-deep); font-size: 14px; }
.mobile-instagram svg { width: 18px; height: 18px; }
.mobile-menu aside > p { margin: auto 0 0; padding-top: 28px; color: var(--muted); font-size: 12px; line-height: 1.6; }

/* Hero */
.hero { position: relative; min-height: 100vh; overflow: hidden; padding: 168px 0 78px; }
.hero-watermark { position: absolute; top: 65px; right: -135px; width: 530px; opacity: .055; background: transparent; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(390px,5fr); gap: 64px; align-items: center; }
.hero-copy { min-width: 0; }
.hero-copy > .gold-line { margin-top: 24px; }
.hero h1 { margin: 22px 0 0; color: var(--blue-deep); font-size: clamp(46px,4.6vw,66px); line-height: 1.02; letter-spacing: -.035em; }
.hero h1 span { display: block; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 16px; }
.hero-note { max-width: 630px; margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero .oab-notice { max-width: 610px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 11px 28px; padding: 0; margin: 34px 0 0; list-style: none; color: var(--muted); font-size: 12px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.hero-trust li:before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-media { position: relative; align-self: stretch; min-height: 590px; overflow: visible; border-radius: 16px; background: var(--blue-deep); }
.hero-media picture, .hero-media picture img { width: 100%; height: 100%; }
.hero-media picture img { border-radius: 16px; object-fit: cover; }
.corner-line { position: absolute; z-index: 2; pointer-events: none; width: 95px; height: 95px; }
.corner-top { top: -22px; left: -22px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.corner-bottom { right: -17px; bottom: -17px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.hero-image-overlay { position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(180deg,rgba(11,37,55,.12),rgba(11,37,55,.78)); }
.hero-image-quote { position: absolute; z-index: 2; left: 25px; right: 230px; bottom: 24px; margin: 0; color: var(--ivory); font-family: Literata,Georgia,serif; font-size: 18px; line-height: 1.4; }
.hero-image-quote span { display: block; width: 50px; height: 1px; margin-bottom: 12px; background: var(--gold); }
.hero-badge { position: absolute; z-index: 3; right: 23px; bottom: 23px; width: 205px; padding: 14px 16px; border: 1px solid rgba(189,164,114,.45); border-radius: 8px; background: var(--ivory); box-shadow: 0 10px 26px rgba(11,45,67,.15); }
.hero-badge strong { display: block; color: var(--blue-deep); font-family: Literata,Georgia,serif; font-size: 27px; font-weight: 400; line-height: 1; }
.hero-badge span { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-button { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin: 50px auto 0; border: 1px solid rgba(189,164,114,.5); border-radius: 50%; color: var(--gold); transition: transform .25s, background .25s, border-color .25s; }
.scroll-button:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(189,164,114,.1); }
.scroll-button svg { width: 20px; height: 20px; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }
.reveal { opacity: 0; animation: hero-in .7s var(--ease) forwards; }
.reveal-1 { animation-delay: .08s; }.reveal-2 { animation-delay: .18s; }.reveal-3 { animation-delay: .3s; }.reveal-4 { animation-delay: .42s; }.reveal-5 { animation-delay: .58s; }.reveal-6 { animation-delay: .72s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Shared section typography */
.rights h2, .steps h2, .documents h2, .office h2, .diagnostic h2, .calculator h2, .materials h2, .faq h2, .contact h2, .final-cta h2 { color: var(--blue-deep); font-size: clamp(35px,4.2vw,52px); line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
.rights > .wrap > div:first-child > p:last-child, .documents > .wrap > div:first-child > p, .office-grid > div:last-child > p, .diagnostic-grid > div:first-child > p, .section-intro > p, .faq-grid > div:first-child > p { color: var(--muted); font-size: 16px; }
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Rights */
.rights-grid { display: grid; grid-template-columns: minmax(0,4fr) minmax(0,8fr); gap: 62px; }
.rights h2 { margin: 24px 0 0; }
.rights-grid > div:first-child > p:last-child { margin-top: 28px; }
.rights-desktop { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.rights-list { display: flex; flex-direction: column; }
.rights-list button { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; min-height: 64px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(32,93,128,.14); background: transparent; color: var(--ink); text-align: left; }
.rights-list button > span { display: flex; align-items: baseline; gap: 15px; font-size: 14px; line-height: 1.4; }
.rights-list button b { color: var(--muted); font-family: Literata,Georgia,serif; font-size: 18px; font-weight: 400; transition: color .2s; }
.rights-list button i { width: 16px; height: 1px; flex: 0 0 auto; background: rgba(32,93,128,.25); transition: width .25s, background .25s; }
.rights-list button:hover > span, .rights-list button[aria-selected=true] > span { color: var(--blue-deep); }
.rights-list button:hover b, .rights-list button[aria-selected=true] b { color: var(--gold); }
.rights-list button[aria-selected=true] i { width: 40px; background: var(--gold); }
.rights-card { position: sticky; top: 112px; height: auto; min-height: 460px; padding: 36px; overflow: visible; border: 1px solid rgba(32,93,128,.13); border-radius: 12px; background: var(--white); }
.rights-card-content { opacity: 1; transform: translateY(0); transition: opacity .18s ease, transform .18s ease; }
.rights-card-content.is-leaving { opacity: 0; transform: translateY(5px); }
.rights-card-content.is-entering { opacity: 0; transform: translateY(-5px); transition: none; }
.rights-card strong { color: var(--gold); font-family: Literata,Georgia,serif; font-size: 40px; font-weight: 400; }
.rights-card h3 { margin: 12px 0 0; color: var(--blue-deep); font-size: 24px; line-height: 1.25; }
.rights-card .gold-line { width: 40px; margin-top: 18px; }
.rights-card p { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.rights-mobile { display: none; }
.accordion-item { border-bottom: 1px solid rgba(32,93,128,.14); }
.accordion-trigger { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; min-height: 66px; padding: 18px 0; border: 0; background: transparent; color: var(--blue-deep); text-align: left; }
.accordion-trigger > span { display: flex; align-items: baseline; gap: 14px; font-family: Literata,Georgia,serif; font-size: 17px; line-height: 1.4; }
.accordion-trigger b { color: var(--gold); font-weight: 400; }
.accordion-trigger i { position: relative; width: 17px; height: 17px; flex: 0 0 auto; }
.accordion-trigger i:before, .accordion-trigger i:after { content: ''; position: absolute; top: 8px; left: 0; width: 17px; height: 1px; background: var(--gold); transition: transform .25s; }
.accordion-trigger i:after { transform: rotate(90deg); }
.accordion-trigger[aria-expanded=true] i:after { transform: rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.accordion-panel > * { min-height: 0; overflow: hidden; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-panel p { margin: 0; padding: 0 0 22px; color: var(--muted); font-size: 14px; }

/* Institutional */
.institutional { position: relative; overflow: hidden; }
.shield-watermark { position: absolute; pointer-events: none; background: transparent; opacity: .18; animation: float 9s ease-in-out infinite; }
.institutional > .shield-watermark { width: 600px; top: 50%; right: -150px; transform: translateY(-50%); }
@keyframes float { 0%,100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -8px; rotate: .6deg; } }
.institutional .wrap { position: relative; z-index: 1; }
.institutional-copy { max-width: 760px; }
.institutional h2 { margin: 24px 0 0; font-size: clamp(36px,4.2vw,52px); line-height: 1.08; }
.institutional h2 span { color: rgba(247,244,236,.84); }
.institutional-copy p:not(.eyebrow) { max-width: 650px; color: rgba(247,244,236,.78); font-size: 16px; }
.institutional-copy h2 + p { margin-top: 28px; }
.institutional-copy p + p { margin-top: 13px; color: rgba(247,244,236,.65); font-size: 15px; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 60px; }
.principles article { padding: 0 34px; }
.principles article:first-child { padding-left: 0; }
.principles article + article { border-left: 1px solid rgba(189,164,114,.28); }
.principles strong { color: var(--gold); font-family: Literata,Georgia,serif; font-size: 25px; font-weight: 400; }
.principles h3 { margin: 12px 0 0; font-size: 24px; }
.principles .gold-line { width: 32px; margin-top: 16px; }
.principles p { margin: 16px 0 0; color: rgba(247,244,236,.72); font-size: 14px; }

/* Timeline */
.steps .wrap > h2 { max-width: 760px; margin: 24px 0 0; }
.timeline { position: relative; margin-top: 78px; }
.timeline-base, .timeline-progress { position: absolute; z-index: 0; top: 18px; left: 50%; width: 1px; height: calc(100% - 20px); transform: translateX(-50%); background: rgba(32,93,128,.14); }
.timeline-progress { height: 0; background: var(--gold); transition: height .15s linear; }
.timeline ol { position: relative; z-index: 1; padding: 0; margin: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 112px; min-height: 170px; margin-bottom: 50px; }
.timeline li:last-child { margin-bottom: 0; }
.timeline li[data-step] { opacity: 0; transform: translateY(30px); transition: opacity .62s var(--ease), transform .62s var(--ease); }
.timeline li[data-step] .timeline-dot { opacity: 0; transform: translateX(-50%) scale(.72); transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s, background-color .4s var(--ease) .1s; }
.timeline li[data-step] .step-number, .timeline li[data-step] .step-mobile-number { opacity: 0; transform: scale(.82); transform-origin: center; transition: opacity .48s var(--ease) .14s, transform .48s var(--ease) .14s; }
.timeline li[data-step] .step-copy { opacity: 0; transition: opacity .54s var(--ease) .18s, transform .54s var(--ease) .18s; }
.timeline li[data-step].odd .step-copy { transform: translateX(24px); }
.timeline li[data-step].even .step-copy { transform: translateX(-24px); }
.timeline li[data-step].step-in-view { opacity: 1; transform: translateY(0); }
.timeline li[data-step].step-in-view .timeline-dot { opacity: 1; background-color: var(--gold); transform: translateX(-50%) scale(1); }
.timeline li[data-step].step-in-view .step-number, .timeline li[data-step].step-in-view .step-mobile-number { opacity: 1; transform: scale(1); }
.timeline li[data-step].step-in-view .step-copy { opacity: 1; transform: translateX(0); }
.timeline li[data-step]:nth-child(2) { transition-delay: .05s; }
.timeline li[data-step]:nth-child(3) { transition-delay: .1s; }
.timeline li[data-step]:nth-child(4) { transition-delay: .15s; }
.timeline li[data-step]:nth-child(5) { transition-delay: .2s; }
.timeline-dot { position: absolute; z-index: 3; top: 20px; left: 50%; width: 16px; height: 16px; border: 2px solid var(--gold); border-radius: 50%; background: var(--ivory); transform: translateX(-50%); }
.step-number { color: var(--gold); font-family: Literata,Georgia,serif; font-size: 68px; line-height: 1; }
.step-copy h3 { margin: 0; color: var(--blue-deep); font-size: 30px; line-height: 1.2; }
.step-copy p { max-width: 470px; margin: 13px 0 0; color: var(--muted); font-size: 14px; }
.timeline li.odd .step-number { grid-column: 1; grid-row: 1; text-align: right; }
.timeline li.odd .step-copy { grid-column: 2; grid-row: 1; }
.timeline li.even .step-number { grid-column: 2; grid-row: 1; }
.timeline li.even .step-copy { grid-column: 1; grid-row: 1; text-align: right; }
.timeline li.even .step-copy p { margin-left: auto; }
.step-mobile-number { display: none; }
.timeline-notice { max-width: 820px; margin: 54px auto 0; padding-left: 17px; border-left: 2px solid var(--gold); color: var(--muted); font-size: 13px; font-style: italic; }

/* Documents and ticker */
.documents-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 70px; }
.documents h2 { margin: 24px 0 0; }
.documents-grid > div:first-child > p { margin: 28px 0 0; }
.documents-grid > div:first-child > p + p { margin-top: 14px; font-size: 14px; }
.documents strong { color: var(--blue-deep); font-weight: 500; }
.safe-note { margin-top: 28px; padding: 22px; border: 1px solid rgba(32,93,128,.13); border-radius: 8px; background: var(--ivory); color: var(--muted); font-size: 12px; line-height: 1.7; }
.documents ul { padding: 0; margin: 0; list-style: none; }
.documents li { display: grid; grid-template-columns: 30px 24px 1fr; align-items: center; gap: 12px; min-height: 57px; border-bottom: 1px solid rgba(32,93,128,.13); color: var(--blue-deep); font-size: 14px; transition: border-color .2s, transform .2s; }
.documents li:hover { border-color: var(--gold); transform: translateX(3px); }
.documents li b { color: var(--gold); font-family: Literata,Georgia,serif; font-size: 13px; font-weight: 400; }
.documents li svg { width: 20px; height: 20px; color: var(--blue); stroke-width: 1.45; }
.ticker { overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(189,164,114,.2); border-bottom: 1px solid rgba(189,164,114,.2); }
.ticker-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 38s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker span { display: inline-flex; align-items: center; gap: 28px; margin: 0 32px; color: rgba(247,244,236,.68); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; }
.ticker i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Office */
.office-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 70px; align-items: start; }
.office-media { position: relative; min-height: 600px; }
.office-media picture, .office-media img { width: 100%; height: 100%; }
.office-media img { min-height: 600px; border-radius: 8px; object-fit: cover; box-shadow: 0 22px 44px rgba(16,58,83,.14); }
.office h2 { margin: 24px 0 0; }
.lawyer { display: flex; align-items: center; gap: 20px; margin: 30px 0 0; }
.lawyer > img { width: 88px; height: 88px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; border: 1px solid rgba(189,164,114,.65); box-shadow: 0 0 0 3px var(--ivory), 0 0 0 4px rgba(189,164,114,.45); }
.lawyer figcaption { display: flex; flex-direction: column; min-width: 0; }
.lawyer small { color: var(--blue); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.lawyer strong { margin-top: 8px; color: var(--blue-deep); font-family: Literata,Georgia,serif; font-size: 19px; font-weight: 400; }
.lawyer span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.office-grid > div:last-child > p { max-width: 650px; margin: 26px 0 0; }
.office-grid blockquote { max-width: 650px; margin: 18px 0 0; padding-left: 16px; border-left: 2px solid var(--gold); color: var(--muted); font-size: 14px; line-height: 1.75; }
.office-facts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 34px; margin: 34px 0 0; }
.office-facts div { padding-top: 15px; border-top: 1px solid rgba(32,93,128,.14); }
.office-facts dt { color: var(--blue); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.office-facts dd { margin: 10px 0 0; color: var(--blue-deep); font-size: 13px; line-height: 1.6; }

/* Diagnostic */
.diagnostic-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 68px; align-items: start; }
.diagnostic h2 { margin: 24px 0 0; }
.diagnostic-grid > div:first-child > p { margin: 28px 0 0; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; color: var(--muted); font-size: 13px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; color: var(--gold); }
.diagnostic-card { min-width: 0; padding: 38px; border: 1px solid rgba(32,93,128,.13); border-radius: 16px; background: var(--white); box-shadow: 0 6px 18px rgba(16,58,83,.04); }
.quiz-status { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.quiz-status b { font-weight: 500; }
.progress-track { height: 4px; margin: 22px 0 30px; border-radius: 20px; background: rgba(32,93,128,.1); overflow: hidden; }
.progress-track span { display: block; width: 0; height: 100%; background: var(--gold); transition: width .3s; }
.quiz-form ol { display: grid; gap: 24px; padding: 0; margin: 0; list-style: none; }
.quiz-form fieldset { padding: 0; margin: 0; border: 0; }
.quiz-form legend { display: flex; gap: 13px; width: 100%; color: var(--blue-deep); font-size: 13px; font-weight: 500; line-height: 1.65; }
.quiz-form legend b { color: var(--gold); font-family: Literata,Georgia,serif; font-size: 14px; font-weight: 400; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 30px; margin-top: 10px; }
.quiz-options button { min-height: 42px; padding: 7px 16px; border: 1px solid rgba(32,93,128,.22); border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; transition: border-color .2s, background .2s, color .2s; }
.quiz-options button:hover { border-color: rgba(32,93,128,.45); color: var(--blue-deep); }
.quiz-options button.selected { border-color: var(--gold); background: rgba(189,164,114,.1); color: var(--blue-deep); }
.quiz-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; }
.quiz-submit-row p { max-width: 280px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.quiz-submit-row button:disabled { opacity: .38; cursor: not-allowed; transform: none; box-shadow: none; }
.quiz-result { animation: result-in .35s var(--ease); }
@keyframes result-in { from { opacity: 0; transform: translateY(10px); } }
.result-chip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border: 1px solid #ecd39e; border-radius: 999px; background: #fff9e7; color: #79520b; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.result-chip.high { border-color: #f1b8bd; background: #fff1f2; color: #9f1f2a; }
.result-chip.low { border-color: #b8ddcc; background: #effaf4; color: #206743; }
.result-chip svg { width: 14px; height: 14px; }
.quiz-result > h3 { margin: 20px 0 0; color: var(--blue-deep); font-size: 28px; line-height: 1.2; }
.quiz-result > p { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.result-actions { margin-top: 28px; }
.result-actions ol { padding: 0; margin: 15px 0 0; list-style: none; }
.result-actions li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 0 0 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(32,93,128,.1); }
.result-actions li > b { color: var(--gold); font-family: Literata,Georgia,serif; font-weight: 400; }
.result-actions li strong { display: block; color: var(--blue); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.result-actions li p { margin: 7px 0 0; color: var(--blue-deep); font-size: 12px; line-height: 1.7; }
.diagnostic-lead { margin-top: 30px; padding: 25px; border: 1px solid rgba(32,93,128,.14); border-radius: 14px; background: rgba(247,244,236,.65); }
.diagnostic-lead h4 { margin: 10px 0 0; color: var(--blue-deep); font-size: 21px; line-height: 1.3; }
.diagnostic-lead form > p:not(.eyebrow) { color: var(--muted); font-size: 12px; }
.diagnostic-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.diagnostic-contact-grid label { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.diagnostic-contact-grid input { width: 100%; min-height: 43px; margin-top: 6px; padding: 8px 10px; border: 1px solid rgba(32,93,128,.2); border-radius: 6px; background: var(--white); color: var(--blue-deep); font-size: 13px; letter-spacing: normal; text-transform: none; }
.diagnostic-lead .button { margin-top: 16px; }
.success-box { display: flex; align-items: flex-start; gap: 12px; }
.success-box > svg { width: 22px; height: 22px; flex: 0 0 auto; color: #26835a; }
.success-box h4 { margin: 0; }
.success-box p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.success-box [data-download-checklist] { margin-top: 22px; margin-bottom: 12px; }
.result-footer { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

/* Forms */
.sfm-form label:not(.consent) { display: flex; flex-direction: column; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.sfm-form label > span { color: var(--blue-deep); }
.sfm-form input:not([type=checkbox]), .sfm-form textarea, .sfm-form select, .calculator input, .calculator select { width: 100%; min-height: 45px; padding: 10px 13px; border: 1px solid rgba(32,93,128,.22); border-radius: 6px; background: var(--white); color: var(--ink); font-size: 14px; letter-spacing: normal; text-transform: none; transition: border-color .2s, box-shadow .2s; }
.sfm-form textarea { min-height: 122px; resize: vertical; }
.sfm-form input:focus, .sfm-form textarea:focus, .sfm-form select:focus, .calculator input:focus, .calculator select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,164,114,.16); }
.sfm-form input.invalid, .sfm-form textarea.invalid, .sfm-form select.invalid { border-color: var(--danger); }
.consent { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px !important; margin-top: 18px; color: var(--muted) !important; font-size: 10px !important; font-weight: 400 !important; letter-spacing: normal !important; line-height: 1.55; text-transform: none !important; }
.consent input { width: 16px; height: 16px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--blue); }
.consent a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; }
.form-message { display: none; margin-top: 13px; padding: 10px 12px; border-radius: 6px; font-size: 12px; line-height: 1.55; }
.form-message.error { display: block; background: #fff0f1; color: var(--danger); }
.form-message.success { display: block; background: #edf9f3; color: #206743; }
.form-notice { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.sfm-form button[disabled] { opacity: .65; cursor: wait; }

/* Custom selects */
.select-native-hidden { position: absolute !important; width: 1px !important; height: 1px !important; min-height: 1px !important; padding: 0 !important; margin: 0 !important; opacity: 0 !important; pointer-events: none !important; }
.custom-select { position: relative; width: 100%; color: var(--blue-deep); font-size: 14px; letter-spacing: normal; text-transform: none; }
.custom-select-trigger { position: relative; width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 48px 11px 14px; border: 1px solid rgba(32,93,128,.2); border-radius: 9px; background: rgba(255,255,255,.9); color: var(--blue-deep); font-size: 14px; font-weight: 500; line-height: 1.35; text-align: left; box-shadow: 0 5px 16px rgba(11,45,67,.045); transition: border-color .2s, box-shadow .2s, background-color .2s; }
.custom-select-trigger:hover { border-color: rgba(189,164,114,.8); background: var(--white); }
.custom-select-trigger:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(189,164,114,.15), 0 10px 24px rgba(11,45,67,.07); }
.custom-select-trigger i { position: absolute; top: 50%; right: 18px; width: 9px; height: 9px; margin-top: -6px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform .22s var(--ease), margin .22s var(--ease); }
.custom-select.is-open .custom-select-trigger i { margin-top: -2px; transform: rotate(225deg); }
.custom-select-menu { position: absolute; z-index: 70; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 3px; max-height: 270px; padding: 7px; overflow-y: auto; border: 1px solid rgba(189,164,114,.55); border-radius: 12px; background: rgba(255,255,255,.98); box-shadow: 0 22px 48px rgba(11,45,67,.18); opacity: 0; transform: translateY(-6px); visibility: hidden; transition: opacity .18s, transform .18s var(--ease), visibility .18s; }
.custom-select.is-open .custom-select-menu { opacity: 1; transform: translateY(0); visibility: visible; }
.custom-select-option { width: 100%; min-height: 42px; padding: 9px 12px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); font-size: 13px; line-height: 1.35; text-align: left; transition: color .18s, background-color .18s, padding-left .18s; }
.custom-select-option:hover, .custom-select-option:focus { outline: none; padding-left: 16px; background: rgba(189,164,114,.12); color: var(--blue-deep); }
.custom-select-option.is-selected { background: var(--blue-deep); color: var(--ivory); }
.custom-select-option[disabled] { opacity: .45; cursor: not-allowed; }
select.invalid + .custom-select .custom-select-trigger { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(181,51,65,.1); }
.calculator .field > .custom-select { margin-top: 9px; }
.calculator .custom-select-trigger { min-height: 56px; padding: 13px 52px 13px 16px; border-radius: 10px; background: rgba(255,255,255,.86); }

/* Calculator */
.section-intro { max-width: 840px; }
.section-intro h2 { margin: 24px 0 0; }
.section-intro > p:not(.eyebrow):not(.oab-notice) { margin: 28px 0 0; }
.calculator-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 50px; margin-top: 50px; align-items: start; }
.calculator-form { display: grid; grid-template-columns: 1fr 1fr; gap: 23px; padding: 32px; border: 1px solid rgba(32,93,128,.13); border-radius: 18px; background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(247,244,236,.72)); box-shadow: 0 18px 50px rgba(11,45,67,.07); }
.calculator-form .full { grid-column: 1/-1; }
.calculator .field { position: relative; min-width: 0; }
.calculator .field > label { display: block; color: var(--blue-deep); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.calculator .field input, .calculator .field select { width: 100%; min-height: 56px; margin-top: 9px; padding: 13px 16px; appearance: none; -webkit-appearance: none; border: 1px solid rgba(32,93,128,.2); border-radius: 10px; background-color: rgba(255,255,255,.86); color: var(--blue-deep); font-size: 14px; font-weight: 500; box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 5px 14px rgba(11,45,67,.035); transition: border-color .2s, box-shadow .2s, background-color .2s, transform .2s; }
.calculator .field input:hover, .calculator .field select:hover { border-color: rgba(189,164,114,.75); background-color: var(--white); }
.calculator .field input:focus, .calculator .field select:focus { outline: none; border-color: var(--gold); background-color: var(--white); box-shadow: 0 0 0 4px rgba(189,164,114,.15), 0 10px 24px rgba(11,45,67,.07); }
.calculator .field select { padding-right: 52px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23BDA472' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 17px center; background-size: 18px; }
.calculator .field select::-ms-expand { display: none; }
.calculator .field input[type=date] { color-scheme: light; }
.calculator .field input[type=date]::-webkit-calendar-picker-indicator { width: 19px; height: 19px; padding: 4px; opacity: .68; cursor: pointer; filter: sepia(.45) saturate(.7) hue-rotate(355deg); }
.calculator .field input[type=number] { appearance: textfield; -moz-appearance: textfield; }
.calculator .field input[type=number]::-webkit-inner-spin-button, .calculator .field input[type=number]::-webkit-outer-spin-button { margin: 0; appearance: none; -webkit-appearance: none; }
.calculator .field small { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.money-input { position: relative; }
.money-input > span { position: absolute; z-index: 1; top: 50%; left: 0; width: 48px; margin-top: 4px; transform: translateY(-50%); border-right: 1px solid rgba(189,164,114,.38); color: var(--gold); font-family: Literata,Georgia,serif; font-size: 13px; text-align: center; pointer-events: none; }
.calculator .money-input input { padding-left: 62px; }
.calculator-result { padding: 30px; border: 1px solid rgba(32,93,128,.14); border-radius: 15px; background: var(--white); }
.calculator-result > div > p { margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.calculator-result dl { margin: 20px 0 0; }
.calculator-result dl div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid rgba(32,93,128,.1); font-size: 12px; }
.calculator-result dt { color: var(--muted); }
.calculator-result dd { margin: 0; color: var(--blue-deep); font-weight: 500; text-align: right; }
.calc-total { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(189,164,114,.5); }
.calc-total span { color: var(--blue-deep); font-size: 10px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.calc-total strong { color: var(--blue-deep); font-family: Literata,Georgia,serif; font-size: 27px; font-weight: 400; }
.calculator-result [data-calc-result] > p { margin-top: 15px; color: var(--muted); font-size: 10px; }
.calculator-result > .button { margin-top: 22px; }

/* Materials */
.materials-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-top: 54px; }
.material-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(32,93,128,.13); border-radius: 16px; background: var(--ivory); transition: box-shadow .25s, transform .25s; }
.material-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(16,58,83,.09); }
.material-icon { display: flex; align-items: center; gap: 12px; }
.material-icon > span { display: flex; align-items: center; justify-content: center; width: 41px; height: 41px; border-radius: 50%; background: rgba(189,164,114,.13); color: var(--blue-deep); }
.material-icon svg { width: 20px; height: 20px; }
.material-card h3 { margin: 20px 0 0; color: var(--blue-deep); font-size: 23px; line-height: 1.25; }
.material-card > p { color: var(--muted); font-size: 13px; }
.material-card > h3 + p { margin-top: 12px; }
.material-card > ul { display: grid; gap: 8px; padding: 0; margin: 18px 0 0; list-style: none; color: var(--blue-deep); font-size: 12px; }
.material-card > ul li { display: flex; align-items: flex-start; gap: 8px; }
.material-card > ul svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 1px; color: var(--gold); }
.material-form { margin-top: auto; padding-top: 22px; }
.material-form > input[name=nome] { margin-bottom: 10px; }
.material-email { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.material-email > span { position: absolute; z-index: 2; top: 14px; left: 12px; color: var(--muted); }
.material-email > span svg { width: 16px; height: 16px; }
.material-email input { padding-left: 36px !important; }
.material-email .button { min-height: 45px; }
.material-consent { margin-top: 10px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 70px; align-items: start; }
.faq h2 { margin: 24px 0 0; }
.faq-grid > div:first-child > p { margin-top: 28px; }
.faq nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.faq nav a { padding: 6px 11px; border: 1px solid rgba(32,93,128,.2); border-radius: 999px; color: var(--muted); font-size: 10px; transition: border-color .2s, color .2s; }
.faq nav a:hover { border-color: rgba(32,93,128,.5); color: var(--blue-deep); }
.faq-group { scroll-margin-top: 110px; margin-bottom: 36px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group > h3 { margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(32,93,128,.12); color: var(--blue-deep); font-size: 19px; }
.faq .accordion-trigger > span { font-size: 16px; }
.faq .accordion-panel p { font-size: 13px; }

/* Contact */
.contact-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 16px; box-shadow: 0 24px 55px rgba(16,58,83,.14); }
.contact-info { position: relative; overflow: hidden; padding: 50px; }
.contact-info > .shield-watermark { width: 410px; right: -92px; bottom: -100px; opacity: .19; }
.contact-info > *:not(.shield-watermark) { position: relative; z-index: 1; }
.contact h2 { margin: 24px 0 0; color: var(--ivory); }
.contact-info > p:not(.eyebrow) { margin: 28px 0 0; color: rgba(247,244,236,.78); font-size: 15px; }
.contact-info > strong { display: block; margin-top: 12px; color: var(--gold-light); font-size: 12px; font-weight: 500; line-height: 1.6; }
.contact-info dl { margin: 34px 0 0; }
.contact-info dl div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(189,164,114,.2); }
.contact-info dt { color: var(--gold-light); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.contact-info dd { margin: 0; color: rgba(247,244,236,.9); font-size: 12px; overflow-wrap: anywhere; }
.contact-info dd a { text-decoration: underline; text-decoration-color: rgba(189,164,114,.45); text-underline-offset: 4px; }
.contact-info > small { display: block; margin-top: 25px; color: rgba(247,244,236,.56); font-size: 10px; line-height: 1.6; }
.contact-form-wrap { min-width: 0; padding: 48px; background: var(--ivory); }
.contact-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label > small { display: block; text-align: right; color: var(--muted); font-size: 9px; letter-spacing: normal; text-transform: none; }

/* Final */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta > .shield-watermark { width: 500px; left: -150px; top: 50%; transform: translateY(-50%); opacity: .17; }
.final-cta .wrap { position: relative; z-index: 1; max-width: 980px; }
.final-cta .gold-line { margin: 0 auto; }
.final-cta h2 { margin: 24px auto 0; color: var(--ivory); }
.final-cta .wrap > p:not(.oab-notice) { max-width: 720px; margin: 26px auto 0; color: rgba(247,244,236,.78); font-size: 15px; }
.final-cta .button { margin-top: 32px; }
.final-cta small { display: block; margin-top: 26px; color: rgba(247,244,236,.58); font-size: 11px; }
.final-cta .oab-notice { margin-top: 20px; }

/* Footer */
.site-footer { padding: 58px 0 26px; color: rgba(247,244,236,.75); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 55px; }
.brand-light .brand-text { color: var(--ivory); }
.footer-grid > div:first-child > p { max-width: 370px; margin: 24px 0 0; font-size: 12px; }
.footer-title { margin: 0; color: var(--gold-light); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid > div:nth-child(2) > p:not(.footer-title) { margin: 12px 0 0; font-size: 12px; line-height: 1.85; }
.footer-grid a { transition: color .2s, transform .2s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid ul { padding: 0; margin: 12px 0 0; list-style: none; }
.footer-grid li { margin-bottom: 8px; font-size: 12px; }
.social-title { margin-top: 24px; }
.footer-instagram { display: inline-flex; align-items: center; gap: 8px; margin-top: 11px; font-size: 12px; }
.footer-instagram svg { width: 17px; height: 17px; }
.footer-legal { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(189,164,114,.2); text-align: center; }
.footer-legal p { max-width: 900px; margin: 0 auto; color: rgba(247,244,236,.48); font-size: 10px; line-height: 1.7; }
.footer-legal p + p { margin-top: 7px; }
.footer-legal a { text-decoration: underline; text-decoration-color: rgba(189,164,114,.4); text-underline-offset: 3px; }

/* Floating, cookie, popup */
.whatsapp-float { position: fixed; z-index: 40; right: 30px; bottom: 30px; display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border: 1px solid rgba(189,164,114,.4); border-radius: 50%; background: var(--blue); color: var(--ivory); box-shadow: 0 12px 28px rgba(16,58,83,.3); opacity: 0; transform: translateY(16px) scale(.92); pointer-events: none; transition: opacity .35s, transform .35s, background .25s; }
.whatsapp-float.visible { opacity: 1; transform: none; pointer-events: auto; }
.whatsapp-float:hover { transform: translateY(-4px); background: var(--blue-deep); }
.whatsapp-float svg { width: 25px; height: 25px; }
.cookie-banner { position: fixed; z-index: 45; left: 50%; bottom: 24px; width: min(calc(100% - 32px),680px); padding: 18px 20px; border: 1px solid rgba(32,93,128,.14); border-radius: 13px; background: var(--ivory); box-shadow: 0 18px 44px rgba(16,58,83,.18); transform: translateX(-50%); text-align: center; animation: cookie-in .3s var(--ease); }
.cookie-banner[hidden] { display: none; }
@keyframes cookie-in { from { opacity: 0; transform: translate(-50%,20px); } }
.cookie-banner p { margin: 0; color: var(--blue-deep); font-size: 11px; line-height: 1.55; }
.cookie-banner p a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 2px; }
.cookie-banner > div { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.cookie-banner .button { min-height: 42px; padding: 9px 18px; font-size: 12px; }
.exit-modal { position: fixed; z-index: 70; inset: 0; display: flex; align-items: center; justify-content: center; padding: 18px; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.exit-modal.is-open { visibility: visible; opacity: 1; }
.exit-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(11,45,67,.72); backdrop-filter: blur(4px); }
.exit-dialog { position: relative; display: grid; grid-template-columns: 42% 58%; width: min(100%,860px); max-height: 92vh; overflow: hidden; border-radius: 16px; background: var(--ivory); box-shadow: 0 28px 70px rgba(11,45,67,.4); transform: translateY(16px); transition: transform .35s var(--ease); }
.exit-modal.is-open .exit-dialog { transform: translateY(0); }
.exit-close { position: absolute; z-index: 5; top: 12px; right: 12px; min-height: 36px; padding: 7px 14px; border: 0; border-radius: 999px; background: rgba(247,244,236,.93); color: var(--blue-deep); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.exit-info { position: relative; overflow: hidden; padding: 40px 30px; }
.exit-info .shield-watermark { right: -60px; bottom: -70px; width: 310px; opacity: .2; }
.exit-info > *:not(.shield-watermark) { position: relative; z-index: 1; }
.exit-info .gold-line { width: 48px; margin-top: 15px; }
.exit-info h2 { margin: 16px 0 0; font-size: 25px; line-height: 1.2; }
.exit-info > p:not(.eyebrow) { margin-top: 15px; color: rgba(247,244,236,.76); font-size: 12px; }
.exit-info > small { display: block; margin-top: 28px; color: rgba(247,244,236,.5); font-size: 9px; line-height: 1.6; }
.exit-form-wrap { min-height: 0; max-height: 92vh; overflow-y: auto; padding: 48px 32px 28px; }
.compact-form { display: grid; gap: 15px; }
.continue-link { display: block; width: 100%; margin-top: 18px; border: 0; background: transparent; color: var(--blue); font-size: 11px; text-decoration: underline; text-underline-offset: 3px; }
.exit-mobile-title { display: none; }

.review-modal { position: fixed; z-index: 80; inset: 0; display: flex; align-items: center; justify-content: center; padding: 18px; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.review-modal.is-open { visibility: visible; opacity: 1; }
.review-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(11,45,67,.72); backdrop-filter: blur(4px); }
.review-dialog { position: relative; width: min(100%,670px); max-height: 88vh; overflow-y: auto; padding: 34px; border-radius: 15px; background: var(--ivory); box-shadow: 0 28px 70px rgba(11,45,67,.42); transform: translateY(12px); transition: transform .25s var(--ease); }
.review-modal.is-open .review-dialog { transform: translateY(0); }
.review-dialog h2 { margin: 12px 0 0; color: var(--blue-deep); font-size: 28px; }
.review-dialog dl { margin: 24px 0 0; border: 1px solid rgba(32,93,128,.14); border-radius: 10px; overflow: hidden; }
.review-dialog dl div { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding: 13px 15px; border-bottom: 1px solid rgba(32,93,128,.1); }
.review-dialog dl div:last-child { border-bottom: 0; }
.review-dialog dt { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.review-dialog dd { margin: 0; color: var(--blue-deep); font-size: 12px; overflow-wrap: anywhere; white-space: pre-line; }
.review-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

/* Legal pages */
.legal-main { min-height: 70vh; padding: 150px 0 95px; background: var(--ivory); }
.legal-wrap { width: min(calc(100% - 40px),800px); margin: 0 auto; }
.legal-main h1 { margin: 22px 0 0; color: var(--blue-deep); font-size: clamp(38px,5vw,52px); line-height: 1.08; }
.legal-updated { margin: 12px 0 0; color: var(--muted); font-size: 11px; }
.legal-content { margin-top: 42px; }
.legal-content section { margin-bottom: 30px; }
.legal-content h2 { margin: 0; color: var(--blue-deep); font-size: 20px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-content p { margin: 8px 0 0; }
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--blue); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.legal-content .button { color: var(--ivory); text-decoration: none; }
.compliance-item { padding: 22px; border: 1px solid rgba(32,93,128,.13); border-radius: 10px; background: rgba(255,255,255,.65); }
.compliance-item h2 { display: flex; align-items: center; gap: 10px; }
.compliance-item h2 > span { color: var(--gold); }
.compliance-item h2 svg { width: 20px; height: 20px; }
.lgpd-form { display: grid; gap: 18px; max-width: 680px; padding: 30px; border: 1px solid rgba(32,93,128,.14); border-radius: 14px; background: var(--white); }

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: flex; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 46px; }
  .hero h1 { font-size: clamp(42px,5vw,58px); }
  .hero-media { min-height: 540px; }
  .hero-badge { display: none; }
  .hero-image-quote { right: 24px; }
  .rights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .wrap { width: min(100% - 48px,var(--page)); }
  .section-pad { padding: 92px 0; }
  .header-inner { height: 72px; }
  .brand-shield { width: 35px; height: 39px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 8px; }
  .hero { min-height: 0; padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: clamp(38px,7vw,54px); }
  .hero-media { min-height: 0; aspect-ratio: 16/11; }
  .scroll-button { margin-top: 42px; }
  .rights-desktop { display: none; }
  .rights-mobile { display: block; }
  .rights-grid { gap: 45px; }
  .principles { gap: 30px; }
  .principles article { padding: 0 22px; }
  .documents-grid, .office-grid, .diagnostic-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .documents-grid ul { column-count: 1; }
  .office-media { min-height: 0; max-width: 620px; }
  .office-media img { min-height: 0; aspect-ratio: 4/5; }
  .diagnostic-grid > div:first-child { max-width: 680px; }
  .calculator-grid { gap: 30px; }
  .materials-grid { gap: 18px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { padding: 42px; }
  .contact-form-wrap { padding: 42px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
}

@media (max-width: 700px) {
  .wrap { width: min(100% - 32px,var(--page)); }
  .section-pad { padding: 76px 0; }
  .brand { gap: 10px; }
  .brand-shield { width: 31px; height: 35px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { margin-top: 4px; font-size: 7px; }
  .mobile-menu-button { width: 44px; height: 44px; }
  .hero { padding: 105px 0 70px; }
  .hero-watermark { display: none; }
  .hero-grid { gap: 40px; }
  .hero h1 { margin-top: 18px; font-size: clamp(31px,9vw,40px); line-height: 1.05; letter-spacing: -.03em; }
  .hero-lead { margin-top: 22px; font-size: 14px; }
  .hero-note { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 25px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; gap: 9px; margin-top: 25px; }
  .hero-media { aspect-ratio: 4/5; }
  .hero-media picture img { border-radius: 13px; }
  .hero-image-overlay { border-radius: 13px; }
  .hero-image-quote { left: 20px; right: 20px; bottom: 20px; font-size: 16px; }
  .corner-top { top: -13px; left: -8px; width: 72px; height: 72px; }
  .scroll-button { display: none; }
  .rights h2, .steps h2, .documents h2, .office h2, .diagnostic h2, .calculator h2, .materials h2, .faq h2, .contact h2, .final-cta h2 { font-size: clamp(31px,9vw,39px); }
  .rights > .wrap > div:first-child > p:last-child, .documents > .wrap > div:first-child > p, .office-grid > div:last-child > p, .diagnostic-grid > div:first-child > p, .section-intro > p, .faq-grid > div:first-child > p { font-size: 14px; }
  .accordion-trigger { min-height: 62px; padding: 17px 0; }
  .accordion-trigger > span { gap: 11px; font-size: 14px; }
  .institutional > .shield-watermark { width: 420px; right: -220px; opacity: .16; }
  .institutional-copy p:not(.eyebrow) { font-size: 14px; }
  .principles { grid-template-columns: 1fr; gap: 0; margin-top: 44px; }
  .principles article { padding: 26px 0; }
  .principles article + article { border-top: 1px solid rgba(189,164,114,.28); border-left: 0; }
  .principles h3 { font-size: 22px; }
  .timeline { margin-top: 54px; }
  .timeline-base, .timeline-progress { left: 18px; top: 7px; transform: none; height: calc(100% - 10px); }
  .timeline-progress { height: 0; }
  .timeline li { grid-template-columns: 38px minmax(0,1fr); gap: 10px; min-height: 0; margin-bottom: 48px; }
  .timeline-dot { top: 1px; left: 10px; width: 16px; height: 16px; transform: none; }
  .timeline li[data-step] .timeline-dot { transform: scale(.72); }
  .timeline li[data-step].step-in-view .timeline-dot { transform: scale(1); }
  .timeline li[data-step].odd .step-copy, .timeline li[data-step].even .step-copy { transform: translateX(18px); }
  .timeline li[data-step].step-in-view .step-copy { transform: translateX(0); }
  .step-number { display: none; }
  .step-copy, .timeline li.odd .step-copy, .timeline li.even .step-copy { grid-column: 2; grid-row: 1; min-width: 0; text-align: left; }
  .step-mobile-number { display: block; color: var(--gold); font-family: Literata,Georgia,serif; font-size: 25px; font-weight: 400; line-height: 1; }
  .step-copy h3 { margin-top: 10px; font-size: 21px; overflow-wrap: anywhere; }
  .step-copy p, .timeline li.even .step-copy p { margin: 10px 0 0; font-size: 13px; overflow-wrap: anywhere; }
  .timeline-notice { margin-top: 42px; font-size: 11px; }
  .documents-grid, .office-grid, .diagnostic-grid, .faq-grid { gap: 42px; }
  .documents li { grid-template-columns: 26px 23px 1fr; gap: 9px; padding: 9px 0; font-size: 12px; }
  .office-media img { aspect-ratio: 4/5; }
  .lawyer { gap: 15px; }
  .lawyer > img { width: 78px; height: 78px; }
  .lawyer strong { font-size: 16px; }
  .office-facts { grid-template-columns: 1fr; gap: 18px; }
  .diagnostic-card { padding: 22px 17px; }
  .quiz-form ol { gap: 22px; }
  .quiz-options { padding-left: 0; }
  .quiz-options button { flex: 1 1 78px; }
  .quiz-submit-row { align-items: stretch; flex-direction: column; }
  .quiz-submit-row p { max-width: none; }
  .diagnostic-lead { padding: 19px 15px; }
  .diagnostic-contact-grid { grid-template-columns: 1fr; }
  .result-footer { display: grid; }
  .calculator-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .calculator-form { grid-template-columns: 1fr; padding: 22px 17px; border-radius: 15px; }
  .calculator-form .full { grid-column: 1; }
  .materials-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .material-card { padding: 23px 19px; }
  .material-email { grid-template-columns: 1fr; }
  .material-email .button { width: 100%; }
  .faq nav { display: none; }
  .faq .accordion-trigger > span { font-size: 14px; }
  .contact-info { padding: 32px 22px; }
  .contact-info dl div { grid-template-columns: 85px 1fr; gap: 10px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .final-cta > .shield-watermark { width: 380px; left: -210px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 54px; height: 54px; }
  .cookie-banner { bottom: 12px; padding: 15px; }
  .cookie-banner > div .button { flex: 1; }
  .exit-dialog { display: block; max-height: 92vh; overflow-y: auto; }
  .exit-info { display: none; }
  .exit-form-wrap { max-height: none; overflow: visible; padding: 55px 22px 25px; }
  .exit-mobile-title { display: block; }
  .exit-mobile-title h2 { margin: 10px 0 0; color: var(--blue-deep); font-size: 21px; line-height: 1.25; }
  .exit-mobile-title .gold-line { width: 40px; margin-top: 12px; }
  .exit-mobile-title > p:last-child { margin: 11px 0 18px; color: var(--muted); font-size: 11px; }
  .review-dialog { padding: 25px 18px; }
  .review-dialog dl div { grid-template-columns: 1fr; gap: 4px; }
  .review-actions { display: grid; grid-template-columns: 1fr; }
}

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