body {
  width: 100vw;
  height: 100vh;
  gap: 0px;
  opacity: 0px;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.9)
    ),
    url(assets/img/backgraund.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1200px;
  padding: 20px;
  margin-bottom: 20px;
}

.logo img {
  max-width: 100%;
  order: 1;
  width: 166px;
  height: 80px;
  padding: 0px;
  gap: 0px;
  opacity: 0px;
}

.redes-sociais {
  display: flex;
  order: 2;
  padding: 12px;

  width: 232px;
  height: 40px;
  gap: 26px;
  transition: transform 0.3s ease;
}

.redes-sociais img:hover {
  transform: scale(1.3);
}

.conteudo {
  margin-top: 10%;
  width: 1200px;
  height: 450px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.grupo-descricao {
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 27.24px;
  text-align: left;
  color: #ffffff;
}

.titulo-destaque {
  font-family: Andada Pro, serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 70.4px;
  text-align: left;
  color: #ffffff;
}

.sinopse {
  font-family: Archivo, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
}

.botoes {
  display: flex;
  justify-content: left;
  width: 35%;
  margin-bottom: 20%;
}

button:last-child {
  margin-right: 0;
}

.imagem-ilustracao img {
  border-radius: 40px;
  width: 574px;
  height: 540px;
}

button {
  border: 2px solid #f1a5b1;
  background-color: transparent;
  padding: 14px 32px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  margin-left: 10px;

  color: #ffffff;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.09px;
  text-align: center;
}

.assiste-filme,
.assiste-trailer {
  border: 2px solid #f1a5b1;
}

button:hover {
  background: #f1a5b1;
  color: #0b0a0a;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.09px;
  text-align: center;
}

/* Estilos da modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modal-content iframe {
  width: 80%;
  height: 80%;
}

.close {
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

/* Estilos para dispositivos móveis */
@media only screen and (max-width: 768px) {
  .conteudo {
    margin-top: 5%;
    width: 90%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .imagem-ilustracao img {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 20px;
  }

  .botoes {
    width: 100%;
    margin-bottom: 10%;
  }

  button {
    padding: 12px 24px;
    margin: 0;
  }
}
