/* Boletos dobles y mecánica de acumulación de tres tickets. */

.ticket-rewards {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    background: transparent;
}

.ticket-rewards::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        #b2189d 0%,
        #aa1998 18%,
        #a21891 38%,
        #941f92 66%,
        #842695 100%
    );
}

.ticket-rewards__inner {
    position: relative;
    width: min(100%, var(--phase2-page-width));
    min-height: 21.5rem;
    margin-inline: auto;
    padding: 2rem var(--phase2-gutter) 2rem;
    padding-top: 6rem;
}

.ticket-rewards__double {
    position: relative;
    z-index: 1;
    width: 10.5rem;
    height: auto;
    margin: -1.9rem -0.35rem 0 auto;
    transform: rotate(4deg);
    filter: drop-shadow(0 0.45rem 0.4rem rgb(50 5 68 / 18%));
}

.ticket-rewards__note {
    width: min(100%, 20rem);
    margin: 0 auto 1.1rem;
    font-family: "Avenir Next Condensed Custom", sans-serif;
    font-size: clamp(0.95rem, 4.4vw, 1.2rem);
    font-style: italic;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.ticket-rewards__note strong {
    display: block;
    font-weight: 900;
}

.ticket-rewards__accumulated {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: min(100%, 20rem);
    min-height: 8rem;
    margin: -5.6rem auto 0;
    padding: 1rem 1rem 1.25rem;
    background: #ad199c;
    border-radius: 0.35rem;
    box-shadow: inset 0 0 1.5rem rgb(116 24 139 / 18%);
}

.ticket-rewards__accumulated img {
    width: min(100%, 17.5rem);
    height: auto;
}

@media (min-width: 64rem) {
    .ticket-rewards {
        z-index: 2;
        overflow: visible;
        background: transparent;
    }

    .ticket-rewards::before {
        top: -8rem;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        height: auto;
        background: linear-gradient(
            180deg,
            #b2189d 0%,
            #aa1998 25%,
            #a21891 43%,
            #941f92 68%,
            #842695 100%
        );
        border-radius: 0;
        clip-path: polygon(
            0 5.75rem,
            8% 6.65rem,
            16% 7.35rem,
            24% 7.85rem,
            32% 8.1rem,
            40% 8.15rem,
            48% 7.95rem,
            56% 7.5rem,
            64% 6.8rem,
            72% 5.8rem,
            80% 4.55rem,
            88% 3rem,
            94% 1.55rem,
            100% 0,
            100% 100%,
            0 100%
        );
        transform: none;
    }

    .ticket-rewards::after {
        display: none;
    }

    .ticket-rewards__inner {
        position: relative;
        z-index: 4;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
        align-items: center;
        width: min(calc(100% - 5rem), var(--phase2-page-width));
        min-height: 31rem;
        padding: 4rem 0 3rem;
    }

    .ticket-rewards__double {
        grid-column: 2;
        grid-row: 1;
        width: 24rem;
        margin: 0 -1rem -3rem auto;
    }

    .ticket-rewards__accumulated {
        grid-column: 1;
        grid-row: 1;
        width: min(100%, 46rem);
        min-height: 18rem;
        margin: 0;
        padding: 2rem 2.5rem;
    }

    .ticket-rewards__note {
        width: 100%;
        margin-bottom: 2rem;
        font-size: 1.7rem;
    }

    .ticket-rewards__accumulated img {
        width: 34rem;
    }
}
