/* css/base.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores modernos y suaves (inspirados en Figma, Linear, Notion) */
  --primary: #6366f1;          /* Indigo-500 */
  --primary-light: #818cf8;    /* Indigo-400 */
  --primary-dark: #4f46e5;     /* Indigo-600 */
  --background: #fafbff;       /* Casi blanco con toque azul */
  --surface: #ffffff;
  --text: #1e293b;             /* Slate-800 */
  --text-muted: #64748b;       /* Slate-500 */
  --border: #e2e8f0;           /* Slate-200 */
  --success: #10b981;          /* Emerald-500 */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-lg: 20px;
  --transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  padding: 1.25rem;
  min-height: 100vh;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 860px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 2.25rem;
  position: relative;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.hero-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #dbeafe;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 1.75rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }
}