:root {
  --navy: #082d63;
  --navy-deep: #041d42;
  --blue: #0a68a7;
  --green: #2f8d25;
  --green-deep: #1f6f1c;
  --purple: #6f3a8f;
  --ink: #142033;
  --muted: #5d6979;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --line: #dce5ef;
  --shadow: 0 22px 60px rgba(8,45,99,.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 100px 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: #fff; color: var(--navy); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,45,99,.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 290px; }
.brand-mark { position: relative; width: 63px; height: 58px; flex: 0 0 auto; }
.profile { position: absolute; top: 9px; width: 22px; height: 38px; border-radius: 55% 35% 45% 50%; transform: skewY(-7deg); }
.profile-back { left: 4px; background: #62656b; }
.profile-front { left: 17px; background: var(--navy); }
.psi { position: absolute; right: 0; top: -5px; font-family: Georgia, serif; font-weight: 700; font-size: 57px; line-height: 1; color: var(--green); }
.brand-copy { display: grid; line-height: 1.05; text-transform: uppercase; }
.brand-copy strong { color: var(--navy); font-size: .86rem; letter-spacing: .08em; }
.brand-copy span { color: var(--navy-deep); font-size: 1.03rem; font-weight: 800; letter-spacing: .02em; }
.brand-copy small { color: var(--green-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: .92rem; font-weight: 700; color: #34445b; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(8,45,99,.18); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s ease; }

.hero { position: relative; min-height: 720px; display: grid; align-items: center; isolation: isolate; overflow: hidden; background: radial-gradient(circle at 84% 20%, rgba(47,141,37,.12), transparent 28%), linear-gradient(135deg, #fff 15%, #f0f7fb 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: linear-gradient(rgba(8,45,99,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(8,45,99,.035) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.hero-wave { position: absolute; height: 130px; width: 120%; left: -10%; border-radius: 50%; z-index: -2; transform: rotate(-5deg); }
.wave-one { top: 80px; border-top: 20px solid var(--navy); }
.wave-two { top: 110px; border-top: 14px solid var(--green); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--green-deep); text-transform: uppercase; font-size: .78rem; font-weight: 900; letter-spacing: .18em; }
.eyebrow.light { color: #bfe9b9; }
h1, h2, h3, h4 { line-height: 1.14; margin-top: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.25rem); letter-spacing: -.055em; color: var(--navy-deep); margin-bottom: 24px; max-width: 800px; }
h2 { font-size: clamp(2.15rem, 4.2vw, 3.75rem); letter-spacing: -.04em; color: var(--navy-deep); margin-bottom: 18px; }
.hero-lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #42526a; max-width: 670px; }
.hero-actions, .location-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 15px 34px rgba(8,45,99,.22); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { border: 1px solid var(--navy); color: var(--navy); background: rgba(255,255,255,.7); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.hero-contact { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 38px; color: #4b5b6f; font-size: .92rem; }
.hero-contact span { padding-left: 14px; border-left: 3px solid var(--green); }
.hero-contact b { color: var(--navy); }
.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.visual-card { position: relative; width: min(380px, 85%); aspect-ratio: 4/5; background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(240,247,251,.88)); border: 1px solid rgba(8,45,99,.1); border-radius: 48% 52% 34% 66% / 36% 38% 62% 64%; box-shadow: 0 38px 90px rgba(8,45,99,.2); display: grid; align-content: center; justify-items: center; text-align: center; padding: 54px; overflow: hidden; }
.visual-card::before { content: ""; position: absolute; inset: auto -20% -22% -20%; height: 48%; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); transform: rotate(-8deg); }
.visual-card p { position: relative; z-index: 2; max-width: 250px; font-size: 1.14rem; font-weight: 700; color: #35465e; }
.visual-icon { position: relative; z-index: 2; font: 900 7rem/1 Georgia, serif; color: var(--green); text-shadow: 0 12px 28px rgba(47,141,37,.18); }
.visual-orbit { position: absolute; border: 2px solid rgba(8,45,99,.11); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; animation: spin 18s linear infinite; }
.orbit-two { width: 390px; height: 390px; border-color: rgba(47,141,37,.18); animation: spin 14s linear infinite reverse; }
.orbit-one::after, .orbit-two::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--green); left: 50%; top: -7px; }
.orbit-two::after { background: var(--navy); }
.floating-note { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 15px 34px rgba(8,45,99,.13); padding: 10px 16px; font-size: .82rem; font-weight: 800; color: var(--navy); }
.note-a { left: 0; top: 24%; }
.note-b { right: -2%; top: 45%; }
.note-c { left: 7%; bottom: 14%; }
@keyframes spin { to { transform: rotate(360deg); } }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.06rem; }
.profile-section { background: #fff; }
.timeline-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.info-card { grid-column: span 2; position: relative; min-height: 230px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, #fff, #f8fbfd); box-shadow: 0 16px 40px rgba(8,45,99,.07); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.info-card:nth-child(4) { grid-column: 2 / span 2; }
.info-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(47,141,37,.35); }
.card-number { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--navy); color: #fff; font-weight: 900; font-size: .82rem; margin-bottom: 22px; }
.info-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.info-card p { margin: 0; color: var(--muted); }

.analysis-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--navy-deep), var(--navy) 55%, #0a4b7e); }
.analysis-section::before { content: ""; position: absolute; width: 650px; height: 650px; border-radius: 50%; right: -200px; top: -320px; border: 70px solid rgba(47,141,37,.18); }
.analysis-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.analysis-copy h2 { color: #fff; }
.analysis-quote { font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 700; line-height: 1.45; }
.analysis-copy > p:not(.eyebrow):not(.analysis-quote) { color: #d6e1ee; }
.analysis-graphic { position: relative; min-height: 420px; display: grid; place-items: center; }
.mind-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.24); }
.ring-1 { width: 340px; height: 340px; }
.ring-2 { width: 250px; height: 250px; border-color: rgba(123,213,113,.55); }
.mind-core { width: 160px; height: 190px; display: grid; place-items: center; border-radius: 50% 48% 46% 52%; background: #fff; color: var(--green); font: 900 6rem/1 Georgia, serif; box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.thought-dot { position: absolute; border-radius: 50%; background: #fff; }
.dot-1 { width: 20px; height: 20px; left: 11%; top: 23%; }
.dot-2 { width: 12px; height: 12px; right: 18%; top: 17%; background: #83d078; }
.dot-3 { width: 28px; height: 28px; right: 9%; bottom: 22%; background: #83d078; }

.process-section { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { position: relative; min-height: 175px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(8,45,99,.06); overflow: hidden; transition: .25s ease; }
.process-card::after { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 50%; right: -50px; bottom: -55px; background: rgba(47,141,37,.12); }
.process-card:hover { transform: translateY(-6px); border-color: rgba(8,45,99,.25); box-shadow: 0 22px 45px rgba(8,45,99,.12); }
.process-card:last-child { grid-column: 2 / span 2; }
.process-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #e8f3e7; color: var(--green-deep); font-weight: 900; font-size: .78rem; }
.process-card h3 { margin: 30px 0 0; font-size: 1.12rem; color: var(--navy); }

.audience-section { background: #fff; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card { --accent: var(--green); position: relative; padding: 32px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(8,45,99,.08); overflow: hidden; }
.audience-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 7px; background: var(--accent); }
.audience-card.adult { --accent: var(--blue); }
.audience-card.senior { --accent: var(--purple); }
.audience-top { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.audience-symbol { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-weight: 900; border: 2px solid color-mix(in srgb, var(--accent) 40%, white); }
.audience-top h3 { margin-bottom: 4px; color: var(--accent); }
.audience-top p { margin: 0; font-weight: 700; font-size: .9rem; }
.audience-card ul { margin: 0; padding: 0; list-style: none; }
.audience-card li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid #eef2f6; }
.audience-card li:last-child { border-bottom: 0; }
.audience-card li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.support-message { width: fit-content; margin: 46px auto 0; padding: 14px 32px; border-radius: 999px; background: linear-gradient(90deg, var(--navy), var(--blue)); color: #fff; font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 800; text-align: center; box-shadow: 0 18px 40px rgba(8,45,99,.18); }

.legal-section { background: linear-gradient(180deg, #f7f9fc, #fff); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.legal-panel { --legal: var(--purple); padding: 34px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.legal-panel.civil { --legal: var(--green-deep); }
.legal-header { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.legal-badge { flex: 0 0 auto; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--legal); color: var(--legal); font-size: 1.8rem; }
.legal-header h3 { color: var(--legal); font-size: 1.55rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em; }
.legal-header p, .legal-list p { color: var(--muted); margin: 0; }
.legal-list > div { position: relative; padding: 24px 0 24px 24px; border-bottom: 1px solid #edf1f5; }
.legal-list > div::before { content: ""; position: absolute; left: 0; top: 31px; width: 10px; height: 10px; border-radius: 50%; background: var(--legal); }
.legal-list h4 { margin-bottom: 8px; color: #202a3a; font-size: 1.03rem; }
.legal-footer { margin: 26px 0 0; padding: 18px; border-radius: 14px; background: var(--legal); color: #fff; font-weight: 800; }
.principles { margin-top: 36px; text-align: center; padding: 34px; border-radius: 24px; background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: #fff; box-shadow: var(--shadow); }
.principles h3 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 24px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principles-grid span { position: relative; padding: 14px 16px 14px 42px; border-radius: 12px; background: rgba(255,255,255,.1); text-align: left; font-weight: 700; }
.principles-grid span::before { content: "✓"; position: absolute; left: 16px; color: #8dde83; font-weight: 900; }

.location-section { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 54px; align-items: stretch; }
.location-card { padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); background: linear-gradient(145deg, #fff, #f7fbfd); }
.location-card address { font-style: normal; color: #45566d; font-size: 1.18rem; max-width: 620px; }
.map-art { position: relative; min-height: 360px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #e7eff6, #f8fbfd); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; }
.map-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(45deg, transparent 46%, rgba(8,45,99,.06) 47%, rgba(8,45,99,.06) 53%, transparent 54%), linear-gradient(-45deg, transparent 46%, rgba(47,141,37,.06) 47%, rgba(47,141,37,.06) 53%, transparent 54%); background-size: 70px 70px; }
.map-line { position: absolute; height: 10px; border-radius: 999px; background: rgba(8,45,99,.13); transform: rotate(-18deg); }
.line-a { width: 110%; left: -10%; top: 27%; }
.line-b { width: 90%; left: 3%; bottom: 22%; transform: rotate(21deg); background: rgba(47,141,37,.14); }
.line-c { width: 80%; left: 20%; top: 50%; transform: rotate(-50deg); }
.map-pin { position: relative; z-index: 2; width: 90px; height: 90px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--navy); box-shadow: 0 18px 40px rgba(8,45,99,.28); display: grid; place-items: center; }
.map-pin span { width: 30px; height: 30px; border-radius: 50%; background: #fff; }
.map-art p { position: absolute; z-index: 3; bottom: 24px; margin: 0; padding: 8px 16px; background: rgba(255,255,255,.9); border-radius: 999px; color: var(--navy); font-weight: 900; }

.contact-section { padding-top: 20px; background: #fff; }
.contact-box { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; padding: 54px; border-radius: 34px; background: linear-gradient(120deg, var(--navy-deep), var(--navy) 58%, #0b5e88); color: #fff; box-shadow: 0 30px 70px rgba(8,45,99,.22); }
.contact-box h2 { color: #fff; margin-bottom: 0; }
.contact-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.contact-links a, .contact-links > div { min-width: 0; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }
.contact-links span, .contact-links strong { display: block; overflow-wrap: anywhere; }
.contact-links span { color: #bcd2e7; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-links strong { margin-top: 5px; }

.site-footer { position: relative; margin-top: 90px; padding: 80px 0 42px; background: var(--navy-deep); color: #d8e5f1; overflow: hidden; }
.footer-wave { position: absolute; left: -10%; top: -70px; width: 120%; height: 120px; border-radius: 50%; border-top: 24px solid var(--green); transform: rotate(2deg); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 36px; align-items: start; }
.footer-grid strong { color: #fff; font-size: 1.15rem; }
.footer-grid p { margin: 8px 0 0; }
.footer-grid > div:last-child { display: grid; gap: 5px; }
.footer-grid a { color: #fff; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.24); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 34px; fill: #fff; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal-in .55s ease both; }
  @keyframes reveal-in {
    from { opacity: .01; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 1080px) {
  .main-nav { gap: 14px; font-size: .84rem; }
  .nav-cta { padding: 10px 14px; }
  .hero-grid { gap: 40px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card:last-child { grid-column: auto; }
  .contact-box { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .section-pad { padding: 78px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 82px 0 0; background: rgba(255,255,255,.98); padding: 38px 24px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; transform: translateX(100%); transition: transform .3s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 14px 10px; font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-top: 18px; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero-grid, .analysis-grid, .location-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-contact { justify-content: center; }
  .hero-visual { min-height: 460px; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card, .info-card:nth-child(4) { grid-column: auto; }
  .info-card:last-child { grid-column: 1 / -1; }
  .analysis-grid { gap: 34px; }
  .analysis-graphic { order: 2; min-height: 330px; }
  .audience-grid, .principles-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section-pad { padding: 64px 0; }
  .brand { min-width: 0; }
  .brand-mark { width: 52px; height: 49px; }
  .profile { width: 18px; height: 33px; }
  .psi { font-size: 48px; }
  .brand-copy strong { font-size: .68rem; }
  .brand-copy span { font-size: .8rem; }
  .brand-copy small { font-size: .59rem; }
  h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { padding-top: 90px; }
  .hero-wave { opacity: .65; }
  .hero-actions .btn, .location-actions .btn { width: 100%; }
  .hero-contact { display: grid; }
  .hero-visual { min-height: 390px; }
  .visual-card { width: 78%; padding: 34px; }
  .visual-icon { font-size: 5.5rem; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 280px; height: 280px; }
  .floating-note { font-size: .72rem; padding: 8px 11px; }
  .note-a { left: -1%; }
  .note-b { right: -1%; }
  .timeline-grid, .process-grid { grid-template-columns: 1fr; }
  .info-card:last-child { grid-column: auto; }
  .analysis-graphic { min-height: 300px; }
  .ring-1 { width: 270px; height: 270px; }
  .ring-2 { width: 205px; height: 205px; }
  .mind-core { width: 135px; height: 165px; font-size: 5rem; }
  .audience-card, .legal-panel, .location-card { padding: 26px; }
  .legal-header { display: grid; }
  .principles { padding: 28px 18px; }
  .contact-box { padding: 34px 22px; }
  .contact-links { grid-template-columns: 1fr; }
  .map-art { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .whatsapp-float { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}

@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; }
}
