/*
Theme Name: Arena Jockey
Author: Natália
Author URI: http://www.nataliapedroso.com.br
Description: Tema da Arena Jockey
Version: 1.0
Tags: bootstrap 4, responsive, 12 columns

*/
:root {
    --colour-aj-white: #DEDCD2;
    --colour-aj-black: #151515;
    --colour-aj-orange: #C3522D;
    --colour-aj-blue: #1362B4;
    --colour-aj-red: #B71C27;
    --colour-aj-green: #1C6B3D;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: var(--colour-aj-white);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--colour-aj-black);
    height: 100%;
    background: var(--colour-aj-white);
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

a:hover, a:focus {
    opacity: 0.5;
    text-decoration: none;
    color: inherit;
}

a:focus {
    opacity: 1;
    outline: 0;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

::-webkit-input-placeholder {
    color: var(--colour-aj-white) !important;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--colour-aj-white) !important;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--colour-aj-white) !important;
}

:-ms-input-placeholder {
    color: var(--colour-aj-white) !important;
}

@media(max-width: 991px) {
    .hiddenMob {
        display: none !important;
    }

    .showMob {
        display: flex;
    }

    .logoMob {
        display: inline-block;
        padding: 2rem;
    }

    #toggle-hamburger {
        width: 60px;
        padding: 0;
        margin: 0;
        border: 0;
        top: 1rem;
        padding: 1rem;
        cursor: pointer;
    }

    #toggle-hamburger:focus {
        outline: 0;
    }
}

@media(min-width: 992px) {
    .hiddenMob {
        display: flex;
    }

    .showMob {
        display: none;
    }
}

/* =========================================== header  =============== */
#header {
    background: var(--colour-aj-black);
    color: var(--colour-aj-white);
}

.desktopNav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 2rem;
}

.desktopNav > ul, .desktopNav > div {
    width: 33.3333%
}

ul.navbar-nav li a {
    padding: 2rem;
    font-size: 1.1rem;
    text-rendering: geometricPrecision;
    display: block;
}

ul.navbar-nav {
    display: flex;
    justify-content: space-evenly;
}

.logoDesktop {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.navbar-nav li a:hover {
    opacity: 1;
    box-shadow: inset 0px 5px;
    text-shadow: 0px 0px 1px var(--colour-aj-white);
}

#logo img {
    transition: .3s ease-in-out;
    width:200px;
}

#logo:hover {
    opacity: 1;
}

#logo:hover img {
    transform: scale(1.1);
}

@media(max-width: 991px) {
    #logo {
        max-width: 280px;
    }

    .desktopNav {
        flex-direction: column;
        padding: 0;
        padding-bottom: 2rem;
    }

    .desktopNav > ul {
        width: 100%
    }

    ul.navbar-nav li a {
        padding: 1rem 2rem;
    }

    ul.navbar-nav li a:hover {
        box-shadow: inset 10px 0px;
    }
}

/* =========================================== Hero =============== */
.innerHero:before {
    content: '';
    display: block;
    height: 8rem;
    width: 100%;
    background-image: url(./images/imagemhero.svg);
    background-position: top;
    position: absolute;
    top: 0;
}

.innerHero {
    padding: 10rem 2rem 2rem 2rem;
    min-height: 90vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.contentHero h2 img {
    max-width: 550px;
    width: 100%;
    padding: 1rem;
}

.contentHero h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    display: block;
}

.contentHero span {
    font-size: 1.5rem;
    text-rendering: geometricPrecision;
    text-transform: uppercase;
}

.listaTags {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.listaTags li {
    display: block;
    font-weight: 200;
    padding: .2rem .7rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--colour-aj-white);
    background: var(--colour-aj-black);
    margin: .2rem .5rem;
}

.buttonWhite {
    display: inline-block;
    background: var(--colour-aj-white);
    border: 1px solid var(--colour-aj-black);
    padding: .5rem 1rem;
    font-weight: 300;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: 2px;
    box-shadow: inset 5px 0px;
}

.buttonWhite:hover {
    opacity: 1;
    box-shadow: inset 300px 0px var(--colour-aj-black);
    color: var( --colour-aj-white);
}

.buttonNeg {
    color: var( --colour-aj-white);
    border: 1px solid var(--colour-aj-white);
    background: var(---colour-aj-black);
}

.buttonNeg:hover {
    box-shadow: inset 300px 0px var(--colour-aj-white);
    color: var( --colour-aj-black);
}

@media(max-width: 767px) {
    .innerHero {
        min-height: 85vh;
    }

    .innerHero:before {
        background-size: cover;
    }

    .contentHero {
        overflow: hidden;
    }

    .contentHero h2 img {
        width: 100%;
        padding: .5rem;
    }

    .listaTags {
        flex-wrap: nowrap;
    }

    .listaTags li {
        padding: 5px 10px;
        margin: 5px;
        font-size: .8rem;
    }

    .contentHero h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        display: block;
    }

    .contentHero span {
        font-size: 1.2rem;
    }
}

/* =========================================== Programacao =============== */

.contentProgramacao {
    padding: 5rem 0;
}

.tituloProgramacao {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size:2.4rem;
    display:flex;
    align-items: center;
    padding: 0 1rem;
}
.tituloProgramacao span{
    display:block;
    height:2px;
    background-color: var(--colour-aj-black);
    width: 100%;
    position: relative;
    left: 2%;
}

.listaDeEventos {
    display: flex;
    flex-wrap: wrap;
}

.listaDeEventos li {
    width: 30%;
    margin: 1rem;
}
.innerBlocoEvento {
    height:100%;
    background-position: center;
    background-size: 0;
    display: flex;
    align-items: stretch;
}
.textoEvento {
    width: 100%;
    display: flex;
    background: rgb(21 21 21 / 90%);
    color: var(--colour-aj-white);
    position: relative;
}
.dataEvento {
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .8rem;
    line-height:1.3;
    background-color:var(--colour-aj-black)
}
.dataEvento .dia{
    font-size:1.3rem;
}
.dataEvento .mes{
    font-size:.9rem;
    text-transform:uppercase;
}
.dataEvento .ano{
    font-size:.7rem;
}
.tituloEvento {
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-right: 135px;
}

.tituloEvento h3 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.comprarEvento{
    position: absolute;
    height: 100%;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    font-size: .9rem;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    right: 0;
    justify-content: center;
    width:35%;
	text-align:center;
}
.comprarEvento:hover{
    opacity:1;
    width:100%;
}
.listaDeEventos li:nth-child(4n+1) .comprarEvento {
    background-color:var(--colour-aj-blue);
}
.listaDeEventos li:nth-child(4n+2) .comprarEvento {
    background-color:var(--colour-aj-orange);
}
.listaDeEventos li:nth-child(4n+3) .comprarEvento {
    background-color:var(--colour-aj-green);
}
.listaDeEventos li:nth-child(4n+4) .comprarEvento {
    background-color:var(--colour-aj-red);
}
@media(max-width:767px){
    .listaDeEventos {
       flex-direction: column;
    }

    .listaDeEventos li {
        width: 100%;
        margin: 0;
        margin-bottom: 1rem;
        padding: 1rem;
    }
}
/* =========================================== Sobre =============== */
.conteudoSobre {
    background: var(--colour-aj-black);
    color: var(--colour-aj-white);
    border-radius: 30rem 0 0 30rem;
    padding: 5rem 2rem 5rem 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.1rem;
    text-rendering: geometricPrecision;
}

#galeria {
    padding: 6rem 0;
}

.innerSliderHome span {
    display: block;
    height: 80vh;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.sliderContainer {
    border-radius: 20rem;
    overflow: hidden;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -2.5rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--colour-aj-white);
    opacity: 1;
    border: 1px solid var(--colour-aj-black);
}

.swiper-pagination-bullet-active {
    background: var(--colour-aj-black);
}

#videoSobre, #politicaDePrivacidade {
    display: none;
}

.featherlight .featherlight-inner {
    display: block !important;
}

.featherlight #videoSobre {
    background: transparent;
}

.featherlight  #politicaDePrivacidade {
    background: var(--colour-aj-white);
}
 .featherlight .featherlight-close-icon {
    color: var(--colour-aj-white);
    background: var(--colour-aj-black);
    z-index: 10;
}

.featherlight-close-icon.featherlight-close:focus {
    outline: 0;
}

.embed-container {
    width: 100%;
    height: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    max-width: 90vw;
    max-height: 90vh;
}

@media(max-width: 767px) {
    #galeria {
        padding: 0;
        padding-bottom: 4rem;
    }

    .sliderContainer {
        border-radius: 0 0 15rem 15rem;
    }

    .innerSliderHome span {
        height: 50vh
    }

    .conteudoSobre {
        border-radius: 15rem 15rem 0 0;
        padding: 0 2rem;
        padding-top: 8rem;
        padding-bottom: 2rem;
    }
}

/* =========================================== Patrocinadores =============== */
.contentPatrocinadores{
    padding: 0 2rem 1rem 2rem;
    margin-top: 3rem;
    border-bottom: 1px solid #707070;
}
.tituloPatrocinadores{
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.listaPatrocinadores{
    margin: 0;
    display:flex;
    flex-wrap:wrap;
    align-item:center;
}
.listaPatrocinadores li{
    margin: 0 3rem 3rem 0;
    display:flex;
    align-items:center;
}
.listaPatrocinadores a{
    -webkit-filter: grayscale(100%);
    -webkit-transition: all .6s ease;
    -webkit-backface-visibility: hidden;
    display: block;
    opacity:.8;
}
.listaPatrocinadores a:hover{
    filter:none;
    opacity:1;
}
.listaPatrocinadores img{
    max-width:150px;
    max-height:80px

}
@media(max-width:767px){
    .listaPatrocinadores img{
        max-height:70px
    }
}
/* =========================================== Home =============== */
.listaHome {
    background-image: url(./images/bgSite.svg);
    background-size: cover;
}

.listaHome > section {
}

/* =========================================== Novidades =============== */
#novidades{
    margin-top:4rem;
}
.contentNovidades {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #707070;
}
.textoNovidades, .formNovidades{
    padding:0 2rem;
}
.contentNovidades h2{
    /* font-weight: 200; */
    /* text-transform: unset; */
    font-size: 1.8rem;
}
.contentNovidades p{
    margin-bottom:0;
}
.conteudoPolitica{
    padding: 4rem;
    max-width: 720px;
}
.featherlight .featherlight-content {
    padding: 0;
    border: 0;
    background: transparent;
}
.avisoForm {
    display: block;
    font-size: 0.75rem;
}
.avisoForm a{
    font-weight: bold;
}
@media(max-width:767px){
    .avisoForm {
       margin-top:1rem;
    }
}
/* =========================================== 404 =============== */
.single404 {
    text-align: center;
    font-size: 2rem;
    padding: 2rem;
}

.single404 h2 {
    text-transform: uppercase;
    font-size: 5rem;
}
/* =========================================== Footer =============== */
.footer, #patrocinadores, #novidades {
    background-color: var(--colour-aj-black);
    color: var(--colour-aj-white);
    text-rendering: geometricPrecision;
}
.logoArea{
    margin-top:2rem;
}
.logoFooter{
  display: block;
  width: 440px;
  height: 70px;
  background-image: url(./images/logoA.svg);
  background-size: contain;
  background-position: center;
  margin: 0 auto;
  max-width: 100%;
  background-repeat: no-repeat;
}

.menufooterList {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.menufooterList a {
    padding: 1rem;
    margin: .5rem;
}

.menufooterList a:hover {
    opacity: 1;
    box-shadow: inset 0px -5px;
}

.listaSocial {
    display: flex;
    align-items: center;
    justify-content: center;
}

.botaoSocial {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    margin: 0 .5rem;
}

.botaoSocial.Azul {
    background-color: var(--colour-aj-blue);
}

.botaoSocial.Laranja {
    background-color: var(--colour-aj-orange);
}

.botaoSocial.Vermelho {
    background-color: var(--colour-aj-red);
}

.botaoSocial.Verde {
    background-color: var(--colour-aj-green);
}

.botaoSocial:hover {
    opacity: 1;
    transform: scale(1.2);
}

.copyright {
    font-size: 0.8rem;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.copyright p {
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
@media(max-width:767px){
    .logoArea{
        padding: 1rem;
    }
    .menufooterList{
        flex-direction:column;
    }
    .menufooterList li{
        margin-bottom:1rem;
    }
}


.trackbar .tituloEvento {
    flex-direction: column;
    align-items: flex-start;
}
.trackbar .tituloEvento p{
    margin-top:1rem;
	margin-bottom:0;
}


.aviso{
	margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aviso p{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
	margin-bottom: 0;
}