<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://use.typekit.net/tsw0xiy.css");

:root {
    /* Naranjas */
    --color-orange-bright: #FF8138;
    --color-orange-red: #FF5E3A;
    --color-orange-soft: #FF9263;

    /* Rojos */
    --color-red-vibrant: #F61616;

    /* Amarillos */
    --color-yellow-gold: #FFC23D;
    --color-yellow-cream: #FFEAB6;

    /* Azules */
    --color-blue-turquoise: #10AED3;

    /* Neutrales */
    --color-brown-rose: #835758;

    /* Fondos */
    --color-bg-ivory: #FFF6EC;
    --color-bg-cream: #FFEAB6;
    --color-bg-warm-white: #FFF9F0;
    --color-bg-peach: #FFEEDD;

    /* TipografÃ­a */
    --font-main: 'IvyEpic', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg-ivory);
    box-sizing: border-box;
    --font-family: 'IvyEpic', sans-serif;
}

/* utildades */

.strong-orange {
    display: inline;
    font-weight: bolder;
    color: var(--color-orange-red);
}

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

.color-brown {
    color: #835758;
}

.color-Oxide-Red {
    color: #9E3A2F;
}

.color-orange-vivid {
    color: #FF5E3A !important;
}

.color-blue-turquoise {
    color: var(--color-blue-turquoise) !important;
}

.color-purple {
    color: #474483;
}

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

.container-recipe {
    width: 328px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 20px;

}

.general-section {
    width: 100%;
}

.bg-cream-ivory {
    background-color: var(--color-bg-ivory) !important;
}

.bg-peach {
    background-color: var(--color-bg-peach) !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

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

    .container-recipe {
        margin-bottom: 40px;
        width: 880px;
    }
}

.link {
    text-decoration: none;
}

.title-blue {
    width: 328px;
    height: 140px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    line-height: 130%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--color-blue-turquoise);
    margin: 0 auto;
    margin-bottom: 20px;
}

.title-orange-red {
    width: 100%;
    height: 102px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: #FF5E3A;
}


@media(min-width:1000px) {
    .title-blue {
        width: 880px;
        height: 70px;
        margin-bottom: 10px;
    }

    .title-orange-red {
        width: 880px;
        height: 33px;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 33px;
    }
}

.recipe-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    height: 280px;
    margin: 0 auto;
}

.recipe-image img {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    isolation: isolate;
    width: 100%;
    height: 240px;
}

.recipe-caption {
    margin: 0 auto;
    width: 328px;
    height: 30px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    display: flex;
    align-items: center;
    color: var(--color-brown-rose);
}

@media(min-width:1000px) {
    .recipe-image {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 0px 20px;
        width: 880px;
        height: 631px;
    }

    .recipe-image img {
        height: 588px;
    }

    .recipe-caption {
        width: 100%;
        height: 18px;
    }
}

.line-blue-tip {
    width: 100%;
    height: 0px;
    border: 1px solid #10AED3;
}

.display-block-movil {
    display: block;
}

@media (min-width: 1000px) {
    .display-block-desktop {
        display: block;
    }

    .display-block-movil {
        display: inline;
    }
}

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

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

.header-menu&gt;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-main);
    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]&gt;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-main);
    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;
    }
}

/* Hero section */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    width: 100%;
    height: 560px;
    background-image: url('../../img/00_portada_general.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 225.53px;
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ag-logo-hero {
    margin-bottom: 20px;
    width: 120px;
    height: 28px;
}

.title-hero {
    width: 100%;
    height: 53px;
}

.arrow-hero {
    width: 40px;
    height: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    cursor: pointer;
}

@media (min-width:1000px) {
    .hero {
        height: 796px;
    }

    .hero-content {
        width: 425.53px;
        height: auto;

    }

    .ag-logo-hero {
        width: 180.35px;
        height: 42px;
    }

    .title-hero {
        width: 425.53px;
        height: 100px;
    }

    .arrow-hero {
        width: 60px;
        height: 60px;
    }
}


/* share section */

.share {
    margin-top: 20px;
    gap: 10px;
    width: 100%;
    height: auto;
    background: #FFEEDD;
    display: flex;

}

.share-content-movil {

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 0px;
    gap: 30px;
    width: 100%;
    height: 40px;

}

.share-content-movil p {
    margin: 0;
    height: 9px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: var(--color-orange-soft);
}

.share-content-movil img {
    cursor: pointer;
}

.share-content-desk {
    display: none;
}

.share-text {
    width: 100%;
    height: auto;
    /* font-family: 'Manrope'; */
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    display: block;
    align-items: flex-end;
    color: #3F3F3F;
}

@media (min-width:1000px) {
    .share {
        margin-top: 50px;
    }

    .share-content-desk {

        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px 0px 10px;
        gap: 30px;
        width: 100%;
        height: 30px;
    }

    .share-content-desk p {
        height: 15px;
        font-family: var(--font-main);
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #3F3F3F;
    }

    .share-content-desk img {
        cursor: pointer;
    }

    .share-content-movil {
        display: none;
    }

    .share-text {

        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;

    }
}

/* share home */
.share-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 244px;
    background: #FFEEDD;

}

@media (min-width:1000px) {
    .share-home {
        gap: 10px;
        height: 204px;
    }
}

/* 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-book */

.recipe-book-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px 10px;
    gap: 15px;
    width: 100%;
    height: 186px;
}

.recipe-book-img-movil {
    width: 100px;
    height: 100px;
    display: block;
}

.recipe-book-img-desk {
    display: none;
}

.recipe-title-line {
    width: 301px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.recipe-title-line span {
    /* font-family: 'Manrope'; */
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 41px;
    text-transform: uppercase;
}

@media (min-width:1000px) {
    .recipe-book-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px 10px;
        gap: 15px;
        height: 186px;

    }

    .recipe-book-img-movil {
        display: none;
    }

    .recipe-book-img-desk {
        margin-top: 30px;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
        background-color: #FFEEDD;
        border-radius: 100%;
        display: block;

    }

    .recipe-book-img-desk img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 100%;
    }

}

/* recipe-book-list */
.recipe-book-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.recipe-book-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0px;
    width: 100%;
    /* height: 280px; */
    height: auto;
    border: 2px solid var(--color-blue-turquoise);
    border-radius: 16px;
    text-decoration: none;
    gap: 10px;
}

.recipe-book-card img {
    width: 308px;
    height: 170px;
    border-radius: 12px;
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    width: 308px;
    min-height: 48px;
    box-sizing: border-box;
}

.card-info p {
    box-sizing: border-box;
    width: 100%;
    /* Usa el 100% del ancho del contenedor */
    margin: 0;
    /* Elimina cualquier margen predeterminado */
    padding: 0;
    /* Elimina cualquier padding predeterminado */
    height: 48px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #FF5E3A;
    justify-content: start;

}

.recipe-book-icons {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* AÃ±ade esta lÃ­nea para alinear a la izquierda */
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 308px;
    height: 20px;
}

.recipe-book-icon-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--color-blue-turquoise);
    width: auto;
    height: 19px;
}


.recipe-book-icon-item img {
    width: 20px;
    height: 20px;
}

@media (min-width: 1000px) {
    .recipe-book-list {
        margin-top: 20px;
        grid-template-columns: repeat(3, 1fr);
        /* Tres columnas en desktop */
    }

    .recipe-book-card {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0px;
        gap: 10px;
        width: 328px;
        /* height: 280px; */
        height: auto;
        border: 2px solid var(--color-blue-turquoise);
        border-radius: 16px;
        flex: none;
        order: 1;
        flex-grow: 0;
    }

}

/* recipes */

/* menu-recipe */
.menu-recipe {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    align-items: center;
    width: 100%;
    height: 89px;
    background: #FFF6EC;
    box-shadow: 0px 4px 4px -1px rgba(12, 12, 13, 0.1), 0px 4px 4px -1px rgba(12, 12, 13, 0.05);
    margin-top: 50px;
}

.menu-recipe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 74px;
    height: 69px;
    text-decoration: none;
}

.menu-recipe-item img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.menu-recipe-item p {
    width: 74px;
    height: 14px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 115%;
    text-align: center;
    color: #3F3F3F;
    margin: 0;
}

@media (min-width: 1000px) {
    .menu-recipe {
        justify-content: center;
        gap: 40px;
        height: 90px;
        left: 0px;
        margin-top: 84px;
    }

    .menu-recipe-item {
        width: 74px;
        height: 71px;
    }

    .menu-recipe-item img {
        width: 50px;
        height: 50px;
    }

    .menu-recipe-item p {
        width: 74px;
        height: 16px;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 115%;
        text-align: center;
    }
}

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

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

.hero-recipe-cove-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 15, 0, 0) 0%, rgba(30, 15, 0, 0.75) 100%)
}

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

.hero-recipe-title {
    margin: 0;
    width: 100%;
    height: auto;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 30px;
    line-height: 125%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;

}



/* TODO: cambair tipografia, y tamano */
.part-yellow {
    margin: 0;
    color: #FFDA56;
    font-family: 'IvyJournal';
    font-style: italic;
    font-weight: 600;
    margin-left: 0;
    font-size: 20px;
}

.hero-recipe-button {
    text-decoration: none;
    cursor: pointer;
    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: #FF5E3A;
    border-radius: 72.7273px;

    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 14.5455px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

}

.hero-recipe-button img {
    width: 11.64px;
    height: 11.64px;
}

@media (min-width: 1000px) {
    .hero-recipe {
        height: 600px;
        /* align-items: flex-start; */
    }

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

    .hero-recipe-title {
        margin: 0;
        width: auto;
        height: auto;
        font-style: normal;
        font-weight: 800;
        font-size: 48px;
        line-height: 130%;
        display: flex;
        text-align: start;
        align-items: start;
    }

    .part-yellow {
        justify-content: flex-start;
        font-size: 48px;
        align-self: flex-start;
    }

    .hero-recipe-button {
        padding: 16px;
        gap: 12px;
        width: 172px;
        height: 44px;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
    }

    .hero-recipe-button img {
        width: 16px;
        height: 16px;
    }
}

/* 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;
}

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

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


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

    .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;
    }
}

/* preparation */

.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 var(--color-blue-turquoise);
    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: 298px;
    height: 108px;
    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: 44px;
    padding: 5px;
    overflow: hidden;
}

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

.icon-item-title {
    font-family: var(--font-main);
    font-size: 12px;
    color: var(--color-blue-turquoise);
    margin: 0;
}

.icon-item-description {
    font-family: var(--font-main);
    font-size: 12px;
    color: #FF5E3A;
    margin: 0;
}

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

.blue-line {
    width: 299px;
    height: 0px;
    border: 1px solid var(--color-blue-turquoise);
}

.ingredients-title {
    margin: 0;
    width: 300px;
    height: 84px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--color-orange-red);
}

.ingredients-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 300px;
    font-family: var(--font-main);
    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;
}

@media (min-width: 1000px) {

    .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: 60px;
        width: 824px;
        height: 44px;
    }


    .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;
    }

    .blue-line {
        width: 824px;
        height: 0px;
        border: 1px solid var(--color-blue-turquoise);
    }

    .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;
    }
}

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

.preparation-section-title {
    width: 327px;
    height: auto;
    margin: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: var(--color-orange-red);
}

.preparation-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 270px;
}

.preparation-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.preparation-image-caption {
    margin: 0 auto;
    width: 328px;
    height: 30px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    display: flex;
    align-items: center;
    color: var(--color-brown-rose);
}


.preparation-section-subtitle {
    width: 327px;
    height: auto;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--color-blue-turquoise);
    margin-bottom: 16px;
}

.step-list {
    width: 327px;
    height: auto;
    /* font-family: 'Manrope'; */
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #3F3F3F;
    padding-left: 20px;
    margin: 0;
}

.step-list li {
    margin-bottom: 12px;
    list-style-type: decimal;
}

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

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

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

    .preparation-image {
        height: 631px;
    }

    .preparation-image img {
        height: 588px;
    }

    .preparation-image-caption {
        width: 100%;
        height: 18px;
    }

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

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



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

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

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

}

.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;
    }
}

/* tip section */

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

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

}

.tip-content img {
    width: 80px;
    height: 80px;
}

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

.tip-label {
    margin: 0;
    width: 201px;
    height: 12px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--color-blue-turquoise);

}

.tip-title {
    gap: 0;
    margin: 0;
    width: 300px;
    height: auto;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: #F46433;
}

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

@media(min-width: 1000px) {
    .tip-section {}

    .tip-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 9.73px;
        width: 856.22px;
    }

    .tip-content img {
        width: 120px;
        height: 120px;
    }

    .tip-content-container {
        align-items: center;
        padding: 29.1892px 0px;
        gap: 19.46px;
        width: 856px;
    }

    .tip-label {
        width: auto;
        height: 11px;
        font-style: normal;
        font-weight: 700;
        font-size: 15.5676px;
        line-height: 22px;
        text-align: left;
        display: inline-block;
        margin-right: auto;
    }

    .tip-title {
        width: 858.16px;
        height: 27px;
        font-style: normal;
        font-weight: 700;
        font-size: 19.4595px;
        line-height: 27px;
    }

    .tip-description {
        width: 856px;
        font-style: normal;
        font-weight: 400;
        font-size: 15.5676px;
        line-height: 23px;

    }
}

/* recipe video section */
.recipe-video-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    height: auto;
    background: #181818;
}

.video-head {
    width: 100%;
    height: auto;
}

.recipe-video-title {

    width: 100%;
    height: auto;
    font-family: var(--font-main);
    /* font-family: 'Manrope'; */
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: #FFDA56;
    margin-bottom: 10px;
}

.recipe-video-title span {
    color: var(--color-orange-red);
}

.recipe-video-description {
    margin-bottom: 20px;
    width: 100%;
    height: 49px;
    font-family: var(--font-main);
    /* font-family: 'Manrope'; */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.ifraem-video {
    width: 100%;
    height: 207px;
}


@media(min-width: 1000px) {
    .recipe-video-section {
        padding: 40px 0;
    }

    .recipe-video-title {
        margin-bottom: 20px;
        height: auto;
    }

    .recipe-video-title span {}

    .recipe-video-description {
        width: 100%;
        height: 22px;
    }

    .ifraem-video {
        height: 556px;
        margin: 0;
    }
}

/* 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: 328px;
    height: 24px;
    font-family: var(--font-main);
    /* font-family: 'Manrope'; */
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    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-main);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    display: flex;
    justify-content: center;
    /* AÃ±ade esto para centrar horizontalmente en flex */
    align-items: center;
    /* Centra verticalmente */
    text-align: center;
    /* Centra el texto dentro del pÃ¡rrafo */
    color: #3F3F3F;

}


@media(min-width: 1000px) {

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

    .media-scroll-container h2 {
        width: 100%;
        height: 24px;
        display: flex;
        align-items: center;
        text-transform: uppercase;
    }

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

    }

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



}</pre></body></html>