figure.zoom {
    background-position: 50% 50%;
    position: relative;
    margin: auto;
    border: 5px solid white;
    height: auto;
    width: 90%;
    overflow: hidden;
    cursor: zoom-in;
    background-repeat: no-repeat;
}

figure.zoom img:hover {
    opacity: 0;
}

figure.zoom img {
    transition: opacity 0.5s;
    display: block;
    width: 100%;
}

.proximoImg, .AnteriorImg {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.proximoImg {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.AnteriorImg:hover, .proximoImg:hover {
    background-color: rgba(0,0,0,0.8);
}