/* ═══════════════════════════════════════════════════════════
   FRAMEWORK WEB DT v1.0 — Base (Reset + Tipografía)
   ═══════════════════════════════════════════════════════════ */

/* Reset moderno */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--dt-font-sans);
    font-size: var(--dt-text-base);
    line-height: var(--dt-leading-normal);
    color: var(--dt-color-text);
    background-color: var(--dt-color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--dt-transition-normal),
                color var(--dt-transition-normal);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--dt-font-bold);
    line-height: var(--dt-leading-tight);
    color: var(--dt-color-text);
    margin-bottom: var(--dt-space-4);
}

h1 { font-size: var(--dt-text-5xl); }
h2 { font-size: var(--dt-text-4xl); }
h3 { font-size: var(--dt-text-3xl); }
h4 { font-size: var(--dt-text-2xl); }
h5 { font-size: var(--dt-text-xl); }
h6 { font-size: var(--dt-text-lg); }

p {
    margin-bottom: var(--dt-space-4);
    color: var(--dt-color-text);
}

a {
    color: var(--dt-color-primary-600);
    text-decoration: none;
    transition: color var(--dt-transition-fast);
}

a:hover {
    color: var(--dt-color-primary-800);
    text-decoration: underline;
}

code, pre {
    font-family: var(--dt-font-mono);
    font-size: var(--dt-text-sm);
}

code {
    background: var(--dt-color-surface);
    padding: var(--dt-space-1) var(--dt-space-2);
    border-radius: var(--dt-radius-sm);
}

pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: var(--dt-space-4);
    border-radius: var(--dt-radius-lg);
    overflow-x: auto;
    margin-bottom: var(--dt-space-4);
}

pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Listas */
ul, ol {
    margin-bottom: var(--dt-space-4);
    padding-left: var(--dt-space-6);
}

li {
    margin-bottom: var(--dt-space-2);
}

/* Media */
img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--dt-space-4);
}

th, td {
    padding: var(--dt-space-3) var(--dt-space-4);
    text-align: left;
    border-bottom: 1px solid var(--dt-color-border);
}

th {
    font-weight: var(--dt-font-semibold);
    background: var(--dt-color-bg-alt);
}

/* Contenedor */
.container {
    max-width: var(--dt-container-2xl);
    margin: 0 auto;
    padding: var(--dt-space-8) var(--dt-space-6);
}

/* Skip link (accesibilidad) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--dt-color-primary-600);
    color: white;
    padding: var(--dt-space-2) var(--dt-space-4);
    z-index: var(--dt-z-tooltip);
    transition: top var(--dt-transition-fast);
}

.skip-link:focus {
    top: 0;
}
