/* ══════════════════════════════════════════════════════
   Radio Tierra de Fe 107.9 FM — Estilos globales
   IMPCH Santa Fe · Los Ángeles, Chile
   ══════════════════════════════════════════════════════ */

/* ── Variables de marca ───────────────────── */
:root {
  --navy:       #1B2B5E;
  --navy-dark:  #0f1a3a;
  --gold:       #C9933A;
  --gold-light: #E8B96A;
  --cream:      #F8F3EC;
  --cream-dark: #EDE5D8;
  --green:      #4A8C5C;
  --green-light:#7DB88C;
  --text:       #2c2c2c;
  --text-soft:  #6b6b6b;
  --white:      #ffffff;
  --shadow:     0 8px 32px rgba(27,43,94,0.10);
  --radius:     18px;
  --radius-sm:  10px;
  --trans:      all 0.35s cubic-bezier(.4,0,.2,1);
}

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

/* ── Reveal animations ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 58, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,147,58,0.18);
  transition: var(--trans);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,147,58,0.12);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
}
.nav-cta:hover { opacity: 0.88; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-item-has-dropdown { position: relative; }
.nav-parent-link::after {
  content: ' ▾';
  font-size: 0.68em;
  opacity: 0.65;
  vertical-align: middle;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 19, 48, 0.98);
  border: 1px solid rgba(201,147,58,0.22);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 220px;
  list-style: none;
  display: none;
  z-index: 200;
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--trans);
  border-radius: 0;
}
.nav-dropdown li a:hover {
  color: var(--gold-light);
  background: rgba(201,147,58,0.10);
}
.nav-dropdown li:first-child a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
  margin-bottom: 3px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#inicio {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(74,140,92,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201,147,58,0.12) 0%, transparent 60%),
    linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 55%, #1d3a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
/* subtle grain */
#inicio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
/* decorative arc */
#inicio::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  text-align: center;
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: min(240px, 58vw);
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)) brightness(0) invert(1);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-freq {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.3em;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), #f0d080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(201,147,58,0.30);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-body {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 640px;
}
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════
   RADIO PLAYER  (#en-vivo)
═══════════════════════════════════════════ */
#en-vivo {
  background: var(--cream);
  padding-top: 0;
}
.player-wrapper {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,43,94,0.28);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.player-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.player-info .section-label { color: var(--gold-light); }
.player-info .section-title {
  color: var(--white);
  margin-bottom: 12px;
}
.player-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}
.player-church {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.church-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(125,184,140,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(125,184,140,0); }
}
.church-dot.off { background: #888; animation: none; }
.player-church span {
  color: rgba(255,255,255,0.70);
  font-size: 0.85rem;
}
.player-controls {
  background: rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 40px;
  gap: 24px;
}
.player-logo {
  width: 90px;
  border-radius: 50%;
  border: 3px solid rgba(201,147,58,0.5);
  padding: 4px;
  background: rgba(255,255,255,0.06);
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(201,147,58,0.45);
  transition: var(--trans);
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(201,147,58,0.65); }
.play-btn svg { width: 28px; height: 28px; fill: var(--navy-dark); }
.volume-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 200px;
}
.volume-row svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.55); flex-shrink: 0; }
.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.20);
  outline: none;
  cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.player-status {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.04em;
}
audio { display: none; }

/* ═══════════════════════════════════════════
   LEMA  (#lema)
═══════════════════════════════════════════ */
#lema {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
#lema::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lema-verse {
  background: linear-gradient(145deg, var(--navy), #1d3a6e);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.lema-verse::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: rgba(201,147,58,0.08);
  position: absolute;
  top: -30px; left: 10px;
  line-height: 1;
  pointer-events: none;
}
.verse-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.verse-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
}
.lema-content .section-body { margin-bottom: 24px; }
.reach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.reach-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════
   PROGRAMAS  (#programas)
═══════════════════════════════════════════ */
#programas {
  background: var(--cream);
}
.prog-header {
  text-align: center;
  margin-bottom: 56px;
}
.prog-header .section-body { margin: 0 auto; }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─ Card base ─ */
.prog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}
.prog-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 28px;
}
.prog-card-img img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.22));
  transition: transform 0.4s ease;
}
.prog-card:hover .prog-card-img img { transform: scale(1.06) rotate(-1deg); }
.prog-card-body {
  padding: 24px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.75;
}
.prog-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.prog-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.82;
  flex: 1;
  margin-bottom: 18px;
}
.prog-schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.70;
}
.prog-schedule svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─ Atalayas del Reino ─ */
.card-atalayas { background: linear-gradient(145deg, #0d1f3c 0%, #1a3060 100%); }
.card-atalayas .prog-card-img { background: rgba(0,0,0,0.2); }
.card-atalayas .prog-card-body { color: #e8dcc8; }
.card-atalayas .prog-tag { color: #d4a017; }
.card-atalayas .prog-name { color: #f2e9d6; }
.card-atalayas .prog-schedule { color: #d4a017; }

/* ─ Lámparas Encendidas ─ */
.card-lamparas { background: linear-gradient(145deg, #fff5f3, #fce8e3); }
.card-lamparas .prog-card-img { background: rgba(245,190,180,0.25); }
.card-lamparas .prog-card-body { color: #5a3a35; }
.card-lamparas .prog-tag { color: #b07050; }
.card-lamparas .prog-name { color: #4a2820; }
.card-lamparas .prog-schedule { color: #b07050; }

/* ─ Raíces y Propósito ─ */
.card-raices { background: linear-gradient(145deg, #e8f5ec, #d0ecda); }
.card-raices .prog-card-img { background: rgba(74,140,92,0.15); }
.card-raices .prog-card-body { color: #244d35; }
.card-raices .prog-tag { color: #2d6a4f; }
.card-raices .prog-name { color: #1a3d28; }
.card-raices .prog-schedule { color: #2d6a4f; }

/* ─ El Club del Buen Pastor ─ */
.card-club { background: linear-gradient(145deg, #e3f8f9, #d4f2f5); }
.card-club .prog-card-img { background: rgba(14,154,171,0.12); }
.card-club .prog-card-body { color: #0a3d42; }
.card-club .prog-tag { color: #0e7d8a; }
.card-club .prog-name { color: #073b41; }
.card-club .prog-schedule { color: #0e7d8a; }

/* ─ Seamos Tierra de Fe ─ */
.card-seamos { background: linear-gradient(145deg, #f8edf8, #f0ddf0); }
.card-seamos .prog-card-img { background: rgba(123,45,139,0.10); }
.card-seamos .prog-card-body { color: #3d1545; }
.card-seamos .prog-tag { color: #7b2d8b; }
.card-seamos .prog-name { color: #2e0e35; }
.card-seamos .prog-schedule { color: #7b2d8b; }

/* ─ Profecía en Marcha ─ */
.card-profecia { background: linear-gradient(145deg, #1a0a00, #2a1400); }
.card-profecia .prog-card-img { background: rgba(0,0,0,0.25); }
.card-profecia .prog-card-body { color: #e8d5b0; }
.card-profecia .prog-tag { color: #f59e0b; }
.card-profecia .prog-name { color: #f0e0c0; }
.card-profecia .prog-schedule { color: #f59e0b; }

/* ═══════════════════════════════════════════
   IGLESIA  (#iglesia)
═══════════════════════════════════════════ */
#iglesia {
  background: var(--cream-dark);
}
.iglesia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.iglesia-info { }
.pastores {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.pastor-badge {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 12px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.pastor-badge .title {
  font-size: 0.70rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}
.pastor-badge .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--navy);
}
.horarios {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  margin-top: 24px;
}
.horario-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.90rem;
}
.horario-row:last-child { border-bottom: none; }
.horario-row .dia { font-weight: 600; color: var(--navy); }
.horario-row .hora { color: var(--text-soft); }
.horario-row .hora.gold { color: var(--gold); font-weight: 600; }
.horario-row .hora.closed { color: #ccc; }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.map-address {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-address svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
.map-address p { color: rgba(255,255,255,0.82); font-size: 0.88rem; line-height: 1.55; }
.map-address strong { color: var(--gold-light); display: block; }

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--trans);
}
.social-btn:hover { background: var(--navy-dark); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: var(--gold-light); }

/* ═══════════════════════════════════════════
   ANEXOS  (#anexos)
═══════════════════════════════════════════ */
#anexos { background: var(--cream); }
.anexos-header {
  text-align: center;
  margin-bottom: 52px;
}
.anexos-header .section-body { margin: 0 auto; }
.anexos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.anexo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.anexo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(27,43,94,0.16);
}
.anexo-card-head {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.anexo-icon {
  width: 46px; height: 46px;
  background: rgba(201,147,58,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,147,58,0.30);
}
.anexo-icon svg { width: 22px; height: 22px; fill: var(--gold-light); }
.anexo-card-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}
.anexo-address {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.58);
  margin-top: 3px;
}
.anexo-body { padding: 22px 26px 24px; }
.anexo-horarios {
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
}
.anexo-horarios .horario-header {
  font-size: 0.70rem;
  padding: 10px 16px;
  letter-spacing: 0.12em;
}
.anexo-horarios .horario-row { padding: 9px 16px; font-size: 0.85rem; }
.anexo-map-placeholder {
  background: linear-gradient(135deg, var(--cream), #dce5f2);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(27,43,94,0.13);
}
.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--trans);
}
.map-link-btn:hover { background: var(--gold); color: var(--navy-dark); }
.map-link-btn svg { width: 15px; height: 15px; fill: currentColor; }
.map-pending-note {
  font-size: 0.74rem;
  color: var(--text-soft);
  text-align: center;
  opacity: 0.75;
}
.anexo-map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.anexo-map-wrapper iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════
   FACEBOOK COMMUNITY BANNER
═══════════════════════════════════════════ */
.fb-section {
  background: linear-gradient(135deg, #1255b8 0%, #1877F2 55%, #1255b8 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.fb-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.fb-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fb-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: white;
  font-weight: 800;
  margin-bottom: 10px;
}
.fb-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
}
.fb-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #1565C0;
  padding: 16px 34px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--trans);
  flex-shrink: 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.fb-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.26);
}
.fb-cta svg { width: 22px; height: 22px; fill: #1565C0; }

/* ═══════════════════════════════════════════
   YOUTUBE CTA  (#programas)
═══════════════════════════════════════════ */
.yt-cta {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #15152a 100%);
  border-radius: var(--radius);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(27,43,94,0.30);
  border: 1px solid rgba(255,60,60,0.18);
  position: relative;
  overflow: hidden;
}
.yt-cta::before {
  content: '';
  position: absolute;
  left: -50px; top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,0,0,0.06);
  pointer-events: none;
}
.yt-cta-text .section-label { color: #ff7070; }
.yt-cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.yt-cta-text p {
  color: rgba(255,255,255,0.60);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 480px;
}
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF0000;
  color: white;
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--trans);
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(255,0,0,0.30);
  white-space: nowrap;
}
.yt-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,0,0,0.42);
}
.yt-btn svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  opacity: 0.92;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .gold { color: var(--gold); }

.avatar {
  border-radius: 50%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .lema-grid, .iglesia-grid { grid-template-columns: 1fr; gap: 36px; }
  .player-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .anexos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .yt-cta { padding: 28px 24px; text-align: center; justify-content: center; }
  .yt-cta-text p { margin: 0 auto; }
  section { padding: 60px 20px; }
  .prog-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(15,26,58,0.98);
    flex-direction: column;
    padding: 20px 24px 30px;
    gap: 4px;
    border-bottom: 1px solid rgba(201,147,58,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; padding: 12px 18px; width: 100%; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .pastores { flex-direction: column; }
  .anexos-grid { grid-template-columns: 1fr; }
  .fb-inner { justify-content: center; text-align: center; }
  .fb-text p { margin: 0 auto; }
  /* Mobile dropdown — inline */
  .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 8px;
    margin-top: 4px;
    padding: 4px 0 6px 14px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-item-has-dropdown:hover .nav-dropdown { display: none; }
  .nav-item-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown li a { font-size: 0.84rem; padding: 9px 14px; }
  .nav-dropdown li:first-child a {
    color: var(--gold-light);
    border-bottom: none;
    padding-bottom: 9px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .player-controls { padding: 28px 24px; }
  .player-info { padding: 28px 24px; }
}
