﻿div.cta-simple {
    background-color: #242424;
    color: #fff;
    padding: 60px 20px 0px;
    text-align: center;
    overflow: hidden;
}

    div.cta-simple h3, div.cta-simple h2 {
        color: #fff;
        text-transform: uppercase;
        font-family: 'Mont Black Italic', sans-serif;
    }

    div.cta-simple h3 {
        font-size: 5.34vw;
        line-height: 5.34vw;
        padding-bottom: 10px !important;
    }

    div.cta-simple h2 {
        font-size: 10.66vw;
        line-height: 12vw;
        padding-bottom: 0px !important;
    }

/* DESCONTOS SECTION */
section.descontos.pin-container {
    position: relative;
    height: 425vh;
}

section.descontos .pin {
    position: sticky;
    top: 0px;
    background-color: #242424;
    z-index: 10;
    width: 100%;
    height: 100vh;
}

    section.descontos .pin .window-peek {
        padding: 91px 0 60px;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        gap: 20px;
    }


        section.descontos .pin .window-peek .bottom {
            width: 100%;
            display: flex;
            gap: 30px;
            justify-content: center;
            transition: all 300ms ease;
            padding: 0 5px;
        }

            section.descontos .pin .window-peek .bottom[data-index='1'] {
                transform: translateX(calc(100% + 20px));
            }

            section.descontos .pin .window-peek .bottom[data-index='2'] {
                transform: translateX(0px);
            }

            section.descontos .pin .window-peek .bottom[data-index='3'] {
                transform: translateX(calc(-100% - 20px));
            }

            section.descontos .pin .window-peek .bottom .section {
                min-width: 100%;
                display: flex;
                flex-direction: column;
                gap: 10px;
                text-align: center;
                color: #fff;
            }

                section.descontos .pin .window-peek .bottom .section .pretitle {
                    font-size: 40px;
                    font-family: 'Mont Black Italic', sans-serif;
                    line-height: 30px;
                    color: #C30000;
                    text-transform: uppercase;
                }


                section.descontos .pin .window-peek .bottom .section .title {
                    font-size: 30px;
                    font-family: 'Mont Black Italic', sans-serif;
                    text-transform: uppercase;
                    line-height: 25px;
                }

                section.descontos .pin .window-peek .bottom .section .description {
                    font-family: 'Roboto', sans-serif;
                    font-size: 16px;
                    line-height: 20px;
                    padding-top: 10px;
                }

        section.descontos .pin .window-peek .flexible-content {
            position: relative;
            flex-grow: 1;
        }

            section.descontos .pin .window-peek .flexible-content .content {
                position: absolute;
                height: 100%;
                width: 100%;
                top: 0px;
            }

                section.descontos .pin .window-peek .flexible-content .content .image-wrapper {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100%;
                    height: 100%;
                    transform: translate(calc(-50% - 100px), -50%);
                    z-index: 2;
                    opacity: 0;
                    transition: opacity 600ms ease, transform 0ms 800ms ease;
                }

    section.descontos .pin.reverse .window-peek .flexible-content .content .image-wrapper {
        transform: translate(calc(-50% + 100px), -50%);
    }

    section.descontos .pin .window-peek .flexible-content .content.active .image-wrapper, .pin.reverse .window-peek .flexible-content .content.active .image-wrapper {
        opacity: 1;
        transition: opacity 800ms ease, transform 800ms ease;
        transform: translate(-50%, -50%);
    }

    section.descontos .pin.reverse .window-peek .flexible-content .content.active .background-text, section.descontos .pin .window-peek .flexible-content .content.active .background-text {
        opacity: 1;
        transition: opacity 800ms ease, transform 800ms ease;
        transform: translate(-50%, -50%);
    }

    section.descontos .pin .window-peek .flexible-content .content .background-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(calc(-50% + 100px), -50%);
        height: 100%;
        z-index: 1;
        text-align: center;
        font-family: 'Mont Black Italic', sans-serif;
        font-size: 16vw;
        text-transform: uppercase;
        background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.25) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: opacity 600ms ease, transform 0ms 800ms ease;
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    section.descontos .pin.reverse .window-peek .flexible-content .content .background-text {
        transform: translate(calc(-50% - 100px), -50%);
    }

    section.descontos .pin.disable_transition * {
        transition: none !important;
    }


    section.descontos .pin .window-peek .flexible-content .content .image-wrapper img {
        max-height: 100%;
    }
/* END DESCONTOS SECTION */

@media screen and (min-width: 769px) {
    /*DESKTOP*/
    div.cta-simple {
        padding-top: 120px;
    }

        div.cta-simple h3 {
            font-size: 30px;
            line-height: 30px;
        }

        div.cta-simple h2 {
            font-size: 60px;
            line-height: 60px;
        }

    /* DESCONTOS SECTION */
    section.descontos .pin .window-peek {
        padding: 91px 53px 120px;
        gap: 40px;
    }

        section.descontos .pin .window-peek .flexible-content .content .background-text {
            font-size: 160px;
            line-height: 140px;
        }

        section.descontos .pin .window-peek .bottom[data-index='1'] {
            transform: translateX(calc(33.33% + 20px));
        }

        section.descontos .pin .window-peek .bottom[data-index='2'] {
            transform: translateX(0px);
        }

        section.descontos .pin .window-peek .bottom[data-index='3'] {
            transform: translateX(calc(-33.33% + 20px));
        }

        section.descontos .pin .window-peek .bottom .section {
            width: calc(33.33% - 16px);
            min-width: unset;
        }

            section.descontos .pin .window-peek .bottom .section .title {
                white-space: nowrap;
                line-height: 20px;
            }
    /* END DESCONTOS SECTION DESKTOP */
}

@media screen and (max-height: 700px) and (min-width: 769px) {
    /* DESCONTOS SECTION */
    section.descontos .pin .window-peek {
        padding: 91px 30px 7vh;
    }
}
