    .equipo-galeria {
      margin-top: 20px;
    }
   .miembro {
  position: relative;
  overflow: hidden;
  margin-bottom: 0; /* o usa 5px si quieres un pequeño espacio */
  cursor: pointer;
}

    .miembro img {
      width: 100%;
      filter: grayscale(100%);
      transition: all 0.5s ease;
    }
    .miembro:hover img {
      filter: grayscale(0%);
      transform: scale(1.05);
    }
    .info-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); /* Degradado vertical */
  color: #fff;
  padding: 10px;
  text-align: center;
  transition: all 0.4s ease;
}
    .miembro:hover .info-hover {
      bottom: 0;
    }
 
.row.no-gutter > [class*='col-'] {
  padding:4px;
}

/* para slider jquery */

  #slider_jq {
    position: relative;
    width: 100%;
    height: 700px;
    margin: 0px auto;
    overflow: hidden;
    background: #fff;
  }
  #slider_jq img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  #slider_jq img.active {
    display: block;
  }

#slider_jq img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) 
{
#slider_jq {height: 300px}
}