@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root {
    --vermelho: #E50914;
    --preta: #141414;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base do documento e Header */

body {
    background-color: var(--preta);
    font-family: 'Arial', Times, serif;
    color: #fff;
}

header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    color: var(--vermelho);
    font-family: "Bebas Neue", cursive;
    letter-spacing: 3px;
    font-size: 50px;
    margin-left: 10px;
}

header nav {
    margin-bottom: 10px;
}

header nav a {
    text-decoration: none;
    color: #aaa;
    margin-right: 10px;
    transition: color .5s;
}

header nav a:hover {
    color: #fff;
}
/* Filme Principal */

.filme-principal {
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.50)100%), url(../images/capa-vikings.jpg);
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao {
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: justify;
}

.filme-principal .titulo {
    margin-top: 15%;
    font-size: 50px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}

.filme-principal .estrelas {
    margin-top: 10px;
}

.filme-principal .estrelas span {
    margin: 5px;
}

.filme-principal .estrelas .data {
    margin-left: 10px;
}

.filme-principal .estrelas .emissora {
    background-color: #37363C;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
}

.filme-principal .estrelas .qualidade {
    background-color: #37363C;
    font-weight: bold;
    color: #000;
    padding: 5px;
    border-radius: 5px;
}

.botao {
    background-color: rgba(0, 0, 0, .50);
    border: none;
    color: #fff;
    padding: 15px 30px;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
    transition: .8s ease all;
}

.botao:hover {
    background-color: #fff;
    color: #000;
}

.botao i {
    margin-right: 8px;
    font-size: 16px;
}

.container {
    margin-left: 5%;
}

.filme-principal .container {
    width: 80%;
}

.box-filme {
    height: 100%;
    width: 100%;
    display: block;
}

.carrosel-filmes {
    margin-top: 5px;
}

.carrosel-filmes h2 {
    margin-left: 5%;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 20px;
}

.estrelas {
    user-select: none;
}

.estrelas input[type=checkbox]{
    display: none;
}

.estrelas label i.fa::before{
    content: '\f005';
    color: #ccc;
}

.estrelas input[type=checkbox]:checked ~ label i.fa::before {
    color: #A31714;
}

.owl-dots {
    display: none;
}