
:root {
  --brand: #174b3f;
  --brand-deep: #10362f;
  --brand-soft: #e7efeb;
  --ink: #1a2926;
  --muted: #64716d;
  --yellow: #f3c64f;
  --yellow-soft: #fff4cf;
  --paper: #ffffff;
  --surface: #f7f6f1;
  --surface-2: #eef3f0;
  --border: #dfe7e3;
  --shadow: 0 24px 70px rgba(18, 55, 47, .10);
  --shadow-soft: 0 12px 38px rgba(18, 55, 47, .07);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Segoe UI', Arial, system-ui, sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--yellow-soft); color: var(--brand-deep); }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); background: var(--brand); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.surface { background: var(--surface); }
.surface-green { background: var(--brand-deep); color: white; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--brand); font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--yellow); }
.surface-green .eyebrow { color: #dcebe6; }
.display { margin: 0; max-width: 820px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.3rem, 6.7vw, 6.8rem); font-weight: 500; line-height: .98; letter-spacing: -.045em; color: var(--brand-deep); }
.display .highlight { position: relative; white-space: nowrap; }
.display .highlight::after { content: ''; position: absolute; left: 2%; right: -2%; bottom: .06em; height: .16em; background: var(--yellow); opacity: .9; border-radius: 999px; z-index: -1; transform: rotate(-1.5deg); }
.h1 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.9rem, 5.4vw, 5.3rem); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; color: var(--brand-deep); }
.h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.25rem, 4vw, 4rem); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; color: var(--brand-deep); }
.h3 { margin: 0; font-size: 1.25rem; line-height: 1.35; color: var(--brand-deep); }
.lead { margin: 24px 0 0; max-width: 700px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.copy { color: var(--muted); }
.kicker { color: var(--brand); font-weight: 700; }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-head > div { max-width: 760px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(223,231,227,.82); }
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand-logo { width: 286px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; flex: 0 0 auto; }
.site-nav a { position: relative; text-decoration: none; color: #31403c; font-size: .94rem; font-weight: 600; padding: 29px 0 25px; }
.site-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--yellow); transition: right .25s var(--ease); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-nav a.active { color: var(--brand); }
.site-nav a.btn { min-height: 46px; padding: 0 23px; white-space: nowrap; border-radius: 11px; }
.site-nav a.btn-primary { color: var(--brand-deep); background: var(--yellow); box-shadow: 0 12px 28px rgba(92,71,13,.16); }
.site-nav a.btn-primary:hover { color: var(--brand-deep); background: #efbd38; box-shadow: 0 15px 34px rgba(92,71,13,.22); }
.site-nav a.btn-primary::after { display: none; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--border); background: white; border-radius: 12px; align-items: center; justify-content: center; }
.menu-button span, .menu-button::before, .menu-button::after { content: ''; display: block; width: 21px; height: 2px; background: var(--brand); transition: .25s; }
.menu-button::before { transform: translateY(-6px); }
.menu-button::after { transform: translateY(6px); }
.menu-button span { margin: -2px 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border-radius: 11px; border: 1px solid transparent; text-decoration: none; font-weight: 700; font-size: .92rem; transition: transform .22s var(--ease), background .22s, border-color .22s, box-shadow .22s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--brand); box-shadow: 0 12px 30px rgba(23,75,63,.16); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 16px 36px rgba(23,75,63,.22); }
.btn-secondary { color: var(--brand); background: white; border-color: var(--border); }
.btn-secondary:hover { border-color: var(--brand); }
.btn-yellow { color: var(--brand-deep); background: var(--yellow); }
.btn-yellow:hover { background: #f0bd34; }
.btn-arrow::after { content: '↗'; font-size: 1rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.hero { position: relative; overflow: hidden; padding: 72px 0 58px; }
.hero::before { content: ''; position: absolute; width: 540px; height: 540px; left: -270px; top: -280px; border-radius: 50%; background: var(--yellow-soft); opacity: .75; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero-copy { padding: 40px 0; }
.hero-copy .lead { max-width: 650px; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: 34px; box-shadow: var(--shadow); }
.hero-note { position: absolute; left: -30px; bottom: 26px; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-soft); font-size: .86rem; color: var(--muted); }
.hero-note strong { display: block; color: var(--brand-deep); }
.hero-note-mark { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--yellow-soft); color: var(--brand); font-weight: 800; }
.hero-page { padding: 66px 0 72px; background: linear-gradient(180deg,#fff 0%,#f8f7f2 100%); }
.hero-page .hero-grid { gap: 60px; }
.hero-page .hero-visual img { border-radius: 30px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .82rem; margin-bottom: 26px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb span { opacity: .65; }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 25px 22px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.icon-box { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--brand); background: var(--yellow-soft); }
.icon-box svg { width: 21px; height: 21px; }
.trust-item strong { display: block; color: var(--brand-deep); font-size: .94rem; }
.trust-item span { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }

.path-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.path-card { position: relative; min-height: 520px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: white; box-shadow: var(--shadow-soft); }
.path-card-visual { height: 235px; overflow: hidden; background: var(--surface-2); }
.path-card-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.path-card-body { padding: 34px; }
.path-card-index { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--yellow-soft); color: var(--brand); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.path-card h3 { margin: 20px 0 12px; font-family: Georgia, 'Times New Roman', serif; font-size: 2.15rem; font-weight: 500; letter-spacing: -.03em; }
.mini-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.mini-list span { padding: 7px 10px; border-radius: 999px; background: var(--surface); color: #52615d; font-size: .77rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 800; text-decoration: none; }
.text-link::after { content: '→'; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: white; }
.value-card .num { color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.value-card h3 { margin: 38px 0 10px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.55rem; font-weight: 500; }
.value-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: start; }
.sticky-copy { position: sticky; top: 130px; }
.process-list { border-top: 1px solid var(--border); }
.process-step { display: grid; grid-template-columns: 74px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.process-step .step-num { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); color: var(--brand); font-weight: 800; font-size: .78rem; }
.process-step h3 { margin-bottom: 7px; }
.process-step p { margin: 0; color: var(--muted); }

.quote-band { overflow: hidden; position: relative; border-radius: 32px; padding: 64px; background: var(--brand-deep); color: white; }
.quote-band::after { content: ''; position: absolute; right: -70px; top: -100px; width: 310px; height: 310px; border-radius: 50%; border: 70px solid rgba(243,198,79,.16); }
.quote-band h2 { position: relative; z-index: 1; max-width: 850px; color: white; }
.quote-band p { position: relative; z-index: 1; max-width: 700px; margin: 20px 0 0; color: #cddbd7; }
.quote-band .button-row { position: relative; z-index: 1; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 250px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: white; transition: transform .25s var(--ease), box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-card .icon-box { margin-bottom: 34px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.detail-band { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 28px; overflow: hidden; }
.detail-copy { padding: 54px; background: white; }
.detail-list { padding: 54px; background: var(--surface-2); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid rgba(23,75,63,.12); color: #3f4f4b; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 13px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: var(--brand-deep); font-size: .72rem; font-weight: 900; }

.reference-wrap { border: 1px solid var(--border); border-radius: 28px; overflow: hidden; background: white; }
.reference-intro { padding: 44px; display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; border-bottom: 1px solid var(--border); }
.reference-intro p { margin: 0; color: var(--muted); }
.reference-labels { display: grid; grid-template-columns: repeat(3,1fr); }
.reference-label { padding: 32px; border-right: 1px solid var(--border); }
.reference-label:last-child { border-right: 0; }
.label-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: var(--yellow-soft); color: var(--brand); font-size: .72rem; font-weight: 800; }
.reference-label h3 { margin: 25px 0 10px; }
.reference-label p { margin: 0; color: var(--muted); font-size: .88rem; }
.reference-note { padding: 20px 32px; background: var(--surface); color: var(--muted); font-size: .84rem; }

.future-teaser { padding: 30px 0 78px; }
.future-teaser-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.45fr .55fr; gap: 0; border: 1px solid var(--border); border-radius: 30px; background: linear-gradient(135deg, #fbfaf6 0%, #eef3f0 100%); box-shadow: var(--shadow-soft); }
.future-teaser-card::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: var(--yellow); }
.future-teaser-card::after { content: ''; position: absolute; width: 260px; height: 260px; right: -120px; top: -145px; border-radius: 50%; background: var(--yellow-soft); opacity: .78; }
.future-teaser-copy { position: relative; z-index: 1; padding: 52px 56px; }
.future-teaser-copy .h2 { max-width: 760px; font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
.future-teaser-copy > p { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; }
.teaser-highlight { position: relative; display: inline-block; }
.teaser-highlight::after { content: ''; position: absolute; left: -2%; right: -4%; bottom: .08em; height: .16em; border-radius: 999px; background: var(--yellow); opacity: .9; z-index: -1; transform: rotate(-1deg); }
.teaser-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.teaser-points span { padding: 8px 12px; border: 1px solid rgba(23,75,63,.11); border-radius: 999px; background: rgba(255,255,255,.68); color: #4d5c58; font-size: .78rem; font-weight: 700; }
.future-teaser-side { position: relative; z-index: 1; min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 46px 42px; border-left: 1px solid rgba(23,75,63,.10); background: rgba(255,255,255,.42); }
.future-status { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--yellow); color: var(--brand-deep); font-size: .73rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.future-teaser-side > strong { margin-top: 20px; font-family: Georgia, 'Times New Roman', serif; color: var(--brand-deep); font-size: 2rem; font-weight: 500; }
.future-teaser-side > p { margin: 10px 0 22px; color: var(--muted); font-size: .9rem; }

.about-hero { padding: 92px 0; background: linear-gradient(135deg,#f8f7f2 0%,#edf3ef 100%); }
.about-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 80px; align-items: end; }
.about-card { padding: 36px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,255,255,.78); }
.about-card p { margin: 0; color: var(--muted); }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.principle-card { padding: 34px; min-height: 250px; border-radius: 22px; background: var(--surface); }
.principle-card:nth-child(2) { background: var(--brand-deep); color: white; }
.principle-card:nth-child(2) h3 { color: white; }
.principle-card:nth-child(2) p { color: #cad8d4; }
.principle-card:nth-child(3) { background: var(--yellow-soft); }
.principle-card h3 { margin: 60px 0 12px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.7rem; font-weight: 500; }
.principle-card p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: start; }
.contact-stack { display: grid; gap: 15px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: white; text-decoration: none; }
.contact-card strong { display: block; color: var(--brand-deep); }
.contact-card span { color: var(--muted); font-size: .87rem; }
.form-card { padding: 40px; border: 1px solid var(--border); border-radius: 26px; background: white; box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 700; color: #364640; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--border); border-radius: 11px; padding: 13px 14px; color: var(--ink); background: #fbfcfb; outline: none; transition: border .2s, box-shadow .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(23,75,63,.09); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { margin-top: 14px; min-height: 22px; color: var(--brand); font-weight: 700; font-size: .84rem; }

.legal { max-width: 850px; }
.legal h2 { margin-top: 46px; color: var(--brand-deep); font-size: 1.55rem; }
.legal p, .legal li { color: #53625e; }

.site-footer { padding: 72px 0 28px; background: #0f302a; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 54px; }
.footer-brand-title { font-family: Georgia, 'Times New Roman', serif; font-size: 1.65rem; }
.footer-copy { max-width: 360px; margin: 16px 0 0; color: #b9cbc5; font-size: .9rem; }
.footer-col h3 { color: white; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 18px 0 0; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: #b9cbc5; text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { color: #b9cbc5; font-size: .88rem; }
.footer-contact a { color: white; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #92aaa2; font-size: .76rem; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; color: white; text-decoration: none; }

.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 800; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: white; background: #1f8f62; box-shadow: 0 15px 38px rgba(13,75,51,.28); text-decoration: none; }
.whatsapp-float svg { width: 25px; height: 25px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(243,198,79,.75); outline-offset: 3px; }


@media (max-width: 1120px) and (min-width: 981px) {
  .brand-logo { width: 250px; }
  .site-nav { gap: 19px; }
  .site-nav a { font-size: .9rem; }
  .site-nav a.btn { padding-inline: 18px; }
}

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 90px 0 auto 0; display: grid; gap: 0; padding: 18px 20px 26px; background: white; border-bottom: 1px solid var(--border); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .3s var(--ease); }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; box-shadow: var(--shadow-soft); }
  .site-nav a { padding: 15px 8px; border-bottom: 1px solid var(--border); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { margin-top: 14px; border-bottom: 0; width: 100%; }
  .menu-button { display: flex; flex-direction: column; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .future-teaser-card { grid-template-columns: 1fr; }
  .future-teaser-side { border-left: 0; border-top: 1px solid rgba(23,75,63,.10); }
  .hero { padding-top: 45px; }
  .hero-copy { padding: 20px 0 0; }
  .hero-visual { max-width: 760px; }
  .hero-note { left: 18px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 46px; }
  .sticky-copy { position: static; }
  .feature-grid, .principle-grid { grid-template-columns: repeat(2,1fr); }
  .reference-intro { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .nav-wrap { min-height: 72px; }
  .site-nav { inset-block-start: 72px; }
  .brand-logo { width: 205px; }
  .display { font-size: clamp(3rem, 15vw, 4.5rem); }
  .h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-grid { gap: 30px; }
  .hero-note { position: static; margin: -8px 14px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .path-grid, .feature-grid, .principle-grid, .detail-band, .form-grid { grid-template-columns: 1fr; }
  .path-card { min-height: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .detail-copy, .detail-list, .quote-band, .form-card { padding: 34px 26px; }
  .future-teaser { padding: 12px 0 58px; }
  .future-teaser-copy, .future-teaser-side { padding: 34px 26px; }
  .future-teaser-copy .h2 { font-size: clamp(2.15rem, 10vw, 3.15rem); }
  .reference-labels { grid-template-columns: 1fr; }
  .reference-label { border-right: 0; border-bottom: 1px solid var(--border); }
  .reference-label:last-child { border-bottom: 0; }
  .reference-intro { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

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