/* Components: Button/Primary (CTA-primario) & Button/Secondary (CTA-secundario) — Figma node 515:2124 / 558:3157 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: var(--font-gotham);
  font-weight: 350; /* Gotham Medium */
  font-size: 18px;
  line-height: normal;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: var(--white);
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Temporary stand-in for .btn-primary on levels that aren't selling yet —
   see the "ACTIVATE A LEVEL" note in components/levels-data.js. Visually
   inert on purpose: fog-white on transparent, no hover feedback, so it
   doesn't read as clickable the way btn-primary/btn-secondary do. */
.btn-disabled {
  background: transparent;
  color: var(--fog-white);
  border: 1px solid var(--fog-white);
  cursor: not-allowed;
}

.btn-disabled:hover {
  opacity: 1;
}
