/* ============ Notice Banner (compartilhado landing + app) ============ */
.notice-banner {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 44px 10px 20px;
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 6px 14px rgba(0,0,0,0.12);
  letter-spacing: 0.005em;
}
.notice-banner-positive {
  background: linear-gradient(90deg, #2c6e58 0%, #3a8f72 50%, #2c6e58 100%);
}
.notice-banner-warning {
  background: linear-gradient(90deg, #b15a3a 0%, #d77756 50%, #b15a3a 100%);
}
.notice-banner.is-hidden { display: none; }
.notice-banner-text {
  flex: 0 1 auto;
  max-width: 1100px;
}
.notice-banner-text strong { font-weight: 700; }
.notice-banner-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  line-height: 1;
  z-index: 1;
}
.notice-banner-close:hover { background: rgba(0,0,0,0.36); }
.notice-banner-close:focus-visible { outline: 2px solid rgba(255,255,255,0.7); outline-offset: 2px; }
@media (max-width: 640px) {
  .notice-banner { font-size: 12.5px; padding: 9px 40px 9px 14px; gap: 8px; }
  .notice-banner-close { width: 26px; height: 26px; font-size: 17px; right: 8px; }
}
