#rodape-sobre > span{
  display: none !important;
}
/* Estilo para o conteúdo da pop-up */
.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  animation: popup-entrance 0.5s ease-in-out;
}

/* Animação de entrada da pop-up */
@keyframes popup-entrance {
  0% {
    transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}

/* Animação de saída da pop-up */
@keyframes popup-exit {
  0% {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale3d(0.3, 0.3, 0.3) translate(-50%, -50%);
    opacity: 0;
  }
}

/* Estilo para o botão de fechar */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #A893C6;
  cursor: pointer;
}

/* Estilo para o título da pop-up */
.popup-title {
  font-size: 32px;
  font-weight: bold;
  color: #9CD5DD;
  margin-bottom: 20px;
}

/* Estilo para o formulário da pop-up */
.popup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Estilo para o campo de e-mail */
.popup-email {
  width: 100%;
  max-width: 300px;
  border: none;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Estilo para o botão de inscrição */
.popup-submit {
  background-color: #A893C6;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Estilo para o botão de inscrição ao passar o mouse */
.popup-submit:hover {
  background-color: #9CD5DD;
}

/* Estilo para o overlay da pop-up */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: popup-exit 0.5s ease-in-out forwards;
  animation-delay: 5s; /* tempo de delay para a animação
  div#cabecalho {
    background-image: url(https://cdn.awsli.com.br/1986/1986171/arquivos/design-sem-nome--18-.png) !important;
    background-position: top !important;
    
