/* Contenedor general */
#ios-pwa-banner {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  left: 12px;
  right: 12px;
  z-index: 9999;
  display: none;
}


#ios-pwa-banner.show {
  display: block;
}

/* Tarjeta */
.ios-pwa-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  background: rgba(56, 67, 115, 0.95);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  color: #fff;
  backdrop-filter: blur(12px);
  animation: slideUp 0.35s ease-out;
}

/* Animación */
@keyframes slideUp {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Icono de la app */
.ios-pwa-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Bloque de texto */
.ios-pwa-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.35;
}

/* Título */
.ios-pwa-text strong {
  display: block;
  font-size: 18px;      /* más jerarquía */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;  /* separación clara del contenido */
}

/* Texto explicativo */
.ios-pwa-text span {
  font-size: 14px;
  line-height: 1.35;
}

/* Texto enfatizado */
.ios-pwa-text em {
  font-style: normal;
  font-weight: 600;
}

/* Icono compartir (texto) */
.ios-share {
  font-weight: 700;
  padding: 0 2px;
}

/* Botón cerrar */
.ios-pwa-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}