/* CSS que aplica al Section (Main (Todas las recetas)) */
/* Derechos reservados al Grupo 4 : Matias Abel Cortés, Héctor Salvador Guzmán, Bárbara Marisol Garro, Ceballos Jorge */

section {
    margin-top: 50px;
}


.floor {
    display: flex;
    margin-top: 66px;
    flex-direction: column;
}

.floor_good_hd {
    height: 48px;
}

.floor_good_hd h3 {
    float: left;
    color: #2b2b2b;
    font-size: 24px;
    font-weight: 700;
}

.floor_good_hd i {
    color: #166080;
}


.floor_good_hd a i {
    font-size: 18px;
    margin-left: 8px;
}

.floor_good_hd h3 span {
    position: relative;
}



.floor_good_hd span::after {
    content: '';
    position: absolute;
    display: block;
    bottom: -5px;
    left: 0;
    width: 99%;
    height: 5px;
    border-radius: 5px;
    background-color: #166080;
}

.floor_good {
    margin-top: 25px;
    margin-left: 50px;
    margin-right: 50px;
}

.goods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
}

.goods li {
    display: flex;
    margin: 18px 5px;
    width: 225px;
    height: 295px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 8px 5px 2px 1px #000000;
    transition: all .5s;
}

.goods li a {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    border: 2px solid #ffa7e4;
    border-radius: 15px;
    text-decoration: none; 
}

.goods li:hover{
    transform: translateY(-30px);
}

.goods li .picture {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.goods li .picture img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    vertical-align: middle;
}


.desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #000000;
    padding: 0 12px;
    background-color: #66b4b8;
    text-decoration: none; 
}

.good_title{
    font-size: large;
    text-decoration: none; 
}

.good_title,
.previous_price,
.price {
    flex: 1;
    padding-top: 8px;
    text-decoration: none; 
}

.desc s {
    font-weight: 200;
}

.price {
    -webkit-text-stroke: 0.3px #eb18ac;
    border-top: 2px solid #000000;
    color: #000000;
}