@font-face {
    font-family: 'Roboto';
    src: url('../../font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
}
h1, h2, h3, a {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
    color: #f1f1f1;
}
h1 {
    /* background-color: rgb(204, 0, 255);     */
    width: 100%;    
    display: flex;
    margin: 0.8vw 0;
    font-size: 1.1vw;
}
a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; /* Remove o fundo azul ao tocar */
}
/*///////////////////////////////////////BARRA INICIAL////////////////////////////////////////////*/
.barra {
    background-color: #0f0f0f;
    height: 3.9vw;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 1px 6px rgb(0, 217, 255);
    z-index: 999;
}
.menu {
    display: flex;
    height: 100%;
    position: absolute;
    right: 0;
    /* background-color: rgb(255, 0, 242); */
    /* display: none; */
}
.menu a {
    /* background-color: rgb(0, 255, 13); */
    margin: 0 1vw 0 0;
    padding: 0;
    font-size: 1.2vw;
    display: flex;
    color: #f1f1f1;
    align-items: center;
}
.menu a:hover {
    color: rgb(255, 0, 255);
    transition: 0s;
}
.menu h1:hover {
    color: blue;
}
.menu-icon {
    display: none;
}
.logo {
    position: absolute;
    /* background-color: aqua; */
    height: 3.9vw;
    display: flex;
    align-items: center;
    margin-left: 1vw;
}
.logo img {
    width: 8vw;
    /* background-color: rebeccapurple; */
}

/*///////////////////////////////////////CONTEUDO PRINCIPAL////////////////////////////////////////////*/
.principal {
    /* background-color: blue; */
    margin: 3.9vw auto 0 auto;
    padding: 2vw 2vw 0 2vw;
    width: 88vw;
    position: relative;
}
.hidebtn {
    width: 100%;
    height: 7vw;
    background: #ff000000;
    position: absolute;
    z-index: 1;    
}
.container_video {
    width: 67vw;
    /* background-color: rgb(0, 255, 13); */
    position: relative;
}
.container_video video {
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    overflow:hidden;
    border-radius: 1vw;
}
.container_video iframe {
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
    overflow:hidden;
    border: none;
    border-radius: 0.7vw;
}
.principal img{
    width: 70vw;
    position: absolute;
    z-index: 1;
    border-radius: 1vw;
}
.principal img:nth-child(1){
    z-index: 2;
}
.botoes_topo {
    width: 67vw;
    /* background: aqua; */
    text-align: right;
}
#download {
    background-color: #0f0f0f;
    border: 0.15vw solid #f1f1f1;   
    font-size: 0.8vw; 
    border-radius: 0.3vw;
    padding: 0.2vw 0.5vw;
}
#download a {
    color: #f1f1f1;
}
@media (min-width:0px) and (max-width:700px) {
    html, body {
        /* background-color: rgb(0, 255, 76); */
    }
    h1 {
        font-size: 3.7vw;
        font-weight: 700;
        margin: 2vw 0;
        /* background-color: red; */
    }
    .barra {
        /* display: none; */
        height: 13vw;
    }

    /*///////////////////////////////////////BARRA INICIAL////////////////////////////////////////////*/
    .barra {
        height: 13vw;
        z-index: 999;
        /* background-color: #ff000000; */
    }
    .logo {
        height: 100%;
    }
    .logo img {
        width: 25vw;
        margin-left: 0.5vw;        
    }
    .menu-icon img{
        width: 10vw;
        margin: 0;
        margin-right: 1.5vw;
    }
    .menu-icon {
        position: absolute;
        z-index: 1000;
        display: flex;
        font-size: 10vw;
        color: #f1f1f1;
        right: 0;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    .fa-bars {
        margin-right: 1.5vw;
    }
    .menu-icon .fa-times{
        display: none;
        font-size: 12vw;
        margin: 0.5vw 2.1vw 0 0;        
    }
    .menu {
        margin: 13vw 0 0 0;
        padding: 0;
        background-color: #0f0f0f;
        height: auto; /* Altura inicial 0 */
        width: 0;
        overflow: hidden;
        /* transition: height 0.5s ease; */
        display: inline;
        transition: width 0.5s ease;
    }    
    .menu.open {
        width: 80vw;
    }
    .menu a {
        text-decoration: none;
        color: #f1f1f1;
        font-size: 4.5vw;
        padding: 4vw 0;
        border-top: 2px solid rgb(0, 255, 221);
        justify-content: right;
    }
    .menu a img{
        width: 7vw;
        margin: 0 2.7vw;
    }        
    .menu-icon.change .fa-bars {
        display: none;
        background-color: red;
    }
    .menu-icon.change .fa-times {
        display: inline;
        position: relative;
        margin-left: 1vw;
        color: #f1f1f1;        
    }
    .fa-times {
        display: none;        
    }

    /*///////////////////////////////////////CONTEUDO PRINCIPAL////////////////////////////////////////////*/
    .principal img {
        width: 100%;
    }
    .principal {
        /* background-color: blue; */
        margin: 13vw auto 0 auto;
        /* height: calc(100vh - 13vw); */
        padding: 0 0 0 0;
        width: 95vw;
        position: relative;
    }
    .container_video {
        /* background-color: aqua; */
        /* height: calc(100vh - 13vw); */
        width: 95vw;
        margin-top: calc(40vh - 13vw);
        
    }
    
    .hidebtn {
        width: 100%;
        height: 15vw;
    }
    .botoes_topo {
        /* background-color: aqua; */
        width: 95vw;
    }
    #download {
        border: 0.4vw solid #f1f1f1;
        font-size: 3vw;
        padding: 0.5vw 1.5vw;
    }
}