.elementor-24 .elementor-element.elementor-element-10bd5c9{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-24 .elementor-element.elementor-element-cc8bd32 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-24 .elementor-element.elementor-element-7fbef3c{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-24 .elementor-element.elementor-element-54e70b8 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-fce3efd *//* --- FOOTER (PIE DE PÁGINA) --- */
.main-footer {
    background-color: #111e16; /* Un tono verde ultra oscuro, casi negro, litúrgico */
    color: #e0e0e0;
    font-size: 0.9rem;
    position: relative;
    border-top: 4px solid var(--gold);
}

/* Reemplazo de grid mediante flex/block para máxima compatibilidad con WeasyPrint y navegadores antiguos */
.footer-grid {
    display: block;
    padding: 60px 20px;
}

.footer-widget {
    width: 31%;
    display: inline-block;
    vertical-align: top;
    margin-right: 3%;
    margin-bottom: 30px;
}

.footer-widget:last-child {
    margin-right: 0;
}

/* Estructura del Logo en el Footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text .title {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #a0a0a0;
    font-weight: 700;
}

.footer-logo-text .subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    line-height: 1.6;
    color: #b0b8b3;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* Detalles de Contacto */
.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-contact-details li i {
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Títulos de los Bloques */
.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

/* Enlaces del menú del Footer */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.footer-menu li a {
    color: #b0b8b3;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Caja de horarios */
.schedule-box {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold);
    padding: 15px;
    border-radius: 0 4px 4px 0;
}

.schedule-box p {
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #b0b8b3;
}

.schedule-box p strong {
    color: var(--white);
}

.schedule-box .highlight-schedule {
    color: var(--gold);
    font-weight: 600;
    margin-top: 5px;
}

/* Redes Sociales */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--gold);
    color: #111e16;
    transform: translateY(-3px);
}

/* --- BLOQUE DE POLÍTICAS (FOOTER BOTTOM) --- */
.footer-bottom {
    background-color: #0b140e; /* Un tono aún más oscuro para separar el cierre */
    padding: 20px 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #88968e;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal-links li a {
    color: #88968e;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links li a:hover {
    color: var(--gold);
}

/* --- ADAPTACIÓN RESPONSIVE MÓVIL --- */
@media (max-width: 768px) {
    .footer-widget {
        width: 100%;
        margin-right: 0;
        display: block;
        margin-bottom: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a8d562c */.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* Iconos */
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { color: var(--white); font-size: 1.5rem; transition: transform 0.3s; }
.social-links a:hover { color: var(--gold); transform: translateY(-3px); }

.footer-col p i { margin-right: 10px; color: var(--gold); width: 20px; }

/* Pie final */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .footer-grid { text-align: center; }
    .social-links { justify-content: center; }
}/* End custom CSS */