#barraTopo {
    width: 100%;
    height: auto;
    background: var(--corCinzaEscuroS2);
    padding: 5px 0;
    position: absolute;
    z-index: 3;
}

#barraTopo .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#tradutorSite {
    height: 16px;
    overflow: hidden;
}

#tradutorSite a {
    margin-right: 10px;
}

.iconesTopo {
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50px;
    text-align: center;
    font-size: 11px;
    display: inline-block;
    color: var(--corBranco);
    background: var(--corPreto);
    margin-left: 7px;
}
/* FIM TOPO */

.bgVideoReserva {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(/../images/bg-video-home.png) center;
    background-size: cover;
    object-fit: cover;
    
}

.sectionBgVideo {
    /* pointer-events: ; */
    overflow: hidden;
    height: 100vh;
    margin: 0;    
}

.sectionBgVideo > video {
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;    
}

#maskBgVideo {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
   
    background-image: linear-gradient(45deg, rgba(28,0,139,.3) 50%, rgba(000,000,000,.2) 50%);   
    background-size: 3px 3px;
   
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

#conteudoHome {  
    margin: 5% auto 0 auto;  
    width: 100%;
    max-width: 350px;
    height: auto;
}

#tituloMusica {
    width: 100%;
    position: relative; 
}

#tituloMusica h1 {     
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;  
    margin: 10px 0 0 0;
    color: var(--corBranco);
    -webkit-animation: neon 0.08s ease-in-out infinite alternate;
          animation: neon 0.08s ease-in-out infinite alternate;
}

#tituloMusica img {
    top: 15%;
    left: 35%;
    position: absolute;
}

@-webkit-keyframes neon {
    from {
        text-shadow: 
        0 0 6px rgba(202, 228, 225, 0.92),
        0 0 30px rgba(202, 228, 225, 0.34),
        0 0 12px rgba(30, 132, 242, 0.52),
        0 0 21px rgba(30, 132, 242, 0.92),
        0 0 34px rgba(30, 132, 242, 0.78),
        0 0 54px rgba(30, 132, 242, 0.92);
    }
    to {
        text-shadow: 
        0 0 6px rgba(202, 228, 225, 0.98),
        0 0 30px rgba(202, 228, 225, 0.42), 
        0 0 12px rgba(30, 132, 242, 0.58), 
        0 0 22px rgba(30, 132, 242, 0.84), 
        0 0 38px rgba(30, 132, 242, 0.88), 
        0 0 60px #1e84f2;
    }
}

@keyframes neon {
    from {
        text-shadow: 
        0 0 6px rgba(202, 228, 225, 0.92), 
        0 0 30px rgba(202, 228, 225, 0.34), 
        0 0 12px rgba(30, 132, 242, 0.52), 
        0 0 21px rgba(30, 132, 242, 0.92), 
        0 0 34px rgba(30, 132, 242, 0.78), 
        0 0 54px rgba(30, 132, 242, 0.92);
    }
    to {
        text-shadow: 
        0 0 6px rgba(202, 228, 225, 0.98), 
        0 0 30px rgba(202, 228, 225, 0.42), 
        0 0 12px rgba(30, 132, 242, 0.58), 
        0 0 22px rgba(30, 132, 242, 0.84), 
        0 0 38px rgba(30, 132, 242, 0.88), 
        0 0 60px #1e84f2;
    }
}



.btnVazado {
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid var(--corRosa);
    color: var(--corBranco);
    text-transform: uppercase;
    margin: 10px 0;
    padding: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: .5s;
}

.btnVazado:hover {
    color: var(--corRosa);
    border: 1px solid var(--corCinzaEscuroS1);
    background: var(--corCinzaEscuroS1);
}


#footer {
    width: 100%;
    height: auto;
    padding: 50px 0;
    text-align: center;
    background: #0d0d0d;
    margin: 0;
}

#footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer img {
    max-width: 100%;
    margin: 0 1%;
    max-height: 70px;
}


/* -- ################################################################################################################# -- */
/*
#bgInternas {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: url(/../images/bg-video-home.png) fixed top no-repeat;
    background-size: cover;
}
*/

.tituloH1Branco {
    width: 100%;
    text-align: center;
    color: var(--corBranco);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.tituloH1Branco h1 {
    font-size: 37px;
    font-weight: 700;
}

.containerEspacoTopBottom {
    width: 100%;
    height: auto;
    padding: 200px 0 120px 0;
}

.StyleInputs input,
.StyleInputs textarea {
    width: 100%;
    background: var(--corBranco);
    padding: 15px;
    margin: 7px 0;
    border-radius: 7px;
    border: 0;
    font-size: 16px;
    appearance: none;
}

.StyleInputs textarea {
    height: 200px;
}

.StyleInputs input[type="submit"] {
    max-width: 200px;
    float: right;
    background: #9A3619;
    color: var(--corBranco);
    border-radius: 0;
    transition: .5s;
    margin-top: 30px;    
} 

.StyleInputs input[type="submit"]:hover {
    background: #383838;
    cursor: pointer;
}

.ctSubmit {
    width: 100%;
}

.width48 {
    width: 48% !important;
}

.width68 {
    width: 66% !important;
}

.width30 {
    width: 30% !important;
}

.marginTop30 {
    margin-top: 30px !important;
}


/* AGENDA */
#ContainerAgenda {
    width: 100%;
    height: auto;
    max-width: 700px;
    margin: 0 auto;
    color: var(--corBranco);
}

.infoAgenda {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--corBranco);
}

.infoAgenda:last-child {
    border-bottom: 0;
}

.infoAgenda div:nth-child(1) {
    width: 50%;
    font-size: 23px;
    font-weight: 700;
}

.infoAgenda div:nth-child(1) span {
    display: block;
    font-size: 13px;
    font-weight: 400;
}




.infoAgenda div:nth-child(2) {
    width: 40%;
}
.infoAgenda div:nth-child(2) b,
.infoAgenda div:nth-child(2) span {
    display: block;
    font-size: 1.2rem;
}
.infoAgenda div:nth-child(2) b {
    font-weight: 700;
}


.infoAgenda div:nth-child(3) {
    width: 10%;
    text-align: right;
    font-size: 24px;
    color: var(--corBranco);
}
/*
.infoAgenda div:nth-child(3) a {
    display: block;
    border: 1px solid var(--corBranco);
    color: var(--corBranco);
    font-weight: 700;
    text-align: center;
    padding: 10px;
    font-size: 1.3rem;
    transition: .5s;
}

.infoAgenda div:nth-child(3) a:hover {
    background: var(--corBranco);
    color: #393939;
}
/* AGENDA */



/* MUSICAS */
#ContainerMusicas {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--corBranco);
    display: flex;
    flex-wrap: wrap;
}

.capaMusicas {
    width: 31.333%;
    height: 312px;
    margin: 1%;
    position: relative;
    overflow: hidden;
}

.capaMusicas img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}


.hoverMusicas {    
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(000, 000, 000, 0.7);
    transition: .5s;
}
.capaMusicas:hover .hoverMusicas {
    inset: 0;
}

.hoverMusicas span {
    display: block;
    width: 100%;
    max-width: 70%;
    margin: auto;
}

.hoverMusicas a {
    width: 100%;
    display: block;
    margin: 8px 0;
    text-align: center;
    padding: 6px;
    border-radius: 100px;
    background: var(--corBranco);
    color: var(--corCinzaEscuroS1);
    font-weight: 700;
    font-size: 13px;
    transition: .5s;
}

.hoverMusicas a:hover {
    color: var(--corBranco);
    background: #122367;
}
/* MUSICAS */



/* CONTATO */
#containerContato {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
} 

#containerFormCtt {
    width: 50%;
}

#containerFormCtt h1 {
    color: var(--corBranco);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.infoContato {
    width: 40%;
    margin-top: 50px;
    color: var(--corBranco);
}

.infoContato div {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.infoContato div:last-child {
    border-bottom: 0;
}

.infoContato h3,
.infoContato b,
.infoContato span {
    display: block;
}

.infoContato b,
.infoContato span {
    display: block;
    font-size: 16px;
}

.infoContato h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.infoContato b {
    font-weight: 600;    
}

.infoContato span {
    font-size: 14px;   
}

.infoContato a {
    padding: 15px 25px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--corPreto);   
    background: var(--corBranco);
    text-transform: uppercase;
    display: inline-block;
    transition: .4s;
}

.infoContato a:hover {
    background: rgba(255, 255, 255, 0.8);
}


/* CONTATO */




/* CADASTRO CLUBE MEK */

#containerCadastroClube {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

#infoClubeMek {
    width: 28%;
    height: auto;
    color: var(--corBranco);
}
#infoClubeMek h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
#infoClubeMek ul li {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 17px 0;
}
#infoClubeMek ul li span {
    width: 7px;
    height: 7px;
    border-radius: 7px;
    display: block;
    background: var(--corBranco);
}
#infoClubeMek ul li div {
    width: 93%;
}
#infoClubeMek ul li div b {
    font-weight: 700;
}


#twitterTimeline {
    width: 25%;
}

#containerFormClubeMek {
    width: 39%;
}

#containerFormClubeMek form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#containerFormClubeMek h1 {
    color: var(--corBranco);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
/* CADASTRO CLUBE MEK */



/* CLIPES */

#ContainerClipes {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}

.boxClipes {
    width: 33.333%;
    padding: 1% 0.5% 1% 0.5%;
    margin-bottom: 20px;
    background: var(--corCinzaEscuroS1);
}

.boxClipes:nth-child(3n+1) {
    padding-right: 1%;
}

.boxClipes:nth-child(1n+1) {
    padding-left: 1%;
}

.boxClipes strong,
.boxClipes span {
    display: block;
    color: var(--corBranco);
}
.boxClipes strong {
    font-weight: 700;
    text-transform: capitalize;
}

.capaImgClipe {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;    
}

.capaImgClipe img {
    width: 100%;
	height: 100%;
	object-fit: cover;
}

.maskCapaClipe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.maskCapaClipe i {
    font-size: 60px;
    color: var(--corBranco);
}

.boxClipes:hover .maskCapaClipe i {
    color: #ff0000;
}

.boxClipes:hover .maskCapaClipe {
    background: rgb(000, 000, 000, 0.5);
}


.boxClipeDestaque {
    width: 100% !important;
    padding: 0!important;
    background: transparent !important;
    position: relative;
}

.tituloMusicaClipe {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 0 30px 30px 30px;
}

.tituloMusicaClipe strong {
    font-size: 30px;
    line-height: 30px;
}

.tituloMusicaClipe span {
    font-size: 20px;
}

.boxClipeDestaque .capaImgClipe {
    height: 450px !important;
}

/* CLIPES */









/* CSS RESPONSIVO */ /* CSS RESPONSIVO */ 

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

    body, html { width:100%; }
    .container { width:90%; }

}
    






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

    .sectionBgVideo {
        overflow: hidden;
        min-height: 700px;
        height: auto;
        margin: 0;   
        position: relative; 
    }

    .sectionBgVideo > video {
        position: relative;
        top: 0;
        left: 0;
        min-height: 700px;
        height: auto;
        width: 100%;
        object-fit: cover;    
    }

    #maskBgVideo {
        width: 100%;
        min-height: 700px;
        height: auto;

    }

    #conteudoHome {  
        margin: 100px auto 10% auto;  
        width: 90%;
        max-width: 350px;
        height: auto;

    }

    #footer {
        margin-top: -10px;
    }

}



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

    #footer {
        width: 100%;
        padding: 20px 0;
    }
    
    #footer .container {
        width: 100%;
        max-width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    #footer img {
        max-width: 90%;
        margin: 5px auto;
        max-height: auto;
    }

    


    /* CADASTRO CLUBE MEK */
    
    .StyleInputs input[type="submit"] {
        max-width: 100%;
        float: none; 
    }


    #containerCadastroClube {
        flex-wrap: wrap;
    }

    #containerFormClubeMek {
        width: 100%;
        order: -1;
    }

    #infoClubeMek {
        width: 100%;
        max-width: 400px;
        margin: 50px auto;
        padding: 30px;
        border-radius: 10px;
        background: rgb(000, 000, 000, 0.5);
    }

    #twitterTimeline {
        width: 100%;
        max-width: 400px;
        margin:  auto;
    }

    #containerFormClubeMek h1 {
        font-size: 22px;
    }
    /* CADASTRO CLUBE MEK */


    /* CONTATO */
    #containerContato {
        flex-wrap: wrap;
    } 

    #containerFormCtt {
        width: 100%;
    }

    #containerFormCtt h1 {
        color: var(--corBranco);
        font-size: 22px;
    }

    .infoContato {
        text-align: center;
        width: 100%;
        margin-top: 50px;
    }
    /* CONTATO */

}

@media screen and (max-width: 900px) {
    /* MUSICAS */
    .capaMusicas {
        width: 48%;
        height: 312px;
        margin: 1%;
        position: relative;
        overflow: hidden;
    }
    /* MUSICAS */
}

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

    /* AGENDA */
    .infoAgenda {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .infoAgenda div:nth-child(1),
    .infoAgenda div:nth-child(2) {
        width: 80%;
        padding-right: 10px;
        margin: 10px 0;
    }

    .infoAgenda div:nth-child(3) {
        width: 20%;
        margin-top: 0px;
    }
    /* AGENDA */   


    
    /* CLIPES */
    .boxClipes {
        width: 50%;
        padding: 0.5%;
    }

    .boxClipes:nth-child(n) {
        padding: 0.5%;
    }
    
    .boxClipeDestaque {
        width: 100% !important;
        padding: 0!important;
        background: transparent !important;
        position: relative;
    }
  
    .boxClipeDestaque .capaImgClipe {
        height: 350px !important;
    }

    /* CLIPES */

}


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

    .iconesTopo {
        margin-left: 3px;
    }
    #tradutorSite a {
        margin-right: 5px;
    }

    /* MUSICAS */
    .capaMusicas {
        width: 100%;
        min-height: 300px;
        height: auto;
        margin: 0 auto 20px auto;
        position: relative;
        overflow: hidden;
    }

    .capaMusicas:last-child {
        margin: 0 auto 0 auto;
    }
    /* MUSICAS */


    /* CLIPES */
    .boxClipes {
        max-width: 400px;
        width: 100%;
        padding: 10px;
        margin: 0 auto 10px auto;
        background: var(--corCinzaEscuroS1);
    }

    .boxClipes:nth-child(n) {
        padding: 10px;
    }

    .tituloMusicaClipe strong {
        font-size: 20px;
    }

    .tituloMusicaClipe span {
        font-size: 16px;
    }

    .boxClipeDestaque .capaImgClipe {
        height: 250px !important;
    }
    /* CLIPES */

}