:root {
	/*GRID*/
	--grid-width: 1500px !important;
	--grid-gutter: 20px;
	
	/*TEXT*/
	--text-family: 'National', sans-serif;
	--text-fsize: 16px;
	--text-lheight: 24px;
	
	/*BASE BUTTON*/
	--btn-padding: 15px 30px;
	--btn-fsize: 16px;
	--btn-lheight: 24px;

	/*COLORS*/
	--color-primary: #77569F;
	--color-secondary: #E9A012;
	--color-alt: #285943;
	--color-white: #fff;
	--color-black: #0F0F0F;
}

/* Cores debug */
.finish-button{
    background-color:#43A047 !important;
    border-color: #43A047 !important;
}

.red{
    background-color: red;
  }
  
.blue{
    background-color: blue;
}
  
.yellow{
  background-color: yellow;
}

.purple{
    background-color: purple;
}

.orange{
    background-color: orange;
}
  
@keyframes scaleChange {
	0% { opacity: 1;}
	100% {  opacity: 0.1; }
}

.g1 > * {
	animation: scaleChange 2s ease 0.5s infinite;
	transform-origin: left top;
}

.g2 > * {
	animation: scaleChange 2s ease 1s infinite;
	transform-origin: left bottom;
}

.g3 > * {
	animation: scaleChange 2s ease infinite;
	transform-origin: left right;
}

.g4 > * {
	animation: scaleChange 2s ease 1.5s infinite;
	transform-origin: left left;
}

.bg-primary{background: var(--color-primary) !important}
.bg-secondary{background: var(--color-secondary) !important}
.bg-alt{background: var(--color-alt) !important}
.bg-black{background: var(--color-black) !important}
.bg-white{background: var(--color-white) !important}
.bg-f2{background: #f2f2f2 !important}

.text-primary{color: var(--color-primary) !important;}
.text-secondary{color: var(--color-secondary) !important;}
.text-alt{color: var(--color-alt) !important;}
.text-black{color: var(--color-black) !important;}

.pill{border-radius: 500px;}

.row{ max-width: var(--grid-width);margin:auto; }
.row.wide{ max-width: 90% }
.row.fullwidth{ max-width: 100% }

[class^="col-xs-"], [class^="col-sm-"], [class^="col-md-"], [class^="col-lg-"]{
    padding-left: var(--grid-gutter);
    padding-right: var(--grid-gutter);
}

/* equivalente ao truncate */
.line2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.alert-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.card-group {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    /* max-height:475px; <-- remove */
    background-color: white;
}
/* Tds imagens que estejam dentro de caed group */
div.card-group img{
    height: 100px;
    width: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
    padding: 5px;
}

.card-file-name{
    word-wrap: anywhere;
    width: 100%;
    height: 114px;
    overflow: hidden;
    display: flex;
}

/* Start - Galeria */
.stand-gal{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.stand-gal input{
    position: absolute;
    left: -9999px;
    visibility: hidden;
}
.stand-gal label, .stand-gal div{
    width:33.3333333333333%;
    padding: 5px;
    margin: 0;
}

.stand-gal input:checked+label{
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 40px;
    height: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
}
.stand-gal input:checked+label img{margin: auto;}

.stand-gal input:not(:checked)+label:hover{cursor: zoom-in;}
.stand-gal input:checked+label:hover{cursor: zoom-out;}

.stand-gal div iframe{
    height: 100%;
    width: 100%;
}
/* End - Galeria */


body, a, p, .sub-nav dt, .sub-nav dd, .sub-nav li, span, div, strong, li, ul{
	font-family: var(--text-family);
	font-size: var(--text-fsize); 
	line-height: var(--text-lheight);
    color: var(--color-black);
    font-feature-settings: 'lnum' 1;
}

a{
    color: var(--color-primary);
	outline: 0;
	transition:0.25s;
	display: inline-block;
    max-width: 100%;
    text-decoration: none !important;
    cursor: pointer;
}

a:hover, a:focus{
	color: var(--color-secondary);
    transition:0.25s;
}

img{max-width: 100%;}

.btn.btn-primary {
    border: 0;
    background: var(--color-primary);
    padding: 10px 20px;
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-primary:hover, .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:not(.disabled):active {
    background: #3F3F3F !important;
    border-color: var(--color-black) !important;
    box-shadow: none !important;
    color: var(--color-white) !important;
}

.btn.btn-white.pill{
    background: var(--color-white);
    color: var(--color-black);
    border-radius: 20px;
    padding: 8px 16px;
    line-height: 25px;
}
.btn.btn-white.pill:hover, .btn.btn-white.pill:focus, header .submenu-btn:hover > .btn.btn-white.pill{
    background: transparent;
    color: var(--color-white);
    border: 0;
    box-shadow: none;
}

.btn.btn-white.pill i{margin-right: 3px;}

h1, h2, h3, h4, h5, h6{font-feature-settings: 'lnum' 1;}

h2{
    font-size: 40px;
    text-transform: uppercase;
}

h3 > span.title{
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    font-size: 22px;
    color: inherit;
    line-height: inherit;
    display: block;
    min-height: 53px;
}


.gradient, .bg-gradient{
    background: linear-gradient(77deg, var(--color-secondary) 0%, var(--color-primary) 70%);
    width: 100%;
    height: 100%;
}

.filter{
    background:rgba(15, 15, 15, 0.85);
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    display: flex;
}

.home-video .filter{
    background:rgba(15, 15, 15, 0.45);
}

.home-video video{
    margin-top: 145px;
    object-fit: cover;
    height: calc( 100vh - 145px );
    width: 100%;
}

.il-list{
    display: flex;
    flex-wrap: wrap;
}

.nav-tabs.il-list > li{
    margin: auto;
    flex-grow: 1;
}
.nav-tabs.il-list+.tab-content .tab-pane{
    padding: 20px 0;
}
.nav-tabs .nav-link {
    border: 0 !important;
    font-size: 22px;
    line-height: 36px;
}

.social-links a{font-size: 20px;color:var(--color-black)}
.social-links a:not(:last-child){margin-right: 5px;}
.social-links a:hover{color: var(--color-secondary)}

.modal-backdrop.show {
    opacity: .75;
}

.modal.show {
    overflow-x: hidden;
    overflow-y: auto;
}

/* ----------- HEADER -------------- */

header{
    padding: 25px 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    transition: 0.35s;
}
header.fixed, header.active{
    background: rgba(15, 15, 15, 0.8);
}
header.fixed{
    padding: 10px 10px;
}

#app-header{background: rgba(15, 15, 15, 0.95);}

#menuFlag:checked+header label[for="menuFlag"] i::before {
    content: "\f00d";
    padding-left: 2.8px;
    padding-right: 3px;
}

header .logo{
    display: block;
    height: 95px;
    width:100%;
    background: url("/img/logo2021.png") no-repeat center center / contain;
    transition: 0.3s;
}

nav {
    display: flex;
    flex-wrap: wrap;
    height:100%;
}
nav a{
    font-size: 20px;
    line-height: 28px;
    color: var(--color-white);
}
nav span{
    margin: auto;
    position: relative;
}
nav a:hover, nav a.active{
    color: var(--color-secondary);
    background: none;
}

nav span > a{padding-bottom: 5px;}
nav span > a+.submenu{
    display: none;
    position: absolute;
    min-width: 100%;
    background: var(--color-white);
    text-align: center;
    padding: 5px 10px;
    left: 50%;
    transform: translateX(-50%);
}
nav span:hover > a+.submenu, .submenu:hover{
    display: block;
}


nav span > a+.submenu a{
    color: var(--color-black);
    white-space: nowrap;
}

/* ----------- REGISTO -------------- */
.form-check .input-desc{
    display: none;
    margin-left: -1.25rem;
    padding-top: 10px;
}
.form-check .input-desc .alert{margin-bottom: 10px;}
.form-check input:checked+label+.input-desc{display: block;}

input[type="file"]{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* ----------- FOOTER -------------- */

footer{
    background: var(--color-black);
    padding: 40px 20px 20px;
    margin-top: 80px;
}

footer a, footer div{
    color: var(--color-white);
    line-height: 28px;
}

.il-list.sponsor-list a{
    margin: auto;
}
.il-list.sponsor-list img{
    width: 160px;
    height: 75px;
    object-fit: contain;
    transition: 0.25s;
}
.il-list.sponsor-list  a > img:hover{
    filter: grayscale(100%);
}

.desafios-list > li{
    width:20%;
    padding: 10px;
    margin: 0 auto 20px
}
.desafios-list a{
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase; 
    color: var(--color-black);
}
.desafios-list a:hover{
    color: var(--color-primary);
}

.desafios-list a img{
    filter: brightness(0) saturate(100%) invert(17%) sepia(57%) saturate(4445%) hue-rotate(202deg) brightness(86%) contrast(97%);
    margin-bottom: 10px;
    width:60px;
}


/* ----------- HOMEPAGE -------------- */

.video-box{
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-box video{
    width:100%;
    height:100%;
    object-fit:cover;
    mix-blend-mode: luminosity;
}

.video-box .filter .cta{margin: auto;}
.video-box .cta h2, h2.cta{
    color:var(--color-white);
    font-size: 40px;
    padding: 20px 10px;
    border-top: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.video-box .cta h2 > span.titulo{
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
.video-box .cta h2+.btn, .btn.cta{
    color: var(--color-white);
    border: 3px solid var(--color-white);
    border-top-color: transparent;
    border-bottom-color: transparent;
    float: right;
    font-size: 25px;
    padding: 10px 20px;
    text-transform: uppercase;
}
.video-box .cta h2+.btn:hover, .btn.cta:hover {
    color: var(--color-white);
    border: 3px solid transparent;
    border-top-color: var(--color-white);
    border-bottom-color: var(--color-white);
}

h2.cta.text-black{
    color: var(--color-black);
    border-color: var(--color-black);
}

.btn.cta{float:none}


.bg-dark-block{
    padding: 60px 20px;
}

.bg-dark-block div{
    color: var(--color-white)
}


.bg-dark-block .nav-tabs.il-list .nav-link:not(.active):hover, .bg-dark-block .nav-tabs.il-list .nav-link:not(.active){
    color: var(--color-white);
}
.bg-dark-block .nav-tabs.il-list+.tab-content i{
    font-size: 12px;
    vertical-align: top;
    line-height: 22px;
}
.bg-dark-block .nav-tabs.il-list+.tab-content hr{border-color: var(--color-white);}

.bg-white .nav-tabs.il-list .nav-link:not(.active){
    color: var(--color-black);
}
.bg-white .nav-tabs.il-list .nav-link:not(.active):hover{
    color: var(--color-secondary);
}
.bg-white .nav-tabs.il-list .nav-link.active{
    color: var(--color-primary);
}

.tab-content h5 > a{
    font-size: inherit;
    color: inherit;
}
.tab-content h5 > a:hover{color: var(--color-primary)}

/* ----------- SOBRE -------------- */
.card-white p{
    color: var(--color-white);
    margin-bottom: 0px;
}
.bg-gradient.card {border:0;padding: 20px 15px;}
.bg-gradient.card p {color: var(--color-white)}
.bg-gradient.card .title{
    font-size: 30.5px;
    line-height: 36px;
}
.bg-gradient.card .number{
    font-size: 52px;
    line-height: 64px;
    display: block;
    font-weight: 700;
    color: #fff;
}
.bg-gradient.card .icon{
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(0%) hue-rotate(218deg) brightness(105%) contrast(103%);
    height: 75px;
    position: absolute;
    right: 12px;
    bottom: 12px;
}

/* ---------------- BOLSA ------------------------ */

/* Vue Stepper Wizard */
.wizard-tab-content {
    background-color: white;
    margin: 21px 0px 10px;
}

.wizard-card-footer.clearfix {
    padding: 0px;
}

.wizard-prev-button{
    color: var(--color-secondary) !important;
    background-color: transparent !important;
}

.spinner-border{
    color: var(--color-white);
}

.swot ::placeholder{
    color: white !important;
}

@keyframes moveToTop {
    from {bottom: -160px;}
    to {bottom: -22px;}
}

@keyframes moveToBottom {
    from {bottom: -22px;}
    to {bottom: -160px;}
}

.bot{
    display:none;
    position: fixed;
    bottom: -22px;
    right: -32px;
    z-index: 14;
    height: 181px;
}

.message-bot{
    display: none;
    position: fixed; 
    white-space: break-spaces;
    bottom: 35px;
    right: 150px;
    z-index: 14;
    background-color: #353849;
    max-width: 50%;
    font-size: large;
}

@media only screen and (max-width: 40.063em) {
    .bot{display: none !important;}
    .message-bot{display: none !important;}
}

/* END vue stepper wizard */

.img-cut img{
    width:100%;
    height:475px;
    object-fit:cover;
    mix-blend-mode: luminosity;
    transition: 0.25s;
}
.row:hover .img-cut img{
    mix-blend-mode: initial;
}

.order-lg-2 > .img-cut:before{
    width: 0;
    height: 0;
    content: " ";
    border-top: 475px solid #fff;
    border-right: 125px solid transparent;
    position: absolute;
    left: 0;
    z-index: 1;
}
div:not(.order-lg-2) > .img-cut:after{
    width: 0;
    height: 0;
    content: " ";
    border-bottom: 475px solid #fff;
    border-left: 125px solid transparent;
    position: absolute;
    right: 0;
    z-index: 1;
}

/* ------- STANDS --------- */
.il-list-5 li{
    width: calc(20% - 20px);
    margin: 10px;
}

/* ----------- QUERO PARTICIPAR -------------- */

table.comparativo td{
    vertical-align: top;
    padding: 10px;
}

/* ----------- ORADORES -------------- */

.profile-card{
    padding: 30px 30px 20px;
    margin-bottom: 40px;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}
.profile-card:before{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: " ";
    background: linear-gradient(77deg, var(--color-secondary) 0%, var(--color-primary) 70%);
    z-index: -1;
    transition: ease-in-out 0.6s;
    opacity: 0;
}
.profile-card:hover:before{
    opacity: 1;
}
.profile-card img{mix-blend-mode: overlay;}
.profile-card .gradient{
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}
.profile-card h4, 
.profile-card p, 
.profile-card a {
    transition: 0.25s;
}
.profile-card:hover h4, 
.profile-card:hover p, 
.profile-card:hover a {
    color: var(--color-white)
}
.profile-card:hover img{opacity: 0;}
.profile-card:hover .gradient{
    background: transparent;
    border-color: var(--color-white);
    position: relative;
}
.profile-card .gradient:before{
    content: attr(title);
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    position:absolute;
    height: 100%;
    width: 100%;
    display: flex;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.35s;
}
.profile-card:hover .gradient:before{
    opacity: 1;
    color: var(--color-white);
}

/* ---------- RESPONSIVE MENU ----------- */
#menuFlag{
    position: absolute;
    top: -9999px;
    left: -9999px;
}
#menuFlag:not(:checked)+header div.mobile-menu{display: none;}
#menuFlag:checked+header div.mobile-menu{
    margin-top: 20px;
    z-index: 9;
}

label[for="menuFlag"] {
    vertical-align: top;
    font-size: 32px;
    margin-top: 30px;
    cursor: pointer;
}

.hover-block{background:var(--color-white);display: inline-block;transition: 0.25s;cursor: pointer;}
.hover-block:hover{background:var(--color-primary)}
.hover-block:hover, .hover-block:hover > *{color: var(--color-white) !important}

#app-marcacoes-ver{min-height: 52.5vh;}

.anime{
    transition-property: opacity;
    transition-duration: 0.8s;
    opacity: 0;
}
.anime.animated {opacity: 1;}


.anime > .gradient{transition:0.45s ease-in-out;}
.anime:hover > .gradient{opacity: 0;}


.video-background {
    height: 100vh;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.video-background iframe {
    box-sizing: border-box;
    height: 56.25vw;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    width: 177.77777778vh;
}

.mosaico{
    column-count: 2;
    column-gap: 10px;
    width: 100%;
}

.text-mosaico{
    position: absolute;
    bottom: 11px;
    padding: 10px 10px;
    color: var(--color-white);
    background-color: var(--color-primary);
    font-size: 30px;
    z-index: 9999;
    left: 12px;
}

.tm-alt{
    background: var(--color-secondary);
}


.cta-bilhete h2, .cta-bilhete p{
    color: var(--color-white);
}

.cta-bilhete h2{
    font-size: 60px;
}
.cta-bilhete p{
    font-size: 26px;
    line-height: 32px;
}

.cta-bilhete .button{
    border: 2px solid var(--color-white);
    font-size: 26px;
    color: var(--color-white);
    padding: 15px 30px;
    margin-top: 20px;
}
.cta-bilhete .button:hover{
    background: var(--color-white);
    color:var(--color-black);
}


@media only screen and (max-width: 64em) {
    header .logo{
        width: 85%;
        display: inline-block;
    }

    nav span{
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    nav {
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 40em) { 
    .desafios-list > li {width:100%}
    .video-box .cta{padding: 0 20px;}
    .col-xs-w100{min-width:100%}
    .text-xs-center{text-align:center !important}
    .tiny{line-height: 10px;}

    .video-box,
    .video-box .gradient {
        height: 100vh;
    }

    .video-box .cta h2 > span.titulo{
        display: none;
    }
    .video-box .cta h2 > span#proxevent{
        display: block;
        margin: 20px 0 10px;
    }
    .video-box .cta h2 > span#proxevent+br{display: none;}

    #oradorModal img{height:auto !important;object-fit: initial !important;}

    .sponsor-list li{width:100%}

    .mosaico{
        column-count: 1;
        column-gap: 10px;
        width: 100%;
    }

    .mosaico .mosaico-img{
        max-height: 400px;
    }

    .text-mosaico{
        font-size: 18px;
        left: 10px;
        right: auto;
    }
 }

 /* Counter */
 .countdown-container {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    }
    .clock-item .inner {
    height: 0px;
    padding-bottom: 100%;
    position: relative;
    width: 100%;
    }
    .clock-canvas {
    background-color: cornsilk;
    border-radius: 50%;
    height: 0px;
    padding-bottom: 45%
    }
    .text {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-top: -50px;
    position: absolute;
    top: 92px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    margin-left: 38px;
    }
    .text .val {
    font-size: 30px;
    }
    .text .type-time {
    font-size: 20px;
    }
     @media (min-width: 768px) and (max-width: 991px) {
    .clock-item {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    }
    }
     @media (max-width: 767px) {
    .clock-item {
    margin: 0px 30px 30px 30px;
    display: flex;
justify-content: center;
    }
    }

@media only screen and (min-width: 40.063em) and (max-width: 64em) {
    .sponsor-list li{width:33.3333%}
 }


@media only screen and (min-width: 64.063em) { } 