html, body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #222;
    overflow: hidden; /* evita scroll por el body; si necesitas scroll vertical cambia a auto */
}

/* Aplica tanto por id como por clase para mayor robustez */
.escritorio-img,
#escritorio-img {
    width: 100%;
    max-width: 1000px;                /* ancho razonable para notebook */
    max-height: calc(100vh - 120px);  /* deja algo de espacio encima/debajo (ajusta 120px si hace falta) */
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 40px #0008;
}

/* Etiqueta flotante (sin cambios funcionales) */
.map-label {
    position: absolute;
    pointer-events: none;
    background: rgba(255,255,200,0.95);
    color: #800000;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 8px;
    border: 2px solid #800000;
    font-size: 1.1em;
    line-height: 1.2;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    z-index: 10;
    display: none;
}