/* Variáveis */
:root {
    --vermelho: #e50914;
    --preto: #141414;
}

/* Resetar estilo */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    background: var(--preto);
    font-family: 'Arial', Times, serif;
    color: white;
    overflow: auto;
}

header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo{
    color: var(--vermelho);
    font-family: 'Bebas Neue', Times;
    font-size: 40px;
}

header nav a{
    text-decoration: none;
    color:#AAA;
    margin-right: 10px;
}

header nav a:hover{
    color: #fff;
}

/* Principal */
.filme-principal{
    font-size: 16px;
    background: linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)100%), url('../img/Rickandmorty/rick.jpg');
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.filme-principal .descricao{
    margin-bottom: 40px;
    margin-top: 40px;
}

.filme-principal .titulo{
    margin-top: 15%;
    font-size: 40px;
    font-family:'Trebuchet MS', Arial, sans-serif;
}

.botao{
    background-color: rgba(0,0,0,.50);
    border: none;
    color: white;
    padding: 15px 30px;
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: .3s ease all;
}

.botao:hover{
    background-color: white;
    color: black;
}

.botao i{
    margin-right: 8px;
}

.container{
    margin-left: 30px;
}

.filme-principal .container{
    width: 50%;
}

.box-filme{
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.carrossel{
    margin-top: 5px;
}

.item{
    height: 600px;
    position: relative;
    cursor: pointer;
}

.owl-carousel .owl-item {
    overflow: hidden; /* Evita que imagens maiores vazem */
}

html {
    scroll-behavior: smooth;
}

.menu{
    margin-right: 30px;
}
