/* pwa-install.css - UI del popup de instalación (Solutecno Argentina) */

.pwa-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.pwa-backdrop.is-open{ display:flex; }

.pwa-modal{
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(229,231,235,.9);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  transition: all .18s ease;
}

.pwa-backdrop.is-open .pwa-modal{
  transform: translateY(0);
  opacity: 1;
}

.pwa-head{
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(154,216,13,.95) 0%, rgba(185,240,32,.95) 100%);
  border-bottom: 1px solid rgba(255,255,255,.55);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.pwa-title{
  margin:0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
  color:#0B1220;
}

.pwa-close{
  border: 0;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.55);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  color:#0B1220;
}

.pwa-body{
  padding: 16px;
}

.pwa-body h3{
  margin:0 0 8px 0;
  font-size: 18px;
  font-weight: 900;
  color:#0B1220;
}

.pwa-body p{
  margin: 0 0 12px 0;
  color:#4B5563;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.pwa-steps{
  margin: 0 0 14px 0;
  padding-left: 18px;
  color:#374151;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.pwa-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
}

.pwa-note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(154,216,13,.14);
  border: 1px solid rgba(154,216,13,.26);
  color: rgba(11,18,32,.78);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

body.pwa-modal-open{
  overflow:hidden;
}