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

.loading {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100vh;
    background: url('../img/loading.gif') no-repeat center center #1f1f1f;
    background-size: auto 50px;
}

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

.main-title {
    margin-bottom: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'GlobotipoTexto-Black';
    line-height: 1.1;
    color: #F6F6F6;
}
.is-bigger {
  font-size: 36px;
  text-transform: uppercase;
}

.main-title__slim{
    font-size: 28px;
    font-family: 'GlobotipoTexto-Black';
  color: #F6F6F6;
  line-height: 33px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 15px;
}

@media (min-width:768px) {
    
    .main-title {
        font-size: 32px;
    }

    .main-title__slim{
        font-size: 28px;
      padding: 0 15px;
    }
    .is-bigger {
      font-size: 64px;
      text-transform: uppercase;
    }

}

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

a.btn{ text-decoration: none; }

.btn{
    padding: 16px 34px;
    color: #F1F2F2;
    text-align: center;
    font-family: 'GlobotipoTexto-Regular';
    font-size: 25px;
    line-height: 1;
    background: #FB0234;
    border: 2px solid #FB0234;
    transition: all .3s linear;
    max-width: 402px;
  width: 100%;
  margin: 0 auto;
}

.btn:hover{ opacity: .8; }

/* variação */

.btn.is-gradiente {
    background: transparent;
    border-image: linear-gradient(90deg, #e61e35, #f27e1e) 1% stretch;
}

.btn.is-gradiente:hover {
    opacity: 1;
    border-color: #F10C1A;
    border-image: none;
    background-color: #F10C1A;
    transition: all .3s linear;
}

.btn.has-icon{
    display: inline-flex;
    align-items: center;
    gap: 17px;
  justify-content: center;
}

@media (max-width: 359px){
    .btn.has-icon{
        font-size: 20px;
    }
}

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

.poster {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.line {
    width: 100%;
    max-width: 196px;
    height: 3px;
    background: linear-gradient(90deg, #FA0234 0%, #FF5E03 51.08%, #FF8F01 96.95%);
  margin: 0 auto;
}
.after .line {
  max-width: 196px;
}
/* ------------------------------------------- */

.cronometro {
    display: flex;
    justify-content: center;
}

.cronometro__label {
    text-align: center;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 36px;
    text-transform: uppercase;
    font-weight: bold;
    color: #FFF;
    font-family: 'GlobotipoTexto-Black';
}

.numeros {
    display: inline-block;
}

.numeros+.numeros {
    margin: 0 0 0 13px;
}

.digito {
    font-family: 'GlobotipoTexto-Regular';
    font-weight: 700;
    background-color: #3C3C3C;
    font-size: 42px;
    line-height: 1;
    display: inline-block;
    padding: 20px 7px 5px 7px;
    box-sizing: border-box;
    min-width: 57px;
    min-height: 78px;
    text-align: center;
}

.digito+.digito {
    margin: 0 0 14px 4px;
}

@media (max-width:450px) {
    .numeros+.numeros {
        margin: 0 0 0 2.2vw;
    }
    .digito {
        min-width: 13vw;
    }
    .digito+.digito {
        margin: 0 0 14px 0;
    }
}

@media (max-width:383px) {
    .digito {
        min-width: 11vw;
        font-size: 36px;
    }
}

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

.dropdown-calendar {
    display: none;
    max-width: 255px;
    width: 100%;
    padding: 0 27px;
    position: absolute;
    left: 33%;
    bottom: 64px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 15;
    transition: .8s ease;
    -webkit-transition: .8s ease;
    -moz-transition: .8s ease;
    -o-transition: .8s ease;
}

@media (max-width:460px) {
    .dropdown-calendar {
        left: 15%;
    }
}

@media (max-width:460px) {
    .dropdown-calendar {
        left: 8%;
    }
}

.dropdown-calendar.show {
    display: block;
}

.dropdown-calendar:before {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 36px;
    top: 99%;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    content: '';
}

.dropdown-calendar a {
    display: block;
    font-family: 'GlobotipoTexto-Regular';
    font-size: 16px;
    text-align: left;
    color: #FB0234;
    padding: 20px 0;
    border-top: 1px solid #aaa;
}

.dropdown-calendar a:hover {
    font-family: 'GlobotipoTexto-Bold';
    position: relative;
    color: #1f1f1f;
}

.dropdown-calendar a:hover:before {
    display: block;
    width: 4px;
    height: 39px;
    position: absolute;
    left: -29px;
    top: 50%;
    background-color: #1f1f1f;
    transform: translateY(-50%);
    content: '';
}

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

.bars {
    width: 100%;
    height: 44px;
    display: block;
    position: relative;
    background: transparent url(../img/bar.png) center bottom repeat-x;
}

.bars::before {
    content: '';
    width: 70px;
    height: 44px;
    display: none;
    position: absolute;
    left: -70px;
    top: 0;
    background: transparent url(../img/bar-l.png) left bottom no-repeat;
    background-size: cover;
}

.bars::after {
    content: '';
    width: 70px;
    height: 44px;
    display: none;
    position: absolute;
    right: -70px;
    top: 0;
    background: transparent url(../img/bar-r.png) right bottom no-repeat;
    background-size: cover;
}

.bars.is-inverse{
    transform: rotateX(180deg);
}

@media(min-width: 1024px){

    .bars {
        width: calc(100% - 144px);
        margin-left:70px;
        margin-right:70px;
    }
    .bars::after,
    .bars::before{
        display: block;
    }

}

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

.programacao{
    display: flex;
    flex-wrap: wrap;
    background-color: #1F1F1F;
}

.programacao__item{
    width: 50%;
    position: relative;
    border-top: 2px solid #FB0234;
    color: #FFF;
    margin-bottom: 33px;
    padding-left: 33px;
}

.programacao__item:last-child .programacao__item-content{
    border: 0;
}

.programacao__item-data{
    padding: 10px 13px 7px 13px;
    margin-bottom: 20px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 34px;
    font-family: 'GlobotipoTexto-Bold';
    font-size: 20px;
    background-color: #FF8F01;
    line-height: 1;
}

.programacao__item-content{
    padding: 20px 0;
    border-right: 1px solid #303030;
}

.atracao{
    
}

.atracao-principal{
    margin-bottom: 10px;
    font-family: 'GlobotipoTexto-Black';
    font-size: 33px;
    text-transform: uppercase;
}

.atracoes-secundarias{
    display: inline-block;
    font-size: 18px;
}

.atracoes-secundarias__item{
    padding-right: 20px;
    position: relative;
    display: inline-block;
}

.atracoes-secundarias__item:after{
    content: '•';
    position: absolute;
    top: 0px;
    right: 8px;
    color: #FF8F01;
}

.atracoes-secundarias__item:last-child{
    padding-right: 0;
}
.atracoes-secundarias__item:last-child:after{
    display: none;
}


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

.footer {
    background: #1f1f1f;
    padding: 15px 50px;
    display: flex;
    align-items: center;
}
.footer__container{
    width: 100%;
    max-width: 1200px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer__desc {
    text-align: center;
    font-size: 11px;
    color: #B7B7B7;
}
.footer__links {
    display: flex;
    gap: 12px;
}
.footer__links a {
    font-size: 10px;
    color: #B7B7B7;
    text-decoration: underline;
    font-weight: 900;
}

@media (min-width: 992px) {
    .footer__container {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer__desc {
        text-align: left;
    }
}

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


.legal-bar {
    background: #1f1f1f;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.legal-bar__container{
    width: 100%;
    max-width: 1200px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.legal-bar__desc {
    text-align: center;
    font-size: 11px;
    color: #B7B7B7;
}
.legal-bar__links {
    display: flex;
    gap: 12px;
}
.legal-bar__links a {
    font-size: 10px;
    color: #B7B7B7;
    text-decoration: underline;
    font-weight: 900;
}

@media (min-width: 992px) {
    .legal-bar__container {
        flex-direction: row;
        justify-content: space-between;
    }
    .legal-bar__desc {
        text-align: left;
    }
}

