* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #1a1a2e;
  color: #fff;
  line-height: 1.6;
}

.header {
  max-width: 1500px;
  margin: 0 auto;
  color: #ff7eb3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.header a {
  color: #ff7eb3;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu ul li a {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.menu ul li a:hover {
  background: #ff7eb3;
  color: #1a1a2e;
}

.main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.noticias {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ff7eb3;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.grid-noticias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
}

.noticia-link {
  text-decoration: none;
  color: inherit;
}

.noticia {
  background-color: rgba(26, 26, 46, 0.9);
  border-left: 4px solid #ff7eb3;
  border-radius: 6px;
  padding: 1rem;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.noticia h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffb3d9;
}

.noticia p {
  font-size: 1rem;
  line-height: 1.5;
}

.noticia-link:hover .noticia {
  background-color: rgba(26, 26, 46, 0.8);
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 1rem 0;
}

section {
  margin: 3rem 0;
}

.history {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ff7eb3;
  padding: 2rem;
  border-radius: 8px;
}

.history p {
  margin-bottom: 2rem;
}

h2 {
  color: #ff7eb3;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
}

p {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ff7eb3;
  font-size: 1.2rem;
  padding: 1.5rem;
  letter-spacing: 0.05rem;
  line-height: 1.8;
  border-radius: 8px;
}

.protagonista {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 8px;
  flex-wrap: wrap;
}

.sung {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sung img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.prota {
  width: 100%;
  max-width: 800px;
  color: #ff7eb3;
}

.prota p {
  margin-bottom: 2rem;
}

.temporada {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ff7eb3;
  padding: 2rem;
  border-radius: 8px;
}

.temporada h2 {
  margin-top: 2rem;
}

.trailer {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Mantém proporção 16:9 */
  height: 0;
  margin-top: 3rem;
}

.trailer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ff7eb3;
  border-radius: 16px;
}

.footer {
  color: #ff7eb3;
  background-color: rgba(0, 0, 0, 0.9);
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-radius: 8px 8px 0 0;
}

/* Responsividade */

@media (max-width: 1427px) {
  .protagonista {
    justify-content: center;
  }

  .sung {
    max-width: 50%;
  }

  .prota {
    max-width: 100%;
  }

  .grid-noticias {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .menu ul {
    justify-content: center;
  }

  .protagonista {
    flex-direction: column;
  }

  .sung,
  .prota {
    max-width: 100%;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .grid-noticias {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header a {
    font-size: 1.5rem;
  }

  .menu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .menu ul li a {
    font-size: 1rem;
    padding: 0.5rem;
  }

  h2 {
    font-size: 1.6rem;
    padding: 0.5rem;
  }

  p {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .trailer iframe {
    width: 100%;
    height: auto;
  }
}
