/* =====================================================
   OFERTONA.ONLINE
   MAIN.CSS
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --preto:#000000;
    --preto2:#050505;
    --amarelo:#ffb400;
    --branco:#ffffff;
    --cinza:#bfbfbf;
    --container:1280px;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--preto2);

    color:var(--branco);

    font-family:Arial,Helvetica,sans-serif;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding:0 20px;

}

section{

    width:100%;

}

h1{

    font-size:52px;

}

h2{

    font-size:38px;

}

h3{

    font-size:24px;

}

p{

    color:#d6d6d6;

}