.galeria img {
    width: 150px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
}

.galeria img:hover {
    transform: scale(1.05);
}

/* VISOR GRANDE */
#visor {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#visor img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* BOTONES */
.flecha {
    position: absolute;
    top: 50%;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
}

#izquierda { left: 10px; }
#derecha { right: 10px; }

#cerrar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
}
