* {margin:0; padding: 0; box-sizing: border-box;}
:root{ /* Declaração de variaveis */
    --vermelho: #E50914;
    --preto: #141414;
}

/* Elementos base */
body{
    background: var(--preto);
    font-family: "Arial", Times, serif;
    color: #FFF;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header .logo{
    margin-left: 5px;
    color: var(--vermelho);
    font-family: "Arial Black", Times;
    font-size: 40px;
}

header nav a{
    text-decoration: none;
    color: #AAA;
    margin-right: 10px;
}

header nav a:hover{
    color: #fff;
}

/* Filme principal */
.filme-principal{
    font-size: 16px;
    background: linear-gradient(rgb(0,0,0,0.5),rgb(0,0,0,0.5)100%), url("/Netflix/img/capa-houseofcards.jpg");
    height:400px;
    background-size:100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#filme-principal{
    font-size: 16px;
    background: linear-gradient(rgb(0,0,0,0.5),rgb(0,0,0,0.5)100%), url("/img/capa-houseofcards.jpg");
    height:400px;
    background-size:100% 100%;
    /* background-size: */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao {
    margin-top: 10px;
    margin-bottom: 40px;
    /* width: 100%; */
}

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

.detalhes{
    font-size: 20px;
    margin-bottom: 0px;
}

.botao{
    background-color: rgb(0,0,0,0.5);
    border: none;
    color: white;
    padding: 15px 30px;
    margin-right: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: .5s ease all;
}

.botao:hover{
    background-color: white ;
    color: black;
}

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

.container{
    margin-left: 20px;
}

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

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

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

.item{
    cursor: pointer;
}