/* ====================================================== */
/* 1. NAVBAR - MOSTRAR WEBOEBA.COM                        */
/* ====================================================== */
@media (max-width: 768px) {

    /* Forzamos el nombre del sitio */
    .brand-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        font-size: 1.4rem !important;
        text-align: center !important;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .navbar-container {
        display: flex !important;
        flex-direction: column !important;
        /* Apilamos para asegurar espacio */
        align-items: center !important;
        background-color: #004080 !important;
    }
}

/* ====================================================== */
/* 2. MÁRGENES DE TEXTO Y BIBLIOGRAFÍA (MÓVIL)            */
/* ====================================================== */
@media (max-width: 768px) {

    /* Que nada toque los bordes del celular */
    .container,
    #datos,
    .hover-card,
    div[class*="bibliografia"],
    .section {
        width: 90% !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    p,
    .justificado {
        text-align: left !important;
        word-wrap: break-word !important;
    }
}

/* ====================================================== */
/* 3. FOOTER - CENTRADO DE LÍNEAS                         */
/* ====================================================== */
footer,
.footer-container {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* Centrado de las líneas de Ciudad y República */
footer span,
footer p,
.footer-location {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 5px 0 !important;
}

/* ====================================================== */
/* 4. MODALES - ARREGLO DE VENTANAS                       */
/* ====================================================== */
.map-window {
    display: none;
    position: fixed;
    z-index: 10000 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9) !important;
    overflow-y: auto !important;
    /* Clave para no perder la ventana */
}

.modal-content {
    background: #fff !important;
    margin: 15% auto !important;
    padding: 20px !important;
    width: 85% !important;
    max-width: 500px !important;
    border-radius: 10px !important;
    position: relative !important;
}

/* Cruz de cierre negra */
.close-btn {
    color: #000 !important;
    font-size: 35px !important;
    position: absolute !important;
    top: 5px !important;
    right: 15px !important;
    font-weight: bold !important;
    cursor: pointer !important;
}