.header {
    position: fixed;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 80px;
    width: 100%;
    padding: 24px 42px 24px 42px;
    
    background-color: var(--blue);
    background-blend-mode: darken;
}

.header-logo-container {
    width: 10%;
} 

.header-logo {
    width: 100%;
    height: 100%;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;

    font-weight: 500;
}

.navigation-container-whatsapp {
    background-color: var(--green);
    padding: 10px;
    border-radius: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-weight: 600;

    min-width: 180px;
    cursor: pointer;
}

.navigation-container-whatsapp > img {
    width: 24px;
    height: 24px;   
}

.navigation-container-whatsapp > span {
    color: var(--white);
}

.navigation-container > a {
    color: var(--white);
}

.navigation-container > span {
    color: var(--black);
}

@media only screen and (max-width: 600px) {

    .navigation-container {
        display: none;
    }

    .header-logo-container {
        width: 50%;
    }   

    .header {
        height: 60px;
        justify-content: center;
    }

}

/* Tablets (portrait and landscape) ----------- */
@media only screen and (min-width: 600px) and (max-width: 768px) {
}

/* Laptops and desktops ----------- */
@media only screen and (min-width: 768px) and (max-width: 992px) {
}

/* Desktops and larger ----------- */
@media only screen and (min-width: 992px) {
}