/* ============================================================
   RESPONSIVE FALLBACK — Bloquea el configurador en pantallas < 1024px
   ============================================================ */

.responsive-fallback {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg-app);
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

@media (max-width: 1023px) {
  .responsive-fallback {
    display: flex;
  }

  #app {
    display: none;
  }
}

.responsive-fallback__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  gap: var(--sp-4);
}

.responsive-fallback__icon {
  color: var(--c-text-primary);
  margin-bottom: var(--sp-3);
}

.responsive-fallback__title {
  font-size: var(--text-h5);
  font-weight: var(--fw-medium);
  line-height: var(--lh-display);
  color: var(--c-text-primary);
}

.responsive-fallback__body {
  font-size: var(--text-body2);
  line-height: var(--lh-normal);
  color: var(--c-text-muted);
}

.responsive-fallback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: var(--text-body2);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: opacity 0.15s;
}

.responsive-fallback__btn:hover {
  opacity: 0.88;
}
