/* =========================================================
   RETO INDIVIDUAL — V1
========================================================= */

.sh-reto-single {
    --reto-accent:
        #e56b4a;

    --reto-accent-dark:
        #c65338;

    --reto-soft:
        #e5ece8;

    min-height:
        70vh;

    background:
        var(--sh-cream);
}


.sh-reto-single-premium {
    --reto-accent:
        #d8a34a;

    --reto-accent-dark:
        #9b752c;

    --reto-soft:
        #efe3c8;
}


/* =========================================================
   INTRO
========================================================= */

.sh-reto-intro {
    padding:
        42px 0 68px;
}


.sh-reto-back {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-bottom:
        28px;

    padding:
        8px 12px;

    border:
        1px solid
        rgba(24, 53, 47, .10);

    border-radius:
        999px;

    background:
        var(--reto-soft);

    font-size:
        .79rem;

    color:
        var(--sh-green);

    box-shadow:
        0 6px 16px
        rgba(24, 53, 47, .05);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.sh-reto-back:hover {
    transform:
        translateX(-2px);

    box-shadow:
        0 9px 20px
        rgba(24, 53, 47, .08);
}


.sh-reto-intro-grid {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(300px, .72fr);

    align-items:
        center;

    gap:
        clamp(
            42px,
            7vw,
            90px
        );

    width:
        min(100%, 980px);

    margin:
        0 auto;
}


.sh-reto-intro-copy {
    min-width:
        0;
}


.sh-reto-intro-meta {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;
}


.sh-reto-single-badge,
.sh-reto-single-duration,
.sh-reto-single-categories span {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        29px;

    padding:
        5px 11px;

    border-radius:
        999px;

    font-size:
        .64rem;

    line-height:
        1;
}


.sh-reto-single-badge {
    background:
        var(--reto-accent);

    color:
        #fff;
}


.sh-reto-single-badge-premium {
    color:
        var(--sh-green);
}


.sh-reto-single-duration {
    background:
        var(--reto-soft);

    color:
        var(--sh-green-2);
}


.sh-reto-single-categories {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    margin-top:
        9px;
}


.sh-reto-single-categories span {
    min-height:
        26px;

    border:
        1px solid
        rgba(24, 53, 47, .09);

    background:
        rgba(255, 255, 255, .68);

    color:
        var(--sh-muted);
}


.sh-reto-intro-copy h1 {
    max-width:
        720px;

    margin:
        18px 0 0;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.2rem
        );

    line-height:
        .91;

    text-wrap:
        balance;
}


.sh-reto-intro-excerpt {
    max-width:
        600px;

    margin:
        20px 0 0;

    font-size:
        .98rem;

    line-height:
        1.68;

    color:
        var(--sh-green-2);
}


.sh-reto-start {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        24px;

    padding:
        11px 17px;

    border-radius:
        999px;

    background:
        var(--sh-green);

    color:
        #fff;

    font-size:
        .78rem;

    transition:
        transform .2s ease,
        background .2s ease;
}


.sh-reto-start:hover {
    transform:
        translateY(-2px);

    background:
        var(--reto-accent-dark);
}


.sh-reto-intro-art {
    position:
        relative;

    width:
        min(100%, 320px);

    margin:
        0 auto;
}


.sh-reto-intro-blob {
    position:
        absolute;

    inset:
        8% -9% -7% 8%;

    border-radius:
        44% 56% 50% 50% /
        54% 43% 57% 46%;

    background:
        var(--reto-soft);

    transform:
        rotate(-5deg);
}


.sh-reto-intro-image {
    position:
        relative;

    z-index:
        2;

    aspect-ratio:
        3 / 4;

    margin:
        0;

    overflow:
        hidden;

    border:
        7px solid #fff;

    border-radius:
        22px;

    background:
        var(--reto-soft);

    box-shadow:
        0 19px 45px
        rgba(24, 53, 47, .14);

    transform:
        rotate(2deg);
}


.sh-reto-intro-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.sh-reto-intro-placeholder {
    width:
        100%;

    height:
        100%;

    display:
        grid;

    align-content:
        center;

    justify-items:
        center;

    gap:
        5px;

    text-align:
        center;

    color:
        var(--sh-green);
}


.sh-reto-intro-placeholder small {
    font-size:
        .68rem;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;
}


.sh-reto-intro-placeholder strong {
    font-family:
        "Chewy",
        cursive;

    font-size:
        4.5rem;

    font-weight:
        400;
}


/* =========================================================
   OVERVIEW
========================================================= */

.sh-reto-overview {
    padding:
        18px 0 72px;
}


.sh-reto-overview-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        22px;

    width:
        min(100%, 900px);
}


.sh-reto-overview-card {
    min-width:
        0;

    padding:
        clamp(
            28px,
            4vw,
            42px
        );

    border:
        1px solid
        rgba(24, 53, 47, .08);

    border-radius:
        32px;

    background:
        rgba(255, 255, 255, .66);

    box-shadow:
        0 17px 45px
        rgba(24, 53, 47, .055);
}


.sh-reto-overview-work {
    background:
        #eef2ec;
}


.sh-reto-overview-how {
    background:
        #f8e5df;
}


.sh-reto-single-premium
.sh-reto-overview-how {
    background:
        #f1e5c9;
}


.sh-reto-overview-card .sh-script {
    font-size:
        1.8rem;
}


.sh-reto-overview-card h2 {
    margin:
        3px 0 0;

    font-size:
        clamp(
            2rem,
            4vw,
            3.25rem
        );

    line-height:
        .97;

    text-wrap:
        balance;
}


.sh-reto-overview-card ul,
.sh-reto-overview-card ol {
    display:
        grid;

    gap:
        13px;

    margin:
        25px 0 0;

    padding:
        0;

    list-style:
        none;
}


.sh-reto-overview-card li {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        11px;

    font-size:
        .86rem;

    line-height:
        1.5;

    color:
        var(--sh-green-2);
}


.sh-reto-check {
    flex:
        0 0 22px;

    display:
        grid;

    place-items:
        center;

    width:
        22px;

    height:
        16px;

    margin-top:
        2px;

    border-radius:
        999px;

    background:
        var(--sh-green);

    color:
        #fff;

    font-size:
        .54rem;

    line-height:
        1;
}


.sh-reto-step-number {
    flex:
        0 0 auto;

    display:
        grid;

    place-items:
        center;

    width:
        25px;

    height:
        25px;

    border-radius:
        50%;

    background:
        var(--reto-accent);

    color:
        #fff;

    font-size:
        .67rem;
}


/* =========================================================
   EDITORIAL
========================================================= */

.sh-reto-editorial {
    padding:
        0 0 72px;
}


.sh-reto-editorial-inner {
    width:
        min(100%, 760px);

    padding:
        34px 38px;

    border-radius:
        28px;

    background:
        rgba(255, 255, 255, .58);
}


.sh-reto-editorial-inner > *:first-child {
    margin-top:
        0;
}


.sh-reto-editorial-inner > *:last-child {
    margin-bottom:
        0;
}


/* =========================================================
   DÍAS
========================================================= */

.sh-reto-days-section {
    scroll-margin-top:
        90px;

    padding:
        64px 0 88px;

    background:
        #fffdf8;
}


.sh-reto-days-heading {
    width:
        min(100%, 700px);

    margin:
        0 auto 48px;

    text-align:
        center;
}


.sh-reto-days-heading h2 {
    margin:
        0;

    font-size:
        clamp(
            3rem,
            6vw,
            5rem
        );

    line-height:
        .94;
}


.sh-reto-days-heading p {
    max-width:
        560px;

    margin:
        17px auto 0;

    font-size:
        .86rem;

    line-height:
        1.6;

    color:
        var(--sh-muted);
}


.sh-reto-days-list {
    display:
        grid;

    gap:
        22px;

    width:
        min(100%, 860px);

    margin:
        0 auto;
}


.sh-reto-day-card {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        112px
        minmax(0, 1fr);

    gap:
        24px;

    min-width:
        0;

    padding:
        26px 30px;

    border:
        1px solid
        rgba(24, 53, 47, .08);

    border-radius:
        30px;

    background:
        #f7e7e2;

    box-shadow:
        0 15px 38px
        rgba(24, 53, 47, .05);
}


.sh-reto-day-2 {
    background:
        #edf1eb;
}


.sh-reto-day-3 {
    background:
        #f1e7ca;
}


.sh-reto-day-number {
    align-self:
        start;

    display:
        grid;

    justify-items:
        center;

    padding:
        13px 10px 15px;

    border-radius:
        26px;

    background:
        rgba(255, 255, 255, .72);

    transform:
        rotate(-2deg);
}


.sh-reto-day-number small {
    font-size:
        .61rem;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    color:
        var(--sh-muted);
}


.sh-reto-day-number strong {
    margin-top:
        2px;

    font-family:
        "Chewy",
        cursive;

    font-size:
        3.1rem;

    font-weight:
        400;

    line-height:
        .95;

    color:
        var(--sh-green);
}


.sh-reto-day-main {
    min-width:
        0;
}


.sh-reto-day-main h3 {
    margin:
        0;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        clamp(
            1.55rem,
            3vw,
            2.15rem
        );

    font-weight:
        400;

    line-height:
        1.1;

    text-wrap:
        balance;
}


.sh-reto-day-description {
    margin:
        12px 0 0;

    font-size:
        .84rem;

    line-height:
        1.6;

    color:
        var(--sh-green-2);
}


.sh-reto-day-objective {
    margin-top:
        17px;

    padding:
        14px 16px;

    border-radius:
        18px;

    background:
        rgba(255, 255, 255, .62);
}


.sh-reto-day-objective > span {
    display:
        block;

    margin-bottom:
        5px;

    font-size:
        .61rem;

    letter-spacing:
        .09em;

    text-transform:
        uppercase;

    color:
        var(--reto-accent-dark);
}


.sh-reto-day-objective p {
    margin:
        0;

    font-size:
        .8rem;

    line-height:
        1.5;

    color:
        var(--sh-green);
}


.sh-reto-recipe-link {
    display:
        grid;

    grid-template-columns:
        68px
        minmax(0, 1fr)
        auto;

    align-items:
        center;

    gap:
        13px;

    margin-top:
        18px;

    padding:
        10px 12px;

    border:
        1px solid
        rgba(24, 53, 47, .08);

    border-radius:
        20px;

    background:
        rgba(255, 255, 255, .76);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.sh-reto-recipe-link:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(24, 53, 47, .07);
}


.sh-reto-recipe-link figure {
    aspect-ratio:
        1 / 1;

    margin:
        0;

    overflow:
        hidden;

    border-radius:
        15px;

    background:
        var(--sh-sage);
}


.sh-reto-recipe-link figure img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.sh-reto-recipe-placeholder {
    width:
        100%;

    height:
        100%;

    display:
        grid;

    place-items:
        center;

    font-size:
        1.5rem;

    color:
        var(--sh-terra);
}


.sh-reto-recipe-link div {
    min-width:
        0;
}


.sh-reto-recipe-link small {
    display:
        block;

    margin-bottom:
        3px;

    font-size:
        .57rem;

    letter-spacing:
        .08em;

    text-transform:
        uppercase;

    color:
        var(--sh-muted);
}


.sh-reto-recipe-link strong {
    display:
        block;

    overflow:
        hidden;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        .91rem;

    font-weight:
        400;

    line-height:
        1.2;

    color:
        var(--sh-green);

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


.sh-reto-recipe-link div > span {
    display:
        block;

    margin-top:
        4px;

    font-size:
        .6rem;

    color:
        var(--sh-muted);
}


.sh-reto-recipe-arrow {
    padding-right:
        4px;

    color:
        var(--sh-terra-dark);
}


.sh-reto-days-empty {
    width:
        min(100%, 620px);

    margin:
        0 auto;

    padding:
        32px;

    border-radius:
        26px;

    background:
        var(--sh-sage);

    text-align:
        center;
}


.sh-reto-days-empty p {
    margin:
        0;
}


.sh-reto-days-empty a {
    display:
        inline-block;

    margin-top:
        12px;

    color:
        var(--sh-terra-dark);
}


/* =========================================================
   PREMIUM CTA
========================================================= */

.sh-reto-premium-cta {
    padding:
        82px 0;
}


.sh-reto-premium-card {
    width:
        min(100%, 720px);

    padding:
        48px 38px;

    border-radius:
        34px;

    background:
        #efe3c8;

    text-align:
        center;

    box-shadow:
        0 18px 48px
        rgba(24, 53, 47, .065);
}


.sh-reto-premium-card h2 {
    max-width:
        620px;

    margin:
        5px auto 0;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4rem
        );

    line-height:
        .96;
}


.sh-reto-premium-card > p {
    max-width:
        510px;

    margin:
        16px auto 0;

    font-size:
        .86rem;

    line-height:
        1.6;

    color:
        var(--sh-muted);
}


.sh-reto-price {
    display:
        block;

    margin-top:
        20px;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        1.5rem;

    font-weight:
        400;

    color:
        var(--sh-green);
}


.sh-reto-buy {
    margin-top:
        18px;

    background:
        var(--sh-green);

    color:
        #fff;
}


.sh-reto-admin-warning {
    margin-top:
        17px !important;

    font-size:
        .75rem !important;
}


/* =========================================================
   RECETARIO RELACIONADO
========================================================= */

.sh-reto-related-book {
    padding:
        74px 0;
}


.sh-reto-related-book-card {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        190px;

    align-items:
        center;

    gap:
        46px;

    width:
        min(100%, 760px);

    padding:
        36px 42px;

    border-radius:
        32px;

    background:
        #edf1eb;

    overflow:
        hidden;
}


.sh-reto-related-book-copy h2 {
    margin:
        3px 0 0;

    font-size:
        clamp(
            2.1rem,
            4.7vw,
            3.5rem
        );

    line-height:
        .97;
}


.sh-reto-related-book-copy h3 {
    margin:
        13px 0 0;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        1.05rem;

    font-weight:
        400;

    color:
        var(--sh-green-2);
}


.sh-reto-related-book-copy > a {
    display:
        inline-flex;

    gap:
        6px;

    margin-top:
        17px;

    font-size:
        .76rem;

    color:
        var(--sh-terra-dark);
}


.sh-reto-related-book-cover {
    aspect-ratio:
        3 / 4;

    display:
        grid;

    place-items:
        center;

    overflow:
        hidden;

    border:
        6px solid #fff;

    border-radius:
        18px;

    background:
        #fff;

    box-shadow:
        0 13px 32px
        rgba(24, 53, 47, .12);

    transform:
        rotate(3deg);
}


.sh-reto-related-book-cover img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.sh-reto-related-book-cover > span {
    font-family:
        "Chewy",
        cursive;

    font-size:
        2rem;

    color:
        var(--sh-green);
}


/* =========================================================
   FINAL GRATIS
========================================================= */

.sh-reto-finish {
    padding:
        18px 0 92px;
}


.sh-reto-finish-card {
    width:
        min(100%, 760px);

    padding:
        48px 40px;

    border-radius:
        36px;

    background:
        #f7e3dd;

    text-align:
        center;

    box-shadow:
        0 18px 48px
        rgba(24, 53, 47, .06);
}


.sh-reto-finish-card h2 {
    margin:
        5px 0 0;

    font-size:
        clamp(
            2.5rem,
            5.5vw,
            4.3rem
        );

    line-height:
        .95;
}


.sh-reto-finish-card > p {
    max-width:
        540px;

    margin:
        15px auto 0;

    font-size:
        .86rem;

    line-height:
        1.6;

    color:
        var(--sh-muted);
}


.sh-reto-download {
    width:
        min(100%, 520px);

    margin:
        30px auto 0;
}


.sh-reto-download h3 {
    margin:
        0;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        1.25rem;

    font-weight:
        400;
}


.sh-reto-download > p {
    margin:
        8px auto 15px;

    font-size:
        .76rem;

    line-height:
        1.5;

    color:
        var(--sh-muted);
}


.sh-reto-download
.sh-freebie-form-card {
    max-width:
        500px;

    margin:
        0 auto;

    text-align:
        left;
}


.sh-reto-finish-actions {
    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        9px;

    margin-top:
        25px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 780px) {

    .sh-reto-intro-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, .62fr);

        gap:
            34px;
    }

    .sh-reto-intro-copy h1 {
        font-size:
            clamp(
                3rem,
                8vw,
                4.7rem
            );
    }

}


@media (max-width: 640px) {

    .sh-reto-intro {
        padding:
            26px 0 50px;
    }

    .sh-reto-back {
        margin-bottom:
            22px;
    }

    .sh-reto-intro-grid {
        display:
            flex;

        flex-direction:
            column;

        gap:
            34px;
    }

    .sh-reto-intro-copy {
        width:
            100%;

        text-align:
            center;
    }

    .sh-reto-intro-meta,
    .sh-reto-single-categories {
        justify-content:
            center;
    }

    .sh-reto-intro-copy h1 {
        margin-top:
            15px;

        font-size:
            clamp(
                3rem,
                16vw,
                4.3rem
            );
    }

    .sh-reto-intro-excerpt {
        margin:
            15px auto 0;

        max-width:
            92%;

        font-size:
            .86rem;
    }

    .sh-reto-start {
        margin-top:
            19px;
    }

    .sh-reto-intro-art {
        width:
            min(66%, 245px);
    }


    .sh-reto-overview {
        padding:
            4px 0 52px;
    }

    .sh-reto-overview-grid {
        grid-template-columns:
            1fr;

        gap:
            13px;
    }

    .sh-reto-overview-card {
        padding:
            28px 24px;
    }

    .sh-reto-overview-card h2 {
        font-size:
            2.35rem;
    }


    .sh-reto-editorial {
        padding-bottom:
            52px;
    }

    .sh-reto-editorial-inner {
        padding:
            27px 22px;
    }


    .sh-reto-days-section {
        padding:
            50px 0 66px;
    }

    .sh-reto-days-heading {
        margin-bottom:
            31px;
    }

    .sh-reto-days-heading h2 {
        font-size:
            clamp(
                2.8rem,
                14vw,
                3.8rem
            );
    }

    .sh-reto-days-list {
        gap:
            14px;
    }

    .sh-reto-day-card {
        grid-template-columns:
            66px
            minmax(0, 1fr);

        gap:
            14px;

        padding:
            20px 17px;

        border-radius:
            25px;
    }

    .sh-reto-day-number {
        padding:
            10px 5px 11px;

        border-radius:
            18px;
    }

    .sh-reto-day-number strong {
        font-size:
            2.3rem;
    }

    .sh-reto-day-main h3 {
        font-size:
            1.33rem;
    }

    .sh-reto-day-description {
        font-size:
            .77rem;
    }

    .sh-reto-day-objective {
        padding:
            12px 13px;
    }

    .sh-reto-day-objective p {
        font-size:
            .74rem;
    }

    .sh-reto-recipe-link {
        grid-template-columns:
            52px
            minmax(0, 1fr)
            auto;

        gap:
            9px;

        padding:
            8px 9px;
    }

    .sh-reto-recipe-link strong {
        font-size:
            .8rem;
    }


    .sh-reto-premium-cta {
        padding:
            58px 0;
    }

    .sh-reto-premium-card {
        padding:
            38px 23px;
    }


    .sh-reto-related-book {
        padding:
            54px 0;
    }

    .sh-reto-related-book-card {
        grid-template-columns:
            minmax(0, 1fr)
            120px;

        gap:
            20px;

        padding:
            27px 24px;
    }

    .sh-reto-related-book-copy h2 {
        font-size:
            2.25rem;
    }


    .sh-reto-finish {
        padding:
            8px 0 70px;
    }

    .sh-reto-finish-card {
        padding:
            38px 22px;

        border-radius:
            30px;
    }

    .sh-reto-finish-card h2 {
        font-size:
            2.85rem;
    }

    .sh-reto-finish-actions {
        flex-direction:
            column;

        align-items:
            stretch;
    }

    .sh-reto-finish-actions .sh-button {
        justify-content:
            center;
    }

}


@media (max-width: 420px) {

    .sh-reto-day-card {
        grid-template-columns:
            58px
            minmax(0, 1fr);

        gap:
            11px;

        padding:
            18px 14px;
    }

    .sh-reto-day-number strong {
        font-size:
            2rem;
    }

    .sh-reto-recipe-link {
        grid-template-columns:
            48px
            minmax(0, 1fr);
    }

    .sh-reto-recipe-arrow {
        display:
            none;
    }

    .sh-reto-related-book-card {
        display:
            flex;

        flex-direction:
            column;

        text-align:
            center;
    }

    .sh-reto-related-book-cover {
        width:
            125px;
    }

}


/* =========================================================
   AJUSTE 1 — LISTAS CORRECTAS
========================================================= */

.sh-reto-overview-card li {
    min-width:
        0;
}

.sh-reto-overview-text {
    min-width:
        0;

    flex:
        1 1 auto;
}

.sh-reto-overview-work li,
.sh-reto-overview-how li {
    padding:
        2px 0;
}


/* =========================================================
   PREMIUM — TEASER DESPUÉS DE 3 DÍAS
========================================================= */

.sh-reto-preview-lock {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        13px;

    width:
        min(100%, 620px);

    margin:
        28px auto 0;

    padding:
        15px 20px;

    border:
        1px solid
        rgba(24, 53, 47, .08);

    border-radius:
        22px;

    background:
        #efe3c8;

    text-align:
        left;
}

.sh-reto-preview-lock > span {
    flex:
        0 0 auto;

    display:
        grid;

    place-items:
        center;

    width:
        35px;

    height:
        35px;

    border-radius:
        50%;

    background:
        var(--sh-yellow);

    color:
        var(--sh-green);

    font-size:
        .92rem;
}

.sh-reto-preview-lock strong {
    display:
        block;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        .91rem;

    font-weight:
        400;

    color:
        var(--sh-green);
}

.sh-reto-preview-lock p {
    margin:
        3px 0 0;

    font-size:
        .72rem;

    line-height:
        1.45;

    color:
        var(--sh-muted);
}


/* =========================================================
   PREMIUM — TARJETA DE VENTA
========================================================= */

.sh-reto-premium-card {
    position:
        relative;

    overflow:
        hidden;

    width:
        min(100%, 780px);

    padding:
        50px 44px 46px;

    border:
        1px solid
        rgba(24, 53, 47, .07);

    background:
        #efe3c8;

    box-shadow:
        0 24px 60px
        rgba(24, 53, 47, .09);
}

.sh-reto-premium-card::before,
.sh-reto-premium-card::after {
    content:
        "";

    position:
        absolute;

    pointer-events:
        none;

    border-radius:
        50%;
}

.sh-reto-premium-card::before {
    width:
        170px;

    height:
        170px;

    top:
        -82px;

    right:
        -55px;

    background:
        rgba(229, 107, 74, .13);
}

.sh-reto-premium-card::after {
    width:
        125px;

    height:
        125px;

    bottom:
        -64px;

    left:
        -42px;

    background:
        rgba(24, 53, 47, .06);
}

.sh-reto-premium-heading,
.sh-reto-premium-includes,
.sh-reto-premium-offer {
    position:
        relative;

    z-index:
        2;
}

.sh-reto-premium-heading {
    text-align:
        center;
}

.sh-reto-premium-pill {
    display:
        table;

    margin:
        6px auto 15px;

    padding:
        6px 11px;

    border-radius:
        999px;

    background:
        var(--sh-green);

    color:
        #fff;

    font-size:
        .59rem;

    letter-spacing:
        .08em;

    text-transform:
        uppercase;
}

.sh-reto-premium-heading h2 {
    max-width:
        620px;

    margin:
        0 auto;

    font-size:
        clamp(
            2.55rem,
            5.3vw,
            4.2rem
        );

    line-height:
        .94;
}

.sh-reto-premium-heading > p {
    max-width:
        530px;

    margin:
        16px auto 0;

    font-size:
        .84rem;

    line-height:
        1.6;

    color:
        var(--sh-muted);
}

.sh-reto-premium-includes {
    width:
        min(100%, 590px);

    margin:
        30px auto 0;

    padding:
        22px 24px;

    border:
        1px solid
        rgba(24, 53, 47, .075);

    border-radius:
        24px;

    background:
        rgba(255, 255, 255, .56);

    text-align:
        left;
}

.sh-reto-includes-label {
    display:
        block;

    margin-bottom:
        13px;

    font-family:
        "Sniglet",
        sans-serif;

    font-size:
        1.05rem;

    color:
        var(--sh-green);
}

.sh-reto-premium-includes ul {
    display:
        grid;

    gap:
        10px;

    margin:
        0;

    padding:
        0;

    list-style:
        none;
}

.sh-reto-premium-includes li {
    display:
        grid;

    grid-template-columns:
        24px auto
        minmax(0, 1fr);

    align-items:
        center;

    gap:
        8px;

    font-size:
        .76rem;

    color:
        var(--sh-green-2);
}

.sh-reto-premium-includes li > span:first-child {
    display:
        grid;

    place-items:
        center;

    width:
        23px;

    height:
        23px;

    border-radius:
        50%;

    background:
        var(--sh-green);

    color:
        #fff;

    font-size:
        .61rem;
}

.sh-reto-premium-includes li strong {
    color:
        var(--sh-green);
}

.sh-reto-included-book {
    margin-top:
        3px;

    padding-top:
        10px;

    border-top:
        1px dashed
        rgba(24, 53, 47, .16);
}

.sh-reto-premium-offer {
    width:
        min(100%, 540px);

    margin:
        27px auto 0;

    text-align:
        center;
}

.sh-reto-offer-kicker {
    display:
        block;

    font-size:
        .72rem;

    color:
        var(--sh-muted);
}

.sh-reto-price {
    display:
        block;

    margin-top:
        5px;

    font-family:
        "Chewy",
        cursive;

    font-size:
        clamp(
            2.6rem,
            6vw,
            4.2rem
        );

    font-weight:
        400;

    line-height:
        1;

    color:
        var(--sh-green);
}

.sh-reto-bundle-note {
    max-width:
        480px;

    margin:
        11px auto 0;

    padding:
        10px 13px;

    border-radius:
        16px;

    background:
        rgba(229, 107, 74, .10);

    font-size:
        .72rem;

    line-height:
        1.45;

    color:
        var(--sh-green-2);
}

.sh-reto-buy {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    margin-top:
        18px;

    min-width:
        245px;

    padding:
        13px 19px;

    border-radius:
        999px;

    background:
        var(--sh-green);

    color:
        #fff;

    box-shadow:
        0 10px 24px
        rgba(24, 53, 47, .13);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sh-reto-buy:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(24, 53, 47, .17);
}

.sh-reto-payment-note {
    display:
        block;

    margin-top:
        9px;

    font-size:
        .58rem;

    color:
        var(--sh-muted);
}


@media (max-width: 640px) {

    .sh-reto-preview-lock {
        width:
            92%;

        padding:
            13px 15px;
    }

    .sh-reto-premium-card {
        padding:
            40px 22px 36px;
    }

    .sh-reto-premium-includes {
        padding:
            19px 17px;
    }

    .sh-reto-premium-includes li {
        grid-template-columns:
            23px
            minmax(0, 1fr);

        gap:
            8px;
    }

    .sh-reto-premium-includes li strong,
    .sh-reto-premium-includes li > span:last-child {
        grid-column:
            2;
    }

    .sh-reto-premium-includes li > span:last-child {
        margin-top:
            -5px;
    }

    .sh-reto-price {
        font-size:
            3.15rem;
    }

    .sh-reto-buy {
        width:
            100%;

        min-width:
            0;
    }

}



/* =========================================================
   FASE 4 — CHECKS DISCRETOS + INCLUSIONES MANUALES
========================================================= */

.sh-reto-overview-work li {
    align-items:
        flex-start;

    gap:
        10px;
}


.sh-reto-premium-includes li {
    display:
        grid;

    grid-template-columns:
        22px
        minmax(0, 1fr);

    align-items:
        start;

    gap:
        9px;

    padding:
        2px 0;

    font-size:
        .78rem;

    line-height:
        1.45;

    color:
        var(--sh-green-2);
}


.sh-reto-sale-check {
    display:
        grid;

    place-items:
        center;

    width:
        22px;

    height:
        16px;

    margin-top:
        1px;

    border-radius:
        999px;

    background:
        var(--sh-green);

    color:
        #fff;

    font-size:
        .53rem;

    line-height:
        1;
}


.sh-reto-sale-item {
    min-width:
        0;

    color:
        var(--sh-green-2);
}


.sh-reto-included-book {
    margin-top:
        3px;

    padding-top:
        10px;

    border-top:
        1px dashed
        rgba(24, 53, 47, .16);
}


@media (max-width: 640px) {

    .sh-reto-premium-includes li {
        grid-template-columns:
            22px
            minmax(0, 1fr);

        gap:
            9px;
    }

    .sh-reto-premium-includes li strong,
    .sh-reto-premium-includes li > span:last-child {
        grid-column:
            auto;

        margin-top:
            0;
    }

}

