/* CSS extraído do antigo ativacao.php */
#ativacao.ativado {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  width: calc(100% - 20px);
  background: #000;
}
#ativacao.desativado {
  background: #FFF;
}
#ativacao .fundoAtivacao {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#ativacao video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#ativacao .sigilo {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  height: auto;
  overflow: hidden;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  animation: pulsar 4s ease-in-out infinite;
  width: 24%;
  aspect-ratio: 1/1;
  filter: invert(1);
}
#ativacao .sigilo img{
    width: 94%;
    margin: 3%;
}
@keyframes pulsar {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
#ativacao.ativado .ativacao {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  cursor: pointer;
  transition: all .5s ease;
}
#ativacao.ativado .ativacao h4 {
  color: #fff;
  font-size: 1rem;
  transition: all .3s ease;
}
#ativacao .ativacao .ativado h4 {
  color: #fff9b0;
  text-shadow: 0 0 20px gold;
  border: 1px solid gold;
}
#ativacao .ativacao.noRodape {
  top: auto;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
  width: 100%;
}
/* CSS do rodapé de servos */
#rodapeServos {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  transition: bottom .8s ease;
  z-index: 99;
  font-family: sans-serif;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-weight: bold;
  display: block;
}
#rodapeServos .fundoWrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
#rodapeServos video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
  filter: blur(3px);
}
#rodapeServos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .6));
  z-index: 2;
}
#rodapeServos .ativados {
  position: relative;
  z-index: 3;
}
#rodapeServos .titulo {
  font-size: 14px;
  margin: 0 0 10px 10px;
  opacity: .8;
}
#rodapeServos .listaServos {
  display: inline-block;
}
#rodapeServos .servoAtivo {
  display: inline-block;
  align-items: center;
  background: rgba(255, 255, 255, .9);
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 8px;
  transition: transform .3s, background .3s;
  margin: 3px 1px;
  line-height: 19px;
}
#rodapeServos .servoAtivo:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.05);
}
#rodapeServos img {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: multiply;
  margin-right: 5px;
}
#rodapeServos span {
  font-size: 13px;
}
#botaoToggleRodape {
  position: absolute;
  bottom: 0;
  right: 0;
  top: -24px;
  height: 15px;
  z-index: 100001;
  background: rgba(0, 0, 0, .9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px 0 0 0;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 0;
  border-right: 0;
  backdrop-filter: blur(4px);
  transition: all .4s ease;
  opacity: .9;
  font-weight: bold;
}
#botaoToggleRodape:hover {
  opacity: 1;
}
#rodapeServos.minimizado + #botaoToggleRodape {
  bottom: 0 !important;
}
#servoativado {
  size: 18px;
  text-shadow: 0 0 10px #000;
  color: #FFF;
  top: 0;
  position: absolute;
  z-index: 99;
  text-align: center;
  width: 100%;
  font-weight: bold;
  padding: 10px 0;
}