* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7dc16;
    height: 150px;
    width: 100vw;
    gap: 20px;
}

header section {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 32px;
}

menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.icon-pernambucanas {
    height: 150px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 50px;   
    padding: 10px;
    gap: 16px;
    margin-top: 50px;  
    margin-right: 16px;
    border-radius: 16px;
}

.svg-perfil {
    margin-top: 50px;
    gap: 16px;
    background-color: #f7dc16;
    height: 50px;
    border-radius: 8px;
}

.svg-login {
    height: 40px;
}

.svg-carrinho {
    margin-top: 50px;
    gap: 16px;
    background-color: #f7dc16;
    height: 50px;
    border-radius: 8px;
}

.svg-compras {
    height: 40px;
}





