/* CONTENEDOR INTERNO */
.mapimg {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.171);
}

.map-content {
    position: relative;
    height: 100%;
    width: 100%;
    flex: 1;
}

/* TABS */
.tab {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tab.active {
    opacity: 1;
    pointer-events: auto;
}

/* MAPA */
.tab iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /*  3 por fila */
    gap: 8px;

    padding: 10px;

    height: 100%;
    overflow-y: auto; /*  scroll interno */
}

/* IMAGEN */
.galeria img {
    width: 100%;
    height: 250px; 
    object-fit: cover;

    border-radius: 8px;
    cursor: pointer;

    transition: transform 0.3s ease;
}

.galeria img:hover {
    transform: scale(1.05);
}

/* SCROLL PRO */
.galeria::-webkit-scrollbar {
    width: 6px;
}

.galeria::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.lightbox {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.9);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    z-index: 999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;

    font-size: 30px;
    color: white;
    cursor: pointer;
}