.title{
    margin-top: 15px;
    text-align: center;
}
.vista{
    margin-top: 20px;
    text-align: center;
}
  #img{
    transition: all linear 0.5s;
  }
  
  #img:hover{
    width: 400px;
    height: 310px;
  }
  
  *{
    padding: 0;
    margin: 0;
  }

.catalogo_ {
      width: 340px;  
      height: 300px; 
      object-fit: cover;  
      border-radius: 15px;  
}
  
.image-panel {
    display: inline-block;
      position: relative;
      width: 350px; 
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 30px;
}
  
  .image-panel:hover .info {
      display: block;
      border-radius: 15px;
  }
  
.info {
    display: inline-block;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        padding: 0.5px;
        display: none;
        text-align: center;
        line-height: 1.5em;
        background: linear-gradient(to bottom, black, black, rgba(0, 0, 0, 0.8));
}