/*
* @project: SANX CENTER
* @description: Painel central de administração
* @author: Diego Sanches
* @version: 0.0.0
* @date_create: 2025-06-04 : 00h56
* @date_update: 2025-06-04 : 00h56
* @date_update: 2025-06-15 : 23h15
* @date_update: 2025-08-19 : 00h20
*/
/*@font-face {*/
/*    font-family: 'calibribold';*/
/*    src: url('calibri_bold-webfont.woff2') format('woff2'),*/
/*    url('calibri_bold-webfont.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/

/*}*/
/*@font-face {*/
/*    font-family: 'calibriregular';*/
/*    src: url('calibri-webfont.woff2') format('woff2'),*/
/*    url('calibri-webfont.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/

/*}*/
@font-face {
    font-family: 'poppinsbold';
    src: url('poppins-bold-webfont.woff2') format('woff2'),
    url('poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'poppinsregular';
    src: url('poppins-regular-webfont.woff2') format('woff2'),
    url('poppins-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* { font-family: 'poppinsregular'; }
strong { font-family: 'poppinsbold'; color: inherit; }

html, body {
    background-color: #FFF;
    overflow: hidden;
}

h1, h2, h4, h5,
h1 span, h2 span, h4 span, h5 span {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h3,
h3 span {
    font-family: "Oswald", sans-serif;
    font-weight: 200;
}
form {
    display: block;
    position: relative;
}
form .message-form {
    display: block !important;
    width: 100%;
    position: absolute;
    bottom: 15px;
}


@media only screen and ( max-width: 1280px ) {
  
}

@media only screen and ( max-width: 1080px ) {


}



    #viewportFullscreen {
        background-color: #FFF;
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 1;
        overflow: hidden;
    }
        #scroll {
            width: 100%;
            min-height: 100%;
            position: relative;
            z-index: 1;
        }
#customScrollbar {
    background-color: rgba( 255,255,255, 0.2 );
    width: 5px;
    height: 100vh;
    border-radius: 5px;
    position: fixed;
    top: 0;
    right: -13px;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    transition-delay: 1s;
    transition-duration: 1.5s;
}
.loaded #customScrollbar {
    right: 0;
}
#customScrollbar .progress-bar {
    background-color: #392737;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;

    width: 5px;
    z-index: 99999;
}



.input-message-help {
    font-size: 9px;
    font-weight: 400;
    color:  #FF0000;
    letter-spacing: 1px;
    text-transform: lowercase;
    position: absolute;
    left: 0;
    bottom: -10px;

}
.select-wrapper .input-message-help {
    bottom: -18px;
}
.is-textarea .input-message-help {
    bottom: -3px;
}

.container {
    width: 90% !important;
}

.button {
    border-radius: 10px;
}

@media only screen and ( min-width: 1281px ) {

    .container {
        max-width: 1260px;
    }

}
@media only screen and ( max-width: 1280px ) {

    .container {
        max-width: 1100px;
    }
  
}
@media only screen and ( max-width: 1080px ) {

    .container {
        max-width: 980px;
    }

}
@media only screen and ( max-width: 768px ) {

    .container {
        width: 80% !important;
        max-width: 700px;
    }

}



/* Modal de cookies - Estado inicial (escondido) */
#_modal_accepted_terms_cookies {
    background-color: #FFF;
    width: 90%;
    max-width: 350px;
    padding: 25px 10px;
    border: solid 1px #999;
    border-radius: 10px;
    position: fixed;
    left: 15px;
    bottom: 15px;
    z-index: 99999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY( 100px ) scale( 0.95 );
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    pointer-events: auto;
}

/* Estado ativo/visível */
#_modal_accepted_terms_cookies.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY( 0 ) scale( 1 ) !important;
}

/* Estado fechando */
#_modal_accepted_terms_cookies.is-closing {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY( 100px ) scale( 0.95 ) !important;
    pointer-events: none !important;
}
    #_modal_accepted_terms_cookies_close {
        font-size: 15px;
        color: #000;
        position: absolute;
        top: -19px;
        right: -16px;
        z-index: 5;
        cursor: pointer;
    }
    #_modal_accepted_terms_cookies .input-message-help {
        bottom: -32px;
    }
    #_modal_accepted_terms_cookies .row {
        padding: 0;
        margin: 0 0 15px 0;
        position: relative;
    }
    #_modal_accepted_terms_cookies .row p {
        font-size: 13px;
        font-weight: 700;
        color: #333;
        letter-spacing: 1px;
        line-height: 14px;
    }
    #_modal_accepted_terms_cookies .row a {
        color: #333;
    }

    #form_modal_accepted_terms_cookies {
        position: relative;
    }
    #form_modal_accepted_terms_cookies label span {
       color: #333;
       font-size: 13px;
       line-height: 15px;
       letter-spacing: 1px;
       font-weight: 400;
        display: inline-block;
    }
    #form_modal_accepted_terms_cookies label span a {
        color: #000;
        font-weight: 600;
    }

    #_modal_accepted_terms_cookies .is-submit-form {
        height: 35px !important;
        line-height: 35px !important;
        padding: 0;
    }
    #_modal_accepted_terms_cookies .is-submit-form span {
        padding: 0 !important;
        margin: 0;
    }













    .menu-hamburguer {
        width: 30px;
        height: 30px;
        position: absolute;
        top: 63px;
        right: 0;
        z-index: 2;
    }
    .is-scrolling .menu-hamburguer {
        top: 30px;
    }
    .is-scrolling-footer .menu-hamburguer {
        top: 70px;
    }
    .is-menu-opened .menu-hamburguer {
        top: 63px;
    }

        .menu-hamburguer span {
            background-color: #FFF;
            font-size: 13px;
            font-weight: 900;
            text-align: center;
            text-indent: 100px;
            color: #000;
            display: block;
            width: 100%;
            height: 2px;
            margin-bottom: 12px;
            border-radius: 5px;
            opacity: 1;
            overflow: hidden;
            transform: translateX( 0 );
            transition-delay: 0.5s !important;
            transition-duration: 1.5s !important;
        }
        .is-scrolling .menu-hamburguer span {
            /*background-color: #000;*/
            /*color: #FFF;*/
            /*height: 3px;*/
            /*transition-delay: 0.1s !important;*/
            /*transition-duration: 0.5s !important;*/
        }
        .loading .menu-hamburguer span.one {
            transform: translateX( 45px );
        }
        .loading .menu-hamburguer span.two {
            transform: translateX( 35px );
        }

    .is-menu-opened .menu-hamburguer span.one,
    .is-menu-opened .menu-hamburguer span.three {
        opacity: 0;
        transition-delay: 0s !important;
        transition-duration: 0.8s !important;
    }
    body.is-scrolling.is-menu-opened .menu-hamburguer span.one,
    body.is-scrolling.is-menu-opened .menu-hamburguer span.three {
        /*background-color: #FFF !important;*/
    }
    .is-menu-opened .menu-hamburguer span.two {
        height: 15px;
        text-indent: 1px;
        border-radius: 3px;
        transition-delay: 0s !important;
        transition-duration: 0.8s !important;
    }
        .loading .menu-hamburguer span.three {
            transform: translateX( 15px );
        }

        .loading .menu-hamburguer span {
            opacity: 0;
        }


    @media only screen and ( max-width: 1280px ) {
      
    }

    @media only screen and ( max-width: 1080px ) {

      

    }








/* =============================================
   LOADING V2 - Design aprimorado
   ============================================= */

#loading {
    background: linear-gradient(135deg, #392737 0%, #4a3a4a 50%, #392737 100%);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

#loadingBubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#loadingContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo com efeito de brilho */
#loadingImageLogo {
    position: relative;
    width: 180px;
    margin-bottom: 30px;
}

#loadingImageLogo img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Tagline */
#loadingTagline {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 50px 0;
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Barra de progresso */
#loadingProgressContainer {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

#loadingProgressBar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d084, #00a86b);
    border-radius: 3px;
    transition: width 0.3s ease-out;
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8));
    filter: blur(4px);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(20px); opacity: 0; }
}

/* Porcentagem */
#loadingProgress {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 15px;
}

#loadingProgress .percent {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #FFF;
    line-height: 1;
    min-width: 70px;
    text-align: center;
}

#loadingProgress .symbol {
    font-family: 'poppinsregular';
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* Status text */
#loadingStatus {
    font-family: 'poppinsregular';
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin: 0;
    min-height: 18px;
    transition: opacity 0.3s ease;
}

/* Estados de saida - TRANSICOES RAPIDAS */
.loaded #loading {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loaded #loadingContent {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
}

/* Fallback de segurança: garante que o loading some após 6s mesmo se JS falhar */
#loading {
    animation: forceHideLoading 0.5s ease 1 forwards;
    animation-delay: 6s;
}

@keyframes forceHideLoading {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Remove a animação de fallback quando a página carrega corretamente */
.loaded #loading,
.loading #loading {
    animation: none;
}

/* Responsivo */
@media only screen and (max-width: 768px) {
    #loading #loadingImageLogo {
        width: 140px;
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto 30px auto;
    }
    
    #loadingTagline {
        font-size: 12px;
        letter-spacing: 2px;
        padding: 0 20px;
    }
    
    #loadingProgressContainer {
        width: 220px;
    }
    
    #loadingProgress .percent {
        font-size: 36px;
    }
    
    #loadingProgress .symbol {
        font-size: 14px;
    }
    
    #loadingStatus {
        font-size: 11px;
    }
}
@media only screen and ( max-width: 1280px ) {

    /* Logo do loading - mantém centralizado */
    #loading #loadingImageLogo {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto 30px auto;
    }
    
    /* Logo flutuante do canto (se existir) */
    #loadingImageLogo.is-corner {
        bottom: 70px;
        right: -145px;
    }
        #loadingImageLogo.is-corner img {
            height: 190px;
        }

}


@media only screen and ( max-width: 1080px ) {

    /* Logo do loading - mantém centralizado */
    #loading #loadingImageLogo {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto 30px auto;
    }
    
    /* Logo flutuante do canto (se existir) */
    #loadingImageLogo.is-corner {
        bottom: 70px;
        right: -145px;
    }
        #loadingImageLogo.is-corner img {
            height: 160px;
        }

}

@media only screen and ( max-width: 768px ) {

    /* Logo do loading - mantém centralizado */
    #loading #loadingImageLogo {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto 30px auto;
    }
        #loading #loadingImageLogo img {
            height: auto;
            max-width: 140px;
        }
    
    /* Logo flutuante do canto (se existir) */
    #loadingImageLogo.is-corner {
        bottom: 70px;
        right: -145px;
    }
        #loadingImageLogo.is-corner img {
            height: 110px;
        }

}










#header {
    background-color: #372635;
    width: 100%;
    height: 150px;
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition-delay: 0s !important;
    transition-duration: 0.5s !important;
    transform: translateY( 0 );
}
.loading #header {
    /* Header escondido durante o loading */
}

.loaded #header {
    /* Header visível após carregar - animação suave */
    top: 0;
    opacity: 1;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}




.is-scrolling #header {
    height: 80px;
}
.is-menu-opened #header {
    /*height: 150px;*/
}

.is-scrolling.is-scrolling-up #header {
    height: 150px;
    transform: translateY( 0 );
    /*box-shadow: 0 5px 20px rgba(0,0,0,0.2);*/
}
.is-scrolling.is-scrolling-down #header {
    /*transform: translateY( -85px );*/
}
.is-menu-opened .is-scrolling.is-scrolling-down #header {
    transform: translateY( 0 );
}

.is-scrolling-footer #header {
    /*height: 150px !important;*/
    transform: translateY( 0 ) !important;
}

.is-internal #header {
    height: 80px !important;
}

        #navigationPrimary {
            background-color: #392737;
            padding: 15px 0;
        }
            #navigationPrimary .container {}
            #navigationPrimary .navbar-brand {
                width: 75px;
                padding: 0;
                margin: 0;
                position: relative;
                top: 0;
            }
            #navigationPrimary .navbar-brand a {
                display: block;
            }
            #navigationPrimary .navbar-brand a img {
                display: block;
                width: 100%;
                height: auto;
            }




            #openMenuDefault {
                display: none !important;
                top: 15px;
                left: auto;
                right: 5px;
            }
            #openMenuDefault span {
                background-color: #FFF;
                height: 3px;
            }


            #navigationPrimary .navbar-menu {
                padding: 5px 0;
                margin: 0;
            }
                #navigationPrimary .navbar-menu .navbar-item {
                    background-color: transparent;
                    font-size: 14px;
                    font-weight: 600;
                    color: #FFF;
                }

            #navigationPrimary .navbar-start {

            }
                #navigationPrimary .navbar-start span {

                }
                    #navigationPrimary .navbar-start a {}
                    #navigationPrimary .navbar-start a.is-active {}
                    #navigationPrimary .navbar-start {}
                    #navigationPrimary .navbar-start {}


            #navigationPrimary .navbar-end {

            }

            #navigationPrimary .navbar-end a {

            }







            #navigationPrimary .navbar-end {
                position: relative;
                    top: 5px;
                }

            #navigationPrimary .navbar-end a {
                background-color: transparent;
                text-transform: uppercase;
                height: 40px;
            }
            #navigationPrimary .navbar-menu a.button {
                background-color: transparent;
                font-size: 13px;
                font-weight: 700;
                color: #FFFF;
                display: inline-block;
                padding: 4px 13px 1px 13px;
                border: solid 1px #FFF;
                border-radius: 25px;
                height: 25px;
                line-height: 18px;
                letter-spacing: 1px;
                margin: 7px 0 0 0;
            }
            #navigationPrimary .navbar-menu a.button i {
                color: #23CC63;
            }
            #navigationPrimary .navbar-menu a.button span {}


        #navigationSecondary {
            background-color: #392737;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            height: 75px;
        }
        .is-scrolling #navigationSecondary {

        }

        #navigationSecondary h2 {
            font-size: 30px;
            text-align: center;
            text-transform: uppercase;
            color: #FFF;
            padding: 20px;
            opacity: 1;
        }
        .is-scrolling #navigationSecondary h2 {

        }



    @media only screen and ( max-width: 1500px ) {


        /*#navigationPrimary .container {
            width: 90%;
            max-width: 1275px;
        }*/

      
    }
    @media only screen and ( max-width: 1280px ) {

        /*#header {*/
        /*    height: 110px;*/
        /*}*/

        /*#navigationTop {*/
        /*    height: 25px;*/
        /*    min-height: 25px;*/
        /*}*/
        /*#navigationTop .navbar-menu a {*/
        /*    height: 25px;*/
        /*    line-height: 25px;*/
        /*}*/

        /*#navigationPrimary {*/
        /*    padding: 5px 0;*/
        /*}*/

        /*#navigationPrimary .navbar-brand {*/
        /*    width: 160px;*/
        /*    margin: 5px 25px 0 0;*/
        /*}*/

        /*#navigationPrimary .navbar-start {*/
        /*    transform: scale( 0.8 ) translate( -75px, 5px );*/
        /*    top: 6px;*/
        /*}*/

    }
    @media only screen and ( max-width: 1080px ) {

        /*
        #navigationPrimary .container {
            width: 80%;
            max-width: 900px;
        }
        */

    }
    @media only screen and ( max-width: 1024px ) {

        /*.navbar-menu {*/
        /*    background-color: transparent !important;*/
        /*    display: block !important;*/
        /*}*/
        /*.navbar-menu .navbar-start {*/
        /*    width: 40%;*/
        /*    float: left;*/
        /*}*/
        /*.navbar-menu .navbar-end {*/
        /*    text-align: right;*/
        /*    width: 59%;*/
        /*    float: right;*/
        /*}*/

        /*#navigationPrimary .navbar-menu {*/
        /*    display: none !important;*/
        /*}*/

        #openMenuDefault {
            background-color: transparent;
            display: block !important;
        }

    }
    @media only screen and ( max-width: 768px ) {

        #header {
            height: 130px;
        }
        .is-scrolling #header {
            height: 80px;
        }
        .is-scrolling.is-scrolling-up #header {
            height: 130px;
        }
        .is-internal #header {
            height: 80px !important;
        }

        #navigationPrimary .container {
            /*width: 87%;*/
        }
            #navigationPrimary .navbar-brand {
                /*width: 140px;*/
                /*margin: 0;*/
                /*top: -2px;*/
            }
            #navigationPrimary .navbar-menu {
                display: none !important;
            }

        #navigationSecondary {
            height: 50px;
        }
        #navigationSecondary h2 {
            font-size: 19px;
            padding: 15px 2px;
            letter-spacing: 0.5px;
        }
    }























#menuDefault {
    background-color: #FFF;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
    transition-delay: 0.2s;
    transition-duration: 0.7s;
}
.is-menu-opened #menuDefault {
    padding-top: 200px;
    height: 100vh;
}
.is-scrolling #menuDefault {
    /*background-color: #FFF;*/
}

#menuDefault ul {
    margin-top: 50px;
}
.is-menu-opened #menuDefault ul {

}


    #menuDefault ul li {
        text-align: right;
        width: 100%;
        overflow: hidden;
    }
    #menuDefault ul li a {
        display: block;
        padding: 10px 20px;
        transform: translateY( 20vh );
        transition-delay: 0.3s;
        transition-duration: 1s;
    }
    .is-menu-opened #menuDefault ul li a {
        transform: translateY( 0px );
    }

    #menuDefault ul li a span {
        font-weight: 700;
        font-size: 25px;
        color: #424242;
        letter-spacing: -2px;
        display: inline-block;
        line-height: 25px;
        transition-delay: 0.1s;
        transition-duration: 0.7s;
    }
    .is-scrolling #menuDefault ul li a span {
        /*color: #CCC;*/
    }
    #menuDefault ul li:hover a span {
        color: #000;
    }
    .is-scrolling #menuDefault ul li:hover a span {
        /*color: #000;*/
    }


@media only screen and ( max-width: 1280px ) {
  
}

@media only screen and ( max-width: 1080px ) {

  

}










.section {
    color: #FFF;
    min-height: calc( 100vh - 160px );
    position: relative;
    align-content: center;
}
.section .section-navigation {
    background-color: transparent;
    width: 5px;
    height: 5px;
    position: relative;
    top: -125px;
}
.section .image-parallax {
    position: absolute;
    top: 10%;
}

.section h2 {
    font-size: 50px;
    letter-spacing: 0;
    color: inherit;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.section h3 {
    font-size: 35px;
    color: inherit;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.section h4 {}
.section h2 span,
.section h3 span,
.section h4 span {}
.section p {
    font-size: 25px;
    color: inherit;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 50px;
}
.section p a {}
.section .button {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 24px;
    color: inherit;
    padding: 19px 40px 15px 40px;
    border: none;
    border-radius: 50px;
}


.section .columns {}
.section .columns .column {}



@media only screen and ( max-width: 1280px ) {}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {
    .section h2 {
        font-size: 35px;
    }
    .section h3 {}
    .section p {
        font-size: 20px;
        line-height: 25px;
    }
    .section .button {
        font-size: 18px;
        display: block;
        width: 100%;
        padding: 16px 5px;
        height: 50px;
        line-height: 17px;
    }
}














#homeHero {
    background-color: #211720;
    color: #FFF;
    height: 100vh;
    padding: 160px 0 5px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
    transition: all 1.3s ease 0.5s;
    -webkit-transition: all 1.3s ease 0.5s;
}
.scrolling-init #homeHero {
    transition: none;
    -webkit-transition: none;
}
.loading #homeHero {}
.loaded #homeHero {}
    #homeHero .columns {}
        #homeHero .columns .column {
            height: calc( 100vh - 180px );
            align-content: center;
        }
            #homeHero .columns .column figure {
                width: 300px;
                display: block;
            }
            #homeHero .columns .column figure img {
                width: 100%;
                display: block;
            }
            #homeHero .columns .column article {
                font-size: 60px;
                font-weight: 700;
                color: #FFF;
                text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
            }

    #heroGotNext {
        text-indent: 1.5px;
        border: solid 1px #FFF;
        border-radius: 20px;
        width: 25px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        position: absolute;
        bottom: 5px;
        left: 50%;
        opacity: 0;
        transform: translateX( -50% ) translateY( -50px );
        transition-duration: 2s;
    }
    #heroGotNext span {
        font-size: 20px;
        color: #FFF;
    }

    .is-hero #heroGotNext {
        border: solid 1px #000;
        bottom: 100px;
        left: 10px;
        transform: translateX( 0 ) translateY( -50px );
    }
    .is-hero #heroGotNext span {
        color: #000;
    }

    .loaded #heroGotNext {
        opacity: 1;
        transform: translateY( 0 ) translateX( -50% );
    }

    .is-scrolling #heroGotNext {
        opacity: 0;
        transform: translateX( -50% ) translateY( -50px );
    }
    .is-internal.is-scrolling #heroGotNext {
        opacity: 0;
        transform: translateX( 0 ) translateY( -50px );
    }

@media only screen and ( max-width: 1920px ) {
    #homeHero {}
}
@media only screen and ( max-width: 1620px ) {
    #homeHero {}
}
@media only screen and ( max-width: 1280px ) {
    #homeHero {}
}

@media only screen and ( max-width: 1180px ) {

    #homeHero {}

}

@media only screen and ( max-width: 768px ) {
    #homeHero {
        background-size: auto 124%;
        background-position: center 10px;
        padding-top: 130px;
    }
    .loaded #homeHero {
        background-size: auto 84%;
        background-position: center 160px;
    }

    #heroGotNext {
        bottom: -75px;
    }

    #homeHero .columns .column {
        height: auto;
        align-content: center;
    }
    #homeHero .columns .column figure {
        display: none;
    }
    #homeHero .columns .column article {
        text-align: center;
    }
    #homeHero .columns .column article {
        text-align: center;
        line-height: 55px;
        font-size: 45px;
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    }
    #homeHero .columns .column article br {
        display: none;
    }

}







#theProduct {
    background-color: #FECE40;
    color: #000;
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#theProduct .image-parallax {
    left: 100px;
}
#theProduct .button {
    background-color: #FB9502;
}
#theProduct.is-single {
    padding: 165px 0 50px 0;
}
#theProduct.is-single .columns {
    padding: 0;
    margin: 0;
}
#theProduct.is-single .columns .column {
    padding: 0;
    margin: 0;
}
#theProduct.is-single figure {
    display: block;
}
#theProduct.is-single figure img {
    display: block;
}
#theProduct.is-single .is-hero {
    min-height: calc( 100vh - 170px );
    position: relative;
}
#theProduct.is-single .is-hero .is-5 {

}
#theProduct.is-single .is-hero h1 {
    font-size: 55px;
    text-align: left;
    margin-top: 0;
}
#theProduct.is-single h2 {
    padding: 50px 0 0 0;
}
#theProduct.is-single .is-hero p {
    font-family: 'poppinsbold';
    font-size: 27px;
    line-height: 40px;
    padding-right: 50px;
}
#theProduct.is-single .is-hero figure {
    width: 40vw;
    height: 38vw;
    margin-left: auto;
    border-radius: 100px;
    overflow: hidden;
}
#theProduct.is-single .is-hero figure img {
    width: 102%;
    min-width: 102%;
    position: relative;
    top: -2%;
    left: -1%;
}

#theProduct.is-single .is-beneficios {
    margin-top: 15px;
    margin-bottom: 75px;
}
#theProduct.is-single .is-beneficios figure {
    background-color: #F28AA4;
    width: 125px;
    height: 125px;
    margin: 0 auto 25px auto;
    border-radius: 100px;
}
#theProduct.is-single .is-beneficios figure img {
    width: 100%;
    max-width: initial;
    height: auto;
    display: block;
    position: relative;
}

#theProduct.is-single .is-beneficios p {
    font-size: 19px;
    text-align: center;
    padding: 0 25px;
    margin: 0;
}
#theProduct.is-single .is-beneficios p strong {
    font-weight: bold;
    color: inherit;
}
#theProduct.is-single .is-beneficios .column {
    padding: 0 25px 0 25px;
}



#theProduct.is-single .is-certificate {}
#theProduct.is-single .is-certificate .columns {
    margin-bottom: 50px;
}
#theProduct.is-single .is-certificate .column {
    margin-top: 25px;
    align-content: center;
}
#theProduct.is-single .is-certificate p {
    font-size: 19px;
    text-align: left;
    padding: 0 25px;
    margin: 0;
}









#theProduct h1.transitions {
    transform: translateY( 50px );
    opacity: 0;
    transition-duration: 1s;
    transition-delay: 0.8s;
}
.loaded #theProduct h1.transitions {
    transform: translateY( 0 );
    opacity: 1;
}

#theProduct p.transitions {
    transform: translateY( 75px );
    opacity: 0;
    transition-duration: 1.3s;
    transition-delay: 1.1s;
}
.loaded #theProduct p.transitions {
    transform: translateY( 0 );
    opacity: 1;
}

#theProduct figure.transitions {
    transform: translateY( 100px );
    opacity: 0;
    transition-duration: 1.6s;
    transition-delay: 1.4s;
}
.loaded #theProduct figure.transitions {
    transform: translateY( 0 );
    opacity: 1;
}






@media only screen and ( max-width: 1280px ) {}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {

    #theProduct.is-single .is-hero figure {
        width: 100%;
        height: 35vh;
        border-radius: 50px;
    }
    .is-hero #heroGotNext {
        left: 50%;
        bottom: 25px;
    }
    #theProduct.is-single figure img {
        margin: 0 auto;
    }
    #theProduct.is-single .is-beneficios {
        margin-bottom: 0;
    }
    #theProduct.is-single .is-beneficios .column {
        padding-bottom: 75px;
    }
}









#about {
    background-color: #FB9502;
    color: #000;
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#about.is-single {
    padding: 200px 0 50px 0;
}

#about .image-parallax {
    right: 100px;
}
#about .button {
    background-color: #6B301E;
    color: #FFF;
}

#about.is-single .image-parallax {
    top: 30%;
}

#about.is-single article {
    padding: 0 17% 50px 17%;
}

#about.is-single  p {
    font-size: 20px;
    line-height: 28px;
}
#about.is-single p strong {
    color: inherit;
}
#about.is-single h2 {
    margin-top: 25px;
}
#about.is-single .columns {

}
#about.is-single .columns .column {

}
#about.is-single .columns .column {
    padding-left: 35px;
    padding-right: 35px;
}
#about.is-single .columns .column h3 {
    font-weight: 400;
}
#about.is-single .columns .column figure {
    display: block;
    position: relative;
}
#about.is-single .columns .column figure img {
    display: block;
    width: auto;
    height: 300px;
    margin: 0 auto;
    position: relative;
}


#about.is-single figure.is-cover {
    display: block;
    width: 100%;
    height: 80vh;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}
#about.is-single figure.is-cover img {
    position: relative;
    top: -75px;
}




#about h2.transitions {
    transform: translateY( 50px );
    opacity: 0;
    transition-duration: 1s;
    transition-delay: 0.8s;
}
.loaded #about h2.transitions {
    transform: translateY( 0 );
    opacity: 1;
}

#about article.transitions {
    transform: translateY( 75px );
    opacity: 0;
    transition-duration: 1.3s;
    transition-delay: 1.1s;
}
.loaded #about article.transitions {
    transform: translateY( 0 );
    opacity: 1;
}

#about .columns.transitions {
    transform: translateY( 100px );
    opacity: 0;
    transition-duration: 1.6s;
    transition-delay: 1.4s;
}
.loaded #about .columns.transitions {
    transform: translateY( 0 );
    opacity: 1;
}



@media only screen and ( max-width: 1280px ) {}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {

    #about.is-single .image-parallax {
        display: none;
    }
    #about.is-single figure.is-cover {
        height: 60vh;
        border-radius: 30px;
    }
    #about.is-single figure.is-cover img {
        width: auto;
        max-width: initial;
        height: 60vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

}



#aboutStory {
    background-color: #6B301E;
    color: #FFF;
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#aboutStory .image-parallax {
    left: 100px;
}

@media only screen and ( max-width: 1280px ) {}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {}







#howToBuy {
    background-color: #CC034F;
    color: #FFF;
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#howToBuy .image-parallax {
    right: 100px;
}
#howToBuy .button {
    background-color: #F28AA5;
    color: #000;
}

#theProduct.is-single {
    padding: 165px 0 50px 0;
}

#howToBuy.is-single h1 {
    font-size: 55px;
    text-align: center;
    margin-top: 75px;
    margin-bottom: 5px;
}
#howToBuy.is-single figure.is-cover {
    display: block;
    width: 100%;
    height: 80vh;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}
#howToBuy.is-single figure.is-cover img {
    position: relative;
    top: -75px;
}
#howToBuy #heroGotNext {
    bottom: 50px;
}
.is-internal.is-scrolling #howToBuy #heroGotNext {
    opacity: 0;
    transform: translateX( -50% ) translateY( -50px );
}

#howToBuy.is-single .columns {
    padding: 115px 0 0;
}
#howToBuy.is-single .columns .column {

}


#howToBuy.is-single .columns .column figure.is-cover {
    height: 90vh;
}
#howToBuy.is-single .columns .column figure.is-cover img {
    position: relative;
    top: -25px;
}

#howToBuy.is-single .columns .column h2 {
    min-height: 115px;
}
#howToBuy.is-single .columns .column p {
    font-size: 21px;
    min-height: 215px;
}
#howToBuy .columns .column p .button {
    background-color: #FFF;
    color: #CC034F;
}
#howToBuy .columns .column:last-child p .button {
    background-color: #F28AA5;
    color: #FFF;
}

#howToBuy.is-single .columns .column .columns {
    padding: 0;
    margin: 0 0 50px 15px;
}
#howToBuy.is-single .columns .column .columns .column {
    padding: 0;
    margin: 0;
}
#howToBuy.is-single .columns .column.is-1 figure {
    width: 40px;
    display: block;
    position: relative;
    top: -2px;
    left: 4px;
}
#howToBuy.is-single .columns .column.is-1 figure img {
    width: 100%;
    height: auto;
}
#howToBuy.is-single .columns .column h4 {
    font-size: 26px;
    text-transform: uppercase;
    padding: 0;
    margin: 25px 0 10px 54px;
}
#howToBuy.is-single .columns .column .columns .column p {
    font-size: 16px;
    min-height: auto;
    line-height: 19px;
    padding: 0 0 0 15px;
    margin: 0;
}







#howToBuy h1.transitions {
    transform: translateY( 50px );
    opacity: 0;
    transition-duration: 1s;
    transition-delay: 0.8s;
}
.loaded #howToBuy h1.transitions {
    transform: translateY( 0 );
    opacity: 1;
}

#howToBuy figure.transitions {
    transform: translateY( 75px );
    opacity: 0;
    transition-duration: 1.3s;
    transition-delay: 1.1s;
}
.loaded #howToBuy figure.transitions {
    transform: translateY( 0 );
    opacity: 1;
}








@media only screen and ( max-width: 1280px ) {}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {

    #howToBuy p {
        margin-top: 5px;
        margin-bottom: 5px;
    }


    #howToBuy.is-single figure.is-cover {
        height: 75vh;
    }
    #howToBuy.is-single figure.is-cover img {
        position: relative;
        top: -5px;
        width: auto;
        height: 78vh;
        max-width: initial;
        left: 50%;
        transform: translateX( -50% );
    }

    #howToBuy.is-single #heroGotNext {

    }

    #howToBuy.is-single .columns {
        margin-bottom: 50px;
    }
    #howToBuy.is-single .columns .column {
        margin-bottom: 25px;
    }

    #howToBuy.is-single .columns .column h2,
    #howToBuy.is-single .columns .column p {
        min-height: auto;
    }
    #howToBuy.is-single .columns .column p .button {
        margin-top: 50px;
    }

    #howToBuy.is-single .columns .column figure.is-cover {
        height: 75vh;
    }

}







#reviews {
    background-color: #F28AA5;
    color: #FFF;
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#reviews .image-parallax {
    left: 100px;
}

#reviews .card {
    background-color: #FCC211;
    color: #000;
    height: 400px;
    padding: 40px 30px;
    border-radius: 20px;
    border: none;
}
#reviews .card h4 {
    font-family: 'poppinsbold';
    font-size: 28px;
}
#reviews .card p {
    font-size: 20px;
}

@media only screen and ( max-width: 1280px ) {
    #reviews .card p {
        font-size: 17px;
    }
}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {}


#products {
    background-color: #90649F;
    color: #FFF;
    padding: 50px 0 10px 0;
    position: relative;
    z-index: 4;
}
#products .image-parallax {
    right: 100px;
}
#products .columns {}
#products .columns .column {
    width: 25%;
}
#products .card {
    background-color: #5FD4E8;
    color: #FFF;
    height: 525px;
    padding: 0;
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
#products .card figure {
    width: 102%;
    position: relative;
    left: -1%;
    top: -1%;
    border: none;
}
#products .card figure img {
    width: 100%;
    height: auto;
}
#products .card h4 {
    font-size: 30px;
    font-weight: 500;
    padding: 25px 35px 5px 35px;
}
#products .card p {
    font-size: 20px;
    padding: 15px 35px;
    margin: 0;
}
#products .button {
    background-color: #5FD4E8;
}





#products.is-single {
    padding: 125px 0 50px 0;
}
#products.is-single .container {
    width: 100% !important;
    max-width: 100% !important;
}
#products.is-single h1 {
    font-size: 55px;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}



#products.is-single .is-product-one,
#products.is-single .is-product-two,
#products.is-single .is-product-three,
#products.is-single .is-product-four {
    position: relative;
}
#products.is-single .is-product-one img,
#products.is-single .is-product-two img,
#products.is-single .is-product-three img,
#products.is-single .is-product-four img {
    position: absolute;
    z-index: 1;
}
#products.is-single .is-product-one {
    height: 40vh;
}
#products.is-single .is-product-one img:first-child {
    width: 225px;
    height: auto;
    top: 75px;
    left: 100px;
}
#products.is-single .is-product-one img:last-child {
    width: 370px;
    height: auto;
    top: 240px;
    left: 330px;
}
#products.is-single .is-product-two {
    height: 80vh;
}
#products.is-single .is-product-two img:first-child {
    width: 490px;
    height: auto;
    top: 290px;
    right: 48vw;
}
#products.is-single .is-product-two img:last-child {
    width: 40vw;
    height: auto;
    top: 10px;
    right: 100px;
}
#products.is-single .is-product-three {
    height: 90vh;
}
#products.is-single .is-product-three img:first-child {
    width: 40vw;
    height: auto;
    top: -100px;
    left: -5px;
}
#products.is-single .is-product-three img:last-child {
    width: 560px;
    height: auto;
    top: 290px;
    left: 42vw;
}
#products.is-single .is-product-four {
    height: 80vh;
}
#products.is-single .is-product-four img:first-child {
    width: 560px;
    height: auto;
    top: 290px;
    right: 40vw;
}
#products.is-single .is-product-four img:last-child {
    width: 40vw;
    height: auto;
    top: -100px;
    right: -5px;
}
#products h1.transitions {
    transform: translateY( 50px );
    opacity: 0;
    transition-duration: 1s;
    transition-delay: 0.8s;
}
.loaded #products h1.transitions {
    transform: translateY( 0 );
    opacity: 1;
}
#products .is-product-one.transitions {
    transform: translateY( 75px );
    opacity: 0;
    transition-duration: 1.3s;
    transition-delay: 1.1s;
}
.loaded #products .is-product-one.transitions {
    transform: translateY( 0 );
    opacity: 1;
}
#products .is-product-two.transitions {
    transform: translateY( 100px );
    opacity: 0;
    transition-duration: 1.6s;
    transition-delay: 1.4s;
}
.loaded #products .is-product-two.transitions {
    transform: translateY( 0 );
    opacity: 1;
}



#products.is-single .columns {
    padding: 300px 0 100px;

}
#products.is-single .columns .column {
    padding: 0 12vw;
}
#products.is-single .columns .column h2 {

}
#products.is-single .columns .column p {

}
#products.is-single .columns .column p a {

}









@media only screen and ( max-width: 1280px ) {
    #products .card h4 {
        padding: 25px 20px 5px 20px;
    }
    #products .card p {
        font-size: 17px;
        padding: 15px 20px;
    }
}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {

    #products .columns .column {
        width: 100%;
    }
    #products .card {
        height: auto;
    }

    #products.is-single .is-product-one img:first-child {
        width: 145px;
        left: 40px;

    }
    #products.is-single .is-product-one img:last-child {
        width: 190px;
        top: 210px;
        left: 185px;
    }
    #products.is-single .is-product-two {
        height: 60vh;
    }
    #products.is-single .is-product-two img:first-child {
        width: 241px;
        top: 260px;
        right: 50vw;
    }
    #products.is-single .is-product-two img:last-child {
        width: 80vw;
        top: 70px;
        right: -140px;
    }
    #products.is-single .is-product-three {
        height: 70vh;
    }
    #products.is-single .is-product-three img:first-child {
        width: 84vw;
        top: -30px;
        z-index: 2;
    }
    #products.is-single .is-product-three img:last-child {
        width: 310px;
        top: 310px;
        left: 26vw;
    }
    #products.is-single .is-product-four img:last-child {
        width: 83vw;
        top: -50px;
        right: -5px;
    }
    #products.is-single .is-product-four img:first-child {
        width: 297px;
        top: 371px;
        right: 20vw;
    }

}












#contact {
    background-color: #5FD4E8;
    color: #000;
    height: calc( 100vh - 80px );
    padding: 50px 0 100px 0;
    position: relative;
    z-index: 4;
}
#contact .image-parallax {
    left: 100px;
}
#contact h3 {
    margin-bottom: 15vh;
}
#contact p {
    margin-top: 25px;
    margin-bottom: 15vh;
}
#contact .button {
    background-color: #FECE40;
}
#contact .columns {
    padding: 50px 0 50px;
}
#contact .columns .column {}
#contact .columns .column a {
    display: block;
    margin-bottom: 50px;
}
#contact .columns .column a img {
    display: inline-block;
    width: 50px;
    position: relative;
    top: -3px;
}
#contact .columns .column a span {
    font-size: 25px;
    display: inline-block;
    margin-left: 10px;
}

@media only screen and ( max-width: 1280px ) {

    #contact p {
        margin-bottom: 10vh;
    }

}
@media only screen and ( max-width: 1080px ) {}
@media only screen and ( max-width: 768px ) {}




























#contentHeader {
    background-color: #392737;
    /*background-image: linear-gradient( 150deg, #202020 0%, #111 18%, #000 30%, #140024 60%, #19002d 80%, #230044 100% );*/
    background-size: 200% 200%;
    height: 40vh;
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 5;
    animation: gradientAnimation 12s ease-in-out infinite;
    transition: all 1.3s ease 0.5s;
    -webkit-transition: all 1.3s ease 0.5s;
}

.scrolling-init #contentHeader {
    transition: none;
    -webkit-transition: none;
}

.loading #contentHeader {
    height: 100vh;
    /*background-color: #111111;*/
    /*background-image: linear-gradient( 150deg, #202020 0%, #111 18%, #000 30%, #030000 60%, #19002d 80%, #230044 100% );*/
}

#contentHeader .container {
    position: relative;
}
#contentHeader h1 {
    font-size: 50px;
    font-weight: 900;
}
#contentHeader h1 span {}
#contentHeader h2 {}
#contentHeader h2 span {}
#contentHeader p {
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
}
#contentHeader p a {}
#contentHeader p span {}
#contentHeader p strong {
    font-weight: 700;
}




#contentTerms {
    background-color: #FFF;
    display: block;
    width: 100%;
    min-height: 150vh;
    padding: 100px 0 50px 0;
}





#content_terms_sidebar {
    background-color: #CCC;

    padding: 25px;
    border-radius: 10px;
    
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;

    transition: top 0.3s ease-out, transform 0.3s ease-out;
}

.is-scrolling-up #content_terms_sidebar {
    /* top: 100px; */
}
.is-scrolling-down #content_terms_sidebar {}






    #content_terms_sidebar ul {}
    #content_terms_sidebar ul li {}
    #content_terms_sidebar ul li a {
        display: block;
    }
    #content_terms_sidebar ul li a span {
        font-size: 25px;
        font-weight: 700;
        color: #999;
    }
    #content_terms_sidebar ul li a:hover span {
        color: #000;
    }
    #content_terms_sidebar ul li strong {}








    #contentTerms article {
        color: #333;
        padding: 25px;
        text-align: left;
    }

    #contentTerms h2 {
        text-align: left;
        font-size: 35px;
        font-weight: 900;
        margin: 0 0 25px 0;
    }
    #contentTerms h2 span {}


    #contentTerms h3 {
        text-align: left;
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 25px 0;
    }
    #contentTerms h2 span {}


    #contentTerms p {
        text-align: left;
        color: #333;
        font-size: 18px;
        font-weight: 500;
        margin: 0 0 25px 0;
    }
    #contentTerms p a {
        color: #111;
        text-decoration: underline;
    }



    #contentTerms ul {
        margin: 0 0 25px 25px;
    }
    #contentTerms ul li {
        margin: 0 0 15px 0;
    }
    #contentTerms ul li a {}
    #contentTerms {}
    #contentTerms {}
    #contentTerms {}
    #contentTerms {}
    #contentTerms {}









#_modal_content_footer {
    background-color: #FFF;
    display: none;
    width: 90%;
    max-width: 1000px;
    min-height: 35%;
    padding: 20px 5px 5px 5px;
    border-radius: 25px;

    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 110;
    opacity: 0;
    overflow: hidden;
    transform: translateY( -50% ) translateX( -50% );
    box-shadow: 0 0 150px rgba( 0,0,0,0.4 );
}
#_modal_content_footer .is-close {
    font-size: 25px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}
#_modal_content_footer_content {
    padding: 50px 10px;
}
#_modal_content_footer_content .columns {
    padding: 25px 0;
}
#_modal_content_footer_content h4 {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.7;
}
#_modal_content_footer_content h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}
#_modal_content_footer_content p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}
#_modal_content_footer_content p a {
    background-color: #A74BF5;
    font-family: 'Roboto Mono', serif;
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    margin-top: 20px;
    margin-bottom: 15px;
    display: inline-block;
    height: 35px;
    line-height: 32px;
    padding: 1px 25px;
    border-radius: 10px;
}
#_modal_content_footer_content p .button {}


@media only screen and ( max-width: 1280px ) {

}

@media only screen and ( max-width: 1080px ) {



}
@media only screen and ( max-width: 768px ) {

    #_modal_content_footer {
        background-color: #FFF;

        width: 100%;
        height: 90vh;
        padding: 20px 0 0 0;
        border-radius: 20px 20px 0 0;

        top: initial;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY( -43% ) translateX( 0 );
    }

}
















#btnWhatsappBuy {
    background-color: #23CC63;

    font-size: 30px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba( 0,0,0,0.2 );

    color: #FFF;

    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;

    border: solid 2px rgba( 255,255,255,0.3 );
    border-radius: 100px;

    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 999;
    overflow: hidden;
    transform: translateY( 150px ) scale( 1 );
    transition-delay: 1s;
    transition-duration: 1s;

    /* animação shake */
    animation: shakeWhatsapp 4s ease-in-out infinite;
}
.loaded #btnWhatsappBuy {
    transform: translateY( 0 );
}

#btnWhatsappBuy i {
    position: relative;
    top: -1px;
    left: 0;
}
@keyframes shakeWhatsapp {
    0%, 40%, 100% { transform: translateY(0) rotate(0deg); }

    /* primeiro shake */
    45% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    55% { transform: rotate(-10deg); }
    60% { transform: rotate(0deg); }

    /* segundo shake */
    65% { transform: rotate(-10deg); }
    70% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    80% { transform: rotate(0deg); }
}

@media only screen and ( max-width: 768px ) {
    #btnWhatsappBuy {
        right: 20px;
        bottom: 20px;
    }
    .is-scrolling #btnWhatsappBuy {
        /*right: calc( 50% - 25px );*/
    }
}