
body{ 
    color: #fff;
    font-family: globotipo_textoregular;
    background-image: url(../images/bg-escuro.jpg); 
}

/* ---------------------------------------------------- */
/* SPLASH */
/* ---------------------------------------------------- */
.splash{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background: #191919;
    transform: scale(0);
    z-index: 999;
    transition: transform 2s ease-in-out, opacity .3s ease-in-out 
}

.splash.is-open{
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease-in-out;

}

/* ---------------------------------------------------- */

.main-container{
    max-width: 1280px;
    padding: 25px 18px;
    margin: 0 auto;
    position: relative
}

@media(min-width: 768px){
    .main-container{
        padding: 35px 50px;
    }
}

/* ---------------------------------------------------- */
.content{
    max-width: 375px;
}

@media(min-width: 768px){
    .content{
        max-width: 768px;
    }
}

/* ---------------------------------------------------- */

.logo{
    margin-bottom: 60px;
    display: block;
}

.logo img{
    max-width: 100%;
    display: block;
}


/* ---------------------------------------------------- */
/* HOME */
/* ---------------------------------------------------- */

.home__title{
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home__desc{
    font-size: 19px;
    line-height: 1.3;
    text-transform: uppercase;
}

.home__separator{
    padding: 20px 0;
}

.home__info{
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.home__text{
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 50px;
}

@media( min-width: 768px ){

    .home__title{
        font-size: 48px;
        margin-bottom: 18px;
    }

    .home__desc{
        font-size: 30px;
    }

    .home__separator{ 
        padding: 24px 0;
    }

    .home__info{
        font-size: 22px;
    }

    .home__text{
        font-size: 22px;
    }

}

.btn-iniciar{
    margin-bottom: 40px;
    padding: 14px 56px;
    display: inline-block;
    color: #fff;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    background: #FA0234;
    text-decoration: none !important;
}

.btn-iniciar:hover { background: #FF2F1C; }

@media( min-width: 768px ){

    .btn-iniciar{
        padding: 17px 71px;
        font-size: 20px;
    }

}


/* ---------------------------------------------------- */
/* quiz */
/* ---------------------------------------------------- */

.quiz{
    
    transition: all .5s ease-in-out;
}

.quiz.is-open{
    /*transform: scale(1);*/
    transition: all .5s ease-in-out;
}


@media( min-width: 992px ){
    .quiz{
        max-width: 580px;
    }
}


@media( min-width: 1180px ){
    .quiz{
        max-width: 720px;
    }
}

/* ---------------------------------------------------- */
.pergunta{
    max-width: 550px;
    margin-bottom: 35px;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

.respostas{
    margin-bottom: 50px;
    font-size: 15px;
    list-style: none;
}

.resposta__item{ 
    margin-bottom: 13px;
    overflow: hidden;
    cursor: pointer;
    /*display: flex;
    align-items: center;*/
}

.resposta__checkbox{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: inline-block;
    background-color: #191919;
    border: 2px solid #F1F2F2;
    float: left
}

.resposta__item-text{
    padding-top: 3px;
    display: inline!important;
    float: left;
}

.resposta__item:hover .resposta__checkbox { background-color: #757575; }

.resposta__checkbox.is_checked,
.resposta__checkbox.is-checked{
    background-color: #FB0234 !important;
}

@media(min-width: 768px){

    .pergunta{
        font-size: 36px;
        margin-bottom: 50px;
    }

    .respostas{
        font-size: 22px;
    }

    .resposta__item{
        margin-bottom: 15px;
    }

    .resposta__checkbox{
        width: 34px;
        height: 34px;
    }
}

/* ---------------------------------------------------- */

.quiz-nav{
    overflow: hidden;
    max-width: 400px;
}

.quiz-nav span:first-child{
    margin-right: 3%;
}

.quiz-nav span:last-child{
    margin-left: 3%;
}

.btn-nav{
    width: 47%;
    margin-bottom: 40px;
    padding: 12px 0;
    display: block;
    float: left;
    color: #717171;
    font-size: 21px;
    line-height: 21px;
    text-align: center;
    border: 2px solid #717171;
    cursor: pointer;
}

.btn-nav.is-enabled{
    border: 2px solid #fff;
    color: #fff;
}

.btn-nav.is-alert{
    background: #FA0234;
    border: 2px solid #FA0234;
    color: #fff;
}
.btn-nav.is-alert:hover {
    background: #FF2F1C;
}


/* ---------------------------------------------------- */
.breadcrumbs{
    /*width: 114px;*/
    margin-bottom: 25px;
    padding: 0;
    position: relative;
    text-align: center;
    display: inline-block;
    

}

.breadcrumbs:before{
    content: ' ';
    width: 100%;
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    border-top: 2px solid #fff;
}

.breadcrumbs__item{
    width: 17px;
    height: 17px;
    margin-left: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
    position: relative;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #2F2F2F;
}

.breadcrumbs div:first-child{
    margin: 0;
}

/*.breadcrumbs div:last-child{
    margin: 0;
}*/

.breadcrumbs__item.is_selected,
.breadcrumbs__item.is-selected{
    background: #fff;
}

@media(min-width: 768px){
    /*.breadcrumbs{
        text-align: left;
    }
    */
}

/* ---------------------------------------------------- */

.resultado{} 

.resultado__title{
    font-size: 18px;
    line-height: 1.1;
    text-transform: uppercase;
}

.resultado__personagem-nome{
    font-size: 44px;
    line-height: 1.1;
    text-transform: uppercase;
}

.resultado__ator{
    margin-bottom: 20px;
    display: inline-block;
    font-size: 20px;
}

.resultado__personagem-desc{
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

@media(min-width: 768px){
   
   .resultado{} 

    .resultado__title{ 
        font-size: 24px;
    }

    .resultado__personagem-nome{
        margin-bottom: 20px;
        font-size: 64px;
    }

    .resultado__ator{
        margin-bottom: 20px;
        font-size: 24px;
    }

    .resultado__personagem-desc{
        margin-bottom: 18px;
        font-size: 18px;
    }
 
}


/* ---------------------------------------------------- */

.share{
    padding: 2px;
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}
.share__inner{
    padding: 12px;
    display: flex;
    align-items: center;
    font-size: 22px;
    background-color: #191919;
}

.share__text{ 
    margin-right: 15px;
    display: inline-block;
 }

.share__icon{
    margin-left: 10px;
    display: inline-block;
    cursor: pointer;
}


/* ---------------------------------------------------- */

.sobre{ 
    padding: 21px 28px;
    font-size: 15px;
    line-height: 20px;
    color: #CDCDCD;
    background-color: #2F2F2F; 
}

.sobre p{
    margin-bottom: 20px;
}

.sobre img { 
    margin-bottom: 20px;
    display: block; 
}

@media( min-width: 768px ){
    .sobre{ 
        padding: 28px 45px;
    }
}

/* ---------------------------------------------------- */

.tab {
    overflow: hidden;
}

.tab__nav {
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    position: relative;
    left: -4px;
}

.tab__nav-item {
    position: relative;
    display: inline-block;
    bottom: -5px;
    z-index: 1;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0;
    color: #fff;
    border-width: 3px;
    border-style: solid;
    border-color: transparent;
    cursor: pointer;
}

.tab__nav-item a {
    padding: 0 13px 18px 13px;
    display: block;
    color: #fff;
}


.tab__nav-item.is_active a,
.tab__nav-item.is-active a {
    font-family: 'globotipo_textoblack';
    border-bottom: 3px solid #FB0239;
}


.tab__content-item {
    display: none;
}

.tab__content-item.is_active,
.tab__content-item.is-active {
    display: block;
}

@media( min-width: 768px ){
    .tab__nav-item a {
        font-size: 18px;
    }
}

/* ---------------------------------------------------- */


.btn-border{
    padding: 2px;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
}

.btn-border__inner{
    padding: 12px 45px;
    display: inline-block;
    background-color: #101010;
    cursor: pointer;
}


/* ---------------------------------------------------- */

.refazer-teste{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.1;
    display: inline-block;
    text-decoration: none;

}
.refazer-teste__inner{
    justify-content: space-between;
    display: flex;    
}
.refazer-teste__reload{
    display: inline-block;
    vertical-align: bottom;
    margin-right: 7px;
}

.refazer-teste__bar{
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
}

/* ---------------------------------------------------- */


.btn-ver-mais {
    margin-bottom: 40px;
    padding: 12px 25px;
    display: inline-block;
    color: #fff;
    font-size: 21px;
    line-height: 21px;
    text-align: center;
    border: 2px solid #FA0234;
    background: #FA0234;
    text-decoration: none;
    cursor: pointer;
}
.btn-ver-mais:hover { background: #FF2F1C; }

/*-------------------------- poster -------------------------- */

.poster__resultado{
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;
}

.poster__resultado-desktop{
    display: none;
}

@media(min-width: 1024px){
    .poster__resultado{
        display: none
    }
    .poster__resultado-desktop{
        position: absolute;
        right: 10px;
        top: 75px;
        display: block;
        max-width: 340px;
    }
}

@media(min-width: 1180px){

    .poster__resultado-desktop{
        max-width: none;
    }
}

.poster__quiz{
    max-width: 400px;
}

@media( min-width: 1024px ){
    .poster__quiz{
        max-width: 375px;
        position: absolute;
        right: 10px;
        top: 75px;        
    }
}      


.poster__border{
    padding: 16px;
    display: inline-block;
    position: relative;
    font-size: 0;
    border: 0;
}

.pa{ background: url('../images/ruido-a.png' ) #FF9801;
}

.pb{ background: url('../images/ruido-b.png' ) #FF5E03;
}

.pc{ background: url('../images/ruido-c.png' ) #FF4E00;
}

.pd{ background: url('../images/ruido-d.png' ) #FB0234;
}

/* ----- animação ----- */

.tilt-in-right-2 {
  -webkit-animation: tilt-in-right-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: tilt-in-right-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.poster__animation {
  -webkit-animation: tilt-in-right-2 .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: tilt-in-right-2 .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.poster__animation-zoom {
  -webkit-animation: scale-up-center .9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-up-center .9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.delay{
  -webkit-animation-delay: 500ms !important;
  animation-delay: 500ms !important;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-8-14 15:38:13
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tilt-in-right-2
 * ----------------------------------------
 */

@-webkit-keyframes tilt-in-right-2 {
  0% {
    transform: rotateX(30deg) translateX(300px) skewX(-30deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg) translateX(0) skewX(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}



/* -------------------------------------------------- */
/* Animação do poster */
/* -------------------------------------------------- */

@-webkit-keyframes posterFade {
    0% { opacity:1; }
    17% { opacity:1; }
    25% { opacity:0; }
    92% { opacity:0; }
    100% { opacity:1; }
}

@-moz-keyframes posterFade {
    0% { opacity:1; }
    17% { opacity:1; }
    25% { opacity:0; }
    92% { opacity:0; }
    100% { opacity:1; }
}

@-o-keyframes posterFade {
    0% { opacity:1; }
    17% { opacity:1; }
    25% { opacity:0; }
    92% { opacity:0; }
    100% { opacity:1; }
}

@keyframes posterFade {
    0% { opacity:1; }
    17% { opacity:1; }
    25% { opacity:0; }
    92% { opacity:0; }
    100% { opacity:1; }
}

.posterFade {
    height: 100%;
    width: 100%;
    position:absolute;
    top: 0;
    left: 0;
}
.posterFade img {
  position:absolute;
  left:0;
}

.posterFade img {
  -webkit-animation-name: posterFade;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 18s;

  -moz-animation-name: posterFade;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 18s;

  -o-animation-name: posterFade;
  -o-animation-timing-function: ease-in-out;
  -o-animation-iteration-count: infinite;
  -o-animation-duration: 18s;

  animation-name: posterFade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 18s;
}

.posterFade img:nth-of-type(1) {
  -webkit-animation-delay: 16s;
  -moz-animation-delay: 16s;
  -o-animation-delay: 16s;
  animation-delay: 16s;
}

.posterFade img:nth-of-type(2) {
  -webkit-animation-delay: 14s;
  -moz-animation-delay: 14s;
  -o-animation-delay: 14s;
  animation-delay: 14s;
}

.posterFade img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

.posterFade img:nth-of-type(4) {
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s;
}

.posterFade img:nth-of-type(5) {
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  -o-animation-delay: 8s;
  animation-delay: 8s;
}

.posterFade img:nth-of-type(6) {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-delay: 4s;
}

.posterFade img:nth-of-type(7) {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}

.posterFade img:nth-of-type(8) {
  -webkit-animation-delay: 0;
  -moz-animation-delay: 0;
  -o-animation-delay: 0;
  animation-delay: 0;
}