CÓDIGO CSS
.contenedor-imagen {
    width: 200px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.contenedor-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contenedor-imagen:hover img {
    transform: scale(0.9); /* Aumenta el tamaño un 20% */
}