.zoomEvent {
    overflow: hidden;
}

.zoomEvent img {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.zoomEvent:hover img {
    -moz-transform: scale(1.06);
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

.tituloFoto {
    color: aliceblue;
    opacity: 0;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    padding-top: 100px;
    text-align: center;
}

.tituloFoto:hover {
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    content: '';
    position: absolute;
    display: block;
    background: #000000ce;
    opacity: 1;
}