/* ============================================
   SISTEMA DE NOTIFICAÇÕES - 100% SPORTS
   ============================================ */

.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  min-width: 320px;
  max-width: 450px;
  pointer-events: all;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.hide {
  transform: translateX(400px);
  opacity: 0;
}

/* Tipos de Notificação */
.notification-success {
  border-left-color: #84ab32;
}

.notification-error {
  border-left-color: #960000;
}

.notification-warning {
  border-left-color: #F59E0B;
}

.notification-info {
  border-left-color: #666666;
}

/* Ícones */
.notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.notification-success .notification-icon {
  color: #84ab32;
}

.notification-error .notification-icon {
  color: #960000;
}

.notification-warning .notification-icon {
  color: #F59E0B;
}

.notification-info .notification-icon {
  color: #666666;
}

/* Conteúdo */
.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-message {
  font-size: 14px;
  line-height: 1.5;
  color: #1A1A1A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  word-wrap: break-word;
}

/* Botão Fechar */
.notification-close {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666666;
  transition: color 0.2s ease;
  font-size: 14px;
}

.notification-close:hover {
  color: #1A1A1A;
}

/* Responsivo */
@media (max-width: 768px) {
  .notifications-container {
    top: 10px;
    right: 10px;
    left: 10px;
    align-items: stretch;
  }

  .notification {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}

/* Animação de Pulso para Ícone */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.notification.show .notification-icon i {
  animation: pulse 0.6s ease-out;
}
