/*
 * Archivo CSS: css/footer.css
 * ESTILOS PARA EL NUEVO FOOTER MODERNO AZUL
 */

.nuevo-footer-moderno {
    background-color: #1E3A8A;
    /* Color Azul Oscuro principal */
    color: #E0E7FF;
    /* Color de texto blanco/azul claro para contraste */
    padding: 30px 20px 0;
    /* Espaciado superior e inferior, y a los lados */
    font-family: Arial, sans-serif;
    /* Puedes usar tu fuente principal */
}

.footer-contenido-principal {
    display: flex;
    justify-content: space-between;
    /* Espacia los bloques (Info y Enlaces) */
    align-items: flex-start;
    max-width: 1200px;
    /* Ancho máximo centrado */
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separador sutil */
}

.footer-bloque {
    margin-bottom: 20px;
}

/* Bloque Izquierdo (Logo e Info) */
.footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
    /* Título principal en blanco puro */
}

.footer-ubicacion {
    font-size: 0.9em;
    margin-top: 5px;
    line-height: 1.4;
}

/* Bloque Derecho (Navegación) */
.footer-subtitulo {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-lista-enlaces {
    list-style: none;
    /* Quita los puntos de la lista */
    padding: 0;
    margin: 0;
}

.footer-lista-enlaces li {
    margin-bottom: 5px;
}

.footer-lista-enlaces a {
    color: #E0E7FF;
    /* Color del enlace */
    text-decoration: none;
    /* Quita el subrayado */
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-lista-enlaces a:hover {
    color: #4CAF50;
    /* Un color de acento al pasar el ratón (Verde) */
}

/* Bloque de Copyright Inferior */
.footer-bottom-copyright {
    text-align: center;
    font-size: 0.8em;
    padding: 15px 0;
    color: #A0AEC0;
    /* Gris más suave para el copyright */
}

/* Ocultar copyright de escritorio en móvil y viceversa */
.footer-copyright-movil {
    display: none;
    /* Por defecto, oculto en escritorio */
    margin-top: 15px;
    color: #A0AEC0;
}


/* --- RESPONSIVE: Adaptación para Móviles (pantallas pequeñas) --- */
@media (max-width: 768px) {

    .footer-contenido-principal {
        flex-direction: column;
        /* Apila los bloques verticalmente */
        align-items: center;
        /* Centra el contenido */
        text-align: center;
        /* Centra el texto dentro de los bloques */
    }

    .footer-bloque {
        width: 100%;
        /* Ocupa todo el ancho en móvil */
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .footer-lista-enlaces li {
        display: inline-block;
        /* Muestra los enlaces en línea */
        margin: 0 10px;
    }

    /* Mostrar copyright en móvil, ocultar el de escritorio */
    .footer-bottom-copyright {
        display: none;
    }

    .footer-copyright-movil {
        display: block;
    }
}