/* ======================================================
   RESET CSS
   JORNAL CANASJURÊ
====================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--cinza-bg);

    color:var(--texto);

    font-family:'Inter',sans-serif;

    line-height:1.6;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font:inherit;

    outline:none;

}

.container{

    width:min(100% - 40px,var(--container));

    margin:auto;

}