.vip-alertas-conteudo-toast {
  position: fixed;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 73, 158, 0.36);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 47, 127, 0.12), rgba(10, 10, 10, 0.96)),
    rgba(12, 12, 12, 0.96);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(255, 47, 127, 0.16);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.vip-alertas-conteudo-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.vip-alertas-conteudo-toast.is-bottom-left {
  left: 20px;
  bottom: 20px;
}

.vip-alertas-conteudo-toast.is-bottom-right {
  right: 20px;
  bottom: 20px;
}

.vip-alertas-conteudo-toast.is-top-left {
  left: 20px;
  top: 20px;
}

.vip-alertas-conteudo-toast.is-top-right {
  right: 20px;
  top: 20px;
}

.vip-alertas-conteudo-toast__image {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 73, 158, 0.35);
  border-radius: 999px;
  background: #14060d;
}

.vip-alertas-conteudo-toast__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-alertas-conteudo-toast__body {
  min-width: 0;
  flex: 1 1 auto;
}

.vip-alertas-conteudo-toast__title {
  display: block;
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.vip-alertas-conteudo-toast__message {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.vip-alertas-conteudo-toast__message strong {
  color: #ff9ccc;
  font-weight: 900;
  font-style: italic;
}

.vip-alertas-conteudo-toast__link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  font-size: 0;
}

.vip-alertas-conteudo-toast__close {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 73, 158, 0.3);
  border-radius: 999px;
  background: rgba(255, 47, 127, 0.16);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.vip-alertas-conteudo-toast__close:hover {
  background: #ff2f7f;
}

@media (max-width: 680px) {
  .vip-alertas-conteudo-toast {
    right: 14px;
    left: 14px;
    width: auto;
    padding: 13px;
  }

  .vip-alertas-conteudo-toast.is-bottom-left,
  .vip-alertas-conteudo-toast.is-bottom-right {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .vip-alertas-conteudo-toast.is-top-left,
  .vip-alertas-conteudo-toast.is-top-right {
    top: 14px;
    right: 14px;
    left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vip-alertas-conteudo-toast {
    transition: none;
  }
}
