.urgencia-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d9534f;
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  z-index: 9999;
  display: none; /* inicia oculto */
  opacity: 0;
  animation: fadeIn 0.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 3px solid #fff; /* borda branca superior */
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2); /* sombra superior */
  border-radius: 8px 8px 0 0; /* cantos arredondados superiores */
}

.urgencia-banner a {
  color: white;
  text-decoration: underline;
  margin-left: 1rem;
  font-weight: bold;
}

.urgencia-banner .fechar-banner {
  margin-left: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .urgencia-banner {
    font-size: 0.95rem;
    padding: 0.75rem;
    flex-direction: column;
  }

  .urgencia-banner a {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .urgencia-banner .fechar-banner {
    position: absolute;
    top: 5px;
    right: 10px;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
