@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;500;600&display=swap");

:root {
  --fonte-principal: "Kumbh Sans", sans-serif;
  --cor-fundo: #17162e;
  --cor-fundo-secundario: #1d1c3b;
  --branco: #ffffff;
  --cinza-claro: #acacac;
  --cinza: #8a8a8a;
  --cinza-escuro: #3a3a3a;
  --cor-checkbox: #706ea8;
}

body {
  background-color: var(--cor-fundo);
  color: var(--branco);
  font-family: var(--fonte-principal);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
}

/* Titulo da página */
.title {
  font-weight: 600;
  font-size: 36px;
  margin: 50px auto;
}

/* Barra de pesquisa */
.search-box {
  width: 40%;
  margin: 0 auto;
  position: relative;
}

.search-movie {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background-color: var(--cinza-escuro);
  color: var(--cinza-claro);
  border: none;
  border-radius: 8px;
}

.search-button {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 15px;
  margin-right: 30px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
}

.search-icon {
  width: 20px;
  height: 20px;
}

/* Checkbox */
.checkbox-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid var(--cor-checkbox);
  border-radius: 4px;
  width: 16px;
  height: 16px;
}

.checkbox:checked {
  background-image: url(images/check-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--cor-checkbox);
}

.text-checkbox {
  font-weight: 600;
  margin-left: 10px;
}

/* Filmes */
.movies {
  display: flex;
  margin: 20px auto;
  padding: 20px;
  width: 80%;
  border-radius: 8px;
  background-color: var(--cor-fundo-secundario);
}

.movies-box-infos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40%;
}

.movies-box-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.movies-image {
  border-radius: 50%;
  margin-right: 30px;
}

.title-movie {
  margin-bottom: 15px;
}

.movies-box-fav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.note-movie,
.fav-movie {
  font-weight: 400;
  display: flex;
  align-items: center;
}

.note-movie img {
  margin-right: 10px;
}

.fav-movie img {
  margin-right: 10px;
}

.movies-box-description {
  width: 60%;
  display: flex;
  align-items: center;
}

.description-movie {
  color: var(--cinza-claro);
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .movies {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .movies-box-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .movies-box-description {
    width: 100%;
    margin-top: 20px;
  }
}
