/* ==========================================================
   RESET CSS
   Crescendo em Graça
========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

img,
picture,
svg,
video,
canvas{

    display:block;

    max-width:100%;

}

img{

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

ul,
ol{

    list-style:none;

}

button,
input,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

}

button{

    cursor:pointer;

}

textarea{

    resize:vertical;

}

table{

    border-collapse:collapse;

    border-spacing:0;

}

fieldset{

    border:none;

}

hr{

    border:none;

}

:focus{

    outline:none;

}

:focus-visible{

    outline:2px solid var(--color-primary);

    outline-offset:3px;

}

html,
body{

    overflow-x:hidden;

}