:root {
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-alt: #fbfbfa;
  --text: #111827;
  --muted: #5b6472;
  --soft: #8a93a3;
  --line: #e5e7eb;
  --shadow: 0 14px 36px rgba(17, 24, 39, 0.07);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.05);
  --primary: #d94841;
  --primary-dark: #bc3d37;
  --accent: #c98a3e;
  --success: #2f855a;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #fff 0%, var(--bg) 42%, #f3f1ed 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 245, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.live-donation-notifications {
  position: fixed;
  top: 14px;
  left: 12px;
  z-index: 26;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.live-donation-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(320px, calc(100vw - 24px));
  padding: 10px 14px 10px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(233, 236, 241, 0.92);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
  opacity: 0;
  transform: translate3d(-16px, 0, 0) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.live-donation-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.live-donation-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7a1f 0%, #f05b00 100%);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 20px rgba(240, 91, 0, 0.22);
}

.live-donation-copy {
  min-width: 0;
  line-height: 1.15;
}

.live-donation-copy strong {
  display: block;
  color: #4a2512;
  font-size: 0.98rem;
  font-weight: 700;
}

.live-donation-copy span {
  display: block;
  margin-top: 4px;
  color: #7d8a9d;
  font-size: 0.92rem;
  line-height: 1.2;
}

.live-donation-copy em {
  color: #22a861;
  font-style: normal;
  font-weight: 700;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: 170px;
  height: auto;
}

.header-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #243448;
  cursor: pointer;
}

.header-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a:hover {
  color: var(--text);
}

.hero-section,
.section,
.quote-section {
  padding: 72px 0;
}

.hero-grid,
.section-grid,
.story-grid,
.supporters-grid {
  display: grid;
  gap: 28px;
}

.hero-shell {
  display: grid;
  gap: 22px;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  margin: 0 auto;
  max-width: 20ch;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2f2f2f;
  animation: hero-title-pulse 3.8s ease-in-out infinite;
}

.hero-scripture {
  margin: 12px auto 0;
  max-width: 34ch;
  color: #7c8697;
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-scripture-ref {
  display: block;
  margin-top: 8px;
  color: #8b95a5;
  font-size: 0.82rem;
  font-style: italic;
  text-align: right;
}

.eyebrow,
.section-kicker,
.campaign-badge,
.pix-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow,
.section-kicker {
  color: var(--success);
}

.hero-note,
.section-heading p,
.quote-card p,
.story-copy p,
.story-item p,
.pix-receiver,
.steps-list,
.gallery-card span,
.donation-item span {
  color: var(--muted);
  line-height: 1.7;
}

.stat-card,
.quote-card,
.pix-card,
.impact-card,
.gallery-card,
.support-card,
.progress-card,
.story-media,
.story-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-collage-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #0f0f10;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.14);
}

.hero-video-placeholder {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background: linear-gradient(180deg, rgba(7, 6, 6, 0.05) 0%, rgba(7, 6, 6, 0.42) 100%);
}

.hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #8b3d18;
  font-size: 14px;
  font-weight: 800;
}

.hero-video-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #f26610;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.hero-tag,
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-tag {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 57, 0.35);
  background: rgba(255, 157, 57, 0.08);
  color: #e56517;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.hero-location {
  color: #63728b;
  font-weight: 500;
}

.hero-location::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-top: -1px;
  box-sizing: border-box;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 20px;
  background: var(--surface);
}

.hero-stat {
  padding: 6px 18px;
  text-align: center;
}

.hero-stat + .hero-stat {
  border-left: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  letter-spacing: -0.04em;
  color: #351102;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 1rem;
}

.hero-stat-highlight {
  position: relative;
}

.hero-stat-highlight strong {
  animation: hero-meta-glow 2.8s ease-in-out infinite;
}

.hero-progress-block {
  display: grid;
  gap: 10px;
}

.progress-fill-hero {
  width: 43%;
  background: linear-gradient(90deg, #8f401a 0%, #ff6a00 55%, #ff9f5a 100%);
  background-size: 160% 100%;
  animation: hero-progress-glow 2.8s ease-in-out infinite;
}

.hero-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
  color: #62718b;
  font-size: 0.98rem;
}

.hero-progress-meta strong {
  color: #f05b42;
  font-size: 1.06rem;
}

.hero-primary-cta {
  min-height: 76px;
  border-radius: 20px;
  font-size: 1.08rem;
  background: linear-gradient(180deg, #ff6a00 0%, #f55c00 100%);
  box-shadow: 0 18px 34px rgba(245, 92, 0, 0.22);
}

.hero-primary-cta:hover {
  background: linear-gradient(180deg, #ff7a1f 0%, #ef5200 100%);
}

.hero-note {
  margin: -4px 0 0;
  text-align: center;
  max-width: none;
  font-size: 0.98rem;
  color: #243a62;
  font-weight: 700;
}

.floating-donate-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 35;
  width: min(calc(100% - 20px), 620px);
  transform: translate(-50%, calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.floating-donate-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-donate-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(229, 231, 235, 0.82);
  border-radius: 22px;
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.14);
}

.floating-donate-status {
  min-width: 0;
}

.floating-donate-amounts {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.floating-donate-amounts strong {
  color: #4a2512;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.floating-donate-amounts span {
  color: #7d8a9d;
  font-size: 0.96rem;
  font-weight: 500;
}

.floating-donate-progress {
  width: 100%;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(195, 108, 43, 0.16);
}

.floating-donate-progress-fill {
  display: block;
  width: 43%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8f401a 0%, #ff6a00 55%, #ff9f5a 100%);
  background-size: 160% 100%;
  animation: hero-progress-glow 2.8s ease-in-out infinite;
}

.floating-donate-supporters {
  margin-top: 6px;
  color: #7b8799;
  font-size: 0.92rem;
  font-weight: 500;
}

.floating-donate-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff6a00 0%, #f55c00 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(245, 92, 0, 0.24);
}

.floating-donate-button:hover {
  background: linear-gradient(180deg, #ff7a1f 0%, #ef5200 100%);
}

@keyframes hero-meta-glow {
  0%,
  100% {
    color: #351102;
    text-shadow: 0 0 0 rgba(255, 128, 32, 0);
  }

  50% {
    color: #7f2f0c;
    text-shadow: 0 0 12px rgba(255, 137, 58, 0.45);
  }
}

@keyframes hero-title-pulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 171, 104, 0);
  }

  50% {
    transform: scale(1.012);
    text-shadow: 0 0 12px rgba(255, 171, 104, 0.16);
  }
}

@keyframes hero-progress-glow {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: inset 0 0 0 rgba(255, 166, 92, 0);
    background-position: 0% 50%;
  }

  50% {
    filter: brightness(1.08);
    box-shadow: inset 0 0 12px rgba(255, 196, 143, 0.35);
    background-position: 100% 50%;
  }
}

.stat-card {
  padding: 18px 20px;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.stat-card-accent {
  border-color: rgba(201, 138, 62, 0.35);
  background: linear-gradient(180deg, #fff8ef 0%, #fff 100%);
}

.campaign-badge {
  margin: 6px 0 18px;
  padding: 10px 14px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(201, 138, 62, 0.12);
  color: #9f6823;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(217, 72, 65, 0.24);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}

.progress-card {
  padding: 18px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.progress-labels strong {
  color: var(--text);
  font-size: 18px;
}

.progress-track {
  height: 12px;
  border-radius: 999px;
  background: #edeef0;
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 65%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.progress-card p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.quote-card {
  padding: 30px;
  text-align: center;
}

.quote-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote-card blockquote {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}

.quote-reference {
  display: block;
  margin: -4px 0 14px;
  text-align: right;
  color: #8b95a5;
  font-size: 0.82rem;
  font-style: italic;
}

.section {
  background: transparent;
}

.section-alt {
  background: rgba(255, 255, 255, 0.34);
}

.section-grid {
  grid-template-columns: 1fr 1.25fr;
  align-items: start;
}

.section-heading h2,
.story-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.section-heading p {
  margin: 0;
  max-width: 52ch;
}

.centered {
  text-align: center;
  margin: 0 auto 28px;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

.pix-card {
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, #3ca164 0%, #32935b 100%);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(39, 114, 74, 0.2);
  color: #fff;
}

.pix-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-direction: row;
}

.pix-head-copy {
  display: grid;
  gap: 4px;
}

.pix-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.pix-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.pix-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.05;
}

.pix-label {
  margin: 4px 0 0;
  color: rgba(240, 255, 246, 0.88);
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 700;
}

.pix-key-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(44, 151, 93, 0.36);
  margin-bottom: 10px;
}

.pix-key {
  display: block;
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
}

.pix-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: 100%;
  max-width: 220px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 20px rgba(20, 95, 58, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pix-copy-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 24px rgba(20, 95, 58, 0.18);
}

.pix-copy-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pix-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(28, 24, 20, 0.22);
  backdrop-filter: blur(12px);
}

.pix-modal-backdrop[hidden] {
  display: none !important;
}

.pix-modal {
  position: relative;
  width: min(460px, 100%);
  padding: 28px 24px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.18);
  text-align: center;
}

.pix-modal h2 {
  margin: 0 0 10px;
  color: #2a2f36;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pix-modal p {
  margin: 0;
  color: #5e6776;
  font-size: 1rem;
  line-height: 1.55;
}

.pix-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #374151;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.pix-modal-open {
  overflow: hidden;
}

.pix-receiver {
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(236, 253, 244, 0.88);
}

.pix-receiver strong {
  color: #fff;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: #f5fff8;
  counter-reset: pix-step;
}

.steps-list li {
  counter-increment: pix-step;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.steps-list li::before {
  content: counter(pix-step);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  background: rgba(19, 102, 57, 0.54);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.steps-list li span {
  display: block;
  min-width: 0;
}

.steps-list strong {
  color: #fff;
}

.emergency-section {
  padding-top: 18px;
}

.emergency-card {
  padding: 28px 26px;
  border-radius: 22px;
  border: 1px solid rgba(246, 170, 55, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 247, 228, 0.96) 0%, rgba(255, 241, 206, 0.92) 100%);
  box-shadow: 0 16px 34px rgba(145, 88, 16, 0.08);
}

.emergency-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #56210c;
  font-weight: 800;
}

.emergency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.emergency-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emergency-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.emergency-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #1f2d3d;
}

.emergency-card p {
  margin: 0;
  max-width: 34ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #243448;
}

.emergency-card p + p {
  margin-top: 14px;
}

.project-section {
  background: linear-gradient(180deg, rgba(255, 247, 235, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.project-shell {
  padding: 28px 18px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(243, 204, 153, 0.5);
  box-shadow: 0 18px 40px rgba(130, 88, 24, 0.08);
}

.project-heading {
  margin-bottom: 26px;
}

.project-heading h2 {
  margin-top: 0;
  font-family: var(--font-heading);
  color: #17325b;
  font-size: clamp(1.8rem, 2.7vw, 2.2rem);
  font-weight: 600;
}

.project-heading p {
  color: #60708a;
  font-size: 1.08rem;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.project-metric {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.project-metric-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff2eb;
  color: #f06d26;
}

.project-metric-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-metric strong {
  font-size: clamp(1.7rem, 2.1vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #13294b;
  font-weight: 700;
}

.project-metric span {
  color: #66748d;
  font-size: 1rem;
}

.project-slider-anchor {
  height: 1px;
}

.project-slider {
  overflow: hidden;
  margin-bottom: 24px;
}

.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
  will-change: scroll-position;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #101112;
  box-shadow: 0 14px 30px rgba(24, 26, 34, 0.16);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 272px;
  object-fit: cover;
}

.project-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 18px 16px;
  display: grid;
  gap: 6px;
  background: linear-gradient(180deg, rgba(9, 10, 14, 0) 0%, rgba(9, 10, 14, 0.85) 100%);
  color: #fff;
}

.project-card strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.project-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.project-note {
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 193, 149, 0.8);
  background: linear-gradient(180deg, #fff7f1 0%, #fff5ee 100%);
  text-align: center;
  color: #243448;
  font-size: 1.22rem;
  line-height: 1.45;
}

.project-note strong {
  color: #0f1f3a;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.impact-card {
  padding: 26px 22px;
  text-align: center;
}

.impact-card strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.impact-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.gallery-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-track::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(217, 72, 65, 0.35);
  border-radius: 999px;
}

.gallery-card {
  overflow: hidden;
  scroll-snap-align: start;
  min-width: 0;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  display: grid;
  gap: 6px;
}

.gallery-card strong,
.story-item strong,
.donation-item strong {
  font-size: 16px;
  line-height: 1.4;
}

.story-shell {
  display: block;
}

.story-copy {
  max-width: 780px;
}

.story-copy h2 {
  margin: 0 0 16px;
  color: #f06b1f;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 600;
}

.story-media {
  margin: 0 0 18px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(197, 208, 224, 0.9);
  box-shadow: 0 12px 24px rgba(22, 34, 54, 0.08);
}

.story-media img {
  width: 100%;
  border-radius: 8px;
}

.story-copy p {
  margin: 0 0 18px;
  color: #1f2f45;
  font-size: 1rem;
  line-height: 1.6;
}

.story-text-block {
  margin-bottom: 18px;
}

.story-text-block p {
  margin-bottom: 2px;
}

.story-copy h3 {
  margin: 22px 0 16px;
  color: #5a220e;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

.story-copy h4 {
  margin: 24px 0 14px;
  color: #111827;
  font-size: 1.08rem;
  font-weight: 700;
}

.updates-card,
.security-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.updates-card {
  padding: 10px 18px 2px;
}

.update-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}

.update-row:last-child {
  border-bottom: 0;
}

.update-date-block {
  display: grid;
  justify-items: center;
  align-content: start;
  padding-top: 2px;
  border-right: 1px solid var(--line);
}

.update-date-block strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #ff6a00;
  font-weight: 800;
}

.update-date-block span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #54749d;
  font-weight: 700;
}

.update-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.3;
  color: #19324e;
}

.update-content p {
  margin: 0;
  color: #5f7896;
  line-height: 1.6;
}

.donation-impact-shell {
  display: grid;
  gap: 18px;
}

.donation-impact-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.donation-impact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff4ea;
  color: #f06b1f;
}

.donation-impact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donation-impact-header h2 {
  margin: 0;
  color: #5b220e;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.donation-impact-list {
  display: grid;
  gap: 10px;
}

.donation-impact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f3fbf7;
  border: 1px solid #b4efd0;
}

.donation-impact-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1faa69;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.donation-impact-item p {
  margin: 0;
  color: #17314f;
  font-size: 1rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.banner-section {
  padding: 8px 0 0;
}

.banner-wrap {
  width: min(var(--container), calc(100% - 0px));
}

.campaign-banner {
  width: 100%;
  height: auto;
  display: block;
}

.supporters-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-alert-card {
  background: #3a1307;
  color: #fff;
  border-radius: 24px;
  padding: 22px 20px 24px;
  box-shadow: 0 18px 40px rgba(58, 19, 7, 0.28);
}

.cta-alert-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-alert-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.cta-alert-strong {
  font-weight: 800;
}

.cta-alert-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.cta-alert-badge span {
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}

.cta-alert-button {
  width: 100%;
  min-height: 72px;
  margin-top: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff6d11 0%, #f06105 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 97, 5, 0.3);
}

.cta-alert-button:hover {
  background: linear-gradient(180deg, #ff781f 0%, #e95900 100%);
}

.support-card {
  padding: 20px;
}

.support-block + .support-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.support-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.support-title h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-family: var(--font-heading);
  color: #4a1d0b;
  font-weight: 600;
}

.support-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
}

.support-icon-top {
  background: #fff2cf;
  color: #f39c12;
}

.support-icon-recent {
  background: #e7f7ef;
  color: #1fa463;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ranking-list li,
.donation-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.ranking-list li:last-child,
.donation-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rank-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5b220e;
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 auto;
}

.rank-1 {
  background: #ffbf2f;
}

.rank-2 {
  background: #b7c0d0;
}

.rank-3 {
  background: #f1a43d;
}

.rank-name {
  display: grid;
  gap: 4px;
}

.rank-name strong,
.donation-meta strong {
  font-size: 15px;
  font-weight: 700;
  color: #19324e;
}

.rank-name span,
.donation-meta span {
  display: block;
  font-size: 14px;
  color: #6f85a0;
  font-weight: 500;
}

.rank-value,
.donation-value {
  white-space: nowrap;
  font-weight: 700;
  color: #4a1d0b;
  font-size: 14px;
  align-self: center;
}

.donation-feed {
  display: grid;
  gap: 8px;
}

.donation-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7f2ee;
  color: #f67a21;
  font-weight: 800;
  font-size: 13px;
}

.donation-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.donation-meta-top {
  display: block;
}

.donation-meta-top strong {
  display: block;
  min-width: 0;
}

.donation-meta em {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  color: #7a8799;
  line-height: 1.3;
  font-size: 13px;
}

.donation-side {
  display: grid;
  justify-items: end;
  gap: 4px;
  align-self: start;
}

.donation-time {
  display: block;
  color: #6f85a0;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.donation-side .donation-value {
  align-self: start;
}

.site-footer {
  margin-top: 40px;
  background: #4f1d0b;
  color: rgba(255, 232, 216, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  padding: 34px 0 134px;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
  max-width: 340px;
}

.footer-logo {
  width: 132px;
  height: auto;
}

.footer-tagline {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 232, 216, 0.72);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 232, 216, 0.72);
}

.social-circle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-circle svg path {
  fill: currentColor;
  stroke: none;
}

.social-circle svg rect,
.social-circle svg circle {
  stroke: currentColor;
}

.footer-divider {
  margin: 24px 0 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: grid;
  gap: 8px;
}

.footer-cnpj {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 232, 216, 0.62);
}

@media (max-width: 1024px) {
  .section-grid,
  .story-grid,
  .supporters-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage-card {
    grid-template-columns: 1fr;
  }

  .hero-message-card {
    padding: 28px 24px 30px;
  }

  .cta-alert-card {
    padding: 18px;
  }

  .gallery-track,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-track {
    grid-auto-columns: minmax(230px, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    min-height: auto;
    padding: 12px 0 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .brand {
    margin: 0 auto;
  }

  .header-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .header-nav {
    width: 100%;
    display: none;
    padding: 12px 14px;
    gap: 12px;
    font-size: 13px;
    line-height: 1.3;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
  }

  .header-nav a {
    width: 100%;
    padding: 4px 0;
  }

  body.menu-open .header-nav {
    display: flex;
    flex-direction: column;
  }

  body.menu-open .header-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .header-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .header-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-section,
  .section,
  .quote-section {
    padding: 28px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 1.08;
  }

  .live-donation-notifications {
    top: 10px;
    left: 8px;
  }

  .live-donation-card {
    width: min(284px, calc(100vw - 16px));
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 12px 8px 8px;
    border-radius: 16px;
  }

  .live-donation-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .live-donation-copy strong {
    font-size: 0.9rem;
  }

  .live-donation-copy span {
    font-size: 0.84rem;
  }

  .hero-scripture {
    font-size: 0.98rem;
  }

  .hero-collage-card {
    border-radius: 20px;
  }

  .hero-main-photo img {
    aspect-ratio: 16 / 12;
  }

  .hero-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-message-title {
    font-size: 1.9rem;
  }

  .hero-message-text,
  .hero-message-cta {
    font-size: 1rem;
  }

  .hero-meta-row {
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-tag,
  .hero-location {
    font-size: 0.92rem;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat + .hero-stat {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  .hero-stat span {
    font-size: 0.88rem;
  }

  .hero-progress-meta {
    font-size: 0.92rem;
    flex-wrap: nowrap;
  }

  .hero-progress-meta strong {
    font-size: 0.98rem;
  }

  .hero-primary-cta {
    min-height: 64px;
    font-size: 1rem;
  }

  .floating-donate-bar {
    bottom: 10px;
    width: min(calc(100% - 16px), 620px);
  }

  .floating-donate-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 10px 10px 12px;
    border-radius: 18px;
  }

  .floating-donate-amounts strong {
    font-size: 0.95rem;
  }

  .floating-donate-amounts span,
  .floating-donate-supporters {
    font-size: 0.84rem;
  }

  .floating-donate-button {
    min-width: 112px;
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.74rem;
    border-radius: 12px;
  }

  .gallery-track,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    grid-auto-columns: minmax(82vw, 1fr);
    gap: 14px;
  }

  .donation-impact-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px 14px;
  }

  .donation-impact-header h2 {
    font-size: 1.45rem;
  }

  .donation-impact-item p {
    font-size: 1rem;
  }

  .updates-card {
    padding: 8px 14px 2px;
  }

  .update-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .stat-card {
    padding: 16px 18px;
  }

  .stat-card strong {
    font-size: 20px;
  }

  .campaign-badge {
    margin-bottom: 14px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .progress-labels {
    font-size: 13px;
  }

  .progress-labels strong {
    font-size: 16px;
  }

  .quote-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .quote-card blockquote {
    font-size: 18px;
  }

  .section-heading h2,
  .story-copy h2 {
    font-size: 1.6rem;
  }

  .section-heading p,
  .story-copy p,
  .quote-card p,
  .hero-note {
    font-size: 14px;
  }

  .quote-card,
  .pix-card,
  .support-card {
    padding: 20px;
  }

  .emergency-card {
    padding: 22px 18px;
  }

  .emergency-card h2 {
    font-size: 1.7rem;
  }

  .emergency-card p {
    font-size: 1rem;
    max-width: none;
  }

  .project-shell {
    padding: 24px 14px 14px;
    border-radius: 22px;
  }

  .project-heading {
    margin-bottom: 22px;
  }

  .project-heading p {
    font-size: 1rem;
  }

  .project-metrics {
    gap: 14px;
    margin-bottom: 20px;
  }

  .project-metric-icon {
    width: 54px;
    height: 54px;
  }

  .project-metric strong {
    font-size: 1.65rem;
  }

  .project-metric span {
    font-size: 0.92rem;
  }

  .project-track {
    grid-auto-columns: minmax(78vw, 1fr);
    gap: 4px;
  }

  .project-card img {
    min-height: 240px;
  }

  .project-card figcaption {
    padding: 16px 16px 14px;
  }

  .project-note {
    padding: 18px 14px;
    font-size: 1rem;
  }

  .pix-modal {
    padding: 24px 18px 20px;
  }

  .pix-key-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pix-key {
    font-size: 16px;
    word-break: break-all;
  }

  .pix-copy-button {
    max-width: 100%;
    padding: 0 16px;
  }

  .steps-list li {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .impact-card {
    padding: 22px 18px;
  }

  .impact-card strong {
    font-size: 28px;
  }

  .gallery-card figcaption {
    padding: 14px 16px 16px;
  }

  .story-media {
    padding: 12px;
  }

  .story-list {
    margin-top: 18px;
  }

  .support-card {
    padding: 18px;
  }

  .support-title h2 {
    font-size: 22px;
  }

  .ranking-list li,
  .donation-item {
    grid-template-columns: auto 1fr auto;
  }

  .ranking-list li {
    align-items: start;
  }

  .donation-item {
    align-items: start;
  }

  .donation-avatar {
    width: 40px;
    height: 40px;
  }

  .rank-value {
    grid-column: 3;
    justify-self: end;
    margin-top: 0;
  }

  .donation-side {
    grid-column: 3;
    justify-self: end;
    display: grid;
    justify-items: end;
    gap: 2px;
    margin-top: 0;
  }

  .donation-side .donation-value {
    grid-column: auto;
    justify-self: end;
    align-self: start;
  }

  .banner-section {
    padding-top: 0;
  }

  .site-footer {
    margin-top: 24px;
  }

  .footer-inner {
    padding: 26px 0 18px;
  }

  .footer-brand-block {
    max-width: 100%;
  }
}
