h1 {
  font-size: 52px;
}

.hero-cast {
  background-image: url("../img/bg-hero-partners.webp");
  background-size: cover;
  /* Substitua pelo caminho da sua imagem de fundo */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Ajuste a altura conforme necessário */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
}

.o-maior {
  font-size: 3em;
  line-height: 0.9em;
  text-transform: uppercase;
  font-weight: bold;
  color: #323232;
  text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white,
    -1px 1px 0 white;
  display: inline-block;
}

.podcast {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.infraestrutura {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.do-brasil {
  font-size: 2.5em;
  line-height: 0.9em;
  text-transform: uppercase;
  font-weight: bold;
  color: #323232;
  text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white,
    -1px 1px 0 white;
  display: inline-block;
}

.temp-link {
  font-size: 2em;
}

/* Estilos para o layout */
#video-thumbnail {
  position: relative;
  width: 100%;
  height: 415px;
  background-color: #000;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#video-thumbnail:hover {
  box-shadow: 0px 0px 10px 4px var(--first_orange);
  -webkit-box-shadow: 0px 0px 10px 4px var(--first_orange);
  -moz-box-shadow: 0px 0px 10px 4px var(--first_orange);
}

#play-button {
  background: var(--first_orange);
  width: 100px;
  height: 100px;
  border-radius: 100px;
  text-align: center;
  align-items: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.4s ease-in-out;
  font-size: 36px;
}

#play-button:hover {
  background: var(--second_orange);
  width: 110px;
  height: 110px;
  font-size: 40px;
  box-shadow: 0px 0px 22px -2px var(--second_orange);
  -webkit-box-shadow: 0px 0px 22px -2px var(--second_orange);
  -moz-box-shadow: 0px 0px 22px -2px var(--second_orange);
}

#play-button p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  cursor: pointer;
  margin-left: 4px;
}

.hyperwave {
  font-size: 104px;
}

/* Estilos para a modal */
#video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

#video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

#close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.temporadas h1 {
  font-size: 3.5rem;
}

.temporadas p {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}

.temporadas a {
  padding: 8px 32px;
}

@media (max-width: 992px) {
  #video-thumbnail {
    height: 205px;
  }

  h1 {
    font-size: 28px;
  }
}