/* ===============================
   VARIABLES GLOBALES
================================ */
:root {
    --bg-main: #0f172a;
    --bg-secondary: #020617;
    --bg-surface: #020617;

    --text-main: #e5e7eb;
    --text-muted: #9ca3af;

    --accent: #3b82f6;
    --accent-hover: #2563eb;

    --success: #22c55e;
    --error: #ef4444;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,.3);

    --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===============================
   HTML / BODY
================================ */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   ELEMENTOS BASE
================================ */
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
}

input, select, textarea {
    font-family: inherit;
    background-color: var(--bg-secondary);
    color: var(--text-main);
    border: 1px solid #1e293b;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* ===============================
   CONTENEDORES GENERALES
================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.surface {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ===============================
   TIPOGRAFÍA
================================ */
h1, h2, h3, h4, h5 {
    margin: 0 0 10px;
    font-weight: 600;
}

p {
    margin: 0 0 10px;
    color: var(--text-muted);
}
