/* ============================================
   BASE STYLES - Estilos globales
   ============================================ */

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--wemass-gray-light);
    color: var(--wemass-blue-dark);
    margin: 0;
    padding: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--wemass-blue-dark);
    font-weight: 700;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--wemass-blue-petrol);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--wemass-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--wemass-gray-medium);
}

/* Links */
a {
    color: var(--wemass-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #8fbf15;
    text-decoration: underline;
}
