@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700;900&display=swap');

:root{
    --vermelho:#E50914;
    --preto:#141414;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    background: var(--preto);
    color: white;
}

.container{
    margin-left: 20px;
}

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

.logo-box {
    display: flex;
    text-decoration: none;
    align-items: center;
}

.logo-box i{
    font-size: 60px;
    color: var(--vermelho);
    margin-right: 10px;
}

header .logo{
    color: var(--vermelho);
    font-weight: 900;
    font-size: 40px;
    letter-spacing: 2px;
}

header .pesquisa-box{
    display: flex;
    align-items: center;
    width: 40%;
}

.pesquisa-box input{
    width: 100%;
    background-color: #2a2a2aa6;
    border: none;
    font-size: 26px;
    color: white;
    padding: 7px;
    outline: none;
}

.pesquisa-box i{
    margin-left: 10px;
    font-size: 25px;
    color: rgb(214, 214, 214);
    cursor: pointer;
}

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

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

/* FILME PRINCIPAL */

.filme-principal{
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5) 100%), url('../img/capa-principal.jpg');
    height: 500px;
    background-size: cover;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

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

.filme-principal .titulo{
    margin-top: 15%;
    text-transform: uppercase;
    font-size: 40px;
}

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

.botao{
    border: none;
    padding: 15px 30px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-weight: 700;
    
    cursor: pointer;
    margin-right: 15px;
    font-size: 12px;
}

.botao:first-of-type{
    background-color: var(--vermelho);
}

.botao:hover{
    color:black;
    background-color: white;
    transition: all ease-in-out 400ms;
}

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

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

/* CARROSSEL */

.owl-carousel{
    cursor: grab;
}

.owl-carousel .item:hover{
    box-shadow: 0px 0px 8px 5px var(--vermelho);
    filter: blur(1px);
    opacity: 0.6;
    transition: all ease-in-out 200ms;
}