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



:root {
    /* Paleta de colores */
    --color-blue: #2E70FF;
    /* Azul */
    --color-cream: #F9F5E3;
    /* Crema */
    --color-purple: #474483;
    /* Morado */
    --color-light-gray: #F6F6F6;
    /* Gris claro */
    --color-sky-blue: #90D4FF;
    /* Azul cielo */
    --color-yellow: #FFC23D;
    /* Amarillo */
    --color-orange: #FF9263;
    /* Naranja */
    --color-crema-tenue: #F7F0D5;
    --color-crema-fuerte: #F4EBC8;
    /* Fondos basados en la paleta */
    --bg-blue: var(--color-blue);
    --bg-cream: var(--color-cream);
    --bg-purple: var(--color-purple);
    --bg-light-gray: var(--color-light-gray);
    --bg-sky-blue: var(--color-sky-blue);
    --bg-yellow: var(--color-yellow);
    --bg-orange: var(--color-orange);
    --bg-crema-tenue: var(--color-crema-tenue);
    --bg-crema-fuerte: var(--color-crema-fuerte);

    /* Tipografía */
    --font-headings: 'IvyJournal', serif;
    --font-body: Arial, sans-serif;
}

.d-flex {
    display: flex;
}

.f-j-around {
    justify-content: space-around;
}

.f-j-center {
    justify-content: center;
}

.f-j-evenly {
    justify-content: space-evenly;
}

.f-j-between {
    justify-content: space-between;
}

.f-j-end {
    justify-content: end;
}

.f-a-center {
    align-items: center;
}

.f-row {
    flex-direction: row;
}

.f-col {
    flex-direction: column;
}

.m-auto {
    margin: auto;
}

.m-0 {
    margin: 0px !important;
}

.mt-subtitle {
    margin-top: -15px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-2 {
    margin-top: 2px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

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

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

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

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

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

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

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

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

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.my-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ml-2 {
    margin-left: 2%;
}

.ml-10 {
    margin-left: 10%;
}

.ml-70 {
    margin-left: 70%;
}

.ml-75 {
    margin-left: 75%;
}

.mr-10 {
    margin-right: 10%;
}

.mr-30 {
    margin-right: 30px;
}

.mr-50 {
    margin-right: 50px;
}

.mx-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mx-15 {
    margin-left: 15px;
    margin-right: 15px;
}

.mx-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-30 {
    margin-left: 30px;
    margin-right: 30px;
}

.b-20 {
    bottom: 20px;
}

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

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-30 {
    padding: 30px;
}

.p-20 {
    padding: 20px;
}

.p-0-40 {
    padding: 0px 40px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-150 {
    padding-top: 150px;
}

.pt-100per {
    padding-top: 100%;
}

.pt-1000 {
    padding-top: 1000px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-100 {
    padding-bottom: 100px;
}

.p-x-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.p-x-15 {
    padding-right: 15px;
    padding-left: 15px;
}

.pos-fixed {
    position: fixed;
}

.pos-absolute {
    position: absolute;
}


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

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

.bg-white {
    background-color: white;
}

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

.text-pinck {
    color: var(--color-pink);
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-30 {
    width: 30% !important;
}

.w-80px {
    width: 80px;
}

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







/* Estilos generales */
html,
body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    height: 100%;

    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;

}

body.page-index {
    background-color: #FFEEDD;
}

body.page-other {
    background-color: #F9F0E5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 600;
    /* Semibold */
    color: var(--color-blue);
}




.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.5);
    z-index: 10;
    display: none;
}

.open-menu .overlay {
    display: block;
    /* Mostrar cuando el menú esté abierto */
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;


}


.container {

    width: 100%;

}

/* header  */
.header-menu {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    background: #2E70FF;
    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: #2E70FF;
    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]>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: #2E70FF;
}

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


/* home*/
.home-content-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;

    padding: 0px;
    gap: 10px;
    width: 328px;
    height: auto;

}

.home-content-container h1 {
    width: 328px;


    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F46433;

}

.home-content-container p {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #9E3A2F;

}

.home-content-container h2 {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    color: #9E3A2F;

}

.card-home {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 328px;
    height: 490px;
    filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.24));
    border-radius: 10px;

}

.card-home-img {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 33.02px;
    isolation: isolate;
    width: 100%;
    height: 440px;
    border-radius: 10px 10px 0px 0px;
}

.card-home-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 328px;
    height: 50px;
    background: #2E70FF;
    border-radius: 0px 0px 10px 10px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
}


/* Estilos para la portada */
.cover-recetas {
    width: 100%;
    height: 560px;
    background-image: url('../../img/00_portada_home.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 50px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0px;
    gap: 149px;
    position: relative;

}

.cover-recetario {
    width: 100%;
    height: 560px;
    background-image: url('../../img/0_cuaresma_portada.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 50px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0px;
    gap: 149px;
    position: relative;
}

.ag-cover-receta {
    position: absolute;
    width: 130px;
    height: 30px;
    left: calc(50% - 130px/2);
    top: 379px;

}

.title-cover-receta {
    position: absolute;
    width: 297px;
    height: 68px;
    left: calc(50% - 297px / 2 + 0.5px);
    top: 420.38px;


}

.content-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 10px;
    width: 328px;
    height: 890px;
    align-items: center;

}



.consejo-container-home {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    gap: 10px;
    width: 328px;
    height: 212px;
    background: #FFD256;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: width 0.3s ease, height 0.3s ease;
}

.consejo-title {

    width: 210.55px;
    height: 28px;
    left: 0px;
    top: 0px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--color-blue);


}

.consejo-content {

    width: 218px;
    height: 110px;
    left: 0px;
    top: 30px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-purple);
}

.read-more {
    width: 300px;
    height: 22px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    cursor: pointer;
    color: var(--color-purple);
}

.image-consejo {
    position: absolute;
    width: 207.28px;
    height: 207px;
    background: url('../../img/gallina2.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.extra-content {
    display: none;
    /* Oculto por defecto */
    width: 300px;
    height: 722px;

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

    color: #474483;
}

.extra-content.show {
    display: block;
    opacity: 1;
}

.consejo-container-home.expanded {
    width: 328px;
    /* Mantener el width igual */
    height: 944px;
    /* Ajustar el height */
}


/* Oculta la imagen de móvil en desktop */
.mobile-only {
    display: block;
}


/* caldo michi section */
.menu-header-receta {
    width: auto;
    height: 120px;
    background-color: #FFEEDD;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    position: relative;
    top: 50px;
    gap: 25px;
    margin-bottom: 51px;

}

.menu-item-receta {
    width: 74px;
    height: 100px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-item-receta img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid #2E70FF;
    object-fit: cover;
}

.menu-item-receta p {
    width: 78px;
    height: 34px;
    font-family: 'IvyEpic', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
    color: var(--bg-blue);
    margin: 0;

}

/* portada recetas */

.cover-receta {
    overflow: hidden;
    display: flex;
    gap: 30px;
    width: 100%;
    height: 440px;
    box-sizing: border-box;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    position: relative;

}

.cover-receta__imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.cover-receta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 15, 0, 0) 44.77%, rgba(30, 15, 0, 0.75) 81.77%);
    z-index: 2;
}

.cover-receta__texto {
    position: absolute;
    z-index: 3;
    margin: 0;
    width: 360px;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 115%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.cover-receta__texto_sub {
    margin-top: 10px;
    position: absolute;
    z-index: 3;
    margin: 0;
    width: 360px;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 100;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {

    width: 56px;
    height: 56px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
}

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

/* share  */
.share-container {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 204px;
    height: 20px;

}

body.page-index .share-container {
    width: 328px;
}

.share-container p {
    width: 75px;
    height: 9px;

    height: 9px;
    left: 0%;
    right: 63.24%;
    top: calc(50% - 9px/2);
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6697FF;
}

.share-icons {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0px;
    gap: 30px;
    width: 109px;
    height: 20px;
}

.share-socila-icon {
    cursor: pointer;
}

/* istructions icons2 */
.instruction-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    width: 328px;
    height: 120px;
}

.instruction-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 83px;
    height: 60px;
}

.instruction-icon img {
    height: 24px;
    width: 24px;
    margin-bottom: 8px;
}

.instruction-icon p {
    margin: 0;
    font-family: 'IvyEpic', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    color: #2E70FF;
}

.instruction-icon p strong {
    display: block;
    /* Hace que el strong ocupe una línea completa */
    margin-top: 4px;
    /* Espacio entre el texto y el strong */
}


/* ad section01 */
.ad-1-container {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

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

.ad-3-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 20px 0px;
    row-gap: 20px;
    width: 100%;
    height: 360px;

}

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

/* ingredientes section */

.ingrediente {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 20px;
    gap: 15px;
    width: 328px;
    height: auto;
    background: var(--color-blue);
    border: 1px solid #2E70FF;
    border-radius: 10px;

}

.element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.ingrediente-img {
    width: 150px;
    height: 150px;

}

.ingrediente-img-desk {
    display: none;
}

.ingrediente-portion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 10px;
    gap: 10px;
    margin: 30px;
    width: 180px;
    height: 34px;

    border: 1px solid #FFFFFF;
}

.ingrediente-portion-text {
    width: auto;
    height: 28px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.ingrediente-title {
    width: auto;
    height: 34px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 10px;
}

.element {
    width: 100%;
    justify-content: center;
    text-align: center;
    justify-content: center;
}

.ingrediente-subtitile {

    width: 328px;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.ingrediente-subtitile span {
    font-weight: lighter;
    font-weight: 400;
    margin-top: 5px;
}

.line {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 275px;
    height: 0px;
    border: 1px solid #FFFFFF;
}

.ingrediente-list {
    list-style-type: none;
    padding: 0;

    width: 260px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    height: auto;
}

.ingrediente-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.ingrediente-cantidad {
    font-weight: bold;
    width: 89px;
    flex-shrink: 0;
    margin-right: 20px;/
}

.ingrediente-nombre {
    flex: 1;
    text-align: left;
    font-weight: 100;
}



/* preparation section */
.preparation-container {

    width: 100%;
    display: inline-block;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preparation-icon {
    width: 150px;
    height: 150px;

}

.preparation-title {
    width: 306px;
    height: 31px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: var(--bg-blue);
    margin: 0;
}

.preparation-subtitle {
    margin-top: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: auto;
    height: auto;
    border: 1px solid #2E70FF;
}

.preparation-subtitle h2 {
    width: auto;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    color: #2E70FF;
}

.preparation-subtitle h3 {
    font-weight: lighter;
    font-weight: 400;
    margin-top: 5px;
}

.step-container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    gap: 30px;
    width: 328px;
}

.step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 21px;
    color: var(--color-purple);
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}


.circle-icon.active {
    color: white;
    background-color: #2E70FF;

}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-title {
    width: 300px;
    height: 9px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 6px;
}

.step-content {
    width: auto;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-purple);
    margin: 0;
}



/* card consejo 2 */
.advice-card {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    background: #FFDA56;
    position: relative;
}

.advice-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 328px;
    height: auto;
}

.advice-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 216px;
    height: auto;

}

.advice-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 25px;
    background: #90D4FF;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.advice-head-title {
    width: auto;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #474483;
}

.advice-content-title {
    margin: 0;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F46433;
}

.advice-content-text {
    margin: 0;
    font-family: 'IvyEpic';
    font-size: 18px;
    line-height: 110%;
    color: #9E3A2F;
}

.advice-pet {
    width: 60%;
    max-width: 400px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 70%;
    transform: translateX(-50%);
}

/* consejo animal */
.consejo-animal {
    display: flex;

    width: 100%;
    background: #FFDA56;
    justify-content: center;
}

.consejo-animal-group {
    width: 328px;
}

.consejo-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 25px;
    background: #90D4FF;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.consejo-head-title {
    width: auto;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #474483;
}

.consejo-animal-conent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.consejo-animal-title {
    width: 70%;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F46433;
}

.consejo-animal-action {
    width: 40px;
    height: 40px;
    background-image: url('../../img/action.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.consejo-dropdown {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    background-color: #FFDA56;
    position: relative;

}

.consejo-dropdown.open {
    /* height: 1301px; */
    height: auto;
}

.consejo-dropdown-content {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 328px;
    height: auto;

}

.consejo-dropdown-content p {
    width: 100%;
    height: 132px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #9E3A2F;
    text-align: left;
    align-self: flex-start;
    margin: 0;

}

.consejo-dropdown-content h1 {
    margin: 0;
    width: 183px;
    height: 34px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;

    color: #F46433;
}

.consejo-dropdown h2 {
    width: 312px;
    height: 31px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: #F46433;

}

.consejo-dropdown-pet {
    height: 150px;
    width: 150px;
}

.consejo-dropdown-ingrediente {
    background-image: url(../../img/01-ingredientes-consejo.svg);
    width: 328px;
    height: 179px;
    background-size: cover;
    background-position: center;

}

.consejo-dropdown-ingrediente-gp {
    background-image: url(../../img/05-ingredientes-consejo.svg);
    width: 328px;
    height: 184px;
    background-size: cover;
    background-position: center;

}

.consejo-dropdown-preparaion {
    margin: 0;
    width: 328px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    height: auto;

}

.consejo-step-container {

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 30px;
    width: 312px;

}

.consejo-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    width: 310px;
    height: auto;

}

.circle-icon-consejo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font-size: 21px;
    color: #9E3A2F;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 16px;
}

.circle-icon-consejo.active {
    color: white;
    background-color: #F46433;

}

.consejo-step-text {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    text-align: left;
    margin-left: 10px;

}

.consejo-step-title {
    width: 300px;
    height: 9px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    text-transform: uppercase;
    color: #F46433;
}

.consejo-step-content {
    width: 300px;
    height: auto;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #9E3A2F;
    margin: 0;
}

/* card animal  */
.card-animal {
    margin-top: 30px;
    width: 100%;
    height: 285px;
    background-color: #FFDA56;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.card-animal-group {
    margin-top: 20px;
    margin-left: 30px;
    width: 328px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-animal-head {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 8px;
    width: 161px;
    height: 25px;
    background: #90D4FF;
    border-radius: 5px;
}

.card-head-title {
    margin: 0;
    width: 100%;
    height: 20px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #474483;
}

.card-animal-content {
    width: 100%;
}

.card-animal-content h2 {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F46433;
}

.card-animal-content>.consejo-trasporte {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 28px;
    text-transform: uppercase;
    color: #F46433;
}

.card-animal-content p {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 100;
    font-size: 18px;
    line-height: 110%;
    color: #9E3A2F;
}

.card-animal-image {
    width: 30%;
    height: 100%;

}

.card-animal-image-container {
    width: 30%;
    height: 90%;

}

.card-animal-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: center;
}

.card-animal-image-container3 {
    width: 30%;
    height: 90%;

}



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

}

.go-back-ag-conten {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    /* Cambiado a auto para que se ajuste al contenido */
    height: 22px;
}

.go-back-ag-conten img {
    width: 20px;
    height: 20px;
}

.go-back-ag-conten a {
    text-decoration: none;
    font-family: 'IvyEpic', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #474483;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Espacio entre el icono y el texto */
}

/* media scroll */
.media-scroll-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
    height: 255px;
    background: #FFEEDD;
    align-items: center;
    overflow: hidden;
}

.media-scroll-container h1 {
    width: auto;
    height: 22px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #474483;
}

.media-scroll-container h2 {
    width: auto;
    height: 22px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    text-transform: uppercase;
    color: #474483;
}

.horizontal-scrolling {
    margin-left: 97px;

    position: relative;
    overflow: hidden;
    width: 100%;
    height: 156px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;


}



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

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

.horizontal-scrolling .image-link img {
    width: 200px;
    height: 156px;
    object-fit: cover;

}

.horizontal-scrolling .image-link:last-child {
    margin-right: 70px;
}

/* recetario page */
.recipe-container {
    margin-top: 30px;
    width: 328px;
    height: auto;

}

.recipe-container p {
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: flex-end;
    color: #FFFFFF;
    margin-bottom: 30px;

}

.gallery-container {
    margin-top: 50px;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-container-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    position: relative;
    width: 328px;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-container-card img {
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.24);
    object-fit: cover;
}

/* Estilos conejo generales */
.c-general-container {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    width: 100%;
    height: auto;
    background: #FFDA56;
    overflow: hidden;
}

.c-general-content-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px;
    isolation: isolate;
    width: 328px;
    height: 140px;

}

.c-general-content {
    width: 218px;
    height: 140px;
}

.c-general-content h1 {
    width: 210.55px;
    height: 28px;
    left: 0px;
    top: 0px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #2E70FF;
}

.c-general-content h2 {
    width: 210.55px;
    height: 28px;
    left: 0px;
    top: 0px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    color: #2E70FF;
}

.c-general-content p {
    width: 218px;
    height: 110px;
    left: 0px;
    top: 30px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #474483;
}

.c-general-content-img {
    width: 110px;
    height: 140px;
}

.c-general-content-img img {
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.c-general-read-more {
    width: 328px;
    height: 22px;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    color: #474483;
    margin-top: 20px;
    cursor: pointer;
}

/* Estilos para el dropdown */
.c-general-dropdown {
    width: 300px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;

    margin-top: 10px;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: 'IvyEpic';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #474483;
}

.c-general-dropdown.active {
    height: auto;
    margin-top: 30px;
}

.c-general-dropdown p,
.c-general-dropdown ul {
    margin: 0;
    padding: 0;
}

.c-general-dropdown ul {
    list-style-type: disc;

}

.c-general-dropdown ul li {
    margin-bottom: 10px;
}

.c-general-dropdown ul li strong {
    font-weight: 600;
}

.frame-ad {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 10px;

    width: 100%;
    height: 230px;
}

@media (min-width:1000px) {
    .frame-ad {
        margin-top: 40px;
        width: 884px;
        height: 563.21px;

    }


    .movil {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }


    .item {
        margin-left: 100px;
        margin-right: 20%;
    }

    .item-inicio {
        margin-left: 100px;
        margin-right: 20%;
    }

    .home-logos {
        width: 450px;
        margin-bottom: 30px;

    }

    .card-home {
        width: 428px;
        height: 640px;
    }

    .card-home-img {
        height: 570px;
    }

    .card-home-bottom {
        width: 428px;
    }




    /* home*/
    .home-content-container {

        width: 884px;
        height: auto;

    }

    .home-content-container h1 {
        line-height: 42px;

    }

    .home-content-container p {

        font-size: 16px;


    }

    .home-content-container h2 {

        font-size: 18px;


    }

    /* portada */
    .cover-recetas {
        width: 1440px;
        height: 795px;
    }

    .cover-recetario {
        width: 100%;
        height: 795px;
    }

    .ag-cover-receta {
        position: absolute;
        width: 260px;
        height: 60px;
        left: calc(50% - 260px/2 - 10px);
        top: 565px;
    }


    .title-cover-receta {

        position: absolute;
        width: 415px;
        height: 100px;
        left: calc(50% - 415px/2 + 0.5px);
        top: 640px;


    }

    .arrow {
        bottom: 1px;
        height: 60px;
        width: 60px;
    }


    /* card */
    .card-container {
        padding: 15px 30px;
        gap: 45px;
        isolation: isolate;

        width: 447px;
        height: 645px;
    }

    .menu-header-receta {
        margin-top: 32px;
        width: 100%;
        height: 144px;
    }

    .menu-item-receta {
        width: 210px;
        height: 124.67px;
    }

    .menu-item-receta img {
        width: 90.61px;
        height: 90.61px;
    }

    .menu-item-receta p {
        width: 210px;
        height: 25px;
        left: calc(50% - 210px/2 - 334px);
        top: 109.74px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
        text-align: center;
    }

    .cover-receta {
        width: 100%;
        height: 796px;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .cover-receta__imagen {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cover-receta__texto {
        width: 884px;
        height: auto;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 800;
        font-size: 60px;
        line-height: 110%;
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;


    }

    .cover-receta__texto_sub {
        bottom: 60px;
        width: auto;
        height: auto;
        font-size: 30px;
    }

    .cover-share-desk {
        display: block;
        width: 161.56px;
        height: 70.57px;
        position: absolute;
        right: 130px;
        bottom: 65px;
        z-index: 4;
    }

    .cover-share-desk-icons {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .cover-share-desk-text {
        width: 100%;
        height: 19px;
        top: calc(50% - 19px/2 - 2797.43px);
        font-family: 'Raleway';
        font-style: normal;
        font-weight: 400;
        font-size: 26.0584px;
        line-height: 31px;
        text-align: center;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    /* istructions icons */
    .instruction-container {
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        padding: 30px 0px;
        gap: 91px;
        width: 884px;
        height: 155px;

    }

    .instruction-icon {
        width: 124.5px;
        height: 95px;
    }

    .instruction-icon img {
        width: 36px;
        height: 36px;
    }

    .instruction-icon p {
        font-weight: 400;
        font-size: 20px;
        line-height: 28px;
    }

    /* preparation section */
    .preparation-container {
        width: 100%;

    }

    .preparation-icon {
        height: 200px;
        width: 200px;
    }

    .preparation-title {
        width: 297px;
        height: 42px;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;
    }

    .step-container {


        width: 878px;
        height: auto;
    }

    .step {
        width: 878px;
        height: auto;
    }

    .step-title {

        width: 78px;
        height: 13px;
        left: 42.95px;
        top: 0px;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
    }

    .step-content {
        width: 836px;
        height: auto;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;


    }

    .circle-icon {
        margin-top: 22px;
        width: 20px;
        height: 20px;

    }

    /* share section */
    .share-container {

        width: 884px;

    }

    .share-container.page-other {
        display: none;
    }

    .share-container p {
        font-size: 20px;
        margin-right: 40px;
    }

    .share-icons {
        width: 163.5px;
        height: 30px;

    }

    body.page-index .share-container {
        width: 884px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .go-back-ag-conten a {
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;

    }

    .go-back-ag-conten img {
        width: 40px;
        height: 40px;
    }

    .ad-1-container {
        width: 584px;
    }

    .ad-3-container {
        margin-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        gap: 25px;
        width: 580px;
        height: 580px;
    }

    /* recetario page */
    .recipe-container {
        width: 884px;
    }

    .recipe-container p {
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
        color: #FFFFFF;

    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 428px);
        /* Ajusta el ancho de las columnas */
        width: 1030.93px;
        row-gap: 65px;
        justify-content: center;
    }

    .gallery-container-card {
        width: 428px;
        height: 300px;
    }

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

    /* consejo animal */

    .consejo-animal-group {
        width: 884px;
        height: auto;
    }

    .consejo-head {
        width: 300px;
        height: 40px;
    }

    .consejo-head-title {
        width: auto;
        height: 31px;
        font-style: normal;
        font-weight: 700;
        font-size: 22px;
        line-height: 31px;


    }

    .consejo-animal-conent {
        margin-top: 30px;
        width: 884px;
        height: 40px;
    }

    .consejo-animal-title {

        width: 740px;
        height: 42px;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;
        color: #F46433;
    }

    .consejo-animal-action {
        width: 60px;
        height: 60px;
    }



    .consejo-dropdown {
        width: 100%;
        height: 0;
    }

    .consejo-dropdown-content {
        width: 884px;
        height: auto;

    }

    .consejo-dropdown-content p {
        width: 100%;
        height: 132px;

        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
        color: #9E3A2F;

    }

    .consejo-dropdown-content h1 {
        width: 229px;
        height: 42px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 700;
        font-size: 30px;
        line-height: 42px;
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: uppercase;
        color: #F46433;
    }

    .consejo-dropdown h2 {
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 700;
        width: 100%;
        height: 42px;
        font-size: 30px;
        line-height: 42px;

    }

    .consejo-dropdown-pet {
        height: 200px;
        width: 200px;
    }

    .consejo-dropdown-ingrediente {

        background-image: url(../../img/01-ingredientes-consejo-desk.svg);
        width: 494px;
        height: 211px;
        background-size: cover;
        background-position: center;
    }

    .consejo-dropdown-ingrediente-gp {
        background-image: url(../../img/05-ingredientes-consejo-desk.svg);
        width: 468px;
        height: 247px;
        background-size: cover;
        background-position: center;
    }

    .consejo-dropdown-preparaion {
        width: 884px;
        display: flex;
        flex-direction: column;
        align-items: center;
        display: flex;

    }

    .consejo-step-container {
        width: 878px;

    }

    .consejo-step {
        width: 100%;

    }

    .consejo-step-text {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
        text-align: left;
        margin-left: 10px;
        width: auto;
    }

    .consejo-step-title {
        width: 300px;
        height: 13px;
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;

    }

    .consejo-step-content {

        width: 838px;
        height: auto;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;


    }

    /* ingredientes section */
    .ingrediente {

        width: 884px;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
        justify-content: center;

    }

    .element {
        margin-top: 10px;
        padding: 10px;
        box-sizing: border-box;
        justify-self: center;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 10px;

    }


    .element:nth-child(3),
    .element:nth-child(4) {
        align-self: start;
    }

    .ingrediente-img {
        display: none;

    }

    .ingrediente-img-desk {
        height: 250px;
        width: 250px;
        margin: 0;
        display: block;

    }

    .ingrediente-portion {

        box-sizing: border-box;
        padding: 5px 10px;
        gap: 10px;
        width: 190px;
        height: 44px;
        margin: 0;
    }

    .ingrediente-portion-text {
        font-weight: 400;
        font-size: 24px;
        line-height: 34px;
        margin: 0;
    }

    .ingrediente-title {
        width: 231px;
        height: 42px;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;
        margin: 0;
    }

    .ingrediente-list {
        width: 357px;
        height: auto;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ingrediente-item {
        margin: 5px 0;
    }

    .ingrediente-cantidad {
        width: 139px;
        font-size: 22px;
        line-height: 31px;
    }

    .ingrediente-nombre {
        width: 241px;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
    }

    .ingrediente-subtitile {
        width: 100%;
        font-weight: 700;
        font-size: 20px;
        line-height: 36px;
        margin: 0;
    }

    .ingrediente-subtitile span {
        font-size: 20px;
    }

    .line {
        display: none;
    }

    /* media scroll */
    .media-scroll-container {
        width: 100%;
        height: 380px;

    }

    .media-scroll-container h1 {
        width: 882px;
        height: 42px;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;

    }

    .media-scroll-container h2 {
        width: 882px;
        height: 42px;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;

    }

    .horizontal-scrolling {

        width: 884px;
        height: 400px;
        margin: 0;
    }

    .horizontal-scrolling::-webkit-scrollbar {
        opacity: 0;
        height: 9px;
        cursor: pointer;
    }

    .horizontal-scrolling .image-link img {
        width: 360px;
        height: auto;
        object-fit: cover;

    }

    /* Estilos conejo generales */
    .c-general-container {
        width: 100%;
        height: auto;
    }

    .c-general-content-container {
        width: 884px;
        height: 165px;
    }

    .c-general-content {
        width: 884px;
        height: 165px;
    }

    .c-general-content h1 {
        width: 853.78px;
        height: 42px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;
        text-transform: uppercase;
    }

    .c-general-content h2 {
        width: 853.78px;
        height: 42px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 42px;
        text-transform: uppercase;
    }

    .c-general-content p {
        width: 884px;
        height: 62px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
    }

    .c-general-content-img img {

        height: 403px;
        width: 403px;
        object-fit: cover;
    }

    .c-general-read-more {
        margin: 0;
        margin-top: 0;
        width: 884px;
        height: 31px;
        font-weight: 500;
        font-size: 22px;
        line-height: 31px;
    }

    .c-general-dropdown {
        width: 884px;
        margin: 0;
        font-weight: 400;
        font-size: 22px;
        line-height: 31px;
    }

    /* card animal  */
    .card-animal {

        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .card-animal-group {

        width: 890px;
        height: auto;
    }


    .card-animal-content h2 {

        width: 890px;
        left: 0px;
        font-family: 'IvyEpic';
        font-style: normal;
        font-weight: 800;
        font-size: 30px;
        line-height: 110%;
    }

    .card-animal-content p {

        width: 890px;
        font-size: 30px;
        line-height: 110%;
    }

    .card-animal-image-container {

        width: 10%;
        height: 90%;

    }

    .card-animal-image2 {
        transform: scale(2.2) translateY(30px) translateX(60px);
    }

    .card-animal-image {
        width: 10%;
        height: 100%;
        transform: scale(1.2) translateY(85px) translateX(60px);

    }
}