*{
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: normal; 
    font-style: normal;
}

ul, p{
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

/* ----------------------------------------------------------------------------------- */

/* header */

.header{
    width: 100%;
    height: 90px;
    background-color: black;
    display: flex;
    align-items: center;
}

.header-home img{
    height: 80px;
    padding-top: 5px;
    padding-left: 35px;
}

.header-itens{
    margin-left: 40%;
}

.header-itens ul{
    display: flex;
    font-size: 18px;
    list-style: none;
    font-weight: bold;
}

.header-itens ul a{
    text-decoration: none;
    color: white; 
}

.item1, .item2, .item3, .item4, .item5{
    padding-right: 30px;
}

.header-itens ul li:hover{
    transform: scale(1.3);
}

.header-itens .item2{
    color: rgb(139, 206, 250);
}

/* end header */

/* ----------------------------------------------------------------------------------- */

/* fornecedores */

.fornecedores{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-fornecedor{
    width: 20%;
    background-color: rgba(212, 212, 212, 0.25);
    border-radius: 1em;
    text-align: center;
    margin-inline-start: 2%;
    margin-inline-end: 2%;
}

.card-fornecedor:hover{
    transform: scale(1.1);
}

.card-fornecedor img{
    width: 85%;
    margin-top: 5%;
}

.card-fornecedor h3{
    margin-block-start: 1em;
    margin-block-end: 0em;
    text-shadow: 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.300);
}

.card-fornecedor p{
    font-size: 13px;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
}

/* end fornecedores */

/* ----------------------------------------------------------------------------------- */

/* footer */

.footer{
    width: 100%;
    height: 80px;
    background-color: black;
    justify-content: center;
    display: flex;
    z-index: 4;
    bottom: 0px;
}

.footer .assinatura, .footer a{
    display: flex;
    color: white;
    align-items: center;
}

.footer img{
    padding-left: 20px;
}

/* end footer */