.talleres {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%; /* Para que ocupe todo el alto que le da el Grid */
  /* border: 2px solid red !important; */
}

.imgTaller {
    width: 200px;           /* Definimos el tamaño del círculo aquí */
 }

.imgTaller img {
    width: 100%;            /* Que ocupe el 100% de sus 150px */
    height: 100%;
    object-fit: cover;      /* Evita que la foto se deforme */
    border-radius: 50% !important;
    transition: transform 0.3s ease;
}

.imgTaller:hover img {
    transform: scale(1.1); /* Agranda la imagen un 10% */
}

.imgUlpan {
    width: 500px;        
    transition: transform 0.3s ease;
 }


.imgUlpan:hover img {
    transform: scale(1.1); /* Agranda la imagen un 10% */
}