.elementor-26011 .elementor-element.elementor-element-b3c18ca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26011 .elementor-element.elementor-element-a171b23 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-26011 .elementor-element.elementor-element-80e82d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26011 .elementor-element.elementor-element-132ce03 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-26011:not(.elementor-motion-effects-element-type-background), body.elementor-page-26011 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0F0F0F;}body.elementor-page-26011{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for container, class: .elementor-element-80e82d0 *//* ==========================================================================
   9. FOOTER PERSONALIZADO (Fondo #808c91 y Textos Negros)
   ========================================================================== */

/* Contenedor principal del Footer */
.maq-footer-custom {
    background-color: #808c91 !important; /* <--- NUEVO FONDO GRIS */
    padding: 60px 20px 0 20px;
    width: 100%;
}

.maq-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px;
    padding-bottom: 50px;
}

/* Títulos y Textos de las columnas */
.maq-footer-col h4 {
    color: #0f0f0f !important; /* Negro industrial */
    font-size: 22px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px;
}

/* --- NUEVO: Línea amarilla debajo de los títulos de ubicación --- */
.maq-title-line::after {
    content: '';
    display: block;
    width: 60px; /* Ancho de la línea */
    height: 3px; /* Grosor de la línea */
    background-color: #f5b400; /* Amarillo del tema */
    margin-top: 8px; /* Espacio entre el texto y la línea */
    border-radius: 2px; /* Bordes ligeramente redondeados (opcional) */
}

.maq-footer-col p {
    color: #1a1a1a !important; /* Gris súper oscuro, casi negro */
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

/* =========================================
   MAPAS (Escala de grises por defecto -> Color en hover)
   ========================================= */
.maq-footer-map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #0f0f0f; /* Borde negro en lugar de gris */
    transition: all 0.3s ease;
}

.maq-footer-map:hover {
    border-color: #f5b400; /* Borde se hace amarillo */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.maq-footer-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    /* Filtro para que el mapa se vea gris elegante y combine con el fondo */
    filter: grayscale(100%) opacity(0.8); 
    transition: filter 0.4s ease;
}

.maq-footer-map:hover iframe {
    /* Al pasar el mouse, el mapa recupera su color y brillo */
    filter: grayscale(0%) opacity(1); 
}

/* =========================================
   MENÚ DE ENLACES
   ========================================= */
.maq-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.maq-footer-menu li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(15, 15, 15, 0.15); /* Línea divisoria muy sutil y oscura */
    padding-bottom: 10px;
}

.maq-footer-menu li:last-child {
    border-bottom: none;
}

.maq-footer-menu li a {
    color: #0f0f0f !important; /* Letras negras por defecto */
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Flechita amarilla antes de cada enlace */
.maq-footer-menu li a::before {
    content: '▸';
    color: #f5b400;
    margin-right: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.maq-footer-menu li a:hover {
    color: #ffffff !important; /* Letras se vuelven blancas en hover para contrastar perrón */
    transform: translateX(6px);
}

/* =========================================
   BARRA INFERIOR (COPYRIGHT)
   ========================================= */
.maq-footer-bottom {
    /* Truco para romper el contenedor y forzar 100% de la pantalla */
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* Tu código original */
    background-color: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.maq-footer-bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #ffffff !important;
    font-weight: 600;
}
/* =========================================
   DISEÑO RESPONSIVO (MÓVILES Y TABLETS)
   ========================================= */
@media (max-width: 960px) {
    .maq-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .maq-footer-menu-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .maq-footer-container {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .maq-footer-menu-col {
        grid-column: span 1;
    }
    .maq-footer-col h4 {
        font-size: 20px !important;
    }
    .maq-footer-map iframe {
        height: 180px;
    }
}/* End custom CSS */