/* BASE */
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #eee;
    overflow: hidden;
}

/* MAPA - CORRECCIÓN AQUÍ (esto hace que aparezca) */
#map {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

/* BARRA SUPERIOR */
#barra-superior {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}

.header-izq { display: flex; align-items: center; gap: 15px; }
.logo-header { height: 50px; width: auto; }
.titulo-header { display: flex; flex-direction: column; }
.linea-superior { font-size: 10px; color: #888; letter-spacing: 1px; }
.linea-principal { font-size: 16px; font-weight: bold; color: #fff; }
.linea-inferior { font-size: 10px; color: #888; }

#menu-info {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* PANELES */
aside {
    position: absolute;
    background: #151515;
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

#panel-izquierdo {
    left: 0; top: 0; width: 300px; height: 100%;
    transform: translateX(-100%);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
.menu-activo { transform: translateX(0) !important; }

/* PANEL DERECHO */
#panel-lateral {
    right: 0; top: 0; width: 350px; height: 100%;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
}
.panel-abierto { transform: translateX(0) !important; }

.panel-header {
    padding: 15px 20px;
    background: #1f1f1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.handle-mobile { display: none; width: 40px; height: 4px; background: #444; margin: 0 auto 10px; border-radius: 2px; }

#contenido-panel {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.enlace-persona {
    color: #cc4444;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    transition: 0.2s;
}
.enlace-persona:hover { color: #ff6666; padding-left: 10px; }

/* RESPONSIVE - MOSTRAMOS LA LÍNEA SUPERIOR EN MÓVIL */
@media (max-width: 768px) {
    #panel-izquierdo { width: 85%; }
    #panel-lateral {
        top: auto; bottom: 0; width: 100%; height: 75vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }
    .panel-abierto { transform: translateY(0) !important; }
    .handle-mobile { display: block; }
    
    .linea-inferior { display: none; }           /* solo ocultamos la inferior */
    .linea-superior { display: block; font-size: 9px; } /* MOSTRAMOS LA SUPERIOR */
    .linea-principal { font-size: 13px; }
}

#barra-inferior {
    position: absolute;
    bottom: 0; width: 100%;
    background: rgba(0,0,0,0.8);
    color: #666;
    font-size: 11px;
    text-align: center;
    padding: 5px;
    z-index: 1000;
}
