 /* Banner de Notificação no Topo */
 .top-notification-bar {
     width: 100%;
     padding: 12px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     font-family: 'Inter', sans-serif;
     box-sizing: border-box;
     transition: background-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
     position: relative;
     z-index: 10000;
 }

 .top-notification-bar.hidden {
     display: none;
 }

 .notification-content {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .notif-title {
     font-size: 0.88rem;
     font-weight: 700;
     color: #111111;
 }

 .notif-message {
     font-size: 0.80rem;
     font-weight: 500;
     color: #1f1f1f;
     line-height: 1.3;
 }

 .notif-close-btn {
     background: transparent;
     border: none;
     font-size: 0.82rem;
     font-weight: 700;
     color: #111111;
     cursor: pointer;
     padding: 4px 8px;
     border-radius: 6px;
     transition: background 0.2s;
     white-space: nowrap;
 }

 .notif-close-btn:hover {
     background: rgba(0, 0, 0, 0.08);
 }