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

/* end header */

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

/* conteúdo */

.conteudo{
    display: flex;
}

.contato{
    width: 47%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.texto-secundario, .texto-primario{
    padding-left: 15%;
}

.texto-primario{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
}

.contato a{
    text-decoration: none;
    color: black;
}

.texto-secundario{
    margin-bottom: 5px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: medium;
}

hr{
    width: 70%;
}

.mapa{
    width: 53%;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
}

.mapa iframe{
    width: 90%;
}

/* end conteúdo */

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

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