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

/* --- RESET BÁSICO --- */
:root {
  --primary-color: #f0b90b;
  --primary-hover: #ffd700;
  --bg-dark: #0a110d;
  --bg-card: #14211a;
  --bg-sidebar: #0f1a14;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: rgba(240, 185, 11, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  height: 100%;
  background-color: var(--bg-dark);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* Scroll personalizado */
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 185, 11, 0.2) transparent;
}

/* Para Chrome, Edge, Safari */
body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 20px;
}

main {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}