/*==========================================================
    BISCA GAÚCHA
    RESET.CSS
==========================================================*/


/*==========================================================
    RESET GERAL
==========================================================*/

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


/*==========================================================
    HTML / BODY
==========================================================*/

html{

    width:100%;

    height:100%;

    font-size:16px;

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}


body{

    width:100%;

    min-height:100%;

    overflow:hidden;

    background:#07150d;

    color:#ffffff;

    font-family:
    "Montserrat",
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.5;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

    overscroll-behavior:none;

    touch-action:manipulation;

}


/*==========================================================
    ELEMENTOS
==========================================================*/

button,
input,
select,
textarea{

    font:inherit;

}


button{

    border:none;

    outline:none;

    background:none;

    color:inherit;

    cursor:pointer;

    -webkit-tap-highlight-color:transparent;

}


button:disabled{

    cursor:not-allowed;

    opacity:.55;

}


input,
select,
textarea{

    outline:none;

}


img,
picture,
svg,
canvas{

    display:block;

    max-width:100%;

}


ul,
ol{

    list-style:none;

}


a{

    color:inherit;

    text-decoration:none;

}


h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:inherit;

}


audio{

    display:none;

}


/*==========================================================
    SELEÇÃO
==========================================================*/

::selection{

    background:#d3a42b;

    color:#111111;

}


/*==========================================================
    BARRA DE ROLAGEM
==========================================================*/

::-webkit-scrollbar{

    width:8px;

    height:8px;

}


::-webkit-scrollbar-track{

    background:rgba(0,0,0,.25);

}


::-webkit-scrollbar-thumb{

    border-radius:999px;

    background:#b88618;

}


::-webkit-scrollbar-thumb:hover{

    background:#e0b43a;

}