/* ==========================================================================
   MODPACK FIM DE ANO — Design System
   Fontes: Pixelify Sans (display) · Inter (corpo) · JetBrains Mono (dados)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Cores — off-white quente + laranja braseiro */
  --bg: #FBF7F1;
  --bg-soft: #F3EAD9;
  --bg-card: #FFFDFA;
  --ink: #261B14;
  --ink-soft: #6B5D52;
  --ink-faint: #A0938650;

  --orange: #E85D1F;
  --orange-deep: #A8400F;
  --orange-pale: #FCD9B8;
  --ember: #FFB066;

  --green-ok: #4F8F5B;
  --green-ok-bg: #E7F1E5;
  --red-no: #C0432A;
  --red-no-bg: #F8E6DF;

  --line: rgba(38, 27, 20, 0.12);
  --line-strong: rgba(38, 27, 20, 0.22);
  --shadow-soft: 0 8px 28px rgba(38, 27, 20, 0.08);
  --shadow-strong: 0 16px 40px rgba(38, 27, 20, 0.16);

  /* Tipografia */
  --font-display: 'Pixelify Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea { font-family: inherit; font-size: inherit; }

ul { list-style: none; }

::selection { background: var(--orange-pale); color: var(--orange-deep); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Utilitários de layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--soft { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-pale);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #FFF8F0;
  box-shadow: 0 6px 0 var(--orange-deep), var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--orange-deep), var(--shadow-strong);
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--orange-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Header ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.nav__mark-block {
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 6px;
  box-shadow: inset 0 -4px 0 var(--orange-deep);
}

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--orange-deep); }

.nav__cta { display: none; }

@media (min-width: 720px) {
  .nav__cta { display: inline-flex; padding: 11px 22px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #2A1B12 0%, #5C2C12 38%, #B8501C 68%, #E8821F 100%);
}

.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ember {
  position: absolute;
  bottom: -20px;
  width: var(--size, 6px);
  height: var(--size, 6px);
  background: var(--ember);
  border-radius: 1px;
  opacity: 0;
  animation: ember-rise var(--duration, 9s) ease-in var(--delay, 0s) infinite;
  box-shadow: 0 0 10px 2px rgba(255, 176, 102, 0.6);
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  10% { opacity: 1; }
  80% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--drift, 30px), -100vh) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFE3C2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 100px;
  opacity: 0;
  animation: rise-in 0.7s var(--ease) 0.1s forwards;
}

.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #6FE38A;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(111, 227, 138, 0.7);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1.05;
  color: #FFFBF6;
  margin: 26px 0 20px;
  text-shadow: 0 4px 0 rgba(38, 16, 6, 0.35);
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.28s forwards;
}

.hero__title span {
  color: #FFD9A8;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: #FFE9D2;
  font-weight: 500;
  max-width: 460px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.46s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.62s forwards;
}

.hero__actions .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFF8F0;
}

.hero__actions .btn--ghost:hover {
  border-color: #FFF8F0;
  color: #FFF8F0;
  background: rgba(255, 255, 255, 0.08);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.9s forwards, bob 2.4s ease-in-out 1.7s infinite;
}

.hero__scroll svg { stroke: rgba(255, 255, 255, 0.6); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Sobre (pills) ---------- */
.about {
  text-align: center;
}

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.3;
}

.pills {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.pill:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.pill__icon {
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---------- Inscrição (formulário) ---------- */
.signup {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.signup__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .signup__grid { grid-template-columns: 0.85fr 1fr; }
}

.signup__info {
  text-align: left;
}

.signup__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signup__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}

.signup__list-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-deep);
  background: var(--orange-pale);
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-strong);
}

.field { margin-bottom: 26px; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.field input[type="text"] {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input[type="text"]::placeholder { color: var(--ink-faint); }

.field input[type="text"]:focus {
  border-color: var(--orange);
  background: var(--bg-card);
}

.field-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Toggle Sim/Não */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.toggle {
  position: relative;
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}

.toggle input { position: absolute; opacity: 0; pointer-events: none; }

.toggle__opt {
  position: relative;
  z-index: 1;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.toggle__thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--orange);
  border-radius: 100px;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 3px 8px rgba(232, 93, 31, 0.4);
}

.toggle[data-value="nao"] .toggle__thumb { transform: translateX(100%); }
.toggle[data-value="sim"] .toggle__opt--sim,
.toggle[data-value="nao"] .toggle__opt--nao {
  color: #FFF8F0;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.submit-row .btn { width: 100%; }

.form-status {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}

.form-status--success { color: var(--green-ok); }
.form-status--error { color: var(--red-no); }

/* ---------- Mods / Votação ---------- */
.mods__intro {
  text-align: center;
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .mods-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 980px) {
  .mods-grid { grid-template-columns: repeat(4, 1fr); }
}

.mod-tile {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.mod-tile:hover {
  transform: translateY(-4px);
  border-color: var(--orange-pale);
}

.mod-tile__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid var(--line);
  box-shadow: inset 0 -3px 0 var(--line);
}

.mod-tile__name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.3;
  word-break: break-word;
}

.mod-tile__votes {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.mod-tile__votes b { color: var(--orange-deep); }

.vote-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: all 0.2s ease;
}

.vote-btn:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFF8F0;
}

.vote-btn.is-voted {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange-deep);
}

.mod-tile.is-popping { animation: tile-pop 0.5s var(--ease); }

@keyframes tile-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--ember);
  border-radius: 1px;
  pointer-events: none;
  animation: spark-burst 0.7s ease-out forwards;
}

@keyframes spark-burst {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0.3); }
}

.float-plus {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange-deep);
  pointer-events: none;
  animation: float-up-fade 0.9s ease-out forwards;
}

@keyframes float-up-fade {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-22px); }
}

.mods-empty, .mods-loading {
  text-align: center;
  padding: 40px;
  color: var(--ink-soft);
  font-size: 14px;
  grid-column: 1 / -1;
}

/* Caixa de sugestão */
.suggest {
  max-width: 560px;
  margin: 56px auto 0;
}

.suggest__box {
  display: flex;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease;
}

.suggest__box:focus-within { border-color: var(--orange); }

.suggest__box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink);
}

.suggest__box input::placeholder { color: var(--ink-faint); }

.suggest__box button {
  flex-shrink: 0;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
}

.suggest__note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #E8DCCF;
  padding: 64px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__mark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #FFF8F0;
  margin-bottom: 8px;
}

.footer__tag {
  font-size: 13px;
  color: #B3A493;
  max-width: 280px;
}

.footer__links {
  display: flex;
  gap: 40px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C7C6B;
  margin-bottom: 14px;
}

.footer__col a, .footer__col span {
  display: block;
  font-size: 14px;
  color: #D9CBBC;
  margin-bottom: 10px;
}

.footer__col a:hover { color: var(--ember); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  font-size: 12px;
  color: #8C7C6B;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--ink);
  color: #FFF8F0;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  max-width: 320px;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast--error { background: var(--red-no); }
.toast--success { background: var(--green-ok); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsivo ---------- */
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .nav__links { display: none; }
  .footer__top { flex-direction: column; }
  .form-card { padding: 28px 22px; }
  .toggle-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .mods-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Hamburger ---------- */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* when nav is solid (scrolled or on light page) the lines go dark */
.nav.is-scrolled .nav__hamburger span,
.nav--light .nav__hamburger span { background: var(--ink); }

@media (min-width: 720px) { .nav__hamburger { display: none; } }

/* ---------- Mobile nav overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-nav__close:hover { color: rgba(255, 255, 255, 0.9); }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  padding: 12px 0;
}

.mobile-nav a:hover { color: var(--ember); }

/* ---------- Active nav link ---------- */
.nav__links a.is-active { color: var(--orange-deep); }

/* ---------- Inline page-header (páginas internas) ---------- */
.page-header {
  padding-top: 110px;
  padding-bottom: 60px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-header__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 10px;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}

.page-header__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ---------- State vazio / carregando ---------- */
.state-empty, .state-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}

.state-empty svg, .state-loading svg { opacity: 0.35; }

.spin {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spinning 0.8s linear infinite;
}

@keyframes spinning { to { transform: rotate(360deg); } }
