/* RIELSA - Estilos base */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll margin for anchor links */
[id] {
    scroll-margin-top: 6rem;
}

/* Focus styles accesibles */
*:focus-visible {
    outline: 2px solid #005eb8;
    outline-offset: 2px;
}

/* Transiciones suaves por defecto */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #005eb8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004a92;
}
