/* =============================================
   PIBAM MUNDEL - Landing Page de Alta Conversão
   CSS Principal
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #00b7e3;
  --primary-dk: #007ba7;
  --dark:       #1a202c;
  --dark2:      #0e1216;
  --text:       #231f20;
  --text-light: #676263;
  --white:      #ffffff;
  --bg-light:   #efeeeb;
  --bg-section: #f7f7f7;
  --gold:       #f5c518;
  --success:    #27ae60;
  --border:     #e2e8f0;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --radius:     8px;
  --transition: 0.3s ease;
  --font-main:  'Segoe UI', 'Arial', sans-serif;
  --font-title: 'Georgia', 'Times New Roman', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.section-title span { color: var(--primary); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-subtitle { color: #a0aec0; }
.section-light { background: var(--bg-light); }
.section-blue { background: var(--primary); color: var(--white); }
.section-blue h2, .section-blue h3 { color: var(--white); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,183,227,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #e0b015;
  border-color: #e0b015;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* --- Header / Navbar --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14, 18, 22, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-text {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.1rem;
  line-height: 1.2;
}
.nav-logo-text strong { color: var(--primary); display: block; font-size: 1.3rem; }
.nav-logo img { height: 50px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: rgba(0,183,227,0.1);
}
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(14,18,22,0.92) 0%, rgba(0,123,167,0.7) 100%),
              url('../img/hero_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--primary); }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-verse {
  margin-top: 3rem;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--primary);
  background: rgba(0,183,227,0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-size: 1rem;
  max-width: 560px;
}
.hero-verse cite { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 700; color: var(--primary); }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--primary);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-item span { font-size: 0.85rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
}
.about-content .tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-list { margin: 1.5rem 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.about-list li .icon {
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Services/Ministries --- */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.ministry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
  text-align: center;
}
.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,183,227,0.15);
}
.ministry-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--white);
}
.ministry-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.ministry-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* --- Gospel Section --- */
.gospel-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
}
.gospel-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,183,227,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.gospel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.gospel-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.gospel-content h2 span { color: var(--primary); }
.gospel-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.gospel-pillars { margin-top: 2rem; }
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.pillar-num {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.pillar-item h4 { color: var(--white); margin-bottom: 0.25rem; }
.pillar-item p { color: rgba(255,255,255,0.7); font-size: 0.93rem; margin: 0; }
.gospel-verse-box {
  background: rgba(0,183,227,0.12);
  border: 1px solid rgba(0,183,227,0.3);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}
.gospel-verse-box .big-quote {
  font-size: 5rem;
  color: var(--primary);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
}
.gospel-verse-box blockquote {
  color: var(--white);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.gospel-verse-box cite { color: var(--primary); font-weight: 700; font-style: normal; }

/* --- Pain / Desire / Motivation --- */
.pdm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pdm-card {
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.pdm-card.pain { background: #fff5f5; border-top: 4px solid #e53e3e; }
.pdm-card.desire { background: #f0fff4; border-top: 4px solid #27ae60; }
.pdm-card.motivation { background: #ebf8ff; border-top: 4px solid var(--primary); }
.pdm-card .pdm-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pdm-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.pdm-card ul { text-align: left; }
.pdm-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.93rem;
  color: var(--text-light);
  padding-left: 1.2rem;
  position: relative;
}
.pdm-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: 0 2px 12px rgba(0,183,227,0.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: #f7fbff; color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); background: #f0faff; }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: #fafcff;
}
.faq-item.open .faq-answer { display: block; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Schedule Section --- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.schedule-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.schedule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.schedule-day {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.schedule-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.schedule-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* --- Keywords Section --- */
.keywords-section { background: var(--dark2); padding: 60px 0; }
.keywords-section h2 { color: var(--white); text-align: center; margin-bottom: 0.5rem; }
.keywords-section .subtitle { color: #a0aec0; text-align: center; margin-bottom: 2.5rem; }
.kw-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.kw-tab {
  padding: 10px 24px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  color: #a0aec0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
}
.kw-tab.active, .kw-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.kw-list {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.kw-list.active { display: flex; }
.kw-tag {
  background: rgba(0,183,227,0.12);
  border: 1px solid rgba(0,183,227,0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}
.kw-tag:hover { background: var(--primary); color: var(--white); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p { color: var(--text-light); font-style: italic; margin-bottom: 1.25rem; padding-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.author-info strong { display: block; font-size: 0.95rem; color: var(--dark); }
.author-info span { font-size: 0.82rem; color: var(--text-light); }

/* --- Google Ads Section --- */
.ads-section { background: var(--bg-light); }
.ads-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.ads-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid var(--primary);
}
.ads-card h3 { margin-bottom: 1rem; color: var(--dark); }
.ads-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ads-card ul li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* --- Footer --- */
footer {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  padding: 60px 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,0.1);
}
.footer-brand p { font-size: 0.93rem; margin: 1rem 0; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer-contact-item .icon { color: var(--primary); font-size: 1rem; margin-top: 2px; }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--primary); }

/* --- Popup / Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(-20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--primary);
}
.modal-header h3 { color: var(--white); font-size: 1.2rem; }
.modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--primary); }
.modal-body { padding: 2rem; }
.modal-footer {
  background: var(--bg-light);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

/* --- Form --- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-size: 0.93rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,183,227,0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-submit { width: 100%; padding: 14px; font-size: 1.05rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .check-icon {
  width: 64px; height: 64px;
  background: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--white);
}
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-light); }

/* --- Video Modal --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* --- Breadcrumb / Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* --- Scroll to top --- */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,183,227,0.4);
  z-index: 999;
  border: none;
  font-size: 1.1rem;
  transition: var(--transition);
}
#scrollTop:hover { background: var(--primary-dk); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gospel-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ministries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark2); padding: 1rem; gap: 4px; border-bottom: 2px solid var(--primary); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: 6px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .pdm-grid { grid-template-columns: 1fr; }
  .ads-grid { grid-template-columns: 1fr; }
  .ministries-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-tabs { gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .modal-body { padding: 1.5rem; }
  .modal-header { padding: 1.2rem 1.5rem; }
}
