/* 1. Resets Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 40px;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}