*{
    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);
}

/* end header */

/* ----------------------------------------------------------------------------------- */

/* background */

.background img{
    width: 100%;
    position: static;
    z-index: 1;
}

.background p{
    position: absolute;
    padding-top: 9vw;
    padding-left: 6vw;
    font-size: 48px;
    /* color: white; */
    color: black;
    text-shadow: 0.05em 0.05em 0.05em rgb(56, 53, 53);
    /* text-shadow: 0.1em 0.1em 0.1em black; */
    z-index: 2;
}

/* end background */

/* ----------------------------------------------------------------------------------- */

/* links */

.links{
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding-left: 10px;
    padding-right: 10px;
}

.links figure{
    padding-left: 10px;
    padding-right: 10px;
}

.links figure:hover{
    transform: scale(1.2);
}

.links a{
    text-decoration: none; 
    color: black;
}

.links img{
    width: 8vw;
}

.links figcaption{
    font-size: 18px;
}

/* end links */

/* ----------------------------------------------------------------------------------- */

/* 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 */