.parcelado{
    color: #fff; 
    margin-top: 10px;
    text-align: center;
    font-weight: bolder;
}
.parcelado2{
    color: #000; 
    margin-top: 10px;
    text-align: center;
    font-weight: bolder;
}
.notificacao-fake {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #222;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  z-index: 99999;
}
.notificacao-fake.show {
  opacity: 1;
  transform: translateY(0);
}
.icone {
  background-color: #28c76f;
  color: black;
  font-weight: bold;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plano {
  background-color: #e5391f;
  padding: 2px 6px;
  border-radius: 5px;
  margin: 0 4px;
}