/* Base CSS - Las fuentes se importan en tokens.css */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--c-primary-dark);
    background-color: var(--c-text-light);
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
    color: var(--c-primary-dark);
}

h1 {
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    color: var(--c-accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--c-accent-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}