/* Popup de checkout do plugin Doações Amigos do Bem */

.adbd-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 10, 5, 0.7);
  backdrop-filter: blur(4px);
  font-family: 'Montserrat', system-ui, sans-serif;
}
.adbd-popup.is-open { display: flex; }

.adbd-popup__card {
  width: min(440px, 100%);
  background: #fff;
  color: #2B2B2B;
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  max-height: 92vh;
  overflow-y: auto;
}
.adbd-popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.07);
  border: 0; border-radius: 50%;
  color: #2B2B2B; font-size: 16px;
  cursor: pointer; transition: background 0.2s;
}
.adbd-popup__close:hover { background: rgba(0,0,0,0.12); }
.adbd-popup__title {
  font-family: 'Metrisch', 'Inter', sans-serif;
  font-size: 24px; font-weight: 900; letter-spacing: -0.02em;
  margin: 0 0 16px; color: #143F43;
}
.adbd-popup__summary {
  background: #FFF1E7;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
}
.adbd-popup__summary strong { color: #FF6B00; font-size: 20px; }
.adbd-popup__field { margin-bottom: 14px; }
.adbd-popup__field label {
  display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px; color: #6B6B6B;
}
.adbd-popup__field input {
  width: 100%; padding: 12px 14px;
  border: 1px solid #E5E1DC; border-radius: 12px;
  font-size: 15px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.adbd-popup__field input:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.adbd-popup__submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; min-height: 52px; margin-top: 8px;
  background: #0047BA; color: #FFD900;
  border: 0; border-radius: 999px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.adbd-popup__submit:hover:not(:disabled) { background: #003896; transform: translateY(-1px); }
.adbd-popup__submit:disabled { opacity: 0.6; cursor: wait; }
.adbd-popup__error {
  background: #FEF3F2; color: #B42318;
  padding: 12px 14px; border-radius: 10px;
  font-size: 13px; margin-top: 12px;
  border: 1px solid #FECDCA;
}
.adbd-popup__secure {
  text-align: center; font-size: 12px; color: #6B6B6B;
  margin-top: 14px; display: flex; gap: 6px; justify-content: center;
}
