@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    position: relative;
    padding-bottom: 100px;
    padding-top: 20px;
}

ul {
    height: 25px;
    width: 95%; /* Largura */
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    position: fixed;
}

.img-topo {
    height: 25px;  /* Altura */
}

video {
    width: 100vw; /* Largura */
    min-height: 80vh; /* Altura */
}

.capa {
    position: absolute;
    bottom: 20%;   /* TOP - CIMA, BOTTOM - BAIXO, LEFT - ESQUERDA, RIGHT- DIREITA */
    left: 5%;
    width: 35%;
    z-index: 3;
}

.capa-titulo {
    color: white;
    font-size: 80px;  /* Tamanho da fonte */
    margin-bottom: 5px;
    font-weight: bold; /* Grossura da fonte */
}

.capa-descricao {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.link-assistir {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer; /* Mãosinha */
}

.link-info {
    color: black;
    background-color: rgba(255, 255, 255, 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.imagem-carrossel {
    height: 150px;
}

#carouselExampleControls {
    background-color: transparent;
    position: absolute;
    bottom: 10px;
    left: 50px;
}

.titulo-carrossel {
    color: white;
    font-size: 30px;   
    margin-bottom: 10px;
}

.botao-som {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 4;
    position: absolute;
    top: 100px;
    right: 20px;
}

.modal {
    display: none;  /* Mostrar NADA */
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-conteudo {
    background-color: #181818;
    margin: 30px auto; 
    padding: 20px;
    width: 60%;
    color: white;
}
/* 
    Classe = .
    ID = #
*/

