/*==============================================================
ACADEMIA PARA REVENDEDORES
RESET.CSS
Framework UI v1.0
==============================================================*/

/* Box Model */
*,*::before,*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* HTML */
html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
    font-size:16px;
}

/* Body */
body{
    min-height:100vh;
    overflow-x:hidden;
    background:var(--bg-main);
    color:var(--text);
    font-family:var(--font-primary);
    line-height:var(--lh-lg);
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Media */
img,picture,video,canvas,svg{
    display:block;
    max-width:100%;
}

iframe{
    width:100%;
    border:none;
    display:block;
}

/* Forms */
button,input,select,textarea{
    font:inherit;
    outline:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

textarea{resize:vertical;}

/* Links & Lists */
a{
    color:inherit;
    text-decoration:none;
}
ul,ol{list-style:none;}

/* Tables */
table{
    width:100%;
    border-collapse:collapse;
    border-spacing:0;
}

/* Misc */
hr{border:none;}
fieldset{border:none;}
figure{margin:0;}
summary{cursor:pointer;}

/* Scrollbar */
::-webkit-scrollbar{width:12px;height:12px;}
::-webkit-scrollbar-track{background:var(--black-800);}
::-webkit-scrollbar-thumb{
    background:var(--gold-500);
    border-radius:20px;
    border:2px solid var(--black-800);
}
::-webkit-scrollbar-thumb:hover{background:var(--gold-400);}

/* Selection */
::selection{
    background:var(--gold-500);
    color:#000;
}

/* Placeholder */
::placeholder{
    color:var(--text-muted);
    opacity:1;
}

/* Accessibility */
:focus-visible{
    outline:2px solid var(--gold-500);
    outline-offset:3px;
}

[hidden]{display:none!important;}

@media (prefers-reduced-motion:reduce){
    *{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
    }
}
