/* Autos Bogotá - Design System (Premium Redesign) */
:root {
  --bg-main: #090C10; /* Negro profundo, elegante */
  --bg-card: #161B22; /* Gris súper oscuro para dar profundidad */
  --bg-input: #21262D;
  --text-primary: #FFFFFF;
  --text-secondary: #8B949E;
  --accent-color: #007AFF; /* Azul premium tipo Apple/Tesla */
  --accent-hover: #0056b3;
  --border-color: #30363D;
  --glass-bg: rgba(22, 27, 34, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Utilidades Glassmorphism Premium */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* Tipografía */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { line-height: 1.6; }

/* Botones genéricos */
.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 9999px; /* Pill */
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}
