/* GENERALES */

h1 {
    text-align: center;
    color: #f00;
    letter-spacing: 4px;
}

/* SECTION 1 */

#section1 {
    padding: 30px 0;
    background: #d9cfc7;
}

#section1 h2 {
    text-align: center;
    color: #f00;
    letter-spacing: 2px;
}

#section1 h2::after {
    content: '';
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 100px;
    height: 3px;
    background: #f00;
    margin-bottom: 40px;
}

#section1 p {
    font-size: 24px;
    color: black;
    padding: 10px 30px;
    text-align: justify;
}

#section1 .imagenCatalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#section1 .imagenCatalog .imgProduc {
    width: 300px;
    margin: 20px auto;
    padding: 20px 0px;
    overflow: hidden;
    padding: 19px 14px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 100%);
    background: #fff;
}

#section1 .imagenCatalog .imgProduc img {
    width: 100%;
    height: 374px;
    transition: 300ms;
}

#section1 .imagenCatalog .imgProduc img:hover {
    -webkit-transform: scale(1.9);
    transform: scale(1.1);
}

/* SECTION 2 */

#section2 {
    padding: 30px 0;
    background: #b3b3b3;
}

#section2 #h2 {
    text-align: center;
    color: red;
    letter-spacing: 2px;
}

#section2 #h2::after {
    content: '';
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 100px;
    height: 3px;
    background: #f00;
    margin-bottom: 40px;
}

#section2 .recetas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 70px 0px;
}

#section2 .recetas .imgRecetas {
    width: 600px;
    overflow: hidden;
    padding: 14px 24px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 100%);
    background: #fff;
}

#section2 .recetas .imgRecetas img {
    width: 100%;
    transition: 300ms;
}

#section2 .recetas .imgRecetas img:hover {
    -webkit-transform: scale(1.9);
    transform: scale(1.1);
}

#section2 .recetas .contenReceta {
    width: 600px;
    background: green;
    padding: 20px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 100%);
    border-radius: 50px 0px;
}

#section2 .recetas .contenReceta .cabecera {
    display: flex;
    justify-content: space-between;
}

#section2 .recetas .contenReceta .cabecera h2 {
    color: white;
    letter-spacing: 2px;
}

#section2 .recetas .contenReceta .cabecera i {
    font-size: 42px;
    margin-top: -20px;
    color: white;
}

#section2 .recetas .contenReceta .textReceta {
    background: #d7d7d7;
    text-align: justify;
    color: black;
    padding: 10px;
    border-radius: 0px 0px 35px 0px;
}

#section2 .recetas .contenReceta .textReceta p:last-child {
    margin-bottom: 0px;
}

@media (max-width: 1333px) {
    #section2 .recetas .imgRecetas {
        width: 500px;
    }
    #section2 .recetas .contenReceta {
        width: 500px;
    }
}

@media (max-width: 1111px) {
    #section2 .recetas .imgRecetas {
        padding: 9px 16px;
    }
    #section2 .recetas .imgRecetas {
        width: 400px;
    }
    #section2 .recetas .contenReceta {
        width: 400px;
    }
}

@media (max-width: 888px) {
    #section1 p {
        font-size: 18px;
    }
    #section2 .recetas .contenReceta {
        margin: 10px 0px;
    }
}

@media (max-width: 444px) {
    #section1 p {
        font-size: 16px;
    }
    #section2 .recetas .contenReceta .textReceta p {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    #section2 .recetas .imgRecetas {
        padding: 7px 12px;
    }
}