/* ================================================================
   IGLESIA DE RESTAURACIÓN VIVIFÍCAME
   Tema blanco premium — secciones claras, hero oscuro dramático
   Paleta: Blanco · Púrpura oscuro · Lavanda
   Fuentes: Cinzel · Cormorant Garamond · Inter
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* FONDO CLARO */
  --bg:       #ffffff;
  --bg2:      #faf7ff;
  --bg3:      #f3eeff;
  /* SECCIONES OSCURAS (hero, versículo, CTA, footer) */
  --dark:     #07010f;
  --dark2:    #0d0320;
  --dark3:    #160838;
  /* PÚRPURA */
  --purple-d: #3b0764;
  --purple:   #6d28d9;
  --purple-m: #7e22ce;
  --purple-l: #9333ea;
  --lavender: #a855f7;
  --lav-soft: #c4b5fd;
  /* TEXTO (sobre fondo claro) */
  --text:     #0f0120;
  --text-dim: #4a3060;
  --text-muted: #8b7aa0;
  /* TEXTO (sobre fondo oscuro) */
  --text-d:   #ede9fe;
  --text-d-dim: #b39dce;
  /* OTROS */
  --border:   rgba(109, 40, 217, 0.14);
  --border-d: rgba(168, 85, 247, 0.18);
  --radius:   18px;
  --serif:    'Cinzel', Georgia, serif;
  --serif2:   'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --raleway:  'Raleway', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--purple-l); border-radius: 3px; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ================================================================
   LOADER — fondo oscuro con cruz animada
================================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(168, 85, 247, .45) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(109, 40, 217, .35) 0%, transparent 50%),
    linear-gradient(135deg, #1a0540 0%, #2e1065 40%, #4a1d96 70%, #6d28d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.loader__logo {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(.85);
  animation: logoIn .9s var(--ease) forwards .2s;
}

@keyframes logoIn {
  to { opacity: 1; transform: scale(1); }
}

.loader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp .4s var(--ease) forwards .9s;
}

.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-l), var(--lav-soft));
  border-radius: 2px;
  animation: barLoad 1s var(--ease) forwards 1s;
}

@keyframes barLoad { to { width: 100%; } }

/* ================================================================
   CURSOR
================================================================ */
.cursor, .cursor-dot {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(109, 40, 217, .4);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--purple-l); }
body.cursor-hover .cursor {
  width: 54px; height: 54px;
  border-color: var(--purple-l);
  background: rgba(109, 40, 217, .06);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ================================================================
   NAV
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  transition: background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}

/* Sobre el hero oscuro: transparente */
.nav.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(109, 40, 217, .07);
}

.nav__inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO — blanco sobre hero oscuro, colores propios sobre nav blanca */
.nav__logo-img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
.nav.scrolled .nav__logo-img {
  filter: none;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75); /* blanco semi-transparente sobre hero */
  transition: color .25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--lavender);
  transition: right .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }

/* Sobre fondo blanco scrolleado */
.nav.scrolled .nav__links a { color: var(--text-dim); }
.nav.scrolled .nav__links a:hover { color: var(--purple-m); }

.nav__cta {
  border: 1.5px solid rgba(255,255,255,.6) !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 40px !important;
  transition: background .25s, color .25s, border-color .25s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
}
.nav.scrolled .nav__cta {
  border-color: var(--purple-l) !important;
  color: var(--purple-m) !important;
  background: transparent !important;
}
.nav.scrolled .nav__cta:hover {
  background: var(--purple-l) !important;
  color: #fff !important;
  border-color: var(--purple-l) !important;
}
.nav__don {
  border: 1.5px solid rgba(255,255,255,.6) !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 6px !important;
  font-family: var(--raleway); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  font-size: .72rem !important;
  transition: background .25s, color .25s, border-color .25s !important;
}
.nav__don::after { display: none !important; }
.nav__don:hover { background: rgba(255,255,255,.15) !important; }
.nav.scrolled .nav__don {
  border-color: var(--purple-l) !important;
  color: var(--purple-m) !important;
}
.nav.scrolled .nav__don:hover {
  background: var(--purple-l) !important;
  color: #fff !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, background .3s;
}
.nav.scrolled .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* MOBILE MENU */
.mmenu {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(7, 1, 15, .97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.mmenu.open { opacity: 1; visibility: visible; }
.mmenu ul { list-style: none; text-align: center; }
.mmenu ul li { margin: 26px 0; }
.mmenu ul li a {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .15em; text-transform: uppercase;
  transition: color .25s;
}
.mmenu ul li a:hover { color: var(--lav-soft); }
.mm-cta {
  border: 1px solid var(--lavender) !important;
  padding: 10px 36px !important;
  border-radius: 50px !important;
  color: var(--lav-soft) !important;
}

/* ================================================================
   REVEAL ANIMATIONS
================================================================ */
.r-up {
  opacity: 0; transform: translateY(44px);
  transition: opacity .9s var(--ease) var(--d, 0s),
              transform .9s var(--ease) var(--d, 0s);
}
.r-fade {
  opacity: 0;
  transition: opacity .9s var(--ease) var(--d, 0s);
}
.r-up.vis  { opacity: 1; transform: translateY(0); }
.r-fade.vis { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   HERO — oscuro, dramático
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 25%, rgba(168, 85, 247, .45) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(109, 40, 217, .35) 0%, transparent 50%),
    linear-gradient(135deg, #1a0540 0%, #2e1065 40%, #4a1d96 70%, #6d28d9 100%);
}

.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow.g1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(126,34,206,.4) 0%, transparent 65%);
  top: -200px; right: -200px;
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.hero__glow.g2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,.22) 0%, transparent 65%);
  bottom: -120px; left: -140px;
  animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}
.hero__glow.g3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(196,181,253,.1) 0%, transparent 65%);
  top: 50%; left: 45%;
  transform: translate(-50%,-50%);
  animation: glowFloat 6s ease-in-out infinite alternate;
}
@keyframes glowFloat {
  from { transform: translate(0,0); }
  to   { transform: translate(30px,20px); }
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}

/* Logo en el hero — blanco sobre oscuro */
.hero__logo-img {
  height: 180px;
  width: auto;
  display: block;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
}

.hero__location {
  font-family: var(--raleway);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}

.hero__h1 {
  font-family: var(--raleway);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 26px;
  display: flex; flex-direction: column; gap: 4px;
  width: 100%;
}
.hero__line {
  font-size: clamp(1rem, 2.8vw, 2.2rem);
  color: #fff;
  display: block;
  font-weight: 300;
  letter-spacing: .42em;
  text-indent: .42em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  margin: 2px 0;
}

.hero__line--accent {
  font-size: clamp(3rem, 9vw, 7.5rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: .05em;
  text-indent: .05em;
  text-transform: uppercase;
  text-align: center;
}

.hero__verse {
  font-family: var(--raleway);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.45);
  margin-bottom: 40px;
  letter-spacing: .02em;
}
.hero__welcome {
  font-family: var(--serif2);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

.hero__btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  animation: fadeUp .8s var(--ease) forwards 2s;
  opacity: 0;
}
.hero__scroll-hint span {
  font-family: var(--serif);
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(168,85,247,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.85); }
}

/* BOTONES */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--serif);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-3px); }

.btn--gold {
  background: #fff;
  color: var(--purple-d);
  box-shadow: 0 4px 28px rgba(255,255,255,.25);
}
.btn--gold:hover {
  background: var(--lav-soft);
  color: var(--purple-d);
  box-shadow: 0 8px 40px rgba(196,181,253,.4);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.06);
}

/* ================================================================
   VERSÍCULO — oscuro, impactante
================================================================ */
.vrs {
  position: relative;
  padding: 52px 0;
  overflow: hidden;
  background: url('assets/trigo.jpg') center center / cover no-repeat;
}
.vrs__bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(7,1,15,.85) 0%,
    rgba(26,5,64,.78) 50%,
    rgba(7,1,15,.85) 100%);
  z-index: 0;
}
.vrs__bigquote {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-52%);
  font-family: var(--serif2);
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 1;
  color: rgba(168,85,247,.05);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.vrs__inner {
  position: relative; z-index: 2;
  text-align: center;
}
/* Separador ornamental */
.vrs__deco {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 28px;
}
.vrs__deco-line {
  display: block; height: 1px; width: 50px;
  background: linear-gradient(90deg, transparent, rgba(196,181,253,.4), transparent);
}
.vrs__deco-orn {
  font-size: .6rem;
  color: var(--lav-soft);
  opacity: .6;
}
/* Cita */
.vrs__quote {
  font-family: var(--serif2);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400; line-height: 1.6;
  color: #f5f0ff;
  max-width: 980px; margin: 0 auto 28px;
}
/* Firma referencia */
.vrs__footer {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.vrs__footer-line {
  display: block; height: 1px; width: 36px;
  background: rgba(196,181,253,.3);
}
.vrs__ref {
  font-family: var(--serif);
  font-style: normal;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--lav-soft);
  border: 1px solid var(--border-d);
  padding: 8px 22px; border-radius: 40px;
  background: rgba(168,85,247,.08);
}
.vw {
  display: inline-block; margin: 0 .25em 0 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.vw.vis { opacity: 1; transform: translateY(0); }
.vw--hl { color: #d8b4fe; font-style: italic; }

/* ================================================================
   NOSOTROS — fondo claro
================================================================ */
.nosotros {
  padding: 120px 0;
  background: var(--bg2);
}
.nosotros__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-top: 56px;
}
.nosotros__p {
  color: var(--text-dim); font-size: 1.04rem;
  margin-top: 22px; line-height: 1.8;
  text-align: justify;
}
.nosotros__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 36px;
}
.nstat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px; text-align: center;
  box-shadow: 0 2px 20px rgba(109,40,217,.06);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.nstat:hover {
  border-color: var(--purple-l);
  box-shadow: 0 8px 40px rgba(109,40,217,.12);
  transform: translateY(-4px);
}
.nstat__n {
  display: block; font-family: var(--serif);
  font-size: 2.4rem; font-weight: 600;
  color: var(--purple-m); line-height: 1; margin-bottom: 8px;
}
.nstat p { font-size: .8rem; color: var(--text-muted); letter-spacing: .04em; line-height: 1.5; }

/* Título nosotros — misma fuente en todo */
.nosotros .sec-title {
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: .95;
  text-align: center;
}
.vision .sec-title {
  text-transform: none;
  letter-spacing: .02em;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: .95;
  text-align: center;
}
.vision .sec-title em { font-size: 1em; }
.nosotros .sec-title em,
.vision .sec-title em {
  font-size: 1em;
}

/* Foto nosotros */
.nosotros__img {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(109,40,217,.18);
  aspect-ratio: 4/5;
}
.nosotros__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.nosotros__img-overlay {
  display: none;
}

/* SECTION HEADER */
.sec-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sec-num {
  font-family: var(--serif); font-size: .95rem;
  color: var(--lavender); opacity: .65;
}
.sec-label {
  font-family: var(--serif); font-size: .68rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-muted);
}
.sec-label::before { content: '—  '; color: var(--purple); }

.sec-title {
  font-family: var(--serif2);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.15; color: var(--text);
  letter-spacing: .04em; text-transform: uppercase;
}
.sec-title em {
  color: #c9952a; font-style: italic; font-weight: 400;
  text-transform: none; font-family: var(--serif2); font-size: 1.15em;
}
.sec-title.center { text-align: center; }

.sec-sub {
  font-size: 1.04rem; color: var(--text-dim);
  max-width: 560px; margin-top: 14px; line-height: 1.75;
}
.sec-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ================================================================
   PASTORES — fondo blanco
================================================================ */
.vision { padding: 60px 0 120px; background: var(--bg3); }
.vmp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
}
.vmp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: 0 2px 20px rgba(109,40,217,.08);
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
  position: relative; overflow: hidden;
}
.vmp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple-l), transparent);
  opacity: 0; transition: opacity .3s;
}
.vmp-card:hover {
  border-color: var(--purple-l);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(109,40,217,.12);
}
.vmp-card:hover::before { opacity: 1; }
.vmp-card__icon {
  width: 56px; height: 56px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.vmp-card__icon svg { width: 28px; height: 28px; }
.vmp-card h3 {
  font-family: var(--serif); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--purple-l); margin-bottom: 14px;
}
.vmp-card p {
  font-size: .93rem; color: var(--text-dim);
  line-height: 1.75; text-align: justify;
  hyphens: auto; -webkit-hyphens: auto;
}

/* ================================================================
   ACTIVIDADES — fondo lavanda claro
================================================================ */
.actividades {
  position: relative; padding: 120px 0 60px;
  background: var(--bg2); overflow: hidden;
}
.actividades__top-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 180px;
  background: radial-gradient(ellipse, rgba(109,40,217,.08) 0%, transparent 70%);
  pointer-events: none;
}
.act-list {
  margin-top: 56px;
  border-top: 1px solid var(--border);
}
.act-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
  cursor: default;
}
.act-row:hover { background: var(--bg3); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.act-row__name {
  font-family: var(--serif2); font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 400; font-style: italic; color: var(--text);
  letter-spacing: .01em;
}
.act-row__times {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.act-time {
  font-family: var(--serif); font-size: .78rem; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--purple-m);
  border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 20px;
  background: var(--bg);
  white-space: nowrap;
}

/* ================================================================
   SEDES — fondo blanco
================================================================ */
.sedes { padding: 120px 0; background: var(--bg); }
.sedes__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 56px;
}
.sede-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 28px rgba(109,40,217,.07);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s;
}
.sede-card:hover {
  border-color: var(--purple-l);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(109,40,217,.14);
}
.sede-card__map {
  width: 100%; height: 260px; overflow: hidden;
}
.sede-card__map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(20%) contrast(1.05);
}
.sede-card__body {
  padding: 32px 36px 36px;
}
.sede-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--text); letter-spacing: .06em; text-transform: uppercase;
}
.sede-card__line { width: 100%; height: 1px; background: var(--border); margin: 18px 0; }
.sede-card__addr { font-size: .92rem; color: var(--text-dim); line-height: 1.75; }

/* ================================================================
   COMUNIDAD / REDES — oscuro, impactante
================================================================ */
.comunidad {
  position: relative; padding: 80px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 65% 25%, rgba(168, 85, 247, .45) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, rgba(109, 40, 217, .35) 0%, transparent 50%),
    linear-gradient(135deg, #1a0540 0%, #2e1065 40%, #4a1d96 70%, #6d28d9 100%);
}
.comunidad__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse,
    rgba(126,34,206,.28) 0%, rgba(168,85,247,.1) 35%, transparent 70%);
  pointer-events: none;
}
.comunidad__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.comunidad__text h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600;
  line-height: 1.18; color: #fff;
  margin-bottom: 18px; letter-spacing: .05em; text-transform: uppercase;
}
.comunidad__text h2 em {
  color: rgba(255,255,255,.75); font-style: italic; font-weight: 400;
  font-family: var(--serif2); font-size: 1.12em; text-transform: none;
}
.comunidad__text p {
  font-size: 1.04rem; color: rgba(255,255,255,.55);
  max-width: 520px; line-height: 1.75; margin-bottom: 40px;
  text-align: center; margin-left: auto; margin-right: auto;
}
.don-btn {
  font-size: 1rem; padding: 14px 44px;
  margin-bottom: 48px; letter-spacing: .08em;
}
.social-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.soc-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 32px 36px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border-d);
  border-radius: var(--radius); min-width: 160px;
  transition: border-color .3s, transform .4s var(--ease), box-shadow .4s, color .3s;
  color: var(--text-d-dim);
}
.soc-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.soc-card svg { width: 32px; height: 32px; }
.soc-name {
  font-family: var(--serif); font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-d);
}
.soc-handle { font-size: .78rem; letter-spacing: .04em; color: var(--text-d-dim); }
.soc--ig:hover { border-color: #c13584; color: #e1306c; box-shadow: 0 16px 48px rgba(193,53,132,.2); }
.soc--yt:hover { border-color: #ff0000; color: #ff0000; box-shadow: 0 16px 48px rgba(255,0,0,.15); }
.soc--fb:hover { border-color: #1877f2; color: #1877f2; box-shadow: 0 16px 48px rgba(24,119,242,.2); }

/* ================================================================
   FOOTER — oscuro
================================================================ */
.footer { background: #03000a; border-top: 1px solid var(--border-d); padding-top: 44px; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer__logo { margin-bottom: 14px; }
.footer__logo-img { height: 90px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p { font-family: var(--raleway); font-weight: 300; font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.footer__contact a { font-family: var(--raleway); font-weight: 300; font-size: .98rem; color: rgba(255,255,255,.65); transition: color .25s; }
.footer__contact a:hover { color: var(--lav-soft); }

.footer__nav h4, .footer__social-col h4 {
  font-family: var(--raleway); font-size: .78rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--lavender); margin-bottom: 20px; opacity: .6;
}
.footer__nav ul, .footer__social-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__nav ul li a, .footer__social-col ul li a { font-family: var(--raleway); font-weight: 300; font-size: 1rem; color: rgba(255,255,255,.65); transition: color .25s; }
.footer__nav ul li a:hover, .footer__social-col ul li a:hover { color: var(--lav-soft); }
.footer__handle { font-family: var(--raleway); margin-top: 16px; font-size: .92rem; color: rgba(255,255,255,.65); font-style: italic; }
.footer__bottom { border-top: 1px solid var(--border-d); padding: 22px 28px; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer__bottom p { font-family: var(--raleway); font-weight: 300; font-size: .92rem; color: rgba(255,255,255,.65); }
.footer__ref { font-family: var(--serif2); color: var(--lavender) !important; font-style: italic; font-size: .9rem !important; opacity: .7; }

/* ================================================================
   WHATSAPP
================================================================ */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 58px; height: 58px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: fadeUp .6s var(--ease) forwards 2.5s;
  opacity: 0;
}
.wa-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,.6); }
.wa-btn svg { width: 30px; height: 30px; color: #fff; }

/* ================================================================
   PHOTO PLACEHOLDERS — indicadores visuales para fotos pendientes
================================================================ */
.ph-box {
  background: var(--bg3);
  border: 2px dashed rgba(109,40,217,.2);
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 28px 20px;
  width: 100%;
}
.ph-fill { height: 100%; border-radius: 0; }
.ph-circle {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--bg3);
  border: 2px dashed rgba(109,40,217,.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; margin: 0 auto;
}
.ph-icon { font-size: 1.8rem; opacity: .35; line-height: 1; }
.ph-label {
  font-family: var(--serif); font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--purple-l);
}
.ph-hint { font-size: .65rem; color: var(--text-muted); font-family: monospace; }

/* Pastores */
.pastores { padding: 80px 0 100px; background: var(--bg2); }
.pastores .sec-title {
  text-transform: none; letter-spacing: .02em;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: .95; text-align: center;
}
.pastores .sec-title em { font-size: 1em; }
.pastores__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px; margin-top: 56px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.pastor-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.pastor-name {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text);
}
.pastor-role {
  font-family: var(--serif2); font-size: .95rem; font-style: italic;
  color: var(--purple-m); margin-top: -10px;
}

/* Sede photo */
.sede-ph { height: 180px; margin-top: 24px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .nosotros__grid { grid-template-columns: 1fr; gap: 48px; }
  .nosotros__stats { grid-template-columns: repeat(3, 1fr); }
  .nstat:last-child { grid-column: auto; }
  .act-row { grid-template-columns: 48px 1fr; gap: 20px; }
  .act-row__times { grid-column: 2; justify-content: flex-start; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .vmp-grid { grid-template-columns: 1fr; }
  .sedes__grid { grid-template-columns: 1fr; }
  .act-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .act-row:hover { padding-left: 8px; padding-right: 8px; margin: 0 -8px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .comunidad__text h2 { font-size: 2.4rem; }
  .social-grid { flex-direction: column; align-items: center; }
  .soc-card { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .nosotros__stats { grid-template-columns: 1fr 1fr; }
  .nstat:last-child { grid-column: span 2; }
  .sede-card { padding: 32px 24px; }
  .pastores__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PREDICACIONES EN VIVO
================================================================ */
.actividades .sec-title,
.predicas .sec-title {
  text-transform: none;
}

.predicas {
  padding: 60px 0 80px;
  background: var(--bg2);
  position: relative;
}

.predicas .sec-sub {
  font-size: .95rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 56px;
}

/* Live embed */
.predicas__live {
  margin-bottom: 64px;
}

.predicas__live-badge--video {
  background: rgba(109,40,217,.08);
  border-color: rgba(109,40,217,.2);
  color: var(--purple);
}

.predicas__live-badge--video .predicas__live-dot {
  background: var(--purple);
  animation: none;
}

.predicas__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 40, 217, .08);
  border: 1px solid rgba(109, 40, 217, .2);
  color: var(--purple);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.predicas__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.predicas__live-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(109, 40, 217, .18);
  border: 1px solid var(--border);
}

.predicas__live-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Últimas predicaciones */
.predicas__subtitle {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: .04em;
}

.predicas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Skeleton loader */
.predica-skeleton {
  aspect-ratio: 16/9;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--bg) 50%, var(--bg3) 75%);
  background-size: 200% auto;
  animation: skeleton-shimmer 1.6s linear infinite;
}

@keyframes skeleton-shimmer {
  to { background-position: -200% center; }
}

/* Video card */
.predica-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.predica-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(109, 40, 217, .14);
}

.predica-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}

.predica-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.predica-card:hover .predica-card__thumb img {
  transform: scale(1.04);
}

.predica-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 1, 15, .35);
  opacity: 0;
  transition: opacity .25s;
}

.predica-card:hover .predica-card__play {
  opacity: 1;
}

.predica-card__play svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.predica-card__body {
  padding: 14px 16px 18px;
}

.predica-card__date {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.predica-card__title {
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.predicas__more {
  text-align: center;
}

@media (max-width: 860px) {
  .predicas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .predicas__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   GALERÍA
================================================================ */
.galeria { padding: 120px 0 60px; background: var(--white); }

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--bg-subtle);
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.galeria__item:hover img { transform: scale(1.07); }

.galeria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(109,40,217,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeria__overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.galeria__item:hover .galeria__overlay { opacity: 1; }

/* Lightbox */
.galeria__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.galeria__lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.galeria__lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}

.galeria__lb-close,
.galeria__lb-prev,
.galeria__lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 1.4rem;
  line-height: 1;
}

.galeria__lb-close:hover,
.galeria__lb-prev:hover,
.galeria__lb-next:hover { background: rgba(255,255,255,.25); }

.galeria__lb-close { top: 20px; right: 24px; width: 44px; height: 44px; font-size: 1.1rem; }
.galeria__lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.galeria__lb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }

@media (max-width: 900px) {
  .galeria__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .galeria__lb-prev { left: 8px; }
  .galeria__lb-next { right: 8px; }
}

/* ================================================================
   PETICIONES DE ORACIÓN
================================================================ */
.oracion {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.oracion__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.10) 0%, transparent 70%);
  top: -200px; right: -180px;
  pointer-events: none;
}

.oracion__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.oracion__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.oracion__left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.oracion__left h2 em {
  font-style: italic;
  color: var(--purple-l);
}

.oracion__left p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 36px;
}

.oracion__promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oracion__promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-dim);
}

.oracion__promises li svg {
  width: 18px; height: 18px;
  color: var(--purple);
  flex-shrink: 0;
}

/* Formulario */
.oracion__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(109,40,217,.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oracion__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oracion__field label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-dim);
}

.oracion__field input,
.oracion__field textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .97rem;
  color: var(--text);
  font-family: var(--sans);
  resize: vertical;
  transition: border-color .25s, background .25s;
  outline: none;
}

.oracion__field input::placeholder,
.oracion__field textarea::placeholder {
  color: var(--text-muted);
}

.oracion__field input:focus,
.oracion__field textarea:focus {
  border-color: var(--purple);
  background: var(--white);
}

.oracion__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background .25s, transform .2s;
}

.oracion__btn:hover {
  background: var(--purple-l);
  transform: translateY(-2px);
}

.oracion__note {
  text-align: center;
  font-size: .78rem;
  color: rgba(179,157,206,.5);
  margin-top: -8px;
}

@media (max-width: 860px) {
  .oracion__inner { grid-template-columns: 1fr; gap: 48px; }
  .oracion__form { padding: 32px 24px; }
}
