.elementor-296 .elementor-element.elementor-element-7dc0a34{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-296 .elementor-element.elementor-element-f66d235 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-186b3af */.lampadario-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 20px;
}

.lampadario-title {
    font-family: 'Libre Baskerville', serif; /* Elegante y clásico */
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.lampadario-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Divisor decorativo (Dorado) */
.lampadario-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.lampadario-divider .line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.lampadario-divider .dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .lampadario-title { font-size: 1.8rem; }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-f66d235 *//* ==========================================================================
   1. CONTENEDOR ANCHO COMPLETO, FONDO MÍSTICO Y PARTÍCULAS FLOTANTES
   ========================================================================== */
.pantalla-completa-santuario {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: radial-gradient(circle at 50% 50%, #161210 0%, #080707 100%);
  overflow: hidden;
  padding: 80px 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.particula-bg {
  position: absolute;
  background: radial-gradient(circle, rgba(255,161,20,0.45) 0%, rgba(255,87,34,0) 70%);
  border-radius: 50%;
  bottom: -30px;
  animation: flotarInfo infinite linear;
  z-index: 1;
}

.p1 { width: 15px; height: 15px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.p2 { width: 30px; height: 30px; left: 30%; animation-duration: 12s; animation-delay: 2s; }
.p3 { width: 12px; height: 12px; left: 50%; animation-duration: 7s; animation-delay: 1s; }
.p4 { width: 22px; height: 22px; left: 70%; animation-duration: 14s; animation-delay: 4s; }
.p5 { width: 18px; height: 18px; left: 88%; animation-duration: 9s; animation-delay: 3s; }
.p6 { width: 25px; height: 25px; left: 20%; animation-duration: 11s; animation-delay: 5s; }

@keyframes flotarInfo {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-1200px) scale(0.4); opacity: 0; }
}

/* ==========================================================================
   2. EL ALTAR Y EL DISEÑO DE LAS VELAS INDIVIDUALES (24 HORAS)
   ========================================================================== */
.altar-velas-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #0b0b0e;
  padding: 50px 30px;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.vela-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 60px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.vela-item:hover {
  transform: scale(1.15);
}

.vela-mecha {
  width: 2px;
  height: 6px;
  background: #222;
  margin-bottom: -4px; /* Aumentamos el solape para que la llama la cubra mejor */
  position: relative;
  z-index: 1;          /* Queda en la capa del fondo */
}

.vela-llama {
  width: 14px;
  height: 24px;
  background: linear-gradient(to bottom, #fff7ad 0%, #ffa114 40%, #f44336 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  box-shadow: 0 0 12px #ff9800, 0 0 25px #ff5722, 0 0 40px rgba(255, 152, 0, 0.4);
  animation: flickeoVela 1.1s infinite alternate ease-in-out;
  position: relative;
  z-index: 2;          /* Forzamos a que la llama se dibuje por ENCIMA de la mecha */
}


.vela-cuerpo {
  width: 18px;
  height: 45px;
  background: linear-gradient(to right, #e0e0e0 0%, #ffffff 30%, #f5f5f5 70%, #d6d6d6 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.vela-nombre {
  font-size: 11px;
  color: #8e8e93;
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes flickeoVela {
  0% { transform: scale(1) rotate(-1.5deg); opacity: 0.9; }
  50% { transform: scale(1.06) rotate(1deg) skewX(-1deg); }
  100% { transform: scale(0.95) rotate(2deg); opacity: 1; box-shadow: 0 0 14px #ff9800, 0 0 28px #ff5722, 0 0 45px rgba(255, 152, 0, 0.5); }
}

/* Romper sincronía de parpadeo en el altar */
.vela-item:nth-child(2n) .vela-llama { animation-delay: 0.15s; animation-duration: 1.3s; }
.vela-item:nth-child(3n) .vela-llama { animation-delay: 0.4s; animation-duration: 0.9s; }
.vela-item:nth-child(4n) .vela-llama { animation-delay: 0.6s; animation-duration: 1.5s; }
.vela-item:nth-child(5n) .vela-llama { animation-delay: 0.25s; animation-duration: 1.1s; }

/* ==========================================================================
   3. PANEL INFORMATIVO DE LA IGLESIA DE LALÍN (BORDES RECTOS)
   ========================================================================== */
.seccion-info-lampadario-full {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bloque-intro-santuario {
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.subtitulo-santuario {
  color: #ffa114;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bloque-intro-santuario h2 {
  color: #ffffff !important;
  font-size: 36px !important;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
  font-weight: 600;
}

.grid-intro-caracteristicas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.item-caracteristica {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  padding: 30px;
  border-radius: 0px; /* Bordes rectos */
  border: 1px solid rgba(255,161,20,0.1);
}

.icono-caracteristica { font-size: 30px; margin-bottom: 15px; }
.item-caracteristica h3 { color: #ffa114 !important; font-size: 20px !important; margin-bottom: 12px !important; }
.item-caracteristica p { color: #b0b0bc !important; font-size: 15px !important; line-height: 1.6 !important; margin: 0 !important; }

.bloque-columnas-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.columna-valor { text-align: center; padding: 20px; }
.icono-valor { font-size: 36px; margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(255,161,20,0.2)); }
.columna-valor h3 { color: #ffffff !important; font-size: 22px !important; margin-bottom: 12px !important; }
.columna-valor p { color: #90909a !important; font-size: 15px !important; line-height: 1.6 !important; }

.bloque-faq-lampadario {
  background: rgba(17, 17, 22, 0.5);
  backdrop-filter: blur(4px);
  padding: 50px 40px;
  border-radius: 0px; /* Bordes rectos */
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cabecera-faq { margin-bottom: 40px; }
.cabecera-faq span { color: #8e8e93; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.cabecera-faq h2 { color: #ffffff !important; font-size: 30px !important; margin-top: 5px !important; }

.grid-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 40px; }
.item-faq h3 { color: #ffb74d !important; font-size: 18px !important; margin-bottom: 12px !important; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.item-faq h3::before { content: "•"; color: #ffa114; }
.item-faq p { color: #b0b0bc !important; font-size: 15px !important; line-height: 1.6 !important; margin: 0 !important; }

/* ==========================================================================
   4. VENTANA EMERGENTE MODAL (DETALLE DE LA PETICIÓN Y VELA GIGANTE)
   ========================================================================== */
.modal-vela-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-vela-overlay.activo {
  opacity: 1;
  pointer-events: auto;
}

.modal-vela-contenido {
  background: #121216;
  border: 1px solid rgba(255, 161, 20, 0.2);
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255, 161, 20, 0.1);
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.modal-vela-overlay.activo .modal-vela-contenido {
  transform: translateY(0);
}

.modal-vela-cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #8e8e93;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-vela-cerrar:hover { color: #ffa114; }

.modal-vela-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.vela-mecha.grande { 
  width: 3px; 
  height: 9px; 
  background: #222; 
  margin-bottom: -5px; /* Ajustamos el solape en la vela grande */
  position: relative;
  z-index: 1;
}

.vela-llama.grande {
  width: 22px;
  height: 38px;
  background: linear-gradient(to bottom, #fffbc7 0%, #ff9800 40%, #f44336 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  box-shadow: 0 0 20px #ff9800, 0 0 40px #ff5722, 0 0 60px rgba(255, 152, 0, 0.6);
  animation: flickeoVela 0.9s infinite alternate ease-in-out;
  position: relative;
  z-index: 2;          /* Forzamos a que la llama tape la mecha en el modal */
}
.vela-cuerpo.grande {
  width: 28px;
  height: 75px;
  background: linear-gradient(to right, #dcdcdc 0%, #ffffff 30%, #f9f9f9 70%, #c8c8c8 100%);
  border-radius: 6px 6px 3px 3px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.modal-vela-contenido h3 { color: #ffffff !important; font-size: 24px !important; margin: 10px 0 5px 0 !important; font-weight: 600; }
.modal-vela-fecha { color: #ffa114; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px; }
.modal-vela-separador { height: 1px; background: linear-gradient(to right, transparent, rgba(255,161,20,0.3), transparent); width: 80%; margin: 0 auto 20px auto; }
#modal-vela-mensaje { color: #d1d1d6 !important; font-size: 15px !important; line-height: 1.6 !important; font-style: italic; margin: 0 !important; word-wrap: break-word; }

/* ==========================================================================
   5. DISEÑO RESPONSIVE ADAPTATIVO PARA MÓVILES
   ========================================================================== */
@media (max-width: 768px) {
  .pantaya-completa-santuario { padding: 50px 0; }
  .grid-intro-caracteristicas, .bloque-columnas-valores, .grid-faq { grid-template-columns: 1fr; gap: 30px; }
  .bloque-intro-santuario h2 { font-size: 28px !important; }
  .bloque-faq-lampadario { padding: 30px 20px; }
}/* End custom CSS */