/* Base tipográfica y elementos raíz */
body {
    font-family: var(--vtc-fuente);
    font-size: var(--vtc-texto-base);
    color: var(--vtc-texto);
    background: var(--vtc-fondo);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    color: var(--vtc-texto);
    font-weight: var(--vtc-peso-bold);
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

a {
    color: var(--vtc-primario);
    transition: color var(--vtc-transicion);
}

a:hover {
    color: var(--vtc-primario-oscuro);
}

::selection {
    background: var(--vtc-primario);
    color: #fff;
}
