*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f7fb;
}

.contenedor{
    width:min(1400px,95%);
    margin:40px auto;
}

#mapa{
    width:100%;
}

#mapa svg{
    width:100%;
    height:auto;
}

#mapa path{

    fill:#D7DDE5;

    stroke:#ffffff;

    stroke-width:1.2;

    cursor:pointer;

    transition:.25s ease;

}

#mapa path:hover{

    fill:#0A7CFF;

}

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(8px);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.oculto{

    display:none;

}

.popup{

    width:min(950px,95%);

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 70px rgba(0,0,0,.35);

    animation:popup .3s ease;

}

@keyframes popup{

from{

opacity:0;

transform:translateY(20px) scale(.95);

}

to{

opacity:1;

transform:translateY(0) scale(1);

}

}

.cerrar{

    position:absolute;

    right:25px;

    top:20px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#17326f;

    color:#fff;

    font-size:24px;

    cursor:pointer;

}

.popup{

    position:relative;

    padding:40px;

}

#tituloEstado{

    color:#17326f;

    font-size:34px;

    margin-bottom:20px;

}

#sliderImagenes{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:15px;

    margin-bottom:25px;

}

#sliderImagenes img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:14px;

}

#descripcionEstado{

    color:#555;

    font-size:18px;

    line-height:1.6;

    margin-bottom:25px;

}

#botonEstado{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:12px;

    background:#17326f;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

#botonEstado:hover{

    background:#0A7CFF;

}

.tooltip{

    position:absolute;

    background:#17326f;

    color:#fff;

    padding:8px 14px;

    border-radius:10px;

    font-size:14px;

    pointer-events:none;

    opacity:0;

    transition:.2s;

    z-index:99999;

}