/* ═══════════════════════════════════════════════════════════
   COMUNIDADE AMANHECER COM JESUS — Stylesheet
   Paleta: Branco · Bege · Dourado · Azul suave
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dark:   #A07840;
  --cream:       #FAF7F2;
  --beige:       #F0EBE1;
  --blue-soft:   #7BA7BC;
  --blue-light:  #D6E8F0;
  --white:       #FFFFFF;
  --text:        #2C2826;
  --text-mid:    #6B6460;
  --text-light:  #A09A95;
  --shadow-sm:   0 2px 12px rgba(44,40,38,.07);
  --shadow-md:   0 8px 32px rgba(44,40,38,.10);
  --shadow-lg:   0 20px 60px rgba(44,40,38,.13);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ── LOGO IMAGE ──────────────────────────────────────────── */
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), opacity var(--transition);
  opacity: 0.92;
}
.header.scrolled .nav-logo-img {
  filter: none;
  opacity: 1;
}
.nav-logo-img:hover { opacity: 1; }

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}
.btn-outlined-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outlined-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-emblem {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  transition: color var(--transition);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header:not(.scrolled) .logo-main,
.header:not(.scrolled) .logo-sub { color: var(--white); }
.header:not(.scrolled) .logo-emblem { color: var(--gold-light); }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.header.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: var(--gold); }
.chevron {
  font-size: 1rem;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-item.open .chevron { transform: rotate(90deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all var(--transition);
  overflow: hidden;
}
.nav-item.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: var(--cream);
  padding-left: 1.6rem;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.social-nav {
  display: flex;
  gap: 0.5rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.header.scrolled .social-icon { color: var(--text-mid); }
.social-icon:hover { color: var(--gold); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,14,8,.62) 0%,
    rgba(10,8,6,.42) 50%,
    rgba(20,14,8,.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-top: 6rem;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #F87171;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════
   SECTIONS — BASE
   ══════════════════════════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  max-width: 520px;
}
.section-text.light { color: rgba(255,255,255,.8); }
.section-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow.light { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════
   A IGREJA SECTION
   ══════════════════════════════════════════════════════════ */
.section-church { background: var(--white); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-text .section-title { margin-bottom: 1.5rem; }
.two-col-text .btn { margin-top: 0.5rem; }
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-frame:hover img { transform: scale(1.03); }
.image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.badge-text {
  font-size: 0.7rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════
   PROPÓSITOS
   ══════════════════════════════════════════════════════════ */
.section-purpose { background: var(--cream); }
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.purpose-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  transition: all var(--transition);
}
.purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.purpose-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: all var(--transition);
}
.purpose-card:hover .purpose-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}
.purpose-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.purpose-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   AGENDA
   ══════════════════════════════════════════════════════════ */
.section-agenda { background: var(--white); }
.agenda-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.agenda-card {
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.agenda-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold-light);
  transition: background var(--transition);
}
.agenda-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.agenda-card:hover::before { background: var(--gold); }
.agenda-card.featured {
  background: linear-gradient(135deg, var(--text) 0%, #3D3228 100%);
  border-color: transparent;
  color: var(--white);
}
.agenda-card.featured::before { background: var(--gold); width: 3px; }
.agenda-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.agenda-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.agenda-card.featured .agenda-day { color: var(--gold-light); }
.agenda-time {
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.agenda-card.featured .agenda-time { color: var(--white); }
.agenda-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.agenda-card.featured .agenda-name { color: rgba(255,255,255,.9); }
.agenda-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.agenda-card.featured .agenda-desc { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   PROJETOS
   ══════════════════════════════════════════════════════════ */
.section-projects { background: var(--cream); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.project-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.project-card:hover .project-image { transform: scale(1.03); }
.project-img-1 { background: linear-gradient(135deg, #E8D5B0, #C9A96E 80%); }
.project-img-2 { background: linear-gradient(135deg, #D6E8F0, #7BA7BC 80%); }
.project-img-3 { background: linear-gradient(135deg, #E8E0D5, #B09880 80%); }
.project-body { padding: 1.5rem; }
.project-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.project-body p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.project-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.project-link:hover { color: var(--gold-dark); letter-spacing: 0.06em; }

/* ══════════════════════════════════════════════════════════
   PEDIDO DE ORAÇÃO
   ══════════════════════════════════════════════════════════ */
.section-prayer { background: var(--white); }
.prayer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.prayer-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  border-left: 3px solid var(--gold-light);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}
.prayer-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--beige);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ══════════════════════════════════════════════════════════
   TESTEMUNHOS
   ══════════════════════════════════════════════════════════ */
.section-testimonials { background: var(--cream); }
.testimonials-carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid var(--beige);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 500; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--beige);
  background: var(--white);
  color: var(--text-mid);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}
.carousel-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--beige);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════
   NOTÍCIAS
   ══════════════════════════════════════════════════════════ */
.section-news { background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--beige);
  transition: all var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.news-image {
  height: 180px;
  transition: transform 0.5s ease;
}
.news-card:hover .news-image { transform: scale(1.04); }
.news-img-1 { background: linear-gradient(135deg, #F0EBE1, #C9A96E 80%); }
.news-img-2 { background: linear-gradient(135deg, #E8F0F5, #7BA7BC 80%); }
.news-img-3 { background: linear-gradient(135deg, #F5F0EA, #B09070 80%); }
.news-body { padding: 1.5rem; }
.news-date {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.news-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.news-body p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════
   DOAÇÕES
   ══════════════════════════════════════════════════════════ */
.section-donation {
  background: linear-gradient(135deg, #2C2018 0%, #3D2E1A 50%, #2C2018 100%);
  position: relative;
  overflow: hidden;
}
.section-donation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.15) 0%, transparent 60%);
}
.donation-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.donation-wrapper .section-title { margin-bottom: 1.25rem; }
.donation-wrapper .section-text { margin: 0 auto 2rem; }
.donation-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.donation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border: 1.5px solid rgba(201,169,110,.5);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.donation-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════════════ */
.section-contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item p { font-size: 0.9rem; color: var(--text-mid); }
.contact-social { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-pill {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.social-pill:hover { border-color: var(--gold); color: var(--gold); }
.contact-map {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--beige);
  overflow: hidden;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  color: var(--text-light);
  font-size: 0.9rem;
}
.map-placeholder svg { opacity: 0.3; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-emblem { margin-bottom: 0.75rem; display: block; }
.footer-tagline {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin: 1rem 0;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials .social-icon { color: rgba(255,255,255,.5); }
.footer-socials .social-icon:hover { color: var(--gold); }
.footer-links-group h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-group ul li, .footer-links-group ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links-group ul a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-verse { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.animate-fade {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-menu, .social-nav { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    padding: 2rem;
  }
  .nav-menu.open .nav-link { color: var(--text); font-size: 1.1rem; padding: 0.875rem 1.5rem; }
  .nav-menu.open .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: all;
    box-shadow: none;
    background: var(--cream);
    margin-top: 0.25rem;
    border-radius: var(--radius-sm);
  }
  .hamburger { display: flex; }
  .two-col           { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-image     { order: -1; }
  .purpose-grid      { grid-template-columns: 1fr 1fr; }
  .projects-grid     { grid-template-columns: 1fr; }
  .news-grid         { grid-template-columns: 1fr; }
  .agenda-grid       { grid-template-columns: 1fr; }
  .prayer-wrapper    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .btn-gold, .btn-outline-light { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .purpose-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .testimonial-card { padding: 1.75rem; }
}
