/* //////////////////
   TIPOS DE UNIDADES
///////////////////*/
.hover{
    width: 95%;
    display:flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    flex-wrap:wrap;
    margin: auto; 
    max-width: 1500px;
    padding: 10px;
}

.hover figure{
    position: relative;
    height: 250px;
    width: 350px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
    cursor:pointer;
    display: inline-block;
}

.hover figure img{
    transition: all 700ms ease-out;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
 
}

.hover figure .capa{
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.8);
    transition: all 700ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    padding: 10px;
}

.hover figure:hover > .capa{
    opacity: 1;
    visibility: visible;
}

.hover figure:hover > .capa h2{
    margin-top: 15px;
    margin-bottom: 30px;
}

.hover figure .capa h2{
    font-weight: 400px;
    margin-bottom: 30px;
    transition: all 700ms ease-out;
    margin-top: 30px;
}
