@import url("https://use.typekit.net/tsw0xiy.css");

:root {
    /* Colores base */
    --rojo: #F25C5E;
    --verde: #335A47;
    --gris-oscuro: #6C6C6C;
    --rojo-claro: #FF9799;
    --verde-claro: #8AFF9B;
    --gris-claro: #EDEDED;
    --verder-oscuro: #194A37;

}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --font-family: 'IvyEpic', sans-serif;
    background-color: #FFF6EC;
}

/* Clases utilitarias para fondos */

.bg-rojo {
    background-color: var(--rojo);
}

.bg-verde {
    background-color: var(--verde);
}

.bg-gris-oscuro {
    background-color: var(--gris-oscuro);
}

.bg-rojo-claro {
    background-color: var(--rojo-claro);
}

.bg-verde-claro {
    background-color: var(--verde-claro);
}

.bg-gris-claro {
    background-color: var(--gris-claro);
}

/* Clases utilitarias para texto */
.text-white {
    color: white !important;
}

.text-rojo {
    color: var(--rojo);
}

.text-verde {
    color: var(--verde) !important;
}

.text-gris-oscuro {
    color: var(--gris-oscuro) !important;
}

.text-rojo-claro {
    color: var(--rojo-claro);
}

.text-verde-claro {
    color: var(--verde-claro);
}

.text-gris-claro {
    color: var(--gris-claro);
}

.text-orange-red {
    color: var(--rojo);
}

.text-yellow {
    color: #FFDA56;
}

.text-red {
    color: #BE413B !important;
}

.text-red-pink {
    color: #835758 !important;
}

.text-gris-oscuro {
    color: var(--gris-oscuro) !important;
}

.p-0 {
    padding: 0 !important;
}

.container {
    width: 328px;
    margin: 0 auto;
}

.p-list-15 {
    padding: 0 0 0 15px !important;
}

@media (min-width:1000px) {
    .container {
        width: 880px;
    }
}


.movil {
    display: block;
}

.desktop {
    display: none;
}

@media (min-width:1000px) {
    .movil {
        display: none;
    }

    .desktop {
        display: block;
    }
}

/* header  */
.header-menu {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--verder-oscuro);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
}

.header-menu>a:first-child {
    flex: 0 0 auto;
}

.header-menu>a:nth-child(2) {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.logo-header {
    width: 40px;
    height: 40px;
    display: block;
    z-index: 1000000;
}

.title-header {
    width: 195.63px;
    height: 15px;
    display: block;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Menú container con animación */
.menu-container {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 50px;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background: #F46433;
    z-index: 99999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;


    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Oculta el scrollbar en WebKit */
.menu-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.menu-container.active {
    transform: translateX(0);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-container-header {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.menu-container-title {
    width: 134.82px;
    height: 35.59px;
}

.menu-close-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 0;
    cursor: pointer;
}

.details-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    margin: 0 30px;
    width: 280px;
    height: 100px;
    align-self: flex-start;
}

.details-container summary {
    position: relative;
    list-style: none;
    width: 100%;
    height: 20px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;

}

.details-container summary::after {
    width: 19.93px;
    height: 20px;
    content: url(../../img/details-arrow.svg);
    display: inline-block;
    transition: transform 0.3s ease;
}

details[open]>summary::after {
    transform: rotate(180deg);
}


.menu-list {
    padding-left: 10px;
}

.menu-list li {
    list-style: none;
    margin: 20px 0;
}

.menu-link {
    width: 250px;
    height: 22px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ornage-line {
    width: 280px;
    height: 0px;
    border: 0.5px solid #FFDA56;
    margin: 30px 0;
}

.menu-container-logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 129.04px;
    height: 200px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.menu-container-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width:1000px) {
    .header-menu {
        padding: 0px 128px;
        height: 84px;
    }

    .logo-header {
        width: 70px;
        height: 70px;
    }

    .menu-icon {
        width: 38px;
        height: 25px;
    }

    .title-header {
        width: 522px;
        height: 40px;
    }

    .menu-container {
        padding: 0px 50px;
        gap: 83.33px;
        width: 600px;
    }

    .menu-container-header {
        margin-top: 35px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 130px;
        height: 85px;

    }

    .menu-container-title {
        width: 224.69px;
        height: 59.31px;
    }

    .menu-close-icon {
        width: 50px;
        height: 50px;
        right: 0;
    }

    .details-container {
        width: 473px;
        height: auto;
        margin: 0 50px;
    }

    .details-container summary {
        padding: 0;
        justify-content: flex-start;
        gap: 33.33px;
        width: 466.67px;
        height: 33.33px;
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 42px;

    }

    .details-container summary::after {
        width: 33.21px;
        height: 33.33px;
    }

    .ornage-line {
        width: 466.67px;
        height: 0px;
        border: 0.833333px solid #FFDA56;
        margin: 50px 0;
    }

    .menu-container-logo {
        width: 215.07px;

    }
}


/* footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    gap: 50px;
    position: relative;
    width: 100%;
    height: 200px;
    background: #1E1E1E;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 12px;
    margin: 0 auto;
    width: 193px;
    height: 115px;
}

.footer-content-image {
    width: 40px;
    height: 40px;
}

.footer-content-title {
    width: 161px;
    height: 14px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    color: #FFFFFF;
}

.footer-share-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 20px;
}

.footer-share-icons img {
    width: 14px;
    height: 14px;
}

.footer-share {
    width: 193px;
    height: 17px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
}

.footer-image {
    margin: 0 auto;
    width: 85px;
    height: 20px;
}

@media (min-width:1000px) {
    .footer {
        padding: 40px 0px;
        width: 100%;
        height: 400px;
    }

    .footer-content {
        width: 385px;
        height: 242px;
    }

    .footer-content-image {
        width: 80px;
        height: 80px;
    }

    .footer-content-title {
        width: 385px;
        height: 34px;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;
    }

    .footer-share-icons {
        padding: 0px;
        gap: 40px;
        width: 324px;
        height: 30px;
    }

    .footer-share-icons img {
        width: 28px;
        height: 28px;
    }

    .footer-share {
        width: 289.5px;
        height: 42px;
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 42px;
    }

    .footer-image {
        width: 127.5px;
        height: 30px;
    }
}

/* section hero */
.hero {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    justify-content: flex-end;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 15px;
    width: 210.57px;


}


.hero-logo {
    width: 104px;
    height: 24.27px;
}

.title-hero {
    width: 165.83px;
    height: 86.42px;
}

@media (min-width:1000px) {
    .hero {

        height: 796px;
    }

    .hero-image {
        object-fit: fill;
    }

    .hero-content {
        transform: translateX(-50%);
        bottom: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 15px;
        width: 421.13px;
        height: 199.19px;
    }

    .hero-logo {
        width: 208px;
        height: 48.53px;
    }

    .title-hero {
        width: 404.87px;
        height: 210.98px;
    }
}



/* share section */
.share-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 15px;
    height: auto;
    width: 100%;

}

.share {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 0px;
    gap: 10px;
    width: 100%;
    height: auto;
}

.sahre-title {
    width: 68px;
    height: 18px;
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    display: flex;
    align-items: flex-end;
    color: #6C6C6C;
}

.share-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 79.2px;
    height: 16px;
}


.share-text {
    /* Elimina estas propiedades: */
    /* display: flex; */
    /* flex-direction: row; */
    /* justify-content: center; */
    /* align-items: center; */
    /* gap: 10px; */


    width: 100%;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #3F3F3F;
    margin: 0;

}

@media (min-width:1000px) {
    .share-section {
        padding: 20px 0px;
        gap: 10px;
    }

    .share {
        padding: 10px 0px 20px;
        gap: 20px;
    }

    .share p {
        width: 84px;
        height: 22px;
        font-style: italic;
        font-weight: 700;
        font-size: 16px;
        line-height: 22px;

    }

    .share-icons {
        width: 118.8px;
        height: 24px;
    }

    .share-text {
        font-weight: 400;
        font-size: 21px;
        line-height: 29px;
    }
}

/* ad sections */

.ad-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 328px;
    height: 184px;
    margin: 30px auto;

}

.ad-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width:1000px) {
    .ad-container {
        width: 541.5px;
        height: 302.75px;
    }
}

/* recipe-gallery-section */
.recipe-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    height: auto;
}

.recipe-logo-gallery {
    width: 100px;
    height: 100px;
}

.recipe-title-gallery {
    margin: 0;
    width: 204px;
    height: 34px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #3F3F3F;

}

.recipe-gallery-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    height: 707px;
}

.gallery-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    isolation: isolate;
    width: 154px;
    height: 221px;
    border-radius: 8px;
    text-decoration: none;
}

.gallery-image {
    border-radius: 8px;
    width: 154px;
    height: 154px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0px;
    gap: 5px;
    width: 100%;
    height: auto;
}


.gallery-specs {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: 16px;
}

.gallery-difficulty {
    width: auto;
    height: 15px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #939393;
}

.gallery-time-text {
    width: auto;
    height: 15px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #939393;
}

.gallery-time {
    width: 16px;
    height: 16px;
}

.gallery-text {
    width: 100%;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #3F3F3F;
    margin: 0;
}

@media (min-width:1000px) {
    .recipe-logo-gallery {
        width: 150px;
        height: 150px;
    }

    .recipe-title-gallery {
        width: 305px;
        height: 50px;
        font-style: normal;
        font-weight: 800;
        font-size: 36px;
        line-height: 50px;
        text-align: center;
    }

    .recipe-gallery-items {
        padding: 0px;
        gap: 30px;
        width: 756px;
        height: 683px;
    }

    .gallery-item {
        width: 225px;
        height: 321.5px;
        border-radius: 12px;
    }

    .gallery-image {
        width: 231px;
        height: 231px;

    }

    .gallery-content {
        padding: 15px 0px 0px;
        gap: 7.5px;
        width: 231px;
        height: auto;
    }

    .gallery-specs {
        gap: 15px;
        height: 24px;
    }

    .gallery-difficulty {
        width: auto;
        height: 22px;
        font-size: 18px;
        line-height: 22px;
    }

    .gallery-time-text {
        width: auto;
        height: 22px;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    }

    .gallery-time {
        width: 24px;
        height: 24px;
    }

    .gallery-text {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
    }
}

/* recipes */

/* hero recipes */
.hero-recipe {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
    gap: 30px;
    width: 100%;
    height: 369px;
    position: relative;
}

.hero-recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
}

.hero-recipe::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-recipe-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 0px 20px;
    gap: 20px;
    position: absolute;
    width: 328px;
    height: auto;
    z-index: 2;
}

.hero-recipe-title {
    margin: 0;
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-recipe-booton {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11.6364px;
    gap: 8.73px;
    width: 140px;
    height: 32px;
    background: #F25C5E;
    border-radius: 72.7273px;
    font-family: var(--font-family);
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14.5455px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.arrwo-white {
    width: 11.64px;
    height: 11.64px;
}

@media (min-width:1000px) {
    .hero-recipe {
        margin-top: 84px;
        justify-content: center;
        isolation: isolate;
        height: 600px;
        width: 100%;
    }

    .hero-recipe-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 0px 40px;
        gap: 30px;
        position: absolute;
        width: 880px;
        height: auto;
        top: 250px;
    }

    .hero-recipe-title {
        text-align: start;
        height: 210px;
        font-style: normal;
        font-weight: 700;
        font-size: 64px;
        line-height: 110%;
    }

    .hero-recipe-booton {
        padding: 16px;
        gap: 12px;
        width: 220px;
        height: 50px;
        font-size: 24px;
    }

    .arrwo-white {
        width: 16px;
        height: 16px;
    }
}

/* figure */

.figure {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0px 30px;
    gap: 10px;
    width: 100%;
    height: auto;
}

.figure-img {
    padding: 0px;
    gap: 5px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 240px;
}

.figure-caption {
    width: 328px;
    height: 16px;
    margin: 0 auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    display: flex;
    align-items: center;
    color: #6C6C6C;
}


@media (min-width:1000px) {
    .figure {
        padding: 0px 0px 20px;
        gap: 5px;
        width: 880px;
    }

    .figure-m {
        padding: 20px 0px 30px;
    }

    .figure-img {
        height: 588px;
        width: 882px;
    }

    .figure-caption {
        width: 100%;
        height: 18px;
        font-size: 14px;
        display: flex;
        align-items: center;
        color: #835758;

    }
}



/* recipe */

.recipe-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0px;
    gap: 10px;
    width: 328px;
    height: auto;
    background: #FFEEDD;
    border-radius: 20px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.recipe-title {
    margin: 0;
    width: 300px;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--verde);
}

.recipe-section p {
    margin: 0;
    width: 300px;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gris-oscuro);
}


@media (min-width: 1000px) {
    .recipe-section {
        padding: 40px 0px;
        gap: 10px;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
    }

    .recipe-title {
        width: 880px;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;
    }

    .recipe-section p {
        width: 880px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
}

/* ingredientes */
.ingredientsmb {
    margin-bottom: 20px;
}

.title-red {
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #BE413B;
}

.title-verde {
    margin: 0;
    width: 300px;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--verde);
}

.ingredients {
    margin-top: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0px;
    gap: 15px;
    width: 100%;
    height: auto;
    border: 1px solid #BE413B;
    border-radius: 20px;

}

.ingredients-icons {
    display: grid;
    /* grid-template-columns: repeat(2, 129px);  */
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 0px 30px;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
}

/* Orden para móvil (grid) */
.ingredients-icons-item:nth-child(1) {
    /* preparation-orange */
    grid-column: 1;
    grid-row: 1;
}

.ingredients-icons-item:nth-child(2) {
    /* cost-orange */
    grid-column: 1;
    grid-row: 2;
}

.ingredients-icons-item:nth-child(3) {
    /* difficulty-orange */
    grid-column: 2;
    grid-row: 1;
}

.ingredients-icons-item:nth-child(4) {
    /* portion-orange */
    grid-column: 2;
    grid-row: 2;
}


.ingredients-icons-item {

    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    height: 60px;
    padding: 5px;
    overflow: hidden;
}

.icon-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.icon-item-title {
    width: fit-content;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #A9A9A9;
    margin: 0;
}

.icon-item-description {
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #6C6C6C;
    margin: 0;
}

.ingredients-icons-item img {
    width: 30px;
    height: auto;
    object-fit: contain;
}

.red-line {
    width: 299px;
    height: 0px;
    border: 1px solid #BE413B;
}

.ingredients-title {
    margin: 0;
    width: 300px;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 29px;
    display: flex;
    align-items: center;
    letter-spacing: 0.005em;

    color: #BE413B;
}

.ingredients-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 300px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #3F3F3F;
}

.ingredients-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ingredients-list li::before {
    content: ".";
    position: absolute;
    left: 0;
    color: #3F3F3F;
}

.ingredients-list li.special-item::before {
    content: "1.";
}

@media (min-width: 1000px) {
    .ingredientsmb {
        margin-bottom: 30px;
    }

    .ingredients {
        padding: 20px 30px;
        gap: 20px;
        width: 880px;
        height: auto;
    }

    .ingredients-icons {

        justify-content: flex-start;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 10px;
        gap: 30px;
        width: 824px;
        height: auto;
    }


    .ingredients-icons-item {
        order: initial;
    }

    .ingredients-icons-item img {
        width: 30px;
        height: 30px;
    }

    .icon-item-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
    }

    .icon-item-description {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
    }

    .red-line {
        width: 824px;
        height: 0px;

    }

    .ingredients-title {
        padding: 0px;
        gap: 15px;
        width: 820px;
        height: 28px;
    }

    .ingredients-list {
        width: 820px;
        height: auto;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
    }

    .title-verde {
        width: 100%;
    }
}

/* preparation */


.preparation-section-subtitle {
    width: 100%;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: 0.005em;

    color: #BE413B;
    margin-bottom: 16px;
}

.step-list {
    margin-bottom: 20px;
    width: fit-content;
    height: auto;
    /* font-family: 'Manrope'; */
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #3F3F3F;
    padding-left: 20px;

}

.step-list li {
    margin-bottom: 12px;

}

.step-list li:last-child {
    margin-bottom: 0;
}

@media (min-width: 1000px) {

    .preparation-section-subtitle {
        width: 100%;
        height: auto;
    }

    .step-list {
        width: 880px;
        height: auto;
        color: #3F3F3F;
    }
}

/* tip animal */
.tip {
    padding: 20px 0 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;
    width: 100%;
    height: auto;
    background: var(--verde);
    text-align: center;
}

.tip-head {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 120px;
    height: auto;
}

.tip-icon {

    width: 100px;
    height: 100px;
    object-fit: contain;
}

.tip-icon-text {
    width: 120px;
    height: 30px;
    border-radius: 10px;
    background-color: #FFDA56;
    color: var(--verde);
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tip-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
    text-align: start;
}

.number-tip {
    margin: 0;
    width: fit-content;
    height: 12px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #FFDA56;
}

.tip-title {
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 29px;
    color: var(--verde-claro);
    margin: 20px 0 0 0;
}

.tip-subtitle {
    margin: 0;
    width: fit-content;
    height: 29px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.tip-text {
    margin: 0;
    width: 100%;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 15.5676px;
    line-height: 23px;
    color: white;
}

.tip-list {
    margin: 0;
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
}

.tip-list li {
    padding: 10px 0;
    height: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;

}

@media (min-width: 1000px) {
    .tip {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 20px 0px 30px;
        gap: 10px;
    }

    .tip-head {
        align-items: start;
        justify-content: start;
        margin: 0;
    }

    .tip-icon {
        display: flex;
        flex-direction: start;
        width: 140px;
        height: 140px;
    }

    .tip-icon-text {
        width: 174px;
        height: 45px;
        font-size: 21px;
        line-height: 29px;
        display: flex;
        flex-direction: start;
    }

    .tip-content {
        gap: 20px;
    }

    .number-tip {
        margin-top: 20px;
    }

    .tip-text {
        font-size: 16px;
    }
}

/* sub tip */
.sub-tip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: auto;
    background: #EDEDED;
}

.sub-tip-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0px;
    gap: 20px;
    width: 300px;
    height: auto;
}

.sub-tip-title {
    margin: 0;
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #F25C5E;
}

.sub-tip-text {
    margin: 0;
    width: 100%;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 15.5676px;
    line-height: 23px;
    color: #6C6C6C;
}

.sub-tip-content-grey {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0px;
    gap: 20px;
    width: 328px;
    height: auto;
}

.sub-tip-content-grey-text {
    margin: 0;
    width: 100%;
    height: 66px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

}

@media (min-width: 1000px) {
    .sub-tip-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px 0px;
        gap: 20px;
        width: 880px;
    }

    .sub-tip-title {
        font-size: 21px;
        line-height: 29px;
    }

    .sub-tip-text {
        font-size: 20px;
        line-height: 28px;
    }

    .sub-tip-content-grey {
        width: 880px;
        height: auto;
    }

    .sub-tip-content-grey-text {
        height: 22px;
    }
}


/* media scroll */
.media-scroll-container {
    display: flex;
    padding: 60px 0;
    gap: 17px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: auto;
    align-items: center;
    overflow: hidden;

}

.media-scroll-container h2 {
    width: fit-content;
    height: 24px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: start;
    text-transform: uppercase;
    color: #3F3F3F;

}



.horizontal-scrolling-nav {
    margin-left: 90px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;

}



.horizontal-scrolling::-webkit-scrollbar {
    display: none;
}

.horizontal-scrolling-nav .scrolling-item {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
}

.horizontal-scrolling-nav .scrolling-item img {
    width: 200px;
    height: 111px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    object-fit: cover;

}

.horizontal-scrolling-nav .scrolling-item:last-child {
    margin-right: 70px;
}

.scrolling-item-text {
    width: 200px;
    height: 40px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #3F3F3F;

}


@media(min-width: 1000px) {

    /* TODO: REALIZAR EL RESPONSVE */
    .media-scroll-container {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 884px;
        align-items: start;
    }

    .media-scroll-container h2 {

        height: 24px;
        text-align: start;
        text-transform: uppercase;
    }

    .horizontal-scrolling-nav {
        margin-left: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px;
        gap: 10px;
        width: 100%;


    }

    .horizontal-scrolling::-webkit-scrollbar {
        display: none;
    }



}

.to-serve-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0px 0px;
    gap: 10px;
    width: 328px;
    height: auto;
    margin: 0 auto;

}

.to-server-title {
    margin: 0;
    width: fit-content;
    height: 29px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 21px;
    line-height: 29px;
    color: #BE413B;
}

.to-serve-list {

    margin: 0;
    width: fit-content;
    height: auto;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 15.5676px;
    line-height: 23px;
    color: #6C6C6C;
    padding-left: 20px;
}

@media(min-width: 1000px) {
    .to-serve-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 30px 0px;
        gap: 10px;
        width: 100%;
        height: auto;
        background: #EDEDED;
    }

    .to-serve-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 10px;
        width: 880px;
        height: 86px;
    }

}

/* goback-ag */

/* bo back ag */
.goback-ag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 100%;
    height: 100px;
    margin: 0 auto;
}

.goback-arrow {
    width: 20px;
    height: 20px;
}

.goback-ag p {
    width: 210px;
    height: 22px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #3F3F3F;
}

.goback-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 1000px) {
    .goback-ag {
        background: transparent;
    }

    .goback-arrow {
        width: 40px;
        height: 40px;
    }

    .goback-ag p {
        width: 289px;
        height: 31px;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
    }
}

.video-section {
    margin: 30px auto 0px auto;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}


.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media (min-width: 1000px) {
    .video-section {
        width: 584px;
    }

}