@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

.app_background {
  display: flex;
  flex-direction: column;
  padding: 0 5%;
  background-image: url("../../assets/banner.png"); /* Corrigido */
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.app_background::before, .app_background::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  z-index: 1;
}
.app_background::before {
  top: 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
.app_background::after {
  bottom: 0;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  color: white;
}
.app_background .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  z-index: 1000;
}
.app_background .menu .logo {
  width: 180px;
  height: 50px;
  cursor: pointer;
}
.app_background .menu .lista__menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1rem;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
}
.app_background .menu .menu__logo-opcoes {
  display: flex;
  align-items: center;
}
.app_background .menu .menu__icones {
  display: flex;
  gap: 1rem;
  cursor: pointer;
}
.app_background .menu .menu__icones .icones__user {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.app_background .menu .menu__icones .icone__opcoes {
  width: 14px;
  height: 14px;
}
.app_background .container_banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  position: relative;
  z-index: 2;
}
.app_background .container_banner .descricao_banner {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}
.app_background .container_banner .container__banner-botoes {
  display: flex;
  gap: 1.5rem;
}
.app_background .container_banner .container__banner-botoes .btn__banner-play {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  border-radius: 2px;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 40px 10px 30px;
  gap: 8px;
  cursor: pointer;
}
.app_background .container_banner .container__banner-botoes .btn__banner-play::before {
  content: "";
  position: static;
  background-image: url("../../assets/play.png");
  background-size: contain;
  width: 20px;
  height: 20px;
}
.app_background .container_banner .container__banner-botoes .btn__banner-info {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 2px;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 40px 10px 30px;
  background-color: rgba(128, 128, 128, 0.8);
  cursor: pointer;
}
.app_background .container_banner .container__banner-botoes .btn__banner-info::before {
  content: "";
  position: static;
  background-image: url("../../assets/info.png");
  background-size: contain;
  width: 20px;
  height: 20px;
}
.app_background .descricao__categoria-banner {
  color: white;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 1000;
}

.filmes {
  padding: 0 5%;
  background-color: #000000;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}
.filmes .container__filmes {
  display: grid;
  grid-template-rows: 2;
}
.filmes .container__filmes .descricao__categoria {
  grid-row: 1/2;
}
.filmes .container__filmes .div__filmes {
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(5, 351px);
  gap: 8px;
}
.filmes .container__filmes .div__filmes .-animacao {
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.filmes .container__filmes .div__filmes .-animacao:hover {
  transform: scale(1.05);
  margin: 0 5px 0 5px;
  cursor: pointer;
}
.filmes .container__filmes .div__filmes .-animacao:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  background-color: rgba(255, 0, 0, 0.5);
  pointer-events: none;
}
.filmes .container__filmes .div__filmes.carousel {
  grid-row: 2/3;
  display: grid;
  grid-template-columns: 72px repeat(4, 351px) 72px;
  gap: 8px;
  align-items: center;
  justify-content: start;
  padding-left: 5%;
  padding-right: 5%;
}
.filmes .container__filmes .div__filmes.carousel #arrow-left {
  width: 72px;
  height: 72px;
  background-image: url("../../assets/chevron_left.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  background-color: #000000;
  outline: none;
  transition: transform 0.2s ease, background-image 0.2s ease; /* Transição suave */
}
.filmes .container__filmes .div__filmes.carousel #arrow-left:hover {
  transform: scale(1.5);
}
.filmes .container__filmes .div__filmes.carousel #arrow-right {
  width: 72px;
  height: 72px;
  background-image: url("../../assets/chevron_right.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  background-color: #000000;
  outline: none;
  transition: transform 0.2s ease, background-image 0.2s ease; /* Transição suave */
}
.filmes .container__filmes .div__filmes.carousel #arrow-right:hover {
  transform: scale(1.5);
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  padding: 0 5%;
  padding-top: 20px;
  background-color: #000000;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
.footer .icone__facebook {
  display: inline-block;
  background-image: url("../../assets/facebook-f-brands-solid.svg");
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  margin-right: 15px;
  margin-top: 5px;
}
.footer .icone__instagram {
  display: inline-block;
  background-image: url("../../assets/instagram-brands-solid.svg");
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  margin-right: 15px;
  margin-top: 5px;
}
.footer .icone__twitter {
  display: inline-block;
  background-image: url("../../assets/x-twitter-brands-solid.svg");
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  margin-right: 15px;
  margin-top: 5px;
}
.footer .icone__youtube {
  display: inline-block;
  background-image: url("../../assets/youtube-brands-solid.svg");
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  margin-right: 15px;
  margin-top: 5px;
}
.footer p {
  opacity: 0.7;
}
.footer p:hover {
  text-decoration: underline;
  color: white;
  opacity: 1;
  cursor: pointer;
}
.footer .div__link-servico {
  margin: 50px 0px;
}
.footer .div__link-servico .link__servico {
  opacity: 0.7;
  border: solid 1px #ffffff;
  padding: 10px 10px;
}
.footer .div__link-servico .link__servico:hover {
  cursor: pointer;
  color: #ffffff;
  opacity: 1;
}
.footer .direitos__autorais:hover {
  opacity: 0.7;
  text-decoration: none;
}/*# sourceMappingURL=styles.css.map */