/* ============================================================
   POPUP COMPARTILHADO · Guia do Pobre
   Convite para o grupo de WhatsApp de descontos e dicas.
   Edite SOMENTE este arquivo para mudar o visual do popup do site todo.
   HTML em /partials/popup.html · Lógica em /popup.js
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: gdpFadeIn 0.3s ease;
}
.popup-overlay.show { display: flex; }
@keyframes gdpFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gdpPopIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-box {
  background: #161616;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 36px 28px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: gdpPopIn 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(245,166,35,0.1);
  font-family: 'Barlow', sans-serif;
}
.popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #777;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  font-size: 14px;
}
.popup-close:hover { color: #ede9e0; background: #2f2f2f; }
.popup-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.popup-icon svg { width: 30px; height: 30px; color: #fff; }
.popup-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: #f5a623;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.popup-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ede9e0;
}
.popup-box h3 em { color: #f5a623; font-style: italic; }
.popup-box p {
  font-size: 14px; color: #999;
  line-height: 1.6; margin-bottom: 22px;
}
.popup-submit {
  width: 100%;
  background: #f5a623;
  color: #000 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Barlow', sans-serif;
  text-decoration: none !important;
}
.popup-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.popup-submit:hover { background: #ffb84d; transform: translateY(-1px); }

.popup-submit--whatsapp {
  background: #25d366;
  color: #fff !important;
}
.popup-submit--whatsapp:hover { background: #20bd5a; }
.popup-footer {
  margin-top: 14px;
  font-size: 11px; color: #777;
}
