html body #globalModal {
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  display: none !important;
  position: fixed !important;
  z-index: 99999 !important;
  left: 0 !important; top: 0 !important; width: 100vw !important; height: 100vh !important;
  background: rgba(0,0,0,0.5) !important;
  justify-content: center !important;
  align-items: center !important;
}
html body #globalModal.modal-open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}
html body #globalModal .modal-content {
  background: #fff !important;
  border-radius: 10px !important;
  padding: 30px 24px 20px 24px !important;
  max-width: 350px !important;
  width: 90vw !important;
  text-align: center !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2) !important;
  font-family: inherit !important;
}
html body #globalModal .modal-content h2 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 1.3em !important;
  color: #333 !important;
  text-shadow: none !important;
  display: block !important;
  width: 100%;
}
html body #globalModal .modal-content #globalModalMsgWrap {
  width: 100% !important;
  display: block !important;
}
html body #globalModal .modal-content p {
  margin: 0 0 24px 0 !important;
  color: #444 !important;
  display: block !important;
}
html body #globalModal .modal-content #globalModalActions {
  margin-top: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
}
html body #globalModal .modal-content .modal-btn {
  position: relative;
  display: inline-block;
  height: 54px;
  margin: 0;
  border-radius: 27px;
  padding: 12px 24px;
  background-color: rgb(108, 153, 14);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: dosis_semi_bold, sans-serif;
  white-space: nowrap;
  border: 2px solid #fff;
  width: 240px;
  transition: background-color 1s;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
html body #globalModal .modal-content .modal-btn:hover {
  background-color: rgb(105, 203, 212);
}

/* Botão primário - Assinar Agora */
html body #globalModal .modal-content .modal-btn-primary {
  background-color: rgb(108, 153, 14);
  color: #fff;
  border: 2px solid rgb(108, 153, 14);
}

html body #globalModal .modal-content .modal-btn-primary:hover {
  background-color: rgb(95, 135, 12);
  border-color: rgb(95, 135, 12);
}

/* Botão secundário - Fechar */
html body #globalModal .modal-content .modal-btn-secondary {
  background-color: transparent;
  color: #666;
  border: 2px solid #ddd;
}

html body #globalModal .modal-content .modal-btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
} 