@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brand-blue: #2957a4;
  --brand-blue-deep: #173d7d;
  --brand-cyan: #00afef;
  --brand-yellow: #fff212;
  --brand-yellow-soft: #fffde8;
  --brand-white: #ffffff;
  --surface-soft: #f5f8ff;
  --text-primary: #173d7d;
  --text-body: #344b72;
  --text-muted: #5b6d8c;
  --text-disabled: #667085;
  --surface-disabled: #d9deea;
  --status-error: #8e352d;
  --status-error-surface: #fff5f2;
  --border-brand: rgba(41, 87, 164, .16);
  --shadow-card: 0 22px 60px rgba(23, 61, 125, .13);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --space-section: 104px;
  --container: min(1180px, calc(100% - 40px));
  --font-primary: "Montserrat", "Segoe UI", Arial, sans-serif;

  /* Aliases keep the existing component architecture tied to one design system. */
  --ink: var(--text-primary);
  --navy: var(--brand-blue);
  --blue: var(--brand-blue);
  --teal: var(--brand-cyan);
  --clay: var(--brand-blue);
  --ivory: var(--brand-yellow-soft);
  --paper: var(--surface-soft);
  --white: var(--brand-white);
  --muted: var(--text-muted);
  --line: var(--border-brand);
  --shadow: var(--shadow-card);
  --font-sans: var(--font-primary);
  --font-display: var(--font-primary);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--brand-white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--brand-blue-deep); background: rgba(255, 242, 18, .72); }
:where(a, button, input, select, textarea):focus-visible { outline: 3px solid var(--brand-blue); outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: var(--space-section) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 10px 14px; border: 2px solid var(--brand-blue); border-radius: 10px; background: var(--white);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .25s, box-shadow .25s, backdrop-filter .25s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(41, 87, 164, .14);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 10px; z-index: 2; }
.brand-logo { width: 126px; height: 61px; object-fit: contain; object-position: left center; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy small { max-width: 130px; color: var(--brand-blue); font-size: .66rem; font-weight: 700; line-height: 1.25; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: var(--brand-blue); font-size: .88rem; font-weight: 700; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; border-radius: 99px; background: var(--brand-cyan); transition: right .2s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--brand-blue-deep); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 3px; border-radius: 9px; background: var(--navy); margin: 5px 0; transition: .2s; }

.hero {
  position: relative; overflow: hidden; min-height: 660px;
  padding: 125px 0 90px;
  background: var(--brand-yellow);
}
.hero-pattern {
  position: absolute; right: -85px; top: 0; width: 480px; height: 480px;
  opacity: .84;
  background:
    linear-gradient(90deg, transparent 50%, rgba(255,255,255,.96) 50%) 0 0 / 82px 82px,
    linear-gradient(90deg, rgba(0,175,239,.88) 50%, var(--brand-blue) 50%) 41px 41px / 82px 82px;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-brand-logo { display: block; width: 170px; height: auto; margin-bottom: 12px; object-fit: contain; object-position: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--brand-blue);
  font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow::before { content: ""; width: 28px; height: 5px; border-radius: 99px; background: var(--brand-cyan); }
.eyebrow-dark { color: var(--blue); }
.hero h1, .section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.035em; line-height: 1.04;
}
.hero h1 { max-width: 700px; margin: 18px 0 22px; font-size: clamp(3rem, 5.7vw, 5.9rem); font-weight: 500; color: var(--brand-blue); }
.hero h1 strong { font-weight: 850; }
.hero-office {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 12px;
  color: var(--brand-white);
  background: var(--brand-blue);
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .015em;
}
.hero-office strong { color: var(--brand-yellow); font-weight: 820; }
.hero-lead { max-width: 650px; margin: 0; color: var(--brand-blue-deep); font-size: clamp(1.02rem, 1.7vw, 1.23rem); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 2px solid transparent; border-radius: 16px; font-weight: 750; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: currentColor; }
.button-primary { background: var(--brand-blue); color: var(--white); box-shadow: 0 14px 30px rgba(41, 87, 164, .22); }
.button-primary:hover { background: var(--brand-blue-deep); }
.button-secondary { border-color: var(--brand-blue); color: var(--brand-blue); background: var(--brand-yellow); }
.button-secondary:hover { box-shadow: 0 12px 24px rgba(41, 87, 164, .14); background: var(--brand-white); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 44px 0 0; padding: 0; list-style: none; }
.hero-proof li { position: relative; padding: 16px 12px 0 0; border-top: 3px solid var(--brand-blue); }
.hero-proof li::before { content: ""; position: absolute; top: -3px; left: 0; width: 32px; height: 3px; background: var(--brand-cyan); }
.hero-proof strong { display: block; color: var(--brand-blue); font-family: var(--font-display); font-size: 1.65rem; font-weight: 850; }
.hero-proof span { display: block; margin-top: 4px; color: var(--brand-blue-deep); font-size: .76rem; font-weight: 600; line-height: 1.35; }
.hero-visual { position: relative; width: 100%; max-width: 380px; margin-left: auto; }
.portrait-frame {
  position: relative; overflow: hidden; border-radius: 36px 36px 104px 36px;
  background: var(--white); box-shadow: 16px 16px 0 var(--brand-cyan); border: 8px solid var(--brand-white);
}
.portrait-frame::after {
  content: ""; position: absolute; inset: auto 0 0; height: 36%;
  background: linear-gradient(transparent, rgba(23,61,125,.88)); pointer-events: none;
}
.portrait-frame img { width: 100%; height: 380px; object-fit: cover; object-position: center 22%; }
.portrait-caption { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1; color: var(--white); }
.portrait-caption span { display: block; opacity: .78; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.portrait-caption strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 1.5rem; }
.hope-card {
  position: absolute; left: -48px; bottom: 58px; z-index: 2; width: 210px;
  padding: 18px; border-radius: 20px; background: var(--brand-white); border: 2px solid var(--brand-blue);
  box-shadow: 0 18px 45px rgba(23,61,125,.16);
}
.hope-card img { width: 42px; height: 38px; object-fit: contain; object-position: left center; }
.hope-card p { margin: 7px 0 0; color: var(--navy); font-weight: 700; line-height: 1.35; font-size: .9rem; }

.campaign-statement { color: var(--brand-white); background: var(--brand-blue); }
.campaign-statement-inner { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; min-height: 170px; padding-block: 38px; }
.campaign-statement-inner::after { content: "+"; position: absolute; right: 0; color: var(--brand-yellow); font-size: 7rem; font-weight: 800; line-height: 1; opacity: .2; }
.campaign-statement h2 { position: relative; z-index: 1; margin: 0; font-size: clamp(1.7rem, 3.2vw, 3rem); line-height: 1.16; }
.campaign-statement p { position: relative; z-index: 1; margin: 0; padding-left: 22px; border-left: 5px solid var(--brand-yellow); color: var(--brand-white); font-size: 1.03rem; font-weight: 650; }

.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 { margin: 18px 0 20px; font-size: clamp(2.4rem, 4.5vw, 4.3rem); color: var(--navy); }
.section-heading p { max-width: 660px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-heading.centered { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.prose { color: var(--text-body); font-size: 1.06rem; }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--navy); }

.credentials { padding-top: 40px; }
.credential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.credential-card {
  position: relative; min-height: 285px; padding: 34px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line); border-top: 8px solid var(--brand-yellow); box-shadow: 0 18px 50px rgba(23,61,125,.07);
  overflow: hidden;
}
.credential-card:nth-child(2) { border-top-color: var(--brand-cyan); }
.credential-card:nth-child(3) { border-top-color: var(--brand-blue); }
.credential-card::after { content: "+"; position: absolute; right: 22px; bottom: -38px; color: rgba(0,175,239,.10); font-size: 9rem; font-weight: 850; line-height: 1; }
.card-number { color: var(--brand-blue); font-weight: 850; letter-spacing: .12em; }
.credential-card h3 { margin: 56px 0 12px; color: var(--navy); font-family: var(--font-display); font-size: 1.6rem; }
.credential-card p { margin: 0; color: var(--muted); }

.photo-story { background: var(--brand-yellow-soft); }
.photo-story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; }
.story-photo { margin: 0; }
.story-photo-main { position: relative; width: min(560px, 100%); margin-inline: auto; }
.story-photo-main img {
  width: 100%; height: 360px; object-fit: cover; object-position: center 54%;
  border-radius: 38px 38px 120px 38px; box-shadow: var(--shadow);
}
.story-photo-main figcaption {
  position: absolute; left: 22px; bottom: 22px; max-width: 280px; padding: 14px 16px;
  border-radius: 14px; color: var(--white); background: rgba(41,87,164,.9); backdrop-filter: blur(10px); font-size: .88rem;
}
.story-copy { padding-right: 30px; }
.story-copy p { color: var(--muted); font-size: 1.08rem; }
.story-copy blockquote {
  margin: 34px 0; padding: 0 0 0 24px; border-left: 6px solid var(--brand-yellow);
  color: var(--navy); font-family: var(--font-display); font-size: 1.55rem; line-height: 1.3;
}
.story-photo-small { max-width: 250px; margin-left: auto; }
.story-photo-small img {
  width: 100%; height: 160px; object-fit: cover; object-position: center 38%;
  border-radius: 22px; box-shadow: 0 16px 40px rgba(23,61,125,.16);
}

.public-service { position: relative; overflow: hidden; color: var(--white); background: var(--brand-blue); }
.public-service::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 360px; height: 360px; opacity: .15; background: repeating-linear-gradient(90deg, var(--brand-cyan) 0 56px, transparent 56px 112px), repeating-linear-gradient(0deg, var(--brand-yellow) 0 56px, transparent 56px 112px); transform: rotate(8deg); }
.public-service .container { position: relative; z-index: 1; }
.public-service .section-heading h2 { color: var(--white); }
.public-service .section-heading p { color: rgba(255,255,255,.82); }
.timeline { margin: 60px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.timeline-item { display: grid; grid-template-columns: 180px 1fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline-year { position: relative; color: var(--brand-yellow); font-family: var(--font-display); font-size: 2.3rem; font-weight: 850; }
.timeline-year::before { content: ""; display: inline-block; width: 14px; height: 14px; margin-right: 16px; border: 4px solid var(--brand-blue); border-radius: 50%; outline: 2px solid var(--brand-yellow); background: var(--brand-yellow); }
.timeline-item h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.45rem; }
.timeline-item p { max-width: 760px; margin: 0; color: rgba(255,255,255,.82); }

.resilience { position: relative; overflow: hidden; background: var(--surface-soft); }
.resilience-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,175,239,.10), transparent 44%), radial-gradient(circle at 90% 20%, rgba(255,242,18,.42), transparent 26%); }
.resilience-grid { position: relative; display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.resilience-copy p { color: var(--text-body); font-size: 1.04rem; }
.resilience-note { display: flex; gap: 14px; margin-top: 34px; padding: 20px; border: 1px solid var(--brand-blue); border-left: 8px solid var(--brand-yellow); border-radius: 18px; background: var(--brand-white); }
.resilience-note span { color: var(--brand-cyan); font-size: 1.4rem; font-weight: 850; }
.resilience-note strong { color: var(--navy); line-height: 1.35; }
.resilience-gallery { min-height: 690px; position: relative; }
.gallery-card { position: absolute; margin: 0; overflow: hidden; border-radius: 26px; border: 6px solid rgba(255,255,255,.96); box-shadow: 0 24px 60px rgba(23,61,125,.16); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-a { left: 0; top: 25px; width: 48%; height: 500px; transform: rotate(-2deg); }
.gallery-card-b { right: 0; top: 0; width: 45%; height: 360px; transform: rotate(2deg); }
.gallery-card-c { right: 4%; bottom: 5px; width: 46%; height: 300px; transform: rotate(-1deg); }

.values { background: var(--brand-white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 12px 34px rgba(23,61,125,.06); }
.value-card:nth-child(2), .value-card:nth-child(4) { transform: translateY(26px); }
.value-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--brand-blue); border-radius: 13px; background: var(--brand-yellow); color: var(--brand-blue); font-size: .8rem; font-weight: 850; }
.value-card h3 { margin: 34px 0 8px; color: var(--navy); font-family: var(--font-display); font-size: 1.45rem; }
.value-card p { margin: 0; color: var(--muted); }

.family { padding-top: 65px; }
.family-card { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 48px; border: 1px solid var(--brand-blue); border-radius: var(--radius-xl); background: var(--brand-yellow-soft); }
.family-card h2 { margin-bottom: 0; font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
.family-card p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.final-cta { padding-top: 60px; }
.final-cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .85fr; gap: 70px; padding: 60px; border-radius: 40px; color: var(--white); background: var(--brand-blue); box-shadow: var(--shadow); }
.final-cta-card::after { content: ""; position: absolute; right: -90px; top: -100px; width: 300px; height: 300px; border-radius: 50%; background: var(--brand-cyan); opacity: .2; }
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta-symbol { width: 68px; height: 56px; margin-bottom: 20px; object-fit: contain; object-position: left; }
.final-cta h2 { color: var(--white); font-size: clamp(2.4rem, 4.3vw, 4.2rem); }
.final-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.cta-list { display: grid; gap: 12px; align-content: center; }
.cta-link { display: grid; grid-template-columns: 105px 1fr 24px; align-items: center; gap: 12px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 16px; background: rgba(255,255,255,.11); transition: transform .2s, background .2s; }
.cta-link:hover { transform: translateX(4px); background: rgba(255,255,255,.16); }
.cta-link span { color: var(--brand-yellow); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.cta-link strong { font-size: .98rem; }
.cta-link b { font-size: 1.2rem; font-weight: 400; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: var(--brand-blue); color: var(--white); box-shadow: 0 14px 34px rgba(23,61,125,.25); transition: transform .2s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 30px; fill: currentColor; }
.site-footer { padding: 34px 0; background: var(--brand-blue); color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; font-size: .82rem; }
.footer-legal { text-align: right; }
.footer-legal p { margin: 0; }
.footer-legal a { color: var(--white); font-weight: 600; }
.footer-legal a:hover, .footer-legal a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 92px; height: 48px; object-fit: contain; object-position: left; }
.footer-brand small { max-width: 155px; color: var(--brand-white); font-weight: 650; line-height: 1.35; opacity: .84; }
.campaign-identification { display: grid; gap: 2px; color: var(--brand-white); line-height: 1.4; }
.campaign-identification-name { font-size: .9rem; font-weight: 760; }
.campaign-identification-cnpj { color: rgba(255,255,255,.92); font-size: .875rem; font-weight: 650; letter-spacing: .01em; }
.footer-campaign-copy { display: grid; gap: 4px; }
.footer-copyright { color: rgba(255,255,255,.72); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0; display: grid; place-content: center; gap: 22px; text-align: center;
    background: rgba(255,255,255,.98); transform: translateY(-105%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1.3rem; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .two-column, .photo-story-grid, .resilience-grid, .family-card, .final-cta-card { grid-template-columns: 1fr; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 42px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; width: min(360px, 100%); margin: 0 auto; }
  .portrait-frame { border-radius: 28px 28px 72px 28px; }
  .portrait-frame img { height: 340px; }
  .hope-card { left: 18px; bottom: 38px; }
  .campaign-statement-inner { grid-template-columns: 1fr; gap: 18px; }
  .campaign-statement p { max-width: 600px; }
  .two-column, .photo-story-grid, .resilience-grid { gap: 52px; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: auto; }
  .credential-card h3 { margin-top: 30px; }
  .story-copy { padding-right: 0; }
  .story-photo-main { max-width: 560px; }
  .story-photo-main img { height: 340px; }
  .story-photo-small { max-width: 300px; margin-inline: auto; }
  .story-photo-small img { height: 190px; }
  .resilience-gallery { min-height: 650px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .family-card, .final-cta-card { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-legal { text-align: center; }
  .campaign-identification, .footer-campaign-copy { justify-items: center; text-align: center; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 76px; }
  .brand-copy small { display: none; }
  .brand-logo { width: 100px; height: 54px; }
  .hero { padding: 100px 0 72px; min-height: auto; }
  .hero-grid { gap: 32px; }
  .hero-visual { width: min(310px, 100%); }
  .portrait-frame img { height: 270px; }
  .hero h1 { font-size: clamp(2.75rem, 13.4vw, 4.15rem); }
  .hero-brand-logo { width: 135px; }
  .hero-office { font-size: .8rem; }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 18px; }
  .hero-proof li { display: grid; grid-template-columns: 84px 1fr; align-items: center; }
  .hope-card { position: relative; left: auto; bottom: auto; width: auto; margin: -26px 18px 0; }
  .campaign-statement-inner { min-height: auto; padding-block: 34px; }
  .campaign-statement-inner::after { font-size: 5rem; }
  .campaign-statement p { padding-left: 16px; }
  .portrait-caption { left: 20px; right: 20px; bottom: 20px; }
  .section-heading h2, .story-copy h2, .resilience-copy h2, .family-card h2, .final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .credential-card { padding: 28px; }
  .story-photo-main img { height: 240px; border-radius: 28px 28px 70px 28px; }
  .story-photo-small { width: 100%; max-width: 340px; }
  .story-photo-small img { height: 210px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-year { font-size: 1.8rem; }
  .resilience-gallery { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-card { position: relative; inset: auto; width: auto; height: auto; transform: none; border-width: 4px; }
  .gallery-card img { aspect-ratio: 4/5; }
  .gallery-card-a { grid-row: span 2; }
  .gallery-card-c img { aspect-ratio: 1 / 1; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card:nth-child(2), .value-card:nth-child(4) { transform: none; }
  .family-card, .final-cta-card { padding: 30px; border-radius: 28px; }
  .cta-link { grid-template-columns: 86px 1fr 20px; padding: 15px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
