body {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_daily {
    width: 80%;
    max-width: 1170px;
    margin: 60px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}
.container_daily .card_desta {
    width: 260px;
    height: 220px;
    margin: 25px 0;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #222;
}
.container_daily .card_desta img {
    display: block;
    width: 280px;
    height: 160px;
    transition: all 0.5s ease;
}
.container_daily .card_desta h2 {
    text-align: center;
    padding: 3%;
    font-size: 12px;
}
.container_daily .card_desta p {
    width: 30%;
    padding: 3px;
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin: 0 auto;
    font-weight: 700;
    background-color: red;
    border-radius: 3px;
    position: absolute;
    top: 0;
}
.container_daily .card_desta .content {
    position: absolute;
    top:-130%; left:0;
    height: 100%;
    width:100%;
    text-align: center;
    background:rgba(0,0,0,.7);
    /* padding-top: 1rem; */
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_daily .card_desta:hover .content {
    top: 0;
}
.container_daily .card_desta .content h3 {
    text-decoration: none;
    padding: 5px 10px;
    /* margin-top: 50px; */
    display: inline-block;
    background-color: #FF6600;
    border: 0.1rem solid #FF6600;
    cursor: pointer;
}
.container_daily .card_desta .content h3 a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
.container_daily .card_desta .btn-button {
    text-decoration: none;
    padding: 12px 30px;
    margin-top: 20px;
    display: inline-block;
    background-color: #FF6600;
    border: 0.1rem solid #FF6600;
    color: #fff; 
    cursor: pointer;
}