@import url(../styles/patterns.css);
@import url(../styles/form.css);
@import url(../styles/ticket.css);
@import url(../styles/avatar.css);  
@import url(../styles/footer.css);
*,
*::before,
*::after { box-sizing: border-box; }


:root {
    --neutral-0: hsl(0, 0%, 100%);
    --neutral-300: hsl(252, 6%, 83%);
    --neutral-500: hsl(245, 15%, 58%);
    --neutral-700: hsl(245, 19%, 35%);
    --neutral-900: hsl(248, 70%, 10%);

    --orange-500: hsl(7, 88%, 67%);
    --orange-700: hsl(7, 71%, 60%);

    --gradient-text: linear-gradient(90deg, hsl(7, 86%, 67%), hsl(0, 0%, 100%));
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* bloqueia scroll lateral */
}

body {
    background: url('../../assets/images/background-desktop.png') no-repeat center top;
    background-size: cover;
    font-family: inconsolata, monospace;
    color: #fff;
    position: relative;
    margin: 0;
}

button {
    background-color: var(--orange-700);
    width: 100%;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

img .logo-full{
    margin: 15%;
}


button:hover {
    background-color: var(--orange-500);
}

@media screen and (max-width: 768px) {
    body {
        background: url('../../assets/images/background-tablet.png') no-repeat center top;
        background-size: cover;
        width: 100%;
    }

}

@media screen and (max-width: 480px) {
    body {
        background: url('../../assets/images/background-mobile.png') no-repeat center top;
        background-size: cover;
        overflow-x: hidden;
    }
    
    button {
        margin-top: 2%;
    }
    
}