#logic-popup {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 18px 24px;
  display: none;
  font-family: "Inter", "Segoe UI", sans-serif;
  width: 340px;
  z-index: 99999;
  border-left: 6px solid #0095D5;
  animation: slideIn 0.5s ease-out;
}

#logic-popup.show {
  display: block;
}

#logic-popup.hide {
  animation: slideOut 0.4s ease-in forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(40px); }
}

#logic-popup .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#logic-popup .content {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logic-popup .icon {
  display: inline-block;
  background: #0095D5;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
}

#logic-popup .text-group {
  display: flex;
  flex-direction: column;
}

#logic-popup .company {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

#logic-popup .message {
  font-size: 0.9rem;
  color: #374151;
  margin-top: 2px;
}

#logic-popup .tag {
  background: #0095D5;
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 8px;
}

#logic-popup .close-btn {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

#logic-popup .close-btn:hover {
  color: #111827;
}

/* Responsivo */
@media (max-width: 768px) {
  #logic-popup {
    width: 90%;
    right: 5%;
    bottom: 80px;
  }
}
