@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #020228;
  --secondary-color: #ff00e5;
  --tertiary-color: #b535f6;
  --btn-bg-color-gradient: linear-gradient(45deg,
      #9b34ef 0%,
      #490cb0 20%,
      transparent 50%);
  --btn-link-bg-color: #fff;
  --btn-link-color: #000;
  --card-bg-color: linear-gradient(0deg, transparent, #3b1e63);
  --divider-bg-color: linear-gradient(90deg,
      #5516ba,
      rgba(255, 0, 229, 0.5) 80%);
  --nav-bg-color: rgba(0, 0, 0, 0.3);
  --text-color: #fff;
  --link-color: #9e86ff;
  --form-bg-color: rgba(211, 211, 211, 0.06);
  --form-field-bg-color: rgba(0, 0, 0, 0.2);
  --form-field-border: 1px solid rgba(255, 255, 255, 0.7);
  --form-field-placeholder: rgba(255, 255, 255, 0.7);
  --form-field-error: rgb(255, 76, 76);
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  scroll-margin-top: 3rem;
}

body {
  color: #fff;
  background-color: var(--primary-color);
}

body {
  font-family: "Raleway", sans-serif;
}

p,
.quicksand {
  font-family: "Quicksand", sans-serif;
}

.raleway {
  font-family: "Raleway", sans-serif;
}

h3 {
  font-size: 1.46rem;
}

.small-text {
  font-weight: normal;
  font-size: 1rem;
}

.title {
  padding: 0 1.5rem;
  font-weight: 500;
  font-size: 2rem;
}

.large-text {
  font-size: 3rem;
}

.bold-text {
  font-weight: bold;
}

.align__center {
  text-align: center;
}

.content__item:nth-child(4) span {
  font-weight: normal;
}

.third__container {
  text-align: center;
}

.button {
  font-weight: 700;
}

.subscription__text {
  font-size: 1.25rem;
}
.subscription__text::marker {
  font-size: 2rem;
  color: var(--secondary-color);
}

.form__item:nth-child(1) {
  font-size: 1.5rem;
}

.login__title {
  font-size: 1.25rem;
}

.subscription-price {
  font-size: 2rem;
  font-weight: bold;
}

.header__item.login {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}
.header__button {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.footer__hosting {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__direitos p {
  font-size: 0.7rem;
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pt-2 {
  margin-top: 2rem;
}

.button {
  padding: 1rem 2.5rem;
  border-radius: 31.25rem;
  color: var(--text-color);
  transition: moveBackground 1.2s, outline 1s, transform 1s;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
  background: var(--btn-bg-color-gradient);
  outline: 3px solid transparent;
  transition: moveBackground 1.2s, outline 1s, transform 1s;
  background-size: 250%;
}
.button:hover {
  background-color: transparent;
  background-position: 100%;
  outline: 2px solid var(--secondary-color);
  transform: scale(1.05);
  transition: 1.2s;
}

.wiggle-button {
  animation: moveButton 2s ease-in-out infinite;
  background: var(--btn-bg-color-gradient);
  background-size: 250%;
}
.wiggle-button:hover {
  background-color: transparent;
  background-position: 100%;
  outline: 2px solid var(--secondary-color);
  transition: 1.2s;
}

.card__button {
  background: var(--btn-bg-color-gradient);
  outline: 3px solid transparent;
  transition: moveBackground 1.2s, outline 1s, transform 1s;
  background-size: 250%;
}
.card__button:hover {
  background-color: transparent;
  background-position: 100%;
  outline: 2px solid var(--secondary-color);
  transform: scale(1.05);
  transition: 1.2s;
}

.input-style {
  width: 100%;
  height: 3.31rem;
  border-radius: 0.4rem;
  padding: 0.8rem;
  border: var(--form-field-border);
  color: white;
  background-color: var(--form-field-bg-color);
}
.input-style:placeholder-shown {
  background-color: var(--form-field-bg-color);
}
.input-style::placeholder {
  color: var(--form-field-placeholder);
}
.input-style:focus .input-style:focus-visible, .input-style:focus-within, .input-style:active {
  background-color: var(--form-field-bg-color);
}

.header__container {
  margin: 0;
  z-index: 4;
  padding: 0.8rem 1rem;
  width: 100vw;
  height: 3.4rem;
  background-color: var(--nav-bg-color);
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__container__right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header__item {
  padding: 3px;
  cursor: pointer;
}
.header__item a {
  color: var(--btn-link-bg-color);
}
.header__item a:hover {
  color: var(--btn-link-color);
}
.header__item.logo img {
  width: 10rem;
  height: 100%;
}
.header__item.login a:visited, .header__item.login a:link {
  color: var(--text-color);
}
.header__button {
  padding: 0.4rem;
  margin-right: 2.3rem;
  width: 162.55px;
  height: 30px;
  color: var(--btn-link-bg-color);
  background-color: var(--tertiary-color);
  border-radius: 2rem;
  border: none;
  transition: 1s;
}
.header__button:hover, .header__button a:hover {
  background-color: var(--btn-link-bg-color);
  color: var(--btn-link-color);
}
.header__button:hover, .header__item.login:hover {
  filter: drop-shadow(3px 3px 15px #76289c);
  transition: 0.5s;
}
.header .subscription__header {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.footer__links {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer__hosting {
  padding: 0 1rem;
  margin: 0.3rem;
  color: var(--link-color);
  text-decoration: none;
}
.footer__hosting:hover {
  color: var(--text-color);
  transition: 0.5s;
}
.footer__direitos p {
  padding: 0 1.8rem;
  margin: 1.5rem 0;
  color: var(--link-color);
}
.footer__redes {
  margin: 2rem 0;
}
.footer__items {
  margin: 0 1rem;
}

.content__container {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2.3rem;
  padding: 4rem 0 4rem;
}

.first__container {
  padding: 8rem 2.5rem 17rem;
  height: 54rem;
  margin: 2.8rem 0 11rem;
  position: relative;
  background: linear-gradient(-45deg, #3008b4 0%, #020223 50%, #462376 100%);
  background-size: 400% 400%;
  animation: moveBackground 10s ease alternate infinite;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.first__container::after {
  content: "";
  width: 100%;
  height: 12rem;
  background: linear-gradient(0deg, var(--primary-color) 0%, transparent 100%);
  position: absolute;
  bottom: 0;
}

.content__item {
  display: flex;
}
.content__item:nth-child(4) {
  flex-direction: column;
}

.logos {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1rem;
}
.logos img {
  width: 5.7rem;
}

.divisor {
  width: 43.7rem;
  max-width: 60vw;
  height: 0.25rem;
  background: var(--divider-bg-color);
}

.second__container {
  width: 99vw;
  background-image: url(../../assets/images/background-movies-series.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 70%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cards__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0 5rem;
  perspective: 2000px;
  perspective-origin: top;
  transform-style: preserve-3d;
}
.card__multitelas, .card__mobile {
  transition: transform 1s ease-in-out;
}

.second__container:has(.card__mobile:hover) .card__multitelas {
  transform: rotateY(-45deg);
}
.second__container:has(.card__multitelas:hover) .card__mobile {
  transform: rotateY(45deg);
}

.subscription {
  padding: 2.5rem 3.75rem;
  width: 33.5rem;
  min-height: 37.5rem;
  background: var(--card-bg-color);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subscription__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subscription__text {
  padding-left: 0.875rem;
  margin-bottom: 0.875rem;
  text-align: justify;
}
.subscription__text::marker {
  content: "+";
}

.third__container {
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  max-width: 75rem;
}

.banner__container {
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.banner__items {
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s;
}
.banner__items--active {
  border-radius: 0.5rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 2s;
}
.banner__items img {
  width: 100%;
  max-width: 22.06rem;
}
.banner__items:hover {
  outline: 5px solid var(--secondary-color);
  transform: scale(1.06);
  transition: outline 1s, transform 1s, opacity 1s;
}
.banner__items:hover .banner--active {
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
}
.banner__items:nth-child(1):hover {
  background-image: url(../../assets/images/hbo-hover_0.webp);
}
.banner__items:nth-child(2):hover {
  background-image: url(../../assets/images/MAX-Hover.webp);
}
.banner__items:nth-child(3):hover {
  background-image: url(../../assets/images/DC-Hover.webp);
}
.banner__items:nth-child(4):hover {
  background-image: url(../../assets/images/WB-Hover.webp);
}
.banner__items:nth-child(5):hover {
  background-image: url(../../assets/images/CN-Hover.png);
}
.banner__items:nth-child(6):hover {
  background-image: url(../../assets/images/UCL-Hover.webp);
}

body {
  background-image: url(../../assets/images/background-movies-series.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 5%;
  transition: background 1s;
}

main {
  padding: 1.5rem;
  width: 100vw;
  max-width: 100%;
  position: relative;
  top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form__container {
  padding: 2.5rem;
  margin: 0 auto;
  height: 70%;
  min-width: 18rem;
  max-height: 26.5rem;
  width: 100%;
  max-width: 50rem;
  background: var(--form-bg-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.login__title {
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.login__email[type=email]:invalid {
  border: 2px solid var(--form-field-error);
}
.login__password[type=password]:invalid {
  border: 2px solid var(--form-field-error);
}

.links__container {
  margin-top: 1.6rem;
  min-width: 18rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2rem;
}
.links__forget a {
  color: var(--link-color);
}
.links__forget a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .title {
    padding: 0;
  }
  .header__container {
    height: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__item.logo img {
    width: 6rem;
  }
  .header__button {
    margin: 0;
  }
  .header__container__right {
    margin-top: 1.8rem;
  }
  .footer__links {
    flex-direction: column;
    gap: 0.3rem 0;
  }
}
@media screen and (max-height: 650px) {
  main {
    top: 3rem;
  }
}

@media (pointer: coarse) {
  .banner__items:hover:hover {
    transform: none;
  }
}

@media screen and (max-width: 1140px) {
  .second__container:has(.card__mobile:hover) .card__multitelas, .second__container:has(.card__multitelas:hover) .card__mobile {
    transform: none;
  }
  .second__container {
    background-image: none;
  }
}
@media (pointer: coarse) {
  .second__container:has(.card__mobile:hover) .card__multitelas, .second__container:has(.card__multitelas:hover) .card__mobile {
    transform: none;
  }
}

@media screen and (max-width: 1140px) {
  .cards__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .cards__container {
    display: flex;
    gap: 3rem;
  }
}

@media screen and (max-width: 1140px) {
  .third__container {
    padding: 2rem;
    margin: 5.5rem 0;
  }
}

@media screen and (max-width: 800px) {
  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .banner__container {
    height: 100%;
    width: 100%;
    max-height: 60rem;
    max-width: 75rem;
    margin: 2.25rem auto;
    padding: 1.5rem;
    grid-template-columns: repeat(6, 100%);
    grid-auto-flow: column;
    overflow: auto hidden;
  }
}

@media screen and (max-width: 800px) {
  .subscription {
    max-width: 92vw;
  }
}
@media screen and (max-width: 480px) {
  .subscription {
    width: 85%;
    min-width: 14rem;
    max-width: 90vw;
    margin: 2rem auto;
    padding: 2.2rem;
  }
  .subscription__header {
    flex-direction: column;
  }
  .subscription__text {
    text-align: left;
  }
}
@media screen and (max-width: 1140px) {
  .subscription {
    width: 37.5rem;
  }
}

@media screen and (max-width: 800px) {
  .divisor {
    height: 0.313rem;
    width: 60vw;
    background: var(--divider-bg-color);
  }
}

@media screen and (max-width: 480px) {
  .banner__items .banner--active .banner__items .banner--active {
    width: 100%;
    height: 100%;
    max-width: 75rem;
    max-height: 60rem;
  }
}

@media screen and (max-width: 480px) {
  .first__container {
    padding: 5rem 2rem 8rem;
    height: 65rem;
    max-height: 65rem;
    margin: 8rem 0 7rem;
  }
  .first__container::after {
    margin: 0;
    bottom: -1rem;
  }
}
@media screen and (max-width: 1200px) {
  .first__container::after {
    margin-top: 5rem;
    height: 8rem;
  }
}

@media screen and (min-height: 611px) {
  .footer {
    top: 10rem;
  }
}
@media screen and (max-width: 350px) and (min-height: 751px) {
  .footer {
    top: 0.3rem;
  }
}

@media screen and (max-width: 480px) {
  body {
    transition: background 1s;
    background-image: none;
  }
}

@media screen and (max-width: 480px) {
  .links__container {
    min-width: 12.5rem;
  }
  .links__signin {
    min-width: 7rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
  }
  .links__forget {
    min-width: 7rem;
    font-size: 0.7rem;
  }
}

@keyframes moveButton {
  0%, 10% {
    transform: rotateZ(0deg);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(10deg);
  }
  35% {
    transform: rotateZ(-10deg);
  }
  40%, 100% {
    transform: rotateY(0deg);
  }
}
@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Custom Scroll */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--tertiary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/*# sourceMappingURL=main.css.map */
