/* Estilo aplicado a popup */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
}

#popup-aviso {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

#popup-aviso.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.swal-aviso img {
  width: 64px;
  margin-bottom: 15px;
  height: auto;
}

.swal-aviso p {
  font-size: 16px;
  color: #c00;
  margin-bottom: 0px;
}

.swal-botao-vermelho {
  background: #d33;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  background-color: #c00 !important;
  color: #fff !important;  
}

.swal-botao-vermelho:hover {
  background: #b52a2a;
}

.swal-aviso {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.swal-title-vermelho {
  color: #c00;
  font-weight: bold;
}

