: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: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  width: min(220px, calc(100vw - 24px));
  padding: 6px 9px 6px 6px;
  border-radius: 14px;
  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: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7a1f 0%, #f05b00 100%);
  color: #fff;
  font-size: 0.76rem;
  box-shadow: 0 10px 20px rgba(240, 91, 0, 0.22);
}

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

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

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

.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);
}

.header-share-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.header-share-button:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
}

.header-share-button svg {
  width: 16px;
  height: 16px;
  display: block;
}

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

.copy-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 58;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.26);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.copy-feedback-modal[hidden] {
  display: none !important;
}

.copy-feedback-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.copy-feedback-card {
  width: min(100%, 320px);
  padding: 24px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.18);
  text-align: center;
}

.copy-feedback-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #34c26a 0%, #249f53 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(36, 159, 83, 0.24);
}

.copy-feedback-card h3 {
  margin: 0;
  color: #233044;
  font-size: 1.15rem;
  font-weight: 800;
}

.copy-feedback-card p {
  margin: 8px 0 0;
  color: #6a7689;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkout-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 40px;
  background: rgba(28, 24, 20, 0.22);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.checkout-sheet-backdrop[hidden] {
  display: none !important;
}

.checkout-sheet-backdrop.is-visible {
  opacity: 1;
}

.checkout-sheet {
  width: min(620px, 100%);
  max-height: min(88vh, 820px);
  padding: 10px 0 0;
  border-radius: 30px 30px 0 0;
  background: #fff;
  box-shadow: 0 -14px 38px rgba(17, 24, 39, 0.16);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.checkout-sheet-backdrop.is-visible .checkout-sheet {
  transform: translate3d(0, 0, 0);
}

.checkout-sheet-handle {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #d4dbe5;
  margin: 0 auto 12px;
}

.checkout-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px 14px;
}

.checkout-sheet-back-button {
  border: 0;
  background: transparent;
  color: #61708a;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.checkout-sheet-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.checkout-sheet-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff4eb;
  color: #f05b00;
  font-size: 0.82rem;
}

.checkout-sheet-title-wrap h2 {
  margin: 0;
  color: #4e1d07;
  font-size: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.checkout-sheet-close {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  background: #f7f1ea;
  color: #9097a3;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-sheet-body {
  overflow-y: auto;
  padding: 0 16px 14px;
}

.checkout-step[hidden] {
  display: none !important;
}

.checkout-frequency-button,
.checkout-continue-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.checkout-frequency-button {
  min-height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff6b00 0%, #f35b00 100%);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(240, 91, 0, 0.22);
}

.checkout-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.checkout-amount-button {
  position: relative;
  min-height: 48px;
  border: 1px solid #d9dee7;
  border-radius: 12px;
  background: #fff;
  color: #183559;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.checkout-amount-button.is-selected {
  border-color: #ff6b00;
  color: #ff6b00;
  background: #fffdfb;
}

.checkout-amount-button-full {
  grid-column: 1 / -1;
}

.checkout-amount-popular span {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff6b00;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: lowercase;
}

.checkout-free-amount {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-free-amount > span {
  color: #6c7b91;
  font-size: 1rem;
  font-weight: 700;
}

.checkout-free-amount-field {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 58px;
  border: 1px solid #d9dee7;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.checkout-free-amount-field strong {
  display: grid;
  place-items: center;
  align-self: stretch;
  color: #ff6b00;
  font-size: 1.7rem;
  border-right: 1px solid #eceef2;
}

.checkout-free-amount-field input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 16px;
  color: #183559;
  font-size: 1.25rem;
  font-weight: 700;
  outline: none;
}

.checkout-free-amount-field input::placeholder {
  color: #8d98ab;
  font-weight: 600;
}

.checkout-donation-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #c9d9ef;
  border-radius: 999px;
  background: #fff;
  color: #183559;
}

.checkout-donation-chip span {
  color: #6a7b95;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.checkout-donation-chip strong {
  color: #4d1d08;
  font-size: 0.95rem;
  font-weight: 800;
}

.checkout-form-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.checkout-loading-state {
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px 12px;
  text-align: center;
}

.checkout-loading-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid #e8edf5;
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: checkout-spin 0.9s linear infinite;
}

.checkout-loading-state strong {
  color: #243448;
  font-size: 1.05rem;
  font-weight: 700;
}

.checkout-loading-state p {
  max-width: 30ch;
  margin: 0;
  color: #7a8799;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-inline-status {
  max-width: 34ch;
  margin: 2px 0 0;
  color: #c2410c;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkout-result-stack {
  display: grid;
  gap: 14px;
}

.checkout-result-card {
  border: 1px solid #edf1f6;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.checkout-result-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
}

.checkout-result-card-header h3 {
  margin: 0;
  color: #243448;
  font-size: 1rem;
  font-weight: 700;
}

.checkout-result-card-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #fff1e8;
  color: #ff8a3d;
  font-size: 0.75rem;
}

.checkout-pix-code-box {
  display: grid;
  gap: 4px;
  margin: 16px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(44, 151, 93, 0.22);
  border-radius: 12px;
  background: rgba(44, 151, 93, 0.08);
  overflow: hidden;
}

.checkout-pix-code-box span {
  color: #5d7a68;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.checkout-pix-code-box strong {
  color: #1e3a2a;
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-pix-copy-button {
  width: calc(100% - 32px);
  min-height: 46px;
  margin: 0 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #22b14c 0%, #1c9a42 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(28, 154, 66, 0.22);
}

.checkout-bank-steps {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.checkout-bank-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.checkout-bank-step > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1e3;
  color: #f08a37;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-bank-step small {
  display: block;
  margin-bottom: 3px;
  color: #9ca7b8;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.checkout-bank-step p {
  margin: 0;
  color: #516276;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

.checkout-bank-step p strong {
  color: #2b3848;
  font-weight: 700;
}

.checkout-qr-helper {
  margin: 14px 16px 0;
  color: #7f8b9c;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.checkout-qr-box {
  padding: 14px 16px 18px;
}

.checkout-qr-placeholder {
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px dashed #d7dfea;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#000 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(90deg, transparent 12px, #000 12px, #000 16px, transparent 16px) 0 0 / 22px 22px,
    linear-gradient(transparent 12px, #000 12px, #000 16px, transparent 16px) 0 0 / 22px 22px,
    #fff;
}

.checkout-qr-placeholder.has-image {
  border-style: solid;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
}

.checkout-qr-placeholder.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.checkout-payment-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.checkout-payment-option {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px 14px;
  width: 100%;
  min-height: 82px;
  border: 1px solid #d9e2ef;
  border-radius: 14px;
  background: #fff;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
}

.checkout-payment-option.is-selected {
  border-color: #ff6b00;
  background: #fff8f2;
  box-shadow: 0 10px 20px rgba(240, 91, 0, 0.08);
}

.checkout-payment-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  border-radius: 12px;
  background: #fff4eb;
  color: #f05b00;
  font-size: 0.95rem;
}

.checkout-payment-option[data-payment-method='pix'] .checkout-payment-icon {
  background: rgba(119, 182, 168, 0.16);
  color: #77b6a8;
}

.checkout-payment-option[data-payment-method='credit-card'] .checkout-payment-icon {
  background: #eef4ff;
  color: #3b82f6;
}

.checkout-payment-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.checkout-payment-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-payment-option strong {
  color: #163153;
  font-size: 0.95rem;
  font-weight: 700;
}

.checkout-payment-option small {
  color: #6d7d94;
  font-size: 0.8rem;
  font-weight: 500;
}

.checkout-field {
  display: grid;
  gap: 6px;
}

.checkout-field > span {
  color: #0e2340;
  font-size: 0.88rem;
  font-weight: 700;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d9e2ef;
  border-radius: 12px;
  padding: 0 12px;
  color: #183559;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  background: #fff;
}

.checkout-field textarea {
  min-height: 74px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.checkout-field select {
  appearance: none;
  cursor: pointer;
}

.checkout-field input:disabled {
  background: #f4f6fa;
  color: #7d8798;
}

.checkout-field input::placeholder,
.checkout-field textarea::placeholder {
  color: #b2bfd1;
  font-weight: 500;
}

.checkout-card-section {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.checkout-card-hosted-box {
  border: 1px solid #d9e2ef;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(216, 228, 244, 0.9), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  box-shadow: 0 16px 34px rgba(18, 47, 86, 0.1);
  padding: 18px;
}

.checkout-card-hosted-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-card-hosted-head strong {
  color: #163153;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-card-hosted-head span {
  color: #6d7d94;
  font-size: 0.78rem;
  font-weight: 600;
}

.checkout-card-element-shell {
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d9e2ef;
  padding: 14px;
  margin-bottom: 12px;
}

.checkout-card-element {
  min-height: 86px;
}

.checkout-card-help {
  margin: 0;
  color: #6d7d94;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.checkout-card-help.is-error {
  color: #dc2626;
}

.checkout-card-form-grid {
  display: grid;
  gap: 10px;
}

.checkout-card-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5d6f8f;
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-checkbox-row input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.checkout-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5d6f8f;
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-toggle-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}

.checkout-message-field {
  margin-top: -2px;
}

.checkout-message-field[hidden] {
  display: none !important;
}

.checkout-boost-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #ffd970;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7d8 0%, #fff1bf 100%);
}

.checkout-boost-card p {
  margin: 0 0 0 28px;
  color: #8d6c1f;
  font-size: 0.85rem;
  line-height: 1.35;
  font-weight: 500;
}

.checkout-sheet-footer {
  padding: 10px 16px 14px;
  border-top: 1px solid #eef1f4;
  background: #fff;
}

.checkout-continue-button {
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff6b00 0%, #f35b00 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 24px rgba(240, 91, 0, 0.2);
}

.checkout-continue-button span {
  margin-left: 6px;
}

.checkout-button-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.checkout-button-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-security-note {
  margin: 8px 0 0;
  text-align: center;
  color: #71829c;
  font-size: 0.82rem;
}

.checkout-security-note::before {
  content: "●";
  margin-right: 6px;
  color: #22a861;
  font-size: 0.78rem;
}

body.checkout-sheet-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;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.project-track {
  display: flex;
  gap: 4px;
  width: max-content;
  padding-bottom: 6px;
  will-change: transform;
}

.project-track.is-animated {
  animation: project-marquee var(--marquee-duration, 28s) linear infinite;
}

.project-track.is-animated:hover,
.project-track.is-animated:focus-within {
  animation-play-state: paused;
}

@keyframes project-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-track.is-animated {
    animation: none;
  }
  .project-slider {
    overflow-x: auto;
  }
}

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

.project-card {
  position: relative;
  min-width: 0;
  flex: 0 0 clamp(250px, 32vw, 320px);
  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;
}

.container.banner-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.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: 0;
  background: #4f1d0b;
  color: rgba(255, 232, 216, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.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-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-legal-nav span {
  color: rgba(255, 232, 216, 0.45);
}

.footer-legal-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 232, 216, 0.82);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-legal-link:hover {
  color: #fff2e8;
}

.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);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 18, 32, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-card {
  width: min(760px, 100%);
  max-height: min(84vh, 860px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fffaf5;
  color: #402515;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(79, 29, 11, 0.1);
}

.legal-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #4f1d0b;
}

.legal-modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(79, 29, 11, 0.08);
  color: #4f1d0b;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal-body {
  max-height: calc(min(84vh, 860px) - 79px);
  overflow-y: auto;
  padding: 20px 24px 24px;
  font-size: 15px;
  line-height: 1.65;
}

.legal-modal-body p,
.legal-modal-body ul {
  margin: 0 0 14px;
}

.legal-modal-body ul {
  padding-left: 20px;
}

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

@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 .project-card {
    flex: 0 0 clamp(230px, 34vw, 300px);
  }
}

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

  .brand {
    margin: 0 auto;
  }

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

  .header-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    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-share-button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .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(198px, calc(100vw - 16px));
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 6px;
    padding: 5px 8px 5px 5px;
    border-radius: 12px;
  }

  .live-donation-icon {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

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

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

  .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);
  }

  .legal-modal {
    padding: 16px;
  }

  .legal-modal-header,
  .legal-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .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 {
    gap: 4px;
  }

  .project-track .project-card {
    flex: 0 0 78vw;
  }

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

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

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

  .checkout-sheet {
    max-height: 92vh;
  }

  .checkout-sheet-header,
  .checkout-sheet-body,
  .checkout-sheet-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .checkout-sheet-title-wrap h2 {
    font-size: 1.15rem;
  }

  .checkout-sheet-back-button {
    font-size: 0.84rem;
  }

  .checkout-frequency-button {
    font-size: 1.1rem;
  }

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

  .checkout-amount-button {
    font-size: 1rem;
  }

  .checkout-free-amount > span {
    font-size: 0.95rem;
  }

  .checkout-free-amount-field {
    min-height: 54px;
  }

  .checkout-free-amount-field strong {
    font-size: 1.45rem;
  }

  .checkout-free-amount-field input {
    font-size: 1.08rem;
  }

  .checkout-donation-chip {
    width: 100%;
    justify-content: center;
  }

  .checkout-payment-option {
    min-height: 72px;
    padding: 14px 16px;
  }

  .checkout-payment-icon {
    width: 36px;
    height: 36px;
  }

  .checkout-payment-option strong {
    font-size: 0.9rem;
  }

  .checkout-payment-option small {
    font-size: 0.76rem;
  }

  .checkout-result-stack {
    gap: 18px;
  }

  .checkout-result-card-header {
    padding: 12px 14px;
  }

  .checkout-loading-state {
    min-height: 280px;
    gap: 12px;
  }

  .checkout-loading-spinner {
    width: 46px;
    height: 46px;
  }

  .checkout-bank-steps,
  .checkout-qr-box {
    padding: 14px;
  }

  .checkout-pix-code-box,
  .checkout-pix-copy-button {
    margin-left: 14px;
    margin-right: 14px;
  }

  .checkout-pix-code-box {
    padding: 10px 12px;
  }

  .checkout-pix-code-box strong {
    font-size: 0.7rem;
  }

  .checkout-donation-chip strong {
    font-size: 0.9rem;
  }

  .checkout-field > span {
    font-size: 0.84rem;
  }

  .checkout-field input,
  .checkout-field textarea,
  .checkout-field select,
  .checkout-checkbox-row {
    font-size: 0.88rem;
  }

  .checkout-card-face {
    padding: 16px;
  }

  .checkout-card-section {
    margin-top: 12px;
  }

  .checkout-card-number {
    font-size: 1.05rem;
  }

  .checkout-card-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-boost-card p {
    margin-left: 0;
    font-size: 0.82rem;
  }

  .checkout-continue-button {
    min-height: 46px;
    font-size: 0.92rem;
  }

  .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: 0;
  }

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

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

.hero-vsl-unmute-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  background: rgba(15, 15, 16, 0.35);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: opacity 0.25s ease;
}

.hero-vsl-unmute-overlay .hero-vsl-unmute-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  animation: hero-vsl-pulse 1.6s infinite;
}

.hero-vsl-unmute-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes hero-vsl-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
