/* Overlay escura */
#maximus-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Caixa do popup */
#maximus-popup {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
#maximus-popup h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#maximus-popup .buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}


#maximus-popup .btn {
  padding: 10px 20px;
  border: none;
  background: #FFD100;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}
#maximus-popup .btn-secondary {
  background: #ccc;
}
#maximus-popup .btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  #maximus-popup .buttons {
    flex-direction: column;
}
#maximus-popup .btn {
    font-size: 14px;
}
#maximus-popup h2 {
  font-size: 18px;
}
}
