/* ==========================================================================
   PARÓQUIA IMACULADA CONCEIÇÃO - ESTILO PRINCIPAL (EDITORIAL PREMIUM V2)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (Paleta Azul e Dourada Refinada)
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais - Azul Nobre e Dourado Sacro */
  --color-primary:      #1A4B82; 
  --color-primary-hover:#12365E;
  --color-gold:         #B4975A; 
  --color-gold-light:   #F9F6F0; 
  --color-navy:         #0A2440; 
  --color-whatsapp:     #25D366;
  
  /* Superfícies e Textos */
  --color-bg:           #FAFAFA; 
  --color-surface:      #FFFFFF;
  --color-surface-2:    #F1F5F9;
  --color-border:       #E2E8F0;
  --color-divider:      #E2E8F0;
  --color-text:         #334155; 
  --color-text-muted:   #64748B;
  --color-text-faint:   #94A3B8;
  
  /* Tipografia */
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  
  /* Escala de Espaçamento */
  --space-2:  0.5rem;  
  --space-4:  1rem;    
  --space-6:  1.5rem;  
  --space-8:  2rem;
  --space-12: 3rem;    
  --space-16: 4rem;
  --space-24: 6rem;
  
  /* Detalhes de Interface Refinados */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 20px rgba(26, 75, 130, 0.04); 
  --shadow-md: 0 12px 30px rgba(26, 75, 130, 0.08);
  --shadow-hover: 0 20px 40px rgba(26, 75, 130, 0.12); 
  
  --nav-h: 90px;
  --transition: 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. BASE E RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { 
  font-family: var(--font-body); 
  font-size: 1.125rem; 
  color: var(--color-text); 
  background: var(--color-bg); 
  min-height: 100dvh; 
  line-height: 1.7; 
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color var(--transition); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
p, li { max-width: 80ch; }
h1, h2, h3, h4 { 
  font-family: var(--font-display); 
  line-height: 1.3; 
  font-weight: 600; 
  color: var(--color-primary); 
}
::selection { background: var(--color-gold); color: #fff; }
.hidden-initial { display: none !important; }

/* --------------------------------------------------------------------------
   3. ESTRUTURA GLOBAL E ANIMAÇÕES GERAIS
   -------------------------------------------------------------------------- */
.container { max-width: 1140px; margin-inline: auto; padding-inline: var(--space-6); }
.container--narrow { max-width: 800px; }

section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.section-alt { background: var(--color-surface-2); }

.page { display: none; animation: pageEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.page.active { display: block; }

@keyframes pageEnter { 
  from { opacity: 0; transform: translateY(15px); } 
  to { opacity: 1; transform: translateY(0); } 
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   4. TIPOGRAFIA EDITORIAL E DIVISORES
   -------------------------------------------------------------------------- */
.hero-eyebrow, .section-eyebrow {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold);
  margin-bottom: var(--space-4); display: block;
}
.section-header { margin-bottom: var(--space-12); text-align: center; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: var(--space-4); letter-spacing: -0.5px;}
.section-header p { font-size: 1.15rem; color: var(--color-text-muted); max-width: 60ch; margin-inline: auto; }
.section-header.left-aligned { text-align: left; }
.section-header.left-aligned p { margin-inline: 0; }
.divider { width: 80px; height: 3px; background: var(--color-gold); margin: var(--space-6) auto; border-radius: 2px;}
.divider-left { margin-inline: 0; }
.divider-thin { width: 100%; height: 1px; background: var(--color-divider); margin: var(--space-6) 0; }

/* --------------------------------------------------------------------------
   5. NAVEGAÇÃO E LETREIRO
   -------------------------------------------------------------------------- */
#main-nav { 
  position: sticky; top: 0; z-index: 100; 
  background: var(--color-surface); 
  border-bottom: 2px solid var(--color-primary); 
  height: var(--nav-h);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
}
.nav-inner { 
  max-width: 1140px; margin-inline: auto; padding-inline: var(--space-6); 
  height: 100%; display: flex; align-items: center; justify-content: space-between; 
}
.nav-brand { 
  display: flex; align-items: center; gap: var(--space-4); 
  animation: fadeInUp 0.8s ease-out;
  transition: transform var(--transition);
}
.nav-brand:hover { transform: scale(1.02); }
.nav-logo { width: 60px; height: auto; }

.nav-brand-main { 
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; 
  color: var(--color-primary); display: block; line-height: 1.2; letter-spacing: 0.5px;
}
.nav-brand-sub { 
  font-family: var(--font-body); font-size: 0.75rem; color: #637B92; 
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

.nav-links { display: flex; gap: var(--space-4); list-style: none; }
.nav-links a { 
  font-size: 1.05rem; font-weight: 600; color: var(--color-text-muted); 
  position: relative; text-decoration: none; padding-block: 8px;
}
.nav-links a::after {
  content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 50%;
  background-color: var(--color-primary); transition: all 0.3s ease; transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav-hamburger span { display: block; width: 100%; height: 2px; background: var(--color-primary); transition: 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer { 
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99; 
  background: var(--color-surface); padding: var(--space-6); flex-direction: column; 
  border-top: 1px solid var(--color-divider); overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { padding: var(--space-4) 0; font-family: var(--font-display); font-size: 1.5rem; border-bottom: 1px solid var(--color-divider); }
.nav-drawer a.active { color: var(--color-primary); }

@media (max-width: 990px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }

/* --------------------------------------------------------------------------
   6. BOTÕES (Efeito Premium com Feedback Tátil)
   -------------------------------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.25s ease, 
                background-color 0.25s ease, 
                border-color 0.25s ease;
    will-change: transform, box-shadow;
}

.btn-primary { 
    background: var(--color-gold); 
    color: #fff; 
}
.btn-primary:hover {
    background: #A3864A;
}

.btn-secondary { 
    background: transparent; 
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    gap: 8px;
}
.btn-whatsapp:hover {
    background: #20ba56;
}

.btn-primary:hover, .btn-secondary:hover, .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:active, .btn-secondary:active, .btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-whatsapp:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* --------------------------------------------------------------------------
   7. HEROS (Efeito Parallax Fluido e Cinematográfico)
   -------------------------------------------------------------------------- */
.hero { 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  text-align: center; 
  color: #fff; 
  position: relative; 
}

/* Parallax aplicado em telas desktop para performance impecável */
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,36,64,0.88) 0%, rgba(26,75,130,0.82) 100%);
  z-index: 1;
}

.hero-home { background-image: url('assets/img/foto_igreja.jpeg'); padding-block: clamp(10rem, 15vw, 14rem); }
.hero-historia { background-image: url('assets/img/igreja_antiga.png'); }
.hero-horarios { background-image: url('assets/img/foto_missa.jpg'); }
.hero-espiritualidade { background-image: url('assets/img/foto_santos.jpg'); background-position: top center; }
.hero-noticias { background-image: url('assets/img/foto_festa.jpg'); }
.hero-dizimo { background-image: url('assets/img/foto_igreja.jpeg'); }

.hero-sub { padding-block: clamp(6rem, 10vw, 9rem); }
.hero-content, .hero > .container { position: relative; z-index: 2; }

.hero h1 { 
  font-size: clamp(2.8rem, 6vw, 5rem); 
  margin-bottom: var(--space-6); 
  line-height: 1.1; 
  color: #fff; 
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.hero p { 
  font-size: 1.3rem; 
  max-width: 650px; 
  margin-inline: auto; 
  margin-bottom: var(--space-8); 
  opacity: 0.95; 
  font-weight: 300;
  animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.15s;
}
.hero-actions { 
  display: flex; 
  gap: var(--space-4); 
  justify-content: center; 
  flex-wrap: wrap; 
  animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-delay: 0.3s;
}

/* --------------------------------------------------------------------------
   8. COMPONENTES: ACESSO RÁPIDO
   -------------------------------------------------------------------------- */
.editorial-grid { 
  display: grid; grid-template-columns: 1fr 1.8fr; 
  gap: var(--space-12); align-items: start; 
}
.editorial-desc { font-size: 1.15rem; color: var(--color-text-muted); }
.editorial-links { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }

.editorial-card, .timeline-item {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.editorial-card.featured { grid-column: span 2; border-top: 4px solid var(--color-gold); }
.editorial-card h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--color-primary); }
.editorial-card p { font-size: 1.05rem; color: var(--color-text-muted); margin: 0; }

.pastors-profile { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 700px; margin: 0 auto; }
.pastors-img-wrapper img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: var(--space-8); transition: transform 0.5s ease; }
.pastors-profile:hover .pastors-img-wrapper img { transform: scale(1.02); }

.editorial-timeline { border-left: 2px solid var(--color-gold); padding-left: var(--space-8); margin-left: var(--space-4); margin-bottom: var(--space-16); }
.timeline-item { position: relative; margin-bottom: var(--space-12); }
.timeline-item::before { content: ''; position: absolute; left: calc(var(--space-8) * -1 - 9px); top: 12px; width: 16px; height: 16px; background: var(--color-surface); border: 3px solid var(--color-gold); border-radius: 50%; box-shadow: 0 0 0 4px var(--color-bg);}
.timeline-year { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); font-weight: 700; margin-bottom: 4px;}
.timeline-title { font-size: 1.8rem; margin-bottom: var(--space-4); }

.coat-of-arms-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-12); align-items: center; background: var(--color-surface); padding: var(--space-12); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin-bottom: var(--space-16); }
.coat-of-arms-figure img { border-radius: var(--radius-sm); margin: 0 auto; max-height: 400px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));}

@media (max-width: 768px) {
  .editorial-grid, .editorial-links, .coat-of-arms-wrapper { grid-template-columns: 1fr; }
  .editorial-card.featured { grid-column: span 1; }
}

/* --------------------------------------------------------------------------
   9. ESPIRITUALIDADE E ORAÇÕES (Acordeões Corrigidos e Fluidos)
   -------------------------------------------------------------------------- */
.liturgy-card { 
  background: var(--color-surface); border-radius: var(--radius-lg); 
  padding: clamp(1.5rem, 5vw, 3rem); border-top: 5px solid var(--color-gold); 
  box-shadow: var(--shadow-sm); margin-bottom: var(--space-12); 
}
.liturgy-main-title { font-size: 2.2rem; margin-bottom: var(--space-8); text-align: center; }

.liturgy-item {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  margin-bottom: var(--space-4); overflow: hidden; background: var(--color-surface);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.liturgy-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(180, 151, 90, 0.3); }

.liturgy-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background-color: var(--color-surface);
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--color-primary);
  text-align: left; transition: background var(--transition);
}
.liturgy-toggle:hover { background-color: var(--color-surface-2); }
.toggle-icon { font-size: 1.5rem; color: var(--color-gold); font-weight: 400; transition: transform 0.4s ease;}
.liturgy-item.open .toggle-icon { transform: rotate(45deg); }

.liturgy-content {
  max-height: 0; opacity: 0; padding: 0 24px; background: var(--color-surface);
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, padding 0.4s ease;
}
.liturgy-item.open .liturgy-content { max-height: 2500px; opacity: 1; padding: 0 24px 24px 24px; }
.liturgy-ref { font-family: var(--font-display); font-style: italic; color: var(--color-gold); margin-block: var(--space-4); font-weight: 600;}
.liturgy-quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-text); line-height: 1.9;}

.saint-of-day { 
  border: 1px solid var(--color-gold); border-radius: var(--radius-md);
  text-align: center; margin-bottom: var(--space-12); padding: var(--space-8);
  background: var(--color-surface); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.saint-of-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.saint-of-day .liturgy-label {
  color: var(--color-text-muted); font-size: 0.95rem; letter-spacing: 0.05em;
  margin-bottom: var(--space-2); text-transform: none; font-weight: 500;
}
.saint-of-day .saint-title { font-size: 2.4rem; color: var(--color-primary); margin: 0; }
.saint-status { font-size: 1rem; color: var(--color-text-faint); font-style: italic; margin-top: 8px;}

.prayer-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: var(--space-12); }
.filter-btn { 
  padding: 10px 24px; border: 1px solid var(--color-border); border-radius: 50px; 
  font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; 
  color: var(--color-text-muted); background: var(--color-surface); transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); box-shadow: 0 4px 10px rgba(26, 75, 130, 0.2);}

.prayer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-6); }

.prayer-card { 
  background: var(--color-surface); border: 1px solid var(--color-border); 
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  padding: 0 !important; overflow: hidden;
}

.prayer-toggle {
  width: 100%; text-align: left; background: transparent; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; 
  cursor: pointer; transition: background 0.3s;
}
.prayer-toggle:hover { background: var(--color-surface-2); }
.prayer-toggle h3 { margin: 0; font-size: 1.35rem; }

.prayer-content { 
  max-height: 0; opacity: 0; 
  padding: 0 32px; 
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease; color: var(--color-text-muted); line-height: 1.8;
}
.prayer-card.open .prayer-content { 
  max-height: 1500px; opacity: 1; 
  padding-bottom: 32px; 
}

/* --------------------------------------------------------------------------
   10. SESSÃO DE NOTÍCIAS
   -------------------------------------------------------------------------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--space-8); }

.news-card { 
  display: flex; flex-direction: column; background: var(--color-surface); 
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); 
  overflow: hidden; cursor: pointer; 
  box-shadow: var(--shadow-sm); position: relative;
}

.news-card-img { 
  height: 220px; background: var(--color-surface-2); display: flex; align-items: center; justify-content: center; 
  background-size: cover; background-position: center; border-bottom: 1px solid var(--color-divider); 
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-card:hover .news-card-img { transform: scale(1.05); } 

.news-tag { 
  background: var(--color-gold-light); color: var(--color-gold); 
  padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; 
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; 
  border: 1px solid rgba(180, 151, 90, 0.3);
}

.news-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; background: var(--color-surface); z-index: 2; position: relative;}
.news-card-body h3 { font-size: 1.5rem; margin-block: var(--space-2) var(--space-4); line-height: 1.3;}
.news-card-body p { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: var(--space-6); flex-grow: 1; line-height: 1.6;}
.news-read { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--color-primary); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s;}
.news-card:hover .news-read { gap: 8px; color: var(--color-gold); }

/* --------------------------------------------------------------------------
   11. PÁGINA INTERNA DA NOTÍCIA
   -------------------------------------------------------------------------- */
#page-noticia-detalhe .hero-detalhe { padding-block: clamp(6rem, 12vw, 10rem); }
.btn-back { display: inline-flex; align-items: center; gap: 8px; color: var(--color-gold); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-6); }
.btn-back:hover { color: #fff; }
.detalhe-data-text { font-family: var(--font-display); font-style: italic; opacity: 0.8; margin-top: var(--space-4); font-size: 1.1rem; }

.article-content { font-family: var(--font-body); font-size: 1.2rem; color: #334155; line-height: 1.9; margin-bottom: var(--space-12); }
.article-content > p:first-of-type::first-letter {
  float: left; font-family: var(--font-display); font-size: 4.5rem;
  line-height: 0.8; color: var(--color-primary); margin-right: 12px;
  margin-top: 6px; font-weight: 700;
}
.article-content p { margin-bottom: var(--space-6); }
.article-content blockquote {
  font-family: var(--font-display); font-size: 1.4rem; font-style: italic;
  color: var(--color-primary); border-left: 4px solid var(--color-gold);
  padding: 24px; margin: var(--space-8) 0; background: var(--color-surface-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.article-gallery img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.3s; cursor: pointer; }
.article-gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* --------------------------------------------------------------------------
   12. DÍZIMO E CONTATO
   -------------------------------------------------------------------------- */
.donation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: stretch; margin-bottom: var(--space-12); }

.pix-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.donation-title { font-size: 1.75rem; margin-bottom: var(--space-6); }
.pix-qrcode { max-width: 200px; border-radius: var(--radius-sm); margin-bottom: var(--space-6); }
.pix-key-display { width: 100%; display: flex; flex-direction: column; gap: var(--space-4); background: var(--color-surface-2); padding: 16px; border-radius: var(--radius-md); border: 1px dashed var(--color-gold); }
.pix-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-faint); margin-bottom: 4px; }
.pix-key { font-family: monospace; font-size: clamp(0.9rem, 3.5vw, 1.15rem); font-weight: 700; color: var(--color-primary); word-break: break-all; }
.btn-copy { background: var(--color-gold); color: #fff; padding: 12px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; transition: all 0.3s; border: none;}
.btn-copy:hover { background: #9E824A; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(180, 151, 90, 0.4);}

.bank-transfer-card { 
  display: flex; flex-direction: column; text-align: center;
  border: 1px solid var(--color-primary); border-radius: var(--radius-lg);
  padding: var(--space-8); background: var(--color-surface); box-shadow: var(--shadow-sm);
}
.bank-title-main { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-primary); margin-bottom: var(--space-6); }
.bank-account-clean { 
  background: var(--color-surface-2); border: 1px solid var(--color-border); 
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 16px; 
}
.bank-header { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 8px; }
.bank-logo { height: 28px; width: auto; object-fit: contain; margin-bottom: 6px; }
.bank-name { font-size: 1.15rem; font-weight: 600; color: var(--color-text); margin-bottom: 4px; }
.bank-numbers { font-size: 1.05rem; color: var(--color-text-muted); }
.bank-titular { margin-top: var(--space-4); font-size: 1.05rem; color: var(--color-text-muted); }

.contact-prompt { font-size: 1.1rem; font-family: var(--font-display); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-4); }
.contact-list-wrapper { display: flex; flex-direction: column; gap: var(--space-8); max-width: 600px; }
.contact-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-icon { color: var(--color-gold); margin-top: 4px; }
.contact-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-faint); margin-bottom: 4px; }
.contact-link { color: var(--color-primary); text-decoration: underline; font-weight: 600;}

@media (max-width: 860px) { .donation-layout { grid-template-columns: 1fr; } }

#toast { 
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 200; 
  background: var(--color-text); color: var(--color-bg); 
  padding: 16px 24px; font-size: 1.05rem; font-weight: 500; 
  opacity: 0; transform: translateY(10px); transition: all 0.3s ease; 
  pointer-events: none; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}
#toast.show { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   13. FOOTER EDITORIAL
   -------------------------------------------------------------------------- */
.site-footer { 
  background-color: var(--color-navy);
  background-image: linear-gradient(to bottom, #0A2440, #061628);
  color: #fff; padding-block: var(--space-8) var(--space-4); position: relative; overflow: hidden;
  border-top: 3px solid var(--color-gold);
}
.footer-ornament-top, .footer-ornament-bottom { display: flex; justify-content: center; align-items: center; }
.footer-ornament-top { margin-bottom: var(--space-8); }
.footer-ornament-bottom { margin-block: var(--space-6) var(--space-4); }

.footer-grid { display: grid; grid-template-columns: 2.5fr auto 1.5fr auto 1.5fr; gap: var(--space-8); align-items: stretch; margin-bottom: var(--space-12);}
.footer-divider-v { width: 1px; background: rgba(255, 255, 255, 0.15); height: 100%; }

.brand-layout { display: flex; gap: var(--space-6); align-items: center; }
.footer-brasao { width: clamp(120px, 15vw, 160px); height: auto; flex-shrink: 0; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));}
.brand-text-content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.brand-eyebrow { font-family: var(--font-display); color: var(--color-gold); font-size: 1.1rem; letter-spacing: 1.5px; }
.brand-title-sub { font-family: var(--font-display); color: var(--color-gold); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 2px;}
.brand-title-main { font-family: var(--font-display); color: var(--color-gold-light); font-size: 2.2rem; line-height: 1.1; text-transform: uppercase;}
.brand-decor-divider { margin-block: 8px 12px; }
.brand-desc { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

.social-links { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-6); }
.social-links a { display: flex; justify-content: center; align-items: center; width: 44px; height: 44px; border: 1px solid var(--color-gold); border-radius: 50%; color: #fff; transition: all 0.3s ease; }
.social-links a:hover { background: var(--color-gold); color: var(--color-navy); transform: translateY(-3px);}
.social-divider { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.3); }

.footer-title { 
  font-family: var(--font-display); font-size: 1.05rem; color: var(--color-gold);
  text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--space-6); position: relative; padding-bottom: var(--space-2);
}
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 40px; width: 60px; height: 1px; background: var(--color-gold); }

.footer-list { list-style: none; display: flex; flex-direction: column; }
.footer-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-list li:last-child { border-bottom: none; }
.footer-list a { display: flex; align-items: center; gap: 12px; padding-block: 12px; font-size: 1rem; color: #fff; opacity: 0.9; }
.footer-list a:hover { opacity: 1; color: var(--color-gold); }
.arrow-gold { color: var(--color-gold); font-weight: bold; font-family: monospace;}

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-6); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.6; }
.footer-contact-list svg { color: var(--color-gold); flex-shrink: 0; }

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-size: 0.95rem; color: rgba(255,255,255,0.7); 
}
.footer-bottom p { margin-top: 4px; }
.footer-bottom .rights { font-family: var(--font-display); font-style: italic; color: var(--color-gold); margin-top: 8px; font-size: 1.05rem;}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-divider-v { width: 100%; height: 1px; }
  .brand-text-content br { display: none; }
}
@media (max-width: 600px) {
  .brand-layout { flex-direction: row; align-items: center; }
  .footer-brasao { width: 100px; }
  .brand-title-main { font-size: 1.6rem; }
  .brand-eyebrow, .brand-title-sub { font-size: 0.9rem; }
}

.creator-credit {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.credit-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(180, 151, 90, 0.05);
  border: 1px solid rgba(180, 151, 90, 0.2);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.creator-link::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.creator-link:hover {
  background: rgba(180, 151, 90, 0.15);
  border-color: rgba(180, 151, 90, 0.6);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(180, 151, 90, 0.15);
}
.creator-link:hover::before { left: 150%; }

/* Redução de movimentos para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   14. SISTEMA DE ANIMAÇÃO GLOBAIS UNIFICADAS (Efeito Cascata Reveal/Stagger)
   -------------------------------------------------------------------------- */
/* Estado inicial comum (Escondido e deslocado para baixo) */
.news-card, 
.editorial-card, 
.prayer-card,
.past-card,
.timeline-item,
.coat-of-arms-wrapper,
.pix-card,
.bank-transfer-card,
.section-header,
.pastors-profile,
.past-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease;
    will-change: transform, opacity;
}

/* Classe unificada disparada pelo IntersectionObserver ao entrar em tela */
.news-card.is-inview, 
.editorial-card.is-inview, 
.prayer-card.is-inview,
.past-card.is-inview,
.timeline-item.is-inview,
.coat-of-arms-wrapper.is-inview,
.pix-card.is-inview,
.bank-transfer-card.is-inview,
.section-header.is-inview,
.pastors-profile.is-inview,
.past-reveal.is-inview,
.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* Unificação Fina de Elevação (Hover "Lift" Premium) */
.news-card:hover, 
.editorial-card:hover, 
.prayer-card:hover,
.past-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(180, 151, 90, 0.5);
}
