@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Jim+Nightshade&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&display=swap');

* {
    transition: .3s
}

body,
html {
    margin: 0;
    height: 100%;
    font-family: "Open Sans";
}

.header {
    display: flex;
    height: 100px;
    flex-direction: row;
    background: #eee;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(to right, #eee, #fff)
}

.header .container{
    display: flex;
    max-width: 1100px;
    width: 100%;
    margin: auto
}

.header img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.header .contato{
    display: flex;
    align-items: center;
    margin-left: auto;
    cursor: pointer
}

.header .contato a{
    text-decoration: none;
    color: #334;
    font-weight: 655;
    display: flex;
    align-items: center;
}

.header svg {
    width: 30px;
    height: 55px;
    margin-right: 7px;
    fill: #334
}


