/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bordeaux:   #8B0000;
  --bordeaux-d: #6a0000;
  --bordeaux-l: #b30000;
  --amber:      #C97A09;
  --amber-d:    #a66208;
  --cream:      #FDF3EF;
  --charcoal:   #333333;
  --charcoal-l: #555555;
  --white:      #ffffff;
  --border:     rgba(139,0,0,0.12);
  --font-head:  'Playfair Display', serif;
  --font-body:  'Montserrat', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--bordeaux); border-radius: 99px; }

/* ─── REVEAL ON SCROLL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-40px); opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { transform: translateX(40px);  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ─── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--bordeaux-d);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-symbol {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-symbol img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 99px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--amber-d) !important; }
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 22px;
}

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--bordeaux-d);
  flex-direction: column; padding: 16px 5% 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500;
  padding: 12px 16px; border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--bordeaux-d);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,122,9,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(139,0,0,0.6) 0%, transparent 50%),
    linear-gradient(135deg, #3a0000 0%, #8B0000 50%, #6a0000 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 120px 5% 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,122,9,0.2);
  border: 1px solid rgba(201,122,9,0.4);
  color: var(--amber);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-eyebrow i { font-size: 10px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero-title em { color: var(--amber); font-style: italic; }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeInUp 1s 0.3s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 1.1s 0.45s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 99px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--amber); color: var(--white);
}
.btn-primary:hover { background: var(--amber-d); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.hero-verse {
  position: absolute; bottom: 40px; left: 5%; right: 5%;
  display: flex; align-items: center; gap: 16px;
  animation: fadeIn 1.4s 0.7s ease both;
}
.hero-verse-line {
  width: 40px; height: 2px; background: var(--amber); flex-shrink: 0;
}
.hero-verse-text {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.hero-scroll {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeIn 1.6s 1s ease both;
}
.hero-scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hero-scroll-dot.active { background: var(--amber); }
.hero-scroll-bar {
  width: 2px; height: 60px; background: rgba(255,255,255,0.15);
  border-radius: 99px; position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 30%; background: var(--amber);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ─── QUICK ACCESS RIBBON ─────────────────────────────────── */
#quick-access {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.quick-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.quick-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 0;
  border-right: 1px solid var(--border);
  padding-left: 24px;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none; color: inherit;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(139,0,0,0.03); }
.quick-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.qi-red   { background: rgba(139,0,0,0.1); color: var(--bordeaux); }
.qi-amber { background: rgba(201,122,9,0.1); color: var(--amber); }
.qi-green { background: rgba(22,101,52,0.1); color: #166534; }
.qi-blue  { background: rgba(29,78,216,0.1); color: #1d4ed8; }
.quick-label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.quick-desc  { font-size: 11px; color: var(--charcoal-l); margin-top: 2px; }

/* ─── SECTION WRAPPER ─────────────────────────────────────── */
.section { padding: 96px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 12px;
}
.section-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--amber); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--bordeaux); font-style: italic; }
.section-desc {
  font-size: 16px; color: var(--charcoal-l); line-height: 1.8; max-width: 560px;
}

/* ─── YOUTUBE SECTION ─────────────────────────────────────── */
#cultos { background: var(--charcoal); }
#cultos .section-title { color: var(--white); }
#cultos .section-tag { color: var(--amber); }
#cultos .section-desc { color: rgba(255,255,255,0.6); }
.cultos-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-top: 48px; align-items: start;
}
.player-card {
  background: #1a1a1a; border-radius: var(--radius-lg); overflow: hidden;
}
.player-header {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 99px;
}
.live-badge.live { background: #dc2626; color: var(--white); }
.live-badge.replay { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.live-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--white);
  animation: pulse 1.4s ease-in-out infinite;
}
.player-iframe-wrap {
  position: relative; padding-top: 56.25%;
  background: #000;
}
.player-iframe-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.player-footer {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.player-title-text { color: var(--white); font-size: 14px; font-weight: 600; }
.player-date-text  { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 3px; }
.btn-yt {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 99px;
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
}
.btn-yt:hover { background: #cc0000; transform: translateY(-2px); }
.btn-subscribe {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 10px 20px; border-radius: 99px;
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
}
.btn-subscribe:hover { background: #cc0000; transform: translateY(-2px); }
.horarios-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.horarios-title {
  color: var(--amber); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.horario-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.horario-item:last-child { border-bottom: none; padding-bottom: 0; }
.horario-day {
  min-width: 64px;
  background: rgba(139,0,0,0.3);
  border-radius: 8px; padding: 6px 10px; text-align: center;
}
.horario-day-name { color: var(--amber); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; }
.horario-day-times { color: var(--white); font-size: 11px; margin-top: 2px; }
.horario-desc { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }
.horario-desc strong { color: var(--white); font-weight: 600; }

/* ─── VERSÍCULO CARROSSEL ─────────────────────────────────── */
#versiculos {
  background: var(--bordeaux);
  padding: 56px 5%;
  overflow: hidden;
}
.verse-track {
  display: flex;
  animation: slideVerse 20s linear infinite;
  width: max-content;
  gap: 60px;
  align-items: center;
}
.verse-item {
  display: flex; align-items: center; gap: 20px;
  white-space: nowrap;
}
.verse-cross { color: var(--amber); font-size: 18px; }
.verse-text {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}
.verse-ref {
  color: rgba(255,255,255,0.45);
  font-size: 13px; font-weight: 600;
}
#versiculos:hover .verse-track { animation-play-state: paused; }

/* ─── ABOUT SECTION ───────────────────────────────────────── */
#sobre { background: var(--cream); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.sobre-visual {
  position: relative;
}
.sobre-card-main {
  background: var(--bordeaux);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.sobre-card-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sobre-card-year {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  font-size: 96px; font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.sobre-card-label {
  position: relative; z-index: 2;
  color: var(--amber);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.sobre-card-title {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  color: var(--white); font-size: 26px; font-weight: 800;
  line-height: 1.3;
}
.sobre-card-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--amber);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 3;
}
.sobre-card-float-num {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 800; color: var(--white); line-height: 1;
}
.sobre-card-float-lbl {
  font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 600;
}
.sobre-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px;
}
.sobre-value-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.sobre-value-item:hover { border-color: var(--bordeaux); transform: translateY(-3px); }
.sobre-value-icon { color: var(--bordeaux); font-size: 20px; margin-bottom: 8px; }
.sobre-value-title { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.sobre-value-desc  { font-size: 12px; color: var(--charcoal-l); margin-top: 4px; line-height: 1.5; }
.sobre-text p { font-size: 16px; color: var(--charcoal-l); line-height: 1.85; margin-bottom: 16px; }
.btn-bordeaux {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bordeaux); color: var(--white);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 99px;
  transition: all var(--transition); border: none; cursor: pointer;
}
.btn-bordeaux:hover { background: var(--bordeaux-d); transform: translateY(-2px); }

/* ─── PGM SECTION ─────────────────────────────────────────── */
#pgm { background: var(--white); }
.pgm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.pgm-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.pgm-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--bordeaux);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.pgm-card:hover { transform: translateY(-6px); border-color: var(--bordeaux); box-shadow: 0 16px 40px rgba(139,0,0,0.12); }
.pgm-card:hover::before { transform: scaleX(1); }
.pgm-number {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  color: rgba(139,0,0,0.08); line-height: 1; margin-bottom: 12px;
}
.pgm-name { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.pgm-leader { font-size: 13px; color: var(--charcoal-l); display: flex; align-items: center; gap: 6px; }
.pgm-leader i { color: var(--amber); }
.pgm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pgm-tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px;
  background: rgba(139,0,0,0.08); color: var(--bordeaux);
}
.pgm-cta {
  text-align: center; margin-top: 40px;
}

/* ─── AGENDA SECTION ──────────────────────────────────────── */
#agenda { background: var(--cream); }
.agenda-list { margin-top: 48px; display: flex; flex-direction: column; gap: 14px; }
.agenda-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: all var(--transition);
}
.agenda-item:hover { border-color: var(--bordeaux); transform: translateX(6px); }
.agenda-date {
  min-width: 60px; height: 60px;
  background: var(--bordeaux);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.agenda-day  { color: var(--white); font-size: 22px; font-weight: 800; line-height: 1; }
.agenda-mon  { color: var(--amber); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; }
.agenda-info { flex: 1; }
.agenda-name { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.agenda-meta { font-size: 13px; color: var(--charcoal-l); margin-top: 3px; display: flex; align-items: center; gap: 12px; }
.agenda-meta i { color: var(--amber); }
.agenda-badge {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px;
  background: rgba(201,122,9,0.12); color: var(--amber-d);
}

/* ─── DIZIMOS SECTION ─────────────────────────────────────── */
#dizimos { background: var(--bordeaux); }
.dizimos-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
#dizimos .section-title        { color: var(--white); }
#dizimos .section-title em     { color: var(--amber); }
#dizimos .section-tag          { color: var(--amber); }
#dizimos .section-desc { color: rgba(255,255,255,0.7); }
.dizimos-verse {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 15px; line-height: 1.7;
  margin: 20px 0 32px;
  border-left: 3px solid var(--amber);
  padding-left: 18px;
}
.pix-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pix-title {
  color: var(--amber); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.pix-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pix-row:last-of-type { border-bottom: none; }
.pix-icon { color: var(--amber); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.pix-key-label { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600; }
.pix-key-value { color: var(--white); font-size: 14px; font-weight: 700; margin-top: 3px; }
.btn-copy {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber); color: var(--white);
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 99px;
  border: none; cursor: pointer; margin-top: 8px;
  transition: all var(--transition);
}
.btn-copy:hover { background: var(--amber-d); }
.btn-copy.copied { background: #16a34a; }

/* ─── FOTOS SECTION ───────────────────────────────────────── */
#fotos { background: var(--white); }
.fotos-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #f0ece4;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 180px;
}
.gallery-item:first-child .gallery-img { min-height: 380px; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(139,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(139,0,0,0.3); }
.gallery-overlay i {
  color: var(--white); font-size: 28px;
  opacity: 0; transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }
.gallery-loading {
  grid-column: span 3; text-align: center; padding: 60px 20px;
  color: var(--charcoal-l); font-size: 14px;
}
.gallery-loading i { font-size: 32px; color: var(--bordeaux); display: block; margin-bottom: 12px; animation: spin 1.5s linear infinite; }

/* ─── FOOTER ──────────────────────────────────────────────── */
#footer {
  background: #1a0000;
  padding: 64px 5% 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-text {
  font-family: var(--font-body); font-weight: 800; font-size: 22px;
  color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px;
}
.footer-logo-sub { font-size: 11px; color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7;
  margin-top: 16px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--bordeaux); color: var(--white); }
.footer-col-title {
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item i { color: var(--amber); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.5; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-since {
  color: var(--amber); font-size: 12px; font-weight: 600;
}

/* ─── KEYFRAMES ───────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes scrollAnim {
  0%   { top: -30%; }
  100% { top: 100%; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
@keyframes slideVerse {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cultos-grid  { grid-template-columns: 1fr; }
  .sobre-grid   { grid-template-columns: 1fr; gap: 40px; }
  .dizimos-inner{ grid-template-columns: 1fr; gap: 40px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-item:nth-child(2n) { border-right: none; }
  .pgm-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .sobre-values { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-scroll { display: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ── Hero: carrossel de fundo ──────────────────────────────── */
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(42,0,0,0.88) 0%, rgba(42,0,0,0.65) 55%, rgba(42,0,0,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.hero-pattern { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; }
.hero-verse   { z-index: 3; }
.hero-scroll  { z-index: 3; }

.hero-carousel-controls {
  position: absolute; z-index: 4; inset: 0; pointer-events: none;
}
.hero-carousel-btn {
  pointer-events: all;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #ffffff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(4px);
}
.hero-carousel-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.08);
}
.hero-carousel-btn.prev { left:  24px; }
.hero-carousel-btn.next { right: 24px; }

.hero-carousel-dots {
  pointer-events: all;
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.35s ease;
}
.hero-dot.active { background: #C97A09; width: 24px; border-radius: 4px; }
.hero-dot:hover:not(.active) { background: rgba(255,255,255,0.6); }

/* ── Sobre card: carrossel de fundo ────────────────────────── */
.sobre-card-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  border-radius: var(--radius-lg);
}
.sobre-media-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sobre-media-slide.active { opacity: 1; }
.sobre-media-slide video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sobre-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(42, 0, 0, 0.72);
  border-radius: var(--radius-lg);
}
.sobre-card-pattern { z-index: 2; }
.sobre-card-year    { position: relative; z-index: 3; }
.sobre-card-label   { position: relative; z-index: 3; }
.sobre-card-title   { position: relative; z-index: 3; }
.sobre-card-float   { z-index: 4; }

/* ── Card do pastor ────────────────────────────────────────── */
.pastor-card {
  display: flex; align-items: center; gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(139,0,0,0.12);
  border-radius: 12px;
  padding: 16px 20px; margin-top: 24px;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.pastor-card:hover { border-color: #8B0000; transform: translateY(-2px); }
.pastor-photo {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 3px solid #8B0000;
}
.pastor-photo img { width: 100%; height: 100%; object-fit: cover; }
.pastor-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #C97A09; margin-bottom: 3px;
}
.pastor-name { font-size: 15px; font-weight: 700; color: #333333; margin-bottom: 5px; }
.pastor-bio  { font-size: 12px; color: #555555; line-height: 1.5; }

/* ── Responsivo (carrossel + pastor) ───────────────────────── */
@media (max-width: 768px) {
  .hero-carousel-btn { width: 36px; height: 36px; font-size: 13px; }
  .hero-carousel-btn.prev { left: 12px; }
  .hero-carousel-btn.next { right: 12px; }
  .pastor-card { flex-direction: column; text-align: center; }
  .pastor-photo { width: 88px; height: 88px; }
}
