/* assets/css/components/_base.css */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #040308;
    color: #F9F6F2;
    scroll-behavior: smooth;
    visibility: hidden; /* Começa invisível */
}

main#main-content {
    overflow-x: hidden;
}

/* Gradiente de texto */
.text-gradient {
    background-image: linear-gradient(to right, #CB99FF, #A367FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
