/* ==========================================================================
   TEMPLO MANANTIAL - DISEÑO WEB OFICIAL
   Estilo: Contemporáneo, Elegante, Ministerial, Dinámico y Responsive
   Inspiración: VOUS Church, Elevation Church, Life.Church
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES Y DISEÑO DEL SISTEMA (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Colores Principales */
  --bg-dark: #0B0F19;         /* Fondo azul/gris oscuro profundo */
  --bg-card: #131927;         /* Fondo para tarjetas y contenedores */
  --bg-card-hover: #1E2638;   /* Hover en tarjetas */
  --bg-surface: #171E2E;      /* Superficie intermedia */
  
  /* Colores de Acento */
  --accent-orange: #FF6B35;   /* Naranja vibrante moderno */
  --accent-orange-hover: #E85A24;
  --accent-gold: #F7931E;     /* Dorado cálido */
  --accent-blue: #3B82F6;     /* Azul contemporáneo */
  --accent-glow: rgba(255, 107, 53, 0.25);

  /* Texto */
  --text-main: #F8FAFC;       /* Blanco brillante */
  --text-muted: #94A3B8;      /* Gris intermedio suave */
  --text-dim: #64748B;        /* Gris oscuro tenue */
  
  /* Bordes & Sombras */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 107, 53, 0.3);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 30px var(--accent-glow);
  --glass-bg: rgba(19, 25, 39, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Tipografía */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Transiciones */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. RESETEO Y ESTILOS BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. CLASES DE UTILIDAD Y COMPONENTES REUTILIZABLES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

/* Encabezados de Sección */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  background: rgba(255, 107, 53, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.section-title {
  font-size: 2.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Botones Principales */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #FFFFFF;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
  background: linear-gradient(135deg, var(--accent-orange-hover), var(--accent-orange));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--accent-orange);
}

.btn-outline:hover {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
}

/* Tarjetas con Efecto Glassmorphism */
.card-glass {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.card-glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   4. HEADER Y NAVEGACIÓN
   -------------------------------------------------------------------------- */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.8), transparent);
}

.header-main.header-scrolled {
  padding: 0.85rem 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-orange);
  margin-top: 3px;
}

/* Menú de Navegación Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-orange);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Botón Hamburguesa */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-main);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Menú Drawer Móvil */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 1005;
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  border-left: 1px solid var(--border-light);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-orange);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   5. HERO PRINCIPAL (FULLSCREEN SLIDER)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, 
    rgba(11, 15, 25, 0.7) 0%, 
    rgba(11, 15, 25, 0.85) 60%, 
    rgba(11, 15, 25, 1) 100%
  );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
  margin-top: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1.05;
  background: linear-gradient(180deg, #FFFFFF 30%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Info Pill Highlight */
.hero-info-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* --------------------------------------------------------------------------
   6. SECCIÓN DE BIENVENIDA
   -------------------------------------------------------------------------- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.welcome-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.welcome-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.welcome-image-container {
  position: relative;
}

.welcome-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.welcome-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.welcome-image-wrap:hover img {
  transform: scale(1.03);
}

.welcome-badge-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

@media (max-width: 576px) {
  .welcome-badge-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
  }
}

.welcome-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.welcome-badge-icon svg {
  width: 26px;
  height: 26px;
}

.welcome-badge-text h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
}

.welcome-badge-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. NUESTRA VISIÓN
   -------------------------------------------------------------------------- */
.vision-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .vision-cards-grid {
    grid-template-columns: 1fr;
  }
}

.vision-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--accent-orange);
  transition: transform var(--transition-normal);
}

.vision-card:hover .vision-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: #FFFFFF;
  box-shadow: 0 10px 25px var(--accent-glow);
}

.vision-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.vision-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.vision-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. NUESTRO SERVICIO (VIVE LA EXPERIENCIA)
   -------------------------------------------------------------------------- */
.service-banner-section {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.service-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 992px) {
  .service-banner-grid {
    grid-template-columns: 1fr;
  }
}

.service-banner-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 576px) {
  .service-banner-content {
    padding: 2.5rem 1.5rem;
  }
}

.service-time-box {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--accent-orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0 2rem 0;
}

.service-time-box h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.service-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.service-banner-image {
  position: relative;
  min-height: 380px;
}

.service-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-card) 0%, transparent 60%);
}

@media (max-width: 992px) {
  .service-banner-overlay {
    background: linear-gradient(180deg, var(--bg-card) 0%, transparent 60%);
  }
}

/* --------------------------------------------------------------------------
   9. ACTIVIDADES Y PRÓXIMOS EVENTOS
   -------------------------------------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

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

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.event-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.08);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.event-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.event-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.event-actions {
  display: flex;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   10. SECCIÓN DE FACEBOOK (FEED PLUGIN & FALLBACK)
   -------------------------------------------------------------------------- */
.facebook-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .facebook-container {
    grid-template-columns: 1fr;
  }
}

.facebook-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}

.fb-page-wrapper {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.facebook-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.facebook-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.facebook-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.fb-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.fb-feature-item svg {
  width: 22px;
  height: 22px;
  color: #1877F2; /* Color Oficial Facebook */
}

/* --------------------------------------------------------------------------
   11. SECCIÓN DE YOUTUBE (MENSAJES QUE TRANSFORMAN)
   -------------------------------------------------------------------------- */
.youtube-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.yt-featured-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 500px;
  overflow: hidden;
}

.yt-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.3) 0%, rgba(11, 15, 25, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}

@media (max-width: 768px) {
  .yt-featured-overlay {
    padding: 1.5rem;
  }
}

.yt-play-btn-large {
  width: 80px;
  height: 80px;
  background: #FF0000; /* Rojo YouTube */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin: auto;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.yt-play-btn-large:hover {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(255, 0, 0, 0.85);
}

.yt-play-btn-large svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: currentColor;
}

.yt-featured-info h3 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.yt-featured-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grilla de Videos Recientes */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.yt-card {
  cursor: pointer;
}

.yt-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.yt-card:hover .yt-thumb-wrap img {
  transform: scale(1.05);
}

.yt-play-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.yt-card:hover .yt-play-mini {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.yt-play-mini svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  fill: currentColor;
}

.yt-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   12. GALERÍA DE FOTOS (MARQUEE SLIDER & MOSAIC)
   -------------------------------------------------------------------------- */
/* Slider Infinito Continuo */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 4rem;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  width: 320px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.marquee-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #FFFFFF;
}

.marquee-item:hover .gallery-overlay-icon {
  opacity: 1;
}

.gallery-overlay-icon svg {
  width: 36px;
  height: 36px;
}

/* Mosaico Grid */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.5rem;
}

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

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

.mosaic-item-wide {
  grid-column: span 2;
}

.mosaic-item-tall {
  grid-row: span 2;
}

@media (max-width: 576px) {
  .mosaic-item-wide, .mosaic-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --------------------------------------------------------------------------
   13. FORMULARIO DE PEDIDOS DE ORACIÓN
   -------------------------------------------------------------------------- */
.prayer-card {
  max-width: 850px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .prayer-card {
    padding: 2rem 1.5rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(11, 15, 25, 0.6);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-orange);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   14. SECCIÓN DE DONACIONES
   -------------------------------------------------------------------------- */
.giving-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

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

.giving-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.giving-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.giving-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin: 0 auto 1.25rem auto;
}

.giving-card-icon svg {
  width: 30px;
  height: 30px;
}

.giving-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.giving-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.giving-methods-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.giving-methods-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem 0;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.giving-security-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   15. PLANIFICA TU VISITA
   -------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.visit-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.visit-faq-item h4 {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.visit-faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   16. GOOGLE MAPS SECCIÓN
   -------------------------------------------------------------------------- */
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1) invert(0.9) hue-rotate(180deg);
}

.map-card-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(11, 15, 25, 0.92);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 360px;
}

@media (max-width: 576px) {
  .map-card-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 1rem;
  }
}

.map-card-overlay h4 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.map-card-overlay p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   17. TESTIMONIOS (HISTORIAS DE VIDA)
   -------------------------------------------------------------------------- */
.testimonials-slider-wrap {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--accent-orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-orange);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-nav-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.testimonial-arrow:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   18. SUSCRIPCIÓN Y NOTICIAS
   -------------------------------------------------------------------------- */
.newsletter-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .newsletter-box {
    padding: 2.5rem 1.5rem;
  }
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 650px;
  margin: 2rem auto 0 auto;
}

.newsletter-form .form-control {
  flex: 1;
  min-width: 240px;
}

/* --------------------------------------------------------------------------
   19. SECCIÓN DE CONTACTO
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-links-flex {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.footer-main {
  background: #070911;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.footer-col-title {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   21. BOTONES FLOTANTES & MODALES (WHATSAPP, SCROLL TOP, LIGHTBOX)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
}

/* Modales */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast-msg {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-orange);
  border: 1px solid var(--border-light);
  border-left-width: 4px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
