*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.title{
    text-align: center;
    margin-top: 60px;
}

.container-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tarjeta{
    width: 300px;
    height: 320px;
    margin: 10px;
    padding: 0px;
    border: 2px solid #eeeeee;
    border-radius: 14px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    background-color: #FFF;
}

.tarjeta img{
    width: 100%;
    height: 260px;
    transition: all 400ms;
}

.tarjeta h2{
    font-size: 16px;
    margin-top: 0px;
    transition: all 500ms;
    transform: translateY(17px);
}

.tarjeta .container-a{
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    padding: 0px 10px;
    border-radius: 0px 0px 14px 14px;
}

.tarjeta a{
    font-size: 14px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-10%);
    height: 35px;
    opacity: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
}


/*Efecto Hover*/


.tarjeta:hover{   
    background-color: rgba(0, 206, 209, 0.041);
    color: black;

}

.tarjeta:hover img{
    transform: translateY(-100px);
}

.tarjeta:hover h2{
    transform: translateY(-60px);
}

.tarjeta:hover .container-a a{
    transform: translateX(-40px);
    opacity: 1;
}



