header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: white;
}

#pesquisa{
    border: 1px solid rgb(182, 182, 182);
    background-image: url("../img/search-icon.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 1.7em;
    padding-right: 1.7em;
    padding-left: 12px;
    height: 37px;
    width: 50%;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.5s;
    box-sizing: border-box;
    outline: none;
}

#pesquisa::placeholder {
    color: rgb(182, 182, 182);
}

#pesquisa:focus{
    border: 1px solid #f07706;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: rgb(242, 242, 242);
}

.link-nav{
    font-size: 13px;
    font-weight: bold;
    padding-left: 50px;
    padding-right: 50px;
    text-decoration: none;
    color: black;
}

.link-nav:hover{
    transition: 0.3s;
    color: #f07706;
    text-decoration: underline;
}

.header-nav{
    position: sticky;
    top: 0;
    z-index: 1;
}

footer{
    display: flex;
    flex-direction: column;
    background-color: #bd3f3f;
    font-size: 20px;
    padding: 100px;
}

footer a{
    color: white;
    text-decoration: none;
}

.link-header{
    display: flex;
    gap: 25px;
}

.nav-bottom{
    text-decoration: none;
    color: #f07706;
    font-weight: bold;
}