/* ============================================================
   COMUNIDADE SÃO CRISTÓVÃO — style.css
   Estética Institucional Premium · Editorial · Católica
   Tipografia: Lora + Lato
   ============================================================ */

/* ═══════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* ── Institutional Blue ── */
  --blue-700:     #1B3C6E;
  --blue-800:     #172F55;
  --blue-900:     #10263F;

  /* ── Brand Blue (Replacing Green) ── */
  --green-700:    #1D396B;
  --green-800:    #14284D;
  --green-900:    #0B162B;

  /* ── Gold ── */
  --gold-400:     #DCA23C;
  --gold-500:     #D39728;
  --gold-600:     #B87A1E;

  /* ── Backgrounds ── */
  --bg-warm:      #FFFFFF;
  --bg-alt:       #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-dark:      #14284D;
  --bg-darker:    #181915;
  --bg-blue:      #172F55;

  /* ── Borders ── */
  --border:       #E6E0D5;
  --border-subtle:#EDE8DD;

  /* ── Text ── */
  --text-main:    #303846;
  --text-sec:     #666A68;
  --text-light:   #F7F4EC;
  --text-dark-sec:#C8C8BF;

  /* ── Typography ── */
  --font-serif:   'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:    'Lato', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --max-width:    1200px;
  --header-h:     80px;

  /* ── Radius System ── */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  999px;

  /* ── Transitions ── */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --duration:     0.28s;
}


/* ═══════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  background-color: var(--bg-warm);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* Focus for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ═══════════════════════════════════════
   3. TYPOGRAPHY UTILITIES
═══════════════════════════════════════ */

/* Eyebrow / Section label */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.section-label--dark {
  color: var(--gold-400);
}
.section-label--light {
  color: var(--gold-400);
}

/* Editorial italic */
em {
  font-style: italic;
  font-weight: 400;
}


/* ═══════════════════════════════════════
   4. SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay {
  transition-delay: 0.18s;
}


/* ═══════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════ */

/* Primary — verde profundo */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: var(--blue-800);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--blue-900);
  transform: translateY(-1px);
}

/* Ghost — sem borda, texto discreto */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sec);
  transition: color 0.24s var(--ease);
}
.btn-ghost:hover { color: var(--blue-700); }

/* Accent Gold — para doações */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--gold-500);
  color: var(--green-900);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform 0.2s var(--ease);
}
.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

/* CTA — sobre fundo escuro */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.btn-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}


/* ═══════════════════════════════════════
   6. HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,224,213,0.4);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-800);
  line-height: 1.1;
}
.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sec);
  position: relative;
  transition: color 0.24s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue-700);
  transition: width 0.3s var(--ease);
}
.nav-link.active,
.nav-link:hover {
  color: var(--blue-700);
}
.nav-link:hover::after { width: 100%; }

.btn-header { flex-shrink: 0; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-main);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  border-radius: 2px;
}
.menu-toggle.open .hamburger-line:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.open .hamburger-line:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid transparent;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
}
.mobile-nav.open {
  max-height: 420px;
  padding: 16px 24px 24px;
  opacity: 1;
  border-top-color: var(--border);
}
.mobile-nav-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-main);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav-link:hover { color: var(--blue-700); }
.btn-mobile { margin-top: 24px; align-self: flex-start; }


/* ═══════════════════════════════════════
   7. HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Hero text */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.hero-title em {
  color: var(--gold-500);
  font-style: italic;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-sec);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

/* Trust Area */
.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(29, 57, 107, 0.08);
  border: none;
  margin-top: 48px;
}
.hero-trust-area {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.trust-icon {
  color: var(--gold-500);
  width: 24px;
  height: 24px;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-text p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-sec);
}
.trust-text strong {
  display: block;
  font-weight: 600;
  color: var(--text-main);
  font-size: 14px;
}

/* Hero visual - Organic Layout */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 640px;
}
.hero-shape-bg {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: #F8F6F2;
  border-radius: 50%;
  z-index: 0;
}
.hero-shape-outline {
  display: none;
}
.decor-church {
  position: absolute;
  top: 25%;
  right: -20px;
  width: 160px;
  height: auto;
  color: #E8E5DF;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.decor-leaves {
  position: absolute;
  bottom: 30%;
  right: -50px;
  width: 120px;
  height: auto;
  color: #E8E5DF;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}
.hero-img-cutout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: -16px;
  animation: float-subtle 6s ease-in-out infinite alternate;
  
  /* Máscara para suavizar a base da imagem e remover cortes secos */
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  
  /* IMPORTANTE: Remover esta linha quando subir a imagem PNG transparente real */
  mix-blend-mode: multiply;
}

@keyframes float-subtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Chips */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(16, 38, 63, 0.08);
  z-index: 10;
  border: none;
}
.hero-chip--top-left { top: 12%; left: -8%; }
.hero-chip--bottom-right { bottom: 18%; right: -8%; }
.hero-chip--bottom-left {
  bottom: 12%; left: -10%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 32px;
}

.chip-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #FDF8F0;
  color: var(--gold-500);
  border-radius: 50%;
  font-size: 16px;
}
.hero-chip > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chip-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-sec);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chip-value {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-900);
}

/* Stat card overrides */
.stat-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--blue-900);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sec);
  letter-spacing: 0;
}


/* ═══════════════════════════════════════
   8. PARÓQUIA RESPONSÁVEL
═══════════════════════════════════════ */
.paroquia {
  background: var(--bg-warm);
  padding: 120px 0;
  position: relative;
  z-index: 10;
}
.paroquia-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.paroquia-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(16, 38, 63, 0.08);
}
.paroquia-img-decor {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.paroquia-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.paroquia-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--blue-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.paroquia-title em {
  color: var(--gold-500);
  font-style: italic;
}
.paroquia-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-sec);
}
.paroquia-actions {
  margin-top: 12px;
}


/* ═══════════════════════════════════════
   9. DOAÇÃO — NOVA IGREJA
═══════════════════════════════════════ */
.doacao {
  background: var(--bg-dark);
  padding: 120px 0;
}
.doacao-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  align-items: start;
}

.doacao-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.doacao-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.doacao-title em { color: var(--gold-400); }

.doacao-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dark-sec);
  max-width: 85%;
}

/* Progress */
.doacao-progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.progress-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-sec);
}
.progress-percent {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-400);
}
.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--gold-400) 100%);
  border-radius: 100px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.progress-raised {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-400);
}
.progress-goal {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}
.progress-missing {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dark-sec);
  margin-top: 4px;
}

/* Donation values */
.doacao-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.doacao-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 4px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.valor-btn {
  padding: 14px 4px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.valor-btn:hover {
  background: rgba(211,151,40,0.08);
  border-color: rgba(211,151,40,0.4);
}
.valor-btn.active {
  background: rgba(211,151,40,0.12);
  border-color: var(--gold-500);
  color: var(--gold-400);
  font-weight: 700;
}
.input-outro-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s var(--ease);
}
.input-outro-wrap.visible {
  max-height: 100px;
  opacity: 1;
  margin-top: 8px;
}
.input-outro-wrap label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dark-sec);
}
.input-outro-wrap input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 16px;
  outline: none;
}
.input-outro-wrap input:focus {
  border-color: var(--gold-500);
}
.doacao-btn-wrap { margin-top: 8px; }
.btn-doar-main {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.btn-arrow {
  margin-left: 8px;
  transition: transform 0.2s var(--ease);
  display: inline-block;
}
.btn-doar-main:hover .btn-arrow,
.btn-high-value:hover .btn-arrow {
  transform: translateX(4px);
}

/* High Value Card */
.high-value-card {
  margin-top: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 16px;
}
.high-value-icon {
  color: var(--gold-400);
  flex-shrink: 0;
}
.high-value-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.high-value-content h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}
.high-value-content p {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dark-sec);
}
.btn-high-value {
  background: none;
  border: none;
  color: var(--gold-400);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s var(--ease);
}
.btn-high-value:hover {
  color: var(--gold-500);
}

/* Right slider */
.doacao-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.img-comparison-slider {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.slider-img-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.slider-img-layer img {
  width: 100%; height: 100%; object-fit: cover;
}
.slider-img-after { z-index: 1; }
.slider-img-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0ms;
  will-change: clip-path;
}

/* Slider labels */
.slider-label {
  position: absolute;
  bottom: 24px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.slider-label--before {
  left: 24px;
  background: rgba(20, 40, 77, 0.85);
  color: var(--text-light);
}
.slider-label--after {
  right: 24px;
  background: rgba(211,151,40,0.9);
  color: var(--green-900);
}

/* Slider divider */
.slider-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
}
.slider-divider:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}
.slider-line-top,
.slider-line-bottom {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.85);
}
.slider-handle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  animation: pulse-handle 2s 1s; /* hint interactivity */
}
@keyframes pulse-handle {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
  100% { transform: scale(1); }
}
.img-comparison-slider:hover .slider-handle {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.slider-caption {
  font-family: var(--font-sans);
  font-size: 13px;
  text-align: center;
  color: var(--text-dark-sec);
  margin-bottom: 8px;
}

/* Badges */
.doacao-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1.2;
}
.badge-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dark-sec);
  margin-top: 4px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.modal-overlay.open .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-dark-sec);
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-light); }
.modal-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark-sec);
  margin-bottom: 8px;
}
.radio-group {
  display: flex;
  gap: 24px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--gold-500);
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold-500); }
.form-checkbox {
  margin: 24px 0 16px;
}
.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  line-height: 1.4;
}
.form-checkbox input { margin-top: 2px; accent-color: var(--gold-500); }
.form-alert {
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.form-alert p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dark-sec);
  line-height: 1.5;
}
.btn-modal-submit {
  width: 100%;
  height: 52px;
}


/* ═══════════════════════════════════════
   9. VIDA NA COMUNIDADE
═══════════════════════════════════════ */
.vida {
  position: relative;
  background-color: #0e0d0a;
  background-image: 
    radial-gradient(ellipse at 50% 80%, rgba(220, 162, 60, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 10% 10%, rgba(220, 162, 60, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, rgba(20, 19, 15, 0.9) 0%, rgba(10, 9, 8, 1) 100%);
  padding: 120px 0;
  overflow: hidden;
}

.vida::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  pointer-events: none;
  z-index: 0;
}



.vida-inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.vida-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.vida-header-divider {
  width: 56px;
  height: 1.5px;
  background: var(--gold-500);
  border: none;
  margin-top: -6px;
  margin-bottom: 24px;
}
.vida-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.vida-title em { color: var(--gold-400); font-style: italic; }

.vida-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-dark-sec);
  font-weight: 300;
  max-width: 700px;
}

.vida-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.filter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(220, 162, 60, 0.4);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-pill svg {
  color: var(--gold-400);
}
.filter-pill:hover,
.filter-pill.active {
  background: rgba(220, 162, 60, 0.1);
  border-color: var(--gold-400);
}

.vida-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vida-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0a0a0a;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,0.05);
}

.vida-card-img {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  transition: transform 0.8s var(--ease), opacity 0.4s var(--ease);
}
.vida-card:hover .vida-card-img {
  transform: scale(1.04);
  opacity: 0.8;
}
.vida-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 17, 14, 0.95) 0%, rgba(16, 17, 14, 0.5) 45%, transparent 100%);
  pointer-events: none;
}

.vida-card-body {
  position: relative;
  z-index: 10;
  padding: 32px;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 24px;
}

.card-link {
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-400);
  transition: opacity 0.2s var(--ease);
}
.card-link:hover { opacity: 0.8; }


/* ═══════════════════════════════════════
   10. INFORMAÇÕES PRÁTICAS
═══════════════════════════════════════ */
.horarios {
  background: transparent;
  padding: 120px 0;
}
.horarios-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.horarios-header {
  margin-bottom: 56px;
}
.horarios-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.horarios-title em { color: var(--gold-600); }

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--duration) var(--ease);
}
.info-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.info-card--map {
  background: var(--green-700);
  border-color: var(--green-700);
}
.info-card--map:hover {
  box-shadow: 0 8px 32px rgba(29, 57, 107, 0.2);
}

.info-card-icon {
  color: var(--gold-500);
  margin-bottom: 24px;
}
.info-card--map .info-card-icon { color: var(--gold-400); }

.info-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 24px;
}
.info-card--map .info-card-title { color: var(--text-light); }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.info-day {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.info-time {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sec);
}
.info-address {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark-sec);
  flex: 1;
}

.btn-map {
  display: inline-flex;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-400);
  transition: color 0.2s var(--ease);
}
.btn-map:hover { color: var(--text-light); }


/* ═══════════════════════════════════════
   11. CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 32px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 22, 43, 0.75) 0%,
    rgba(11, 22, 43, 0.85) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-title em { color: var(--gold-400); }

.cta-desc {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(247,244,236,0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}


/* ═══════════════════════════════════════
   12. FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--green-900);
  color: var(--text-dark-sec);
  padding: 96px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* Banner WhatsApp */
.footer-banner-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-800);
  border: 1px solid rgba(220,162,60, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-bottom: 72px;
}
.banner-wa-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.banner-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-wa-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.2;
}
.banner-wa-title em {
  font-style: normal;
  color: var(--gold-400);
}
.banner-wa-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-top: 4px;
}
.btn-banner-wa {
  font-size: 16px;
  padding: 0 32px;
  height: 56px;
  gap: 12px;
}

/* Top 4 Columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.35fr 1.1fr;
  gap: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.footer-col:first-child {
  padding-left: 0;
}
.footer-col:last-child {
  padding-right: 0;
  border-right: none;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 32px;
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo-mark {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
}
.site-footer .logo-subtitle {
  color: var(--gold-400);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.footer-logo-divider {
  width: 32px;
  height: 2px;
  background: var(--gold-400);
  border: none;
  margin-bottom: 24px;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.7);
}

/* Footer links */
.footer-links-list {
  display: flex;
  flex-direction: column;
}
.footer-links-list li {
  margin-bottom: 16px;
}
.footer-links-list li:last-child {
  margin-bottom: 0;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s var(--ease);
}
.footer-link:hover { color: var(--gold-400); }
.link-arrow {
  color: var(--gold-400);
  font-size: 18px;
  line-height: 1;
}

/* Schedule and Contact items */
.footer-schedule-item,
.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0 !important;
}
.footer-schedule-item:first-child,
.footer-contact-item:first-child {
  padding-top: 0;
}
.footer-schedule-item:last-child,
.footer-contact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.schedule-icon, .contact-icon {
  display: flex;
  margin-top: 2px;
}
.schedule-details, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-day, .contact-label {
  font-family: var(--font-sans);
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
}
.footer-time, .contact-text, .contact-details .footer-link {
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  font-size: 14px;
}
.contact-details .footer-link {
  padding: 0;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.footer-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  transition: color 0.2s var(--ease);
}
.footer-privacy:hover {
  color: var(--text-light);
}
.privacy-arrow {
  color: var(--gold-400);
  font-size: 16px;
  line-height: 1;
}


/* ═══════════════════════════════════════
   13. RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-inner,
  .hero-inner,
  .paroquia-inner,
  .doacao-inner,
  .vida-inner,
  .horarios-inner,
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .horarios-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 48px; border-bottom: none; padding-bottom: 0; }
  .footer-col { padding: 0; border-right: none; }
}


/* ═══════════════════════════════════════
   14. RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-inner { 
    padding-left: 20px; 
    padding-right: 20px; 
    justify-content: space-between; 
  }
  .main-nav, .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 96px 20px 64px;
    gap: 48px;
  }
  .hero-title { font-size: clamp(38px, 8vw, 48px); }
  
  .hero-trust-area {
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 16px;
  }
  .hero-shape-bg {
    width: 90%;
    border-radius: 200px 200px 16px 16px;
  }
  .hero-shape-outline,
  .decor-church,
  .decor-leaves {
    display: none;
  }
  .hero-img-cutout {
    max-width: 100%;
    margin-bottom: -8px;
  }

  .hero-chip {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(29, 57, 107, 0.1);
  }
  .hero-chip .chip-label { font-size: 9px; }
  .hero-chip .chip-value { font-size: 11px; }
  .chip-icon {
    width: 24px; height: 24px;
  }
  
  .hero-chip--top-left { top: 5%; left: -5%; }
  .hero-chip--bottom-right { bottom: 0%; right: -5%; }
  .hero-chip--bottom-left {
    bottom: 15%; left: -5%;
    padding: 10px 14px;
    gap: 0px;
  }

  .paroquia, .doacao, .vida, .horarios { padding: 80px 0; }
  .paroquia-inner,
  .doacao-inner,
  .vida-inner,
  .horarios-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .paroquia-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doacao-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .doacao-left,
  .doacao-right {
    display: contents;
  }
  
  /* Mobile flow ordering */
  #sobre-label { order: 1; margin-bottom: -16px; }
  #sobre-title { order: 2; }
  .doacao-desc { order: 3; margin-bottom: 8px; }
  
  .img-comparison-slider { order: 4; height: 320px; }
  .slider-caption { order: 5; margin-top: -16px; }
  
  #doacao-progress { order: 6; }
  #doacao-values { order: 7; }
  .high-value-card { order: 8; flex-direction: column; gap: 20px; }
  #doacao-badges { order: 9; grid-template-columns: 1fr; gap: 24px; }
  
  .values-grid { grid-template-columns: 1fr 1fr; }
  #valor-outro { grid-column: 1 / -1; }

  /* Mobile Bottom Sheet Modal */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-container {
    padding: 24px;
    margin-bottom: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(100%);
  }
  .radio-group { flex-direction: column; gap: 12px; }

  .vida-grid { grid-template-columns: 1fr; }
  .vida-card { min-height: 420px; }
  .vida-filters { flex-direction: column; align-items: stretch; }
  .filter-pill { justify-content: center; }

  .horarios-grid { grid-template-columns: 1fr; }

  .cta-final { padding: 64px 20px; }
  .cta-title { font-size: clamp(36px, 7vw, 48px); }

  .site-footer { padding-top: 64px; }
  .footer-inner { padding: 0 20px; }
  .footer-banner-whatsapp {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }
  .banner-wa-left {
    flex-direction: column;
    gap: 16px;
  }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ═══════════════════════════════════════
   15. RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .btn-primary, .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .doacao-badges { grid-template-columns: 1fr; gap: 20px; }
}
