
  /* ===== CONTAINER ===== */
  .Vue-Toastification__container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
  }

  /* ===== TOAST ===== */
 .Vue-Toastification__toast {
  display: flex;
  align-items: center;
  background: #51b52e;
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
  margin-top: 8px;
  min-width: 220px;
  max-width: 280px;
  height: 5vh;   
  animation: slideUp 0.4s ease forwards, fadeOut 0.5s ease 3.8s forwards;
  position: relative;
  pointer-events: all;
  overflow: hidden;
}

  /* ===== ANIMAÇÕES ===== */
   @keyframes slideUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeOut {
    to {
      transform: translateY(40px);
      opacity: 0;
    }
  }

  /* ===== NOVA ANIMAÇÃO DE PULO ===== */
   @keyframes bounceIn {
    0% {
      transform: translateY(120%) scale(0.9);
      opacity: 0;
    }
    50% {
      transform: translateY(-25px) scale(1.08);
      opacity: 1;
    }
    70% {
      transform: translateY(10px) scale(0.96);
    }
    85% {
      transform: translateY(-5px) scale(1.02);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }

  /* ===== ÍCONE ===== */
  .Vue-Toastification__icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
  }

  /* ===== TEXTO ===== */
  .Vue-Toastification__toast-body {
    flex-grow: 1;
    font-family: Lato, Helvetica, Roboto, Arial, sans-serif;
    font-size: 16px;
    word-break: break-word;
    white-space: pre-wrap;
  }

  /* ===== BOTÃO FECHAR ===== */
  .Vue-Toastification__close-button {
    background: none;
    border: none;
    color: #e7e4e4;
    font-size: 14px;
    margin-left: 0px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
    line-height: 1;
    margin-top: 0px;
    width: 20px;
    font-size: 20px;
  }

  .Vue-Toastification__close-button:hover {
    opacity: 1;
  }

  /* ===== PROGRESS BAR ===== */
  .Vue-Toastification__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    animation: progress 1s linear forwards;
  }

  @keyframes progress {
    from { width: 100%; }
    to { width: 0%; }
  } 

  /* ===== BOTÃO DEMO ===== */
  button {
    margin-top: 120px;
    padding: 10px 22px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
  }

  button:hover {
    background: #218838;
  }
