*{
    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 .item1{
    color: rgb(139, 206, 250);
}

/* end header */

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

/* produtos */

.titulos{
    width: 25%;
    height: 50px;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-left: -3%;
    background-color: rgba(212, 212, 212, 0.45);
    border-radius: 2em;
    text-align: right;
}

.titulos h3{
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-right: 30px;
    padding-top:12px;
}

.produto{
    display: flex; 
    flex-wrap: wrap;
    padding-bottom: 25px;  
    margin-left: 2%; 
}

.box-foto{
    width: 180px;
    height: 170px;
    border-radius: 5px;
    background-color: rgb(240, 240, 240);
}

.box-nome{
    width: 180px;
    height: 60px;
    border-radius: 5px;
    background-color: rgb(139, 206, 250);
    margin-bottom: 25px;
    vertical-align: middle;
}

.box-foto img{
    width: 95%;
    margin-top: 2.5%;
    margin-left: 2.5%;
}

.box-nome p{
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.produtos a{
    text-decoration: none;
    margin-right: 2%;
}

.produtos .item{
    margin-right: 2%;
}

/* end produtos */

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

/* 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 */