:root {
  --red: #c1121f;
  --red-dark: #8f0c16;
  --blue: #123f70;
  --ink: #111827;
  --muted: #5f6876;
  --soft: #f4f6f8;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, .brand, .button, .main-nav {
  font-family: "Montserrat", Arial, sans-serif;
}
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1.1rem; }
p { margin-top: 0; }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: #111827; color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(17,24,39,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; color: var(--blue); }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: .92rem; }
.main-nav a { text-decoration: none; }
.main-nav a:hover { color: var(--red); }
.nav-whatsapp { padding: 10px 16px; border-radius: 999px; background: var(--red); color: var(--white) !important; }
.menu-button { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,10,20,.94) 0%, rgba(3,10,20,.74) 48%, rgba(3,10,20,.20) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 90px; }
.hero-logo { width: 135px; height: 135px; object-fit: cover; border-radius: 50%; margin-bottom: 20px; box-shadow: var(--shadow); }
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .82rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); max-width: 850px; margin-bottom: 24px; }
.hero-text { max-width: 670px; font-size: 1.15rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { border: 2px solid var(--white); color: var(--white); background: transparent; }

.emergency-strip { background: var(--red); color: var(--white); }
.emergency-content { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.emergency-content a { font-family: "Montserrat"; font-size: 1.35rem; font-weight: 800; text-decoration: none; }

.two-column, .form-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
.feature-card, .volunteer-form {
  background: var(--white);
  padding: 34px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}
.feature-card ul { padding-left: 20px; margin-bottom: 0; }

.section-heading { max-width: 750px; margin-bottom: 36px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { overflow: hidden; border-radius: 14px; background: var(--white); box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.news-placeholder {
  min-height: 190px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.95);
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-family: "Montserrat";
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.news-body { padding: 24px; }
.news-tag { color: var(--red); font-size: .78rem; text-transform: uppercase; font-weight: 800; letter-spacing: .1em; }
.news-body h3 { margin: 10px 0; font-size: 1.25rem; }

.form-layout { grid-template-columns: .85fr 1.15fr; }
.contact-box { display: grid; gap: 5px; margin-top: 30px; padding: 22px; border-left: 4px solid var(--red); background: var(--soft); }
.contact-box strong { margin-top: 8px; }
.contact-box a { overflow-wrap: anywhere; color: var(--blue); }
.volunteer-form { display: grid; gap: 18px; }
.volunteer-form label { display: grid; gap: 7px; font-weight: 700; }
.volunteer-form input, .volunteer-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}
.volunteer-form input:focus, .volunteer-form textarea:focus { outline: 3px solid rgba(193,18,31,.15); border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 400 !important; }
.checkbox input { width: auto; margin-top: 6px; }
.hidden { display: none; }

.section-kicker-light { color: #ff8088; }
.map-intro { color: #cbd5e1; }
.map-wrap { overflow: hidden; border-radius: 16px; border: 4px solid rgba(255,255,255,.12); }
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.site-footer { background: #070b12; color: #dbe2ea; padding: 48px 0 22px; }
.footer-content { display: flex; justify-content: space-between; gap: 30px; }
.footer-content > div:last-child { display: grid; justify-items: end; align-content: start; }
.footer-content a { color: #fff; }
.copyright { text-align: center; margin: 34px 0 0; color: #8f9bab; font-size: .9rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .two-column, .form-layout, .cards { grid-template-columns: 1fr; }
  .hero { min-height: 690px; }
  .hero-overlay { background: rgba(3,10,20,.76); }
}

@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .brand span { font-size: .83rem; }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: 640px; }
  .hero-logo { width: 105px; height: 105px; }
  .hero-actions, .emergency-content, .footer-content { flex-direction: column; align-items: stretch; }
  .emergency-content { padding-block: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .feature-card, .volunteer-form { padding: 24px; }
  .footer-content > div:last-child { justify-items: start; }
}
