/* Estilos Base */
body {
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #756DA6;
    border-radius: 4px;
}

.text-gradient {
    background: linear-gradient(135deg, #756DA6 0%, #90A694 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background-color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}