:root {
  --black: #111111;
  --dark: #1c1c1c;
  --mid: #555555;
  --light: #999999;
  --border: #e2e2e2;
  --cream: #f9f7f4;
  --white: #ffffff;
  --accent: #b8922a;
  --accent-light: #d4a843;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3.serif {
  font-family: 'Cormorant Garamond', serif;
}

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

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, box-shadow 0.4s, border-color 0.5s;
}
nav.scrolled {
  background: rgba(249,247,244,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(226,226,226,0.4);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}

/* Nav links white in hero, dark when scrolled */
nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.7); }
nav:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
nav:not(.scrolled) .logo-text { color: rgba(255,255,255,0.9); }
nav:not(.scrolled) .logo-text span { color: rgba(255,255,255,0.4); }
nav:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
nav:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.25); }

.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-badge {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.72rem; color: var(--white); letter-spacing: 0.04em;
}
.logo-text { font-size: 0.82rem; font-weight: 500; color: var(--dark); line-height: 1.25; transition: color 0.4s; }
.logo-text span { display: block; font-size: 0.68rem; color: var(--mid); font-weight: 400; transition: color 0.4s; }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid);
  font-size: 0.82rem; font-weight: 400;
  padding: 0.4rem 0.85rem; border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--border); color: var(--dark); }

.nav-cta {
  padding: 0.5rem 1.2rem; border-radius: 20px;
  background: var(--black); color: var(--white);
  font-size: 0.8rem; font-weight: 500; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, background 0.4s, border 0.4s;
  border: 1px solid transparent;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  position: relative; overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700; color: rgba(255,255,255,0.025);
  white-space: nowrap; pointer-events: none;
  user-select: none; line-height: 1;
}

.hero-cross {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  opacity: 0.08;
}
.cross-v { width: 3px; height: 90px; background: var(--white); border-radius: 2px; }
.cross-h {
  width: 60px; height: 3px; background: var(--white); border-radius: 2px;
  margin-top: -60px; margin-bottom: 0;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem 5rem;
  display: grid; grid-template-columns: 1fr 380px;
  align-items: flex-end; gap: 3rem;
}

/* ─── BTN ACCENT (yellow) ─── */
.btn-accent {
  padding: 0.75rem 1.8rem; border-radius: 30px;
  background: var(--accent); color: var(--black);
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(184,146,42,0.4);
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,42,0.5); }

/* ─── HERO SLIDESHOW ─── */
.hero-slideshow {
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero-slide-frame {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 28px 64px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotate(2.5deg) translateX(-60px) translateY(60px);
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(184,146,42,0.08) 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}
.hero-slide-dots {
  display: flex; gap: 0.5rem; align-items: center;
  margin-top: 0.5rem;
  transform: rotate(2.5deg) translateX(-60px) translateY(60px); 
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.hero-dot.active {
  background: var(--accent-light);
  width: 24px;
  border-radius: 4px;
}

.hero-since {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.7rem;
}
.hero-since::before { content:''; width: 24px; height: 1px; background: var(--accent); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.05;
  color: var(--white); max-width: 680px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.55); }

.hero-tagline {
  margin-top: 1.5rem;
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 420px;
}

.hero-actions { display: flex; gap: 0.8rem; margin-top: 2.5rem; }

.hero-social {
  display: flex; gap: 0.6rem; margin-top: 1.5rem; align-items: center;
}
.hero-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.hero-social-btn:hover { background: var(--accent); color: var(--black); border-color: var(--accent); transform: translateY(-2px); }
.hero-social-btn[title="Instagram"]:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.hero-social-btn[title="YouTube"]:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.hero-social-btn[title="Spotify"]:hover { background: #1DB954; border-color: #1DB954; color: #fff; }
.hero-social-btn[title="Google"]:hover { background: #4285F4; border-color: #4285F4; color: #fff; }
.btn-white {
  padding: 0.75rem 1.8rem; border-radius: 30px;
  background: var(--white); color: var(--black);
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-white:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  padding: 0.75rem 1.8rem; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.hero-stats {
  display: flex; flex-direction: column; gap: 1.5rem;
  padding-bottom: 0.5rem;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.3); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 3;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll i { font-size: 0.75rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── SECTIONS COMMON ─── */
section { padding: 7rem 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2.5rem; }

.section-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-eyebrow:before { content:''; width: 24px; height: 1.5px; background: var(--accent); }

.section-eyebrow i { font-size: 0.7rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  color: var(--black);
}
.section-title em { font-style: italic; color: var(--accent); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--accent-light); }

.section-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: var(--mid); max-width: 540px; margin-top: 0.8rem;
}
.section-sub.light { color: rgba(255,255,255,0.5); }

/* ─── PROPÓSITO ─── */
#proposito { background: var(--white); }

.proposito-header { margin-bottom: 4rem; }

.purpose-trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 4rem;
}
.purpose-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.purpose-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(184,146,42,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.purpose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,146,42,0.18); }
.purpose-card:hover::before { opacity: 1; }

.purpose-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.purpose-card:hover .purpose-icon-wrap { background: var(--accent); }

.purpose-card-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--light); margin-bottom: 0.5rem;
}
.purpose-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--black); line-height: 1.2;
  margin-bottom: 1rem;
}
.purpose-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }

.purpose-pillars { display: none; }

/* ─── COMO VIVEMOS ─── */
#como-vivemos {
  background: var(--cream);
  padding: 5rem 0;
}


.como-vivemos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.cv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  gap: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.cv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.cv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(184,146,42,0.2); }
.cv-card:hover::before { opacity: 1; }

.cv-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cv-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
}
.cv-card:hover .cv-icon { background: var(--accent); }

.cv-verse-label {
  font-size: 0.7rem; font-weight: 600; color: var(--accent);
  text-decoration: underline; text-decoration-style: dotted;
  text-underline-offset: 3px; cursor: pointer;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.cv-verse-label:hover { color: var(--accent-light); }

.cv-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--black); line-height: 1.2;
  margin-bottom: 0.25rem;
}
.cv-card p {
  font-size: 0.9rem; color: var(--mid); line-height: 1.75;
}

.cv-divider {
  display: flex; align-items: center;
  margin: 1.25rem 0;
  gap: 0.5rem;
}
.cv-divider::before,
.cv-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border);
}
.cv-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── VALORES ─── */
#valores { background: var(--black); }

.valores-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3.5rem;
}
.valor-card {
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
  padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Yellow gradient corner effect on hover */
.valor-card::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.2) 0%, rgba(184,146,42,0.1) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.5);
  pointer-events: none;
  
}
.valor-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.valor-card:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(184,146,42,0.3);
  transform: translateY(-4px);
}
.valor-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--mid); line-height: 1;
  margin-bottom: 1.2rem;
  
}
.valor-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(184,146,42,0.15); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 1rem;
}
.valor-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; line-height: 1.3; position: relative; z-index: 1; }
.valor-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; position: relative; z-index: 1; }
.valor-ref {
  font-size: 0.68rem; color: var(--accent); margin-top: 0.8rem; display: block;
  cursor: pointer; text-decoration: underline; text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
  position: relative; z-index: 1;
}
.valor-ref:hover { text-decoration-color: var(--accent); }

/* ─── HISTÓRIA ─── */
#historia { background: var(--cream); }

.historia-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.historia-since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 700; color: var(--border); line-height: 1;
  margin-bottom: -1rem;
}
.historia-text p {
  font-size: 0.95rem; color: var(--mid); line-height: 1.9; margin-bottom: 1.2rem; font-weight: 300;
}
.historia-text strong { color: var(--dark); font-weight: 500; }

.pastor-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.pastor-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.95rem; flex-shrink: 0;
}
.pastor-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.pastor-card p { font-size: 0.78rem; color: var(--light); margin-top: 0.2rem; }
.pastor-badge {
  margin-left: auto; padding: 0.25rem 0.7rem; border-radius: 20px;
  background: rgba(184,146,42,0.1); color: var(--accent);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; white-space: nowrap;
}

.timeline-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow);
}
.timeline-wrap h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--light); margin-bottom: 1.5rem;
}
.tl-list { display: flex; flex-direction: column; max-height: 340px; overflow-y: auto; padding-right: 0.5rem; }
.tl-list::-webkit-scrollbar { width: 3px; }
.tl-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.tl-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.tl-item:last-child { border-bottom: none; }
.tl-period { font-size: 0.72rem; color: var(--accent); font-weight: 500; min-width: 105px; }
.tl-name { font-size: 0.82rem; color: var(--dark); }
.tl-current .tl-period { color: var(--black); font-weight: 700; }
.tl-current .tl-name { font-weight: 600; color: var(--black); }

/* ─── IDENTIDADE BATISTA ─── */
#batista { background: var(--white); }

/* ── Desktop grid (original) ── */
.batista-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.batista-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.batista-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,146,42,0.25);
}
.batista-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  transition: background 0.3s;
}
.batista-card:hover .batista-card-icon { background: var(--accent); }
.batista-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
}
.batista-card p {
  font-size: 0.82rem; color: var(--mid); line-height: 1.65; text-align: center;
}
.batista-card strong { color: var(--dark); }

/* ── Mobile carousel (hidden on desktop) ── */
.batista-carousel-wrap { display: none; }

/* ── Mobile card style ── */
.batista-card-mobile {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  min-height: 320px;
  flex: 0 0 100%;
}
.batista-card-mobile .batista-card-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: background 0.3s;
}
.batista-card-mobile .batista-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--accent);
}
.batista-card-mobile .batista-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--black); line-height: 1.2;
}
.batista-card-mobile p {
  font-size: 0.88rem; color: var(--mid); line-height: 1.7; text-align: center;
}
.batista-card-mobile strong { color: var(--dark); }

/* ── Carousel track ── */
.batista-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.batista-track-outer:active { cursor: grabbing; }
.batista-track {
  display: flex;
  gap: 1.2rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── Carousel nav ── */
.batista-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.5rem;
}
.batista-prev, .batista-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); color: var(--white);
  border: none; cursor: pointer; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.batista-prev:hover, .batista-next:hover { background: var(--accent); transform: scale(1.05); }
.batista-prev:disabled, .batista-next:disabled { background: var(--border); color: var(--light); cursor: default; transform: none; }
.batista-dots { display: flex; gap: 0.4rem; align-items: center; }
.batista-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.batista-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ─── GOVERNO ─── */
#governo { background: var(--black); }

.governo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3.5rem;
}
.gov-card {
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
  padding: 2rem 1.8rem; border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s, border-color 0.25s;
}
.gov-card:hover { transform: translateY(-4px); border-color: rgba(184,146,42,0.25); }
.gov-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.07); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 1.2rem;
}
.gov-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; }
.gov-card p { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.gov-items { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1rem; }
.gov-item { display: flex; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); align-items: flex-start; }
.gov-item i { color: var(--accent); font-size: 0.6rem; margin-top: 0.35rem; flex-shrink: 0; }

/* ─── MINISTÉRIOS ─── */
#ministerios { background: var(--dark); }

.min-intro { max-width: 560px; }
.min-ref { font-size: 0.8rem; color: var(--accent); font-weight: 500; margin-top: 0.5rem; }
.min-ref.light { color: var(--accent-light); }

.ministerios-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem;
}
.min-card {
  background: #2a2a2a; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.min-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.min-img {
  height: 140px; position: relative; overflow: hidden;
  background: var(--black);
}
.min-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6; transition: opacity 0.4s, transform 0.5s;
  filter:grayscale(1)
}
.min-card:hover .min-img img { opacity: 0.75; transform: scale(1.06); }
.min-img-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,0.9);
}
.min-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.min-body { padding: 1.2rem 1.3rem; }
.min-body h3 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.min-body .min-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 0.8rem;
}
.min-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-size: 0.65rem; padding: 0.28rem 0.65rem; border-radius: 20px;
  background: rgba(184,146,42,0.15);
  color: var(--accent-light);
  font-weight: 600;
  border: 1px solid rgba(184,146,42,0.3);
  letter-spacing: 0.03em;
}

.min-card.prayer { border-style: dashed; border-color: rgba(255,255,255,0.12); }
.min-card.prayer .min-img { background: #1a1a1a; }
.min-card.prayer .min-body h3 { color: rgba(255,255,255,0.4); }
.min-prayer-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.67rem; color: var(--accent); font-weight: 500; margin-top: 0.6rem;
}
.min-prayer-badge i { font-size: 0.6rem; }

/* ─── GALERIA ─── */
#galeria { background: var(--white); padding-bottom: 0; }

.gallery-header { margin-bottom: 2.5rem; }

/* Video carousel wrapper */
.gallery-carousel-wrap {
  margin: 0 -2.5rem;
  position: relative;
}

/* Carousel styles (from vertical-video-carousel.html) */
.carousel-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 50px 0 30px;
}
.carousel-outer::before,
.carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}
.carousel-outer::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.carousel-outer::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
  will-change: transform;
}
.track:hover {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.video-card {
  width: 220px;
  height: 390px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  cursor: default;
  user-select: none;
  background: #e8e8e8;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Gallery "Veja Mais" button */
.gallery-footer {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 4rem;
}
.btn-veja-mais {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem; border-radius: 30px;
  background: var(--black); color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-veja-mais:hover {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-veja-mais i { font-size: 0.75rem; }

/* ─── FINANCEIRO ─── */
#financeiro { background: var(--cream); }

.financeiro-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; margin-top: 3.5rem;
}
.fin-left p {
  font-size: 0.95rem; color: var(--mid); line-height: 1.9; margin-bottom: 1.2rem; font-weight: 300;
}
.fin-cards { display: flex; flex-direction: column; gap: 1rem; }
.fin-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.2rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.fin-card:hover { box-shadow: var(--shadow); border-color: rgba(184,146,42,0.2); }
.fin-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--cream); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.fin-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.fin-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }
.fin-card .ref { font-size: 0.7rem; color: var(--accent); margin-top: 0.5rem; font-weight: 500; }

/* ─── FAQ ─── */
#faq { background: var(--white); }

.faq-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}
.faq-left p {
  font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-top: 1rem; font-weight: 300;
}

.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--border); }
.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; flex-shrink: 0;
  transition: background 0.25s, transform 0.35s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--black); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-a p { font-size: 0.85rem; color: var(--mid); line-height: 1.8; padding-bottom: 1.2rem; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 0; }

/* ─── PROGRAMAÇÃO ─── */
#programacao { background: var(--cream); }

.cronograma-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem;
}
.crono-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.8rem; border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.crono-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(184,146,42,0.2); }
.crono-day {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.crono-day i { font-size: 0.65rem; }
.crono-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem;
}
.crono-time {
  font-size: 0.82rem; color: var(--mid); font-weight: 400;
}
.crono-badge {
  display: inline-block; margin-top: 0.8rem;
  padding: 0.2rem 0.65rem; border-radius: 20px;
  background: rgba(184,146,42,0.1); color: var(--accent);
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.04em;
}

/* ─── CONTATO / REDES ─── */
#contato { background: var(--black); }

.contato-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 3.5rem; align-items: start;
}
.contato-text p {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 2rem; font-weight: 300;
}

.social-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--accent-light); text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.social-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.social-btn[title="Instagram"]:hover { background: #E1306C; border-color: #E1306C; }
.social-btn[title="YouTube"]:hover { background: #FF0000; border-color: #FF0000; }
.social-btn[title="Spotify"]:hover { background: #1DB954; border-color: #1DB954; }
.social-btn[title="Google"]:hover { background: #4285F4; border-color: #4285F4; }

/* Address & Map in contact */
.contato-right { display: flex; flex-direction: column; gap: 1.5rem; }

.address-card {
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  padding: 1.5rem 1.8rem; border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 1rem; align-items: flex-start;
}
.address-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(184,146,42,0.15); color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.address-card h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.35rem; }
.address-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.map-frame {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  height: 260px;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(1) invert(1);
}

/* ─── VERSE POPUP ─── */
.verse-popup {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.verse-popup.open { opacity: 1; pointer-events: all; }
.verse-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 3rem; max-width: 520px; width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.verse-popup.open .verse-box { transform: translateY(0); }
.verse-ref-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.verse-ref-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.verse-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; line-height: 1.55;
  color: var(--dark);
}
.verse-source {
  margin-top: 1.2rem; font-size: 0.78rem; color: var(--light); font-weight: 400;
}
.verse-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cream); border: none; cursor: pointer;
  color: var(--mid); font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.verse-close:hover { background: var(--border); }

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a; padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer p, a { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-brand {
  font-size: 0.75rem; color: rgba(184,146,42,0.4); letter-spacing: 0.08em;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero-animate { opacity: 0; transform: translateY(32px); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: var(--white); font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── GLOBAL CLICKABLE REFS ─── */
.clickable-ref, .valor-ref {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}
.clickable-ref:hover { color: var(--accent); }
.valor-ref:hover { opacity: 0.85; }

/* ─── BATISTA CARD TITLE ─── */
.batista-card-title {
  font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-top: -0.2rem;
}

/* ─── FEATURED CRONO CARD ─── */
.crono-card.crono-featured {
  background: var(--black);
  border-color: rgba(184,146,42,0.3);
  position: relative; overflow: hidden;
}
.crono-card.crono-featured::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 0%, rgba(184,146,42,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.crono-card.crono-featured .crono-day { color: var(--accent-light); }
.crono-card.crono-featured h4 { color: var(--white); font-size: 1.5rem; }
.crono-card.crono-featured .crono-time { color: rgba(255,255,255,0.55); }
.crono-card.crono-featured .crono-badge { background: rgba(184,146,42,0.18); color: var(--accent-light); border: 1px solid rgba(184,146,42,0.3); }
.crono-card.crono-featured:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 0 1px rgba(184,146,42,0.35); }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.6rem; border-radius: 14px;
  background: var(--accent); color: var(--black);
  text-decoration: none; font-size: 0.85rem; font-weight: 700;
  margin-top: 1.8rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(184,146,42,0.35);
}
.whatsapp-btn:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,146,42,0.5); }
.whatsapp-btn i { font-size: 1.1rem; }

/* ─── VERSE TEXT (Outfit) ─── */
.verse-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem; font-weight: 400; line-height: 1.75; color: var(--dark);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
  .hero-slideshow { display: none; }
  .purpose-trio, .valores-grid,
  .ministerios-grid, .governo-grid { grid-template-columns: 1fr 1fr; }
  .historia-layout, .financeiro-split,
  .contato-layout, .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .batista-cards-row { grid-template-columns: 1fr 1fr; }
  .cronograma-grid { grid-template-columns: 1fr 1fr; }
  .como-vivemos-grid { grid-template-columns: 1fr; max-width: 420px; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .gallery-carousel-wrap { margin: 0 -1.5rem; }
}
@media (max-width: 600px) {
  /* Hero slideshow: corrigir bug no mobile — resetar transforms que causam overflow */
  .hero-slideshow { display: flex; padding-left: 0; padding-bottom: 1.5rem; }
  .hero-slide-frame { height: 280px; transform: none; }
  .hero-slide-dots { transform: none; }

  /* Propósito: 1 card por linha */
  .purpose-trio { grid-template-columns: 1fr; }

  /* Valores: 1 card por linha, ícone maior no mobile */
  .valores-grid { grid-template-columns: 1fr; }
  .valor-num { display: none; }
  .valor-icon {
    width: 56px; height: 56px; border-radius: 14px;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }
  .valor-card h4 { font-size: 1rem; }
  .valor-card p { font-size: 0.85rem; }

  /* Identidade Batista: esconde grid desktop, mostra carousel mobile */
  .batista-cards-row { display: none; }
  .batista-carousel-wrap { display: block; margin-top: 2rem; }

  /* Programação: card featured em linha única, demais 2 por linha */
  .cronograma-grid { grid-template-columns: 1fr 1fr; }
  .cronograma-grid .crono-card.crono-featured { grid-column: 1 / -1; }
}