#video-institucional-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius, 0.5rem);
  overflow: hidden;
  background: #000;
}

#video-institucional-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

#video-play-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  background: rgba(17, 46, 63, 0.55);
  color: var(--white, #fff);
  transition: background .2s;
}

#video-play-button:hover {
  background: rgba(17, 46, 63, 0.68);
}

#video-play-button[hidden] {
  display: none;
}

#video-play-button .play-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--blue, #0050c7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#video-play-button .play-circle svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--white, #fff);
  margin-left: 0.2rem;
}

#video-play-button span.play-label {
  font-weight: var(--strong);
  background: rgba(0, 0, 0, .55);
  padding: 0.35rem 0.65rem;
  border-radius: 0.3rem;
}

#video-mute-button {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(17, 46, 63, 0.55);
  color: var(--white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

#video-mute-button[hidden] {
  display: none;
}

#video-hint {
  opacity: .72;
}

#video-fallback {
  border: 1px solid var(--line);
  border-radius: var(--radius, 0.5rem);
  padding: 1rem 1.15rem;
  background: var(--white);
}

#video-fallback p {
  margin: 0;
}

#video-fallback button {
  margin-top: 0.75rem;
}

#form-candidatura[hidden] {
  display: none;
}
