/* Aviso */
.aviso-copia {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);

  max-width: 420px;
  width: calc(100% - 40px);
  padding: 14px 20px;

  background: #7A1F1F;
  border: 1px solid #B65A5A;
  color: #FFF6D8;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;

  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}

.aviso-copia.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.aviso-copia {
  user-select: none;
}