@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
#trailer, #personagens, #imagens, #trilha, #premios {
  scroll-margin-top: 80px;
  max-width: 80%;
  background: #3a6cc7;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 15px;
}

#trailer .section-title, #personagens .section-title, #imagens .section-title, #trilha .section-title, #premios .section-title {
  text-transform: uppercase;
  text-align: center;
  border-bottom: 3px solid #FFD400;
  color: #fff;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

header {
  background: #3a6cc7;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
header input[type=checkbox] {
  display: none;
}
header .menu-icon {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  padding: 1rem;
}
header nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
header nav ul a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 20px;
  border: 2px solid transparent;
}
header nav ul a:hover {
  border: 2px solid #FFD400;
  border-radius: 20px;
  transition: all 0.2s ease-in;
}
header img {
  width: 40px;
  height: auto;
  margin: 0.8rem;
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }
  header .menu-icon {
    display: block;
  }
  header input[type=checkbox]:checked + .menu-icon + .menu .menu-principal {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
  }
  header .menu-principal,
  header .menu-secundario {
    width: 100%;
    flex-direction: column;
    background: #3a6cc7;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
  }
  header .menu-principal ul,
  header .menu-secundario ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.5rem;
  }
  header .menu-principal ul li,
  header .menu-secundario ul li {
    width: 100%;
  }
  header .menu-principal ul li a,
  header .menu-secundario ul li a {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
  header .menu-secundario {
    margin-left: 0;
  }
}

.menu {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.menu .menu-principal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.menu .menu-secundario {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 950px) {
  .menu .menu-secundario {
    display: none;
  }
}

#inicio {
  scroll-margin-top: 80px;
}

#sinopse {
  max-width: 80%;
  margin: 6rem auto;
  display: grid;
  grid-template-columns: 2fr minmax(200px, 30vw);
  grid-template-rows: auto auto auto;
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
}
#sinopse .title-img {
  grid-area: 1/1/2/2;
  width: clamp(200px, 100%, 300px);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
#sinopse .sinopse-title {
  grid-area: 2/1/3/2;
}
#sinopse .sinopse-text {
  grid-area: 3/1/4/2;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 120%;
  letter-spacing: 0.5px;
}
#sinopse .movie-poster {
  grid-area: 1/2/4/3;
  width: clamp(200px, 100%, 300px);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  border-radius: 15px;
}
@media (max-width: 768px) {
  #sinopse {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-column-gap: 0;
    grid-row-gap: 1rem;
  }
  #sinopse .movie-poster {
    grid-area: 1/1/2/2;
    margin: 0 auto;
  }
  #sinopse .title-img {
    grid-area: 2/1/3/2;
    margin: 0 auto;
  }
  #sinopse .sinopse-title {
    grid-area: 3/1/4/2;
    text-align: center;
  }
  #sinopse .sinopse-text {
    grid-area: 4/1/5/2;
    text-align: justify;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #sinopse {
    max-width: 90%;
    margin: 6rem auto;
  }
  #sinopse .title-img,
  #sinopse .movie-poster {
    width: 100%;
  }
}

#trailer {
  display: flex;
  flex-direction: column;
}
#trailer .video-frame {
  margin: 1.5rem auto;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
#trailer .video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#personagens {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#personagens .characters-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media (max-width: 768px) {
  #personagens .characters-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  #personagens .characters-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#personagens .character-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem auto;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 0 0.2rem #fff;
  width: clamp(150px, 100%, 250px);
}
#personagens .character-card img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#personagens .character-card .character-name {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: bold;
  color: #000;
}
#personagens .character-card .character-description {
  margin: 0.5rem 0.8rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 120%;
  letter-spacing: 0.2px;
  text-align: center;
  color: #000;
}
@media (min-width: 769px) {
  #personagens .herc:hover {
    background: url("../images/halter.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
  #personagens .fil:hover {
    background: url("../images/lira.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
  #personagens .hades:hover {
    background: url("../images/fogo.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
  #personagens .meg:hover {
    background: url("../images/flor.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
  #personagens .zeus:hover {
    background: url("../images/raio.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
  #personagens .pegaso:hover {
    background: url("../images/asas.svg") center/cover repeat;
    background-size: 20%;
    background-color: #fff;
    animation: thunder-flash 0.5s ease-in-out 3;
  }
  @keyframes thunder-flash {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.9;
    }
  }
}

#imagens .movie-img-container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  justify-items: center;
}
@media (max-width: 768px) {
  #imagens .movie-img-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  #imagens .movie-img-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#imagens .movie-img-container .movie-img-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem 1rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  width: clamp(150px, 100%, 250px);
}
#imagens .movie-img-container .movie-img-card img {
  width: 100%;
  height: 125px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  border: 0.1rem solid #fff;
}
@media (min-width: 769px) {
  #imagens .movie-img-container .movie-img-card img:hover {
    transform: scale(1.3);
  }
}

#trilha .section-text,
#trilha li {
  margin: 1rem auto;
  text-align: left;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 120%;
  letter-spacing: 0.5px;
}
#trilha .songs {
  text-align: center;
}
#trilha .tracks-container {
  margin: 1.5rem 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-items: center;
  grid-auto-flow: dense;
}
#trilha .audio-container {
  width: 240px;
  margin: 1.5rem auto;
  text-align: center;
}
#trilha audio {
  width: 95%;
}

#premios .section-subtitle {
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
#premios ul {
  margin-left: 1.5rem;
  list-style: none;
  padding-left: 0;
}
#premios ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 120%;
  letter-spacing: 0.5px;
  color: #fff;
}
#premios ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: #FFD400;
  font-weight: bold;
}
#premios ul li ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}
#premios ul li ul li::before {
  content: "–";
  color: #83b3e9;
}

footer {
  font-size: clamp(0.9rem, 2vw, 1rem);
  background: #3a6cc7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  text-align: center;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  max-width: 80%;
  border-radius: 15px;
}
footer p {
  margin: 0.4rem 0;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  color: #FFD400;
  border-radius: 20px;
  transition: all 0.2s ease-in;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #83b3e9;
  position: relative;
  color: #fff;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: url("../images/bg-texture.png");
  background-repeat: repeat;
  background-size: contain;
  z-index: -1;
}/*# sourceMappingURL=index.css.map */