/* Barra utilitária */
.utility-bar {
  overflow: hidden;
  background-color: #EF5323 !important;
  margin: 0;
  display: flex;
  align-items: center;
  height: 40px;
  font-family: inherit; /* Usa fonte do tema */
  color: #fff;
}

/* Container da mensagem */
.message-container {
  position: relative;
  width: 100%;
  height: 24px;
  overflow: hidden;
}

/* Mensagens animadas */
.message {
  position: absolute;
  width: 100%;
  text-align: end !important;
  padding-right: 2rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
  white-space: nowrap;
  transition: none;
}

.message.active {
  animation: slideIn 0.6s ease forwards;
  z-index: 1;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* Redes sociais */
.wub-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.wub-social-icons a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.wub-social-icons a:hover {
  color: #000; /* Cor de hover (preto, pode trocar por #FFD700 ou outra) */
  transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 767px) {
  .utility-bar {
    height: auto;
    flex-direction: column;
    padding: 6px 10px;
    text-align: center;
  }

  .message-container {
    margin-bottom: 6px;
  }

  .wub-social-icons {
    justify-content: center;
    gap: 16px;
  }

  .wub-social-icons a {
    font-size: 1.2rem; /* Ícones maiores no mobile */
  }
}
