/* GETWORK PERSONAL — Design System Dark Athletic Luxury */

@layer base {
  :root {
    --bg-main: #080c14;
    --bg-surface: #0f172a;
    --bg-card: #141e33;
    --bg-card-hover: #1e293b;
    --border-color: #1e293b;
    --accent-primary: #10b981; /* Esmeralda atlético */
    --accent-glow: rgba(16, 185, 129, 0.15);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
  }

  body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  input, textarea, select {
    user-select: auto;
  }
}

/* Glassmorphism sutil para barras e cards */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(20, 30, 51, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brilho neon atlético */
.glow-accent {
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

/* Inputs numéricos touch para PWA mobile */
.input-athletic {
  background: #0b1120;
  border: 1px solid #1e293b;
  color: #f8fafc;
  font-weight: 600;
  text-align: center;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.input-athletic:focus {
  border-color: #10b981;
  outline: none;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Scrollbar invisível mas funcional para carrosséis mobile */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
