@import '../icons/iconfont/style.css';

/* .section-home {
    background: url(../../images/39.jpg);
    background-size: cover;
    background-position: center;
} */
/* .text-init-logo{
    text-align: center;
} */
/* .section-home>div{} */

.section-home>.box-intro{
    text-align: center;
    min-height: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.section-home>.box-intro .logo-intro{
    width: 500px;
    margin-top: 3em;
}
.text-init-logo{
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    font-size: 1.5em;
}
.text-init-logo span{
    color: #000;
    background: #fff;
    position: relative;
}

.section-next-events{
    background-color: transparent;
    position: relative;
    bottom: .5em;
    backdrop-filter: blur(5px);
}
.text-style-1{
    text-align: center;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    font-weight: 300;
}
.margin-top-1{
    margin-top: 1em !important;
}
.margin-top-2{
    margin-top: 2em !important;
}
.margin-top-3{
    margin-top: 3em !important;
}
.section-next-events .box-events{
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    padding: .5em;
}
.section-next-events .box-info-intro-event{
    position: absolute;
    bottom: 20px;
    color: #fff;
    text-align: center;
    width: 100%;
    font-family: "Oswald", sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

.section-next-events .box-info-intro-event h6{
    font-size: 12px;
    font-weight: 300;
}
.section-next-events .box-events .box-created{
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-size: 12px;
    padding: 3px;
    padding-bottom: 5px;
}
.section-next-events .box-events .box-created span{
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.font-12px{
    font-size: 12px !important;
}
.margin-bottom-2{
    margin-bottom: 2em;
}
.section-videosets{
    padding-top: 5em;
    background-color: #070210;
    padding: 2em;
}
.bullets-style-music{
    font-size: 10px;
}
.bullets-style-music>span{
    padding: 2px;
    border-radius: 3px;
    border: solid #fff 1px;
    margin-right: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 5px;
}
.list-reels{
    display: inline-flex;
}
.list-reels .box-reels video{
    background-color: black;
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Aplica o mesmo border-radius ao vídeo */
    object-fit: cover; /

}
.list-reels .box-reels{
    width: 256px;
    height: 455px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Aplica border-radius ao contêiner */
}
.list-reels .box-reels .btns-action{
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.list-reels .box-reels .btns-action a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}
.list-reels .box-reels .btns-action a i{
    font-size: 17px;
    margin-right: 6px;
    vertical-align: text-bottom;
}
.title-1{
    font-size: 20px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1em;
    margin-top: 2em;
}
.title-2{
    font-size: 30px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: .3em;
    margin-top: 2em;
}

@media screen and (max-width: 768px) {
    .footer-box-info{
        padding-left: 15px;
        padding-right: 15px;
    }
    .col-xs-6{
        width: 50%;
    }
}
.logo_menu_home{
    width: 60px;
    position: relative;
    bottom: 2px;
}

.section-home {
    position: relative; /* Importante para controlar o posicionamento do vídeo */
    width: 100%;
    overflow: hidden; /* Opcional: para esconder qualquer parte do vídeo que exceder o container */
}

/* O vídeo em si */
.bg-video {
    background-color: #000;
    position: absolute;  /* Torna possível ocupar toda a div */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Faz o vídeo recortar proporcionalmente, tal como “background-size: cover” */
    z-index: -1;         /* Fica atrás do conteúdo */
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* camada escura semi-transparente */
    z-index: 0; /* Coloca o overlay acima do vídeo, mas ainda abaixo do texto */
}