:root {
    --color-primary: #8B2525; /* Rojo oscuro del botón/texto */
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --font-main: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    /* Borramos el overflow-x: hidden de aquí */
    width: 100%;
}

/* Bloquear scroll mientras carga la página */
body.no-scroll {
    overflow: hidden !important;
}