/* ========================================
   BASE — Variáveis, reset e tipografia
   ======================================== */

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

:root {
  --bg: #0a0c0f;
  --surface: #111418;
  --surface2: #181c22;
  --border: #1e2430;
  --accent: #1a9aff;
  --accent2: #00e5b0;
  --danger: #ff4d6a;
  --warning: #ffb830;
  --text: #e8edf5;
  --text2: #7a8499;
  --text3: #4a5568;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MAIN FOOTER (app) ===== */
.site-footer-app {
  text-align: center;
  padding: 14px 32px;
  font-size: 0.72rem;
  color: var(--text3);
  border-top: 1px solid var(--border);
  font-family: 'Space Mono', monospace;
  letter-spacing: .02em;
}
.site-footer-app a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.site-footer-app a:hover { text-decoration: underline; }
