/*tipo*/

.card-img, .card-img-top{
    border-radius: 8px;
}


.body-portfolio{
    padding-top: 16px;
}

.text-portfolio{
    margin-top: 8px;
}

.hol:hover{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #198754;
    border-radius: 8px;
}





.caja-portafolio {
  position: relative;
  overflow: hidden;
}

.caja-portafolio img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.interior-caja {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 95%;
  height: 95%;
  background: rgba(255, 255, 255, 0.6); /* Fondo blanco transparente */
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
 
  transition: opacity 0.3s ease;
    border-radius: 7px;
}

.portfolio-icon a {
  background-color: #1e5eff;
  color: white;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.portfolio-icon a:hover {
  background-color: #153ec2;
}

.caja-portafolio:hover .interior-caja {
  opacity: 1;
}


.portfolio-content{
    display: flex;
    gap: 10px;
}