/* Estilo geral do popup */
.popup-notificacao {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 380px;
  width: 90%;
}

/* Container principal com layout fluido */
.popup-content {
  background: #FCF5F1;
  box-shadow: 0px -5px 35.4px rgba(0, 0, 0, 0.05);
  border-radius: 26px;
  padding: 24px 20px;

   height: 240px;
  position: relative;
  text-align: center;
  font-family: 'Mulish', sans-serif;
}

/* Ícone de notificação */
.popup-icon {
  font-size: 32px;
  color: #EB0C30;
  display: inline-block;
}

/* Título */
.popup-titulo {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #EB0C30;
  margin-bottom: 10px;    
  display: flex;
  justify-content: center;
}

/* Texto */
.popup-texto {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #141420;
  margin-bottom: 20px;
}


/* Área dos botões */
.popup-botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  width: 270px;
  height: 40px;
  left: calc(50% - 136px);
  top: 150px;
  flex-wrap: wrap;
}

.popup-botoes a,
.popup-botoes button {
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.popup-botoes button {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #333;
}

.popup-botoes a {
  background-color: #5168e0;
  color: white;
}

/* Botão de fechar */
.popup-fechar {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
  color: #aaa;
  font-weight: bold;
}