/* Modal gerenciado pelo painel /admin */
html.site-modal-open,
html.site-modal-open body {
  overflow: hidden !important;
  height: 100% !important;
}
.site-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden !important;
}
.site-modal-box {
  position: relative;
  width: auto;
  max-width: min(92vw, 1050px);
  max-height: 92vh;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.site-modal-content {
  max-width: 100%;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.site-modal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1050px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
}
.site-modal-content.has-text .site-modal-image {
  max-height: calc(92vh - 150px);
  border-radius: 12px 12px 0 0;
}
.site-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 25px;
  line-height: 38px;
  cursor: pointer;
}
.site-modal-close:hover { background: rgba(0, 0, 0, 0.96); }
.site-modal-text {
  width: 100%;
  max-width: min(92vw, 1050px);
  padding: 18px 22px 20px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.site-modal-title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  color: #111;
}
.site-modal-message {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #333;
  white-space: pre-line;
}
.site-modal-button {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  background: #ffca00;
  color: #111 !important;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
}
.site-modal-timer {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(60, 186, 255, 0.95);
  background: rgba(0, 18, 36, 0.50);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  cursor: default;
  box-shadow: 0 0 24px rgba(60, 186, 255, 0.25);
}
.site-modal-timer span {
  display: block;
  transform: translateY(1px);
}
.site-modal-timer:disabled {
  opacity: 1;
}
@media (max-width: 900px) {
  .site-modal-overlay { padding: 14px; }
  .site-modal-box { max-width: 94vw; max-height: 86vh; }
  .site-modal-content { max-height: 86vh; }
  .site-modal-image { max-width: 94vw; max-height: 86vh; }
  .site-modal-content.has-text .site-modal-image { max-height: calc(86vh - 135px); }
  .site-modal-close { top: -12px; right: -10px; width: 36px; height: 36px; line-height: 36px; }
  .site-modal-timer { right: 12px; bottom: 12px; width: 46px; height: 46px; }
}
@media (max-width: 520px) {
  .site-modal-overlay { padding: 10px; }
  .site-modal-box { max-width: 96vw; max-height: 84vh; }
  .site-modal-content { max-height: 84vh; }
  .site-modal-image { max-width: 96vw; max-height: 84vh; border-radius: 10px; }
  .site-modal-title { font-size: 22px; }
  .site-modal-text { padding: 15px; }
  .site-modal-timer { right: 10px; bottom: 10px; width: 44px; height: 44px; font-size: 18px; }
}
