/* =============== BLOQUEADOR DE ESCRITORIO =============== */
:root {
  --app-bg: #f9f9f9;
}

body {
  background-color: var(--app-bg) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#desktop-blocker {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #333;
  z-index: 99999;
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
}

#desktop-blocker.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.blocker-content {
  max-width: 400px;
}

.blocker-logo {
  width: 90px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#desktop-blocker h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primario, #e17da7);
  margin-bottom: 10px;
}

#desktop-blocker p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.payment-whatsapp-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.payment-whatsapp-btn img {
  width: 18px;
  height: 18px;
}

.payment-whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.payment-whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}
