/* ================================
   MOBILE BASE (REAL 🔥)
================================ */

body {
  display: flex;
  flex-direction: column;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 90dvh;
}

/* ================================
   TOPBAR
================================ */
.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  padding: 10px 12px;
  font-size: 11px;
  font-family: var(--font-ui);
  gap: 6px;
}

.topbar .left,
.topbar .right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .center {
  order: 3;
  width: 100%;
  text-align: center;
  opacity: 0.8;
}

/* ================================
   MAIN
================================ */
.container {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;
  text-align: center;

  padding: 16px 12px;
}

/* ================================
   HERO
================================ */
.hero .big {
  font-size: clamp(36px, 12vw, 56px);
}

.hero .medium {
  font-size: clamp(22px, 7vw, 36px);
  opacity: 0.7;
}

/* ================================
   TEXTOS
================================ */
.title {
  margin-top: 10px;
  font-size: 22px;
  text-decoration: underline;
}

.subtitle {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.7;
}

.hint {
  margin: 10px 0;
  font-size: 12px;
  opacity: 0.6;
}

/* ================================
   PROGRESS
================================ */
.progress {
  width: 100%;
  margin-top: 20px;
}

/* ================================
   FOOTER
================================ */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 6px;
  padding: 10px 12px;

  font-size: 11px;
  font-family: var(--font-ui);
  color: var(--muted);
  opacity: 0.6;
}

.footer-left {
  display: flex;
  gap: 12px;
}