
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #61ba6d, #83c331);
  padding: 10px 20px;
  position: relative;
  min-height: 40px;
}

.announcement-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-bar__title {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}

.announcement-bar__text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.announcement-bar__link {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.announcement-bar__link:hover {
  opacity: 0.8;
}

.announcement-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__close:hover {
  opacity: 0.7;
}

.page-body {
  min-height: calc(100vh - 40px);
  background-color: #ffffff;
}

/* Responsividade */
@media (max-width: 600px) {
  .announcement-bar {
    padding: 10px 40px 10px 16px;
  }

  .announcement-bar__content {
    gap: 4px;
  }

  .announcement-bar__title,
  .announcement-bar__text,
  .announcement-bar__link {
    font-size: 12px;
  }
}