.seccion-mapa {
    margin-top: 34px;
}

.encabezado-mapa {
    align-items: flex-end;
}

.mapa-eyebrow {
    margin: 0 0 8px !important;
    color: #52e29a !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.mapa-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) minmax(280px, .9fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 30px;
    background:
        radial-gradient(circle at 27% 24%, rgba(82,226,154,.10), transparent 34%),
        linear-gradient(145deg, rgba(8,22,29,.86), rgba(3,10,14,.96));
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.mapa-lienzo {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 30px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.mapa-lienzo::before {
    content: "";
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(82,226,154,.055);
    filter: blur(2px);
    pointer-events: none;
}

.mapa-provincias {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 470px);
    height: 580px;
    overflow: visible;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.30));
}

.mapa-provincia {
    fill: rgba(224,238,243,.21);
    stroke: rgba(230,245,249,.58);
    stroke-width: 1.4;
    vector-effect: non-scaling-stroke;
    cursor: pointer;
    transition: fill .16s ease, stroke .16s ease, filter .16s ease, opacity .16s ease;
    outline: none;
}

.mapa-provincia:hover,
.mapa-provincia:focus-visible,
.mapa-provincia.activa {
    fill: #52e29a;
    stroke: #d8ffe9;
    filter: drop-shadow(0 0 7px rgba(82,226,154,.64));
}

.mapa-provincia.sin-ligas:hover,
.mapa-provincia.sin-ligas:focus-visible,
.mapa-provincia.sin-ligas.activa {
    fill: #39c87d;
}

.mapa-cargando {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfe3ec;
    background: rgba(3,12,17,.78);
    transition: opacity .25s ease;
}

.mapa-cargando.oculto {
    opacity: 0;
    pointer-events: none;
}

.mapa-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px;
}

.mapa-panel-kicker {
    margin: 0 0 10px;
    color: #52e29a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.mapa-panel h3 {
    margin: 0;
    font-size: clamp(34px, 4.3vw, 60px);
    line-height: .98;
    letter-spacing: -.04em;
}

.mapa-panel > p:not(.mapa-panel-kicker) {
    margin: 22px 0 0;
    max-width: 480px;
    color: #bdd3dc;
    font-size: 17px;
    line-height: 1.55;
}

.mapa-boton {
    width: fit-content;
    margin-top: 30px;
    padding: 13px 20px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
    color: #06120c;
    background: #52e29a;
    box-shadow: 0 10px 30px rgba(82,226,154,.14);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.mapa-boton:hover,
.mapa-boton:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(82,226,154,.22);
    outline: none;
}

.mapa-boton[aria-disabled="true"] {
    opacity: .38;
    pointer-events: none;
}

.mapa-indicacion {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #8fa8b2;
    font-size: 13px;
}

.mapa-punto {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #52e29a;
    box-shadow: 0 0 0 5px rgba(82,226,154,.10);
}

.mapa-fuente {
    margin: 12px 2px 0;
    color: rgba(210,229,237,.55);
    font-size: 11px;
}

@media (max-width: 820px) {
    .mapa-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mapa-lienzo {
        min-height: 525px;
        padding: 24px 18px 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .mapa-provincias {
        width: min(100%, 390px);
        height: 490px;
    }

    .mapa-panel {
        padding: 30px 26px 34px;
    }

    .mapa-panel h3 {
        font-size: clamp(31px, 9vw, 48px);
    }

    .mapa-boton {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mapa-shell {
        border-radius: 22px;
    }

    .mapa-lienzo {
        min-height: 455px;
    }

    .mapa-provincias {
        height: 425px;
    }

    .mapa-indicacion {
        align-items: flex-start;
    }
}
