/* =========================================================
   LABELLE IMÓVEIS
   HEADER
========================================================= */

.header {
    width: 100%;
    height: 86px;

    position: relative;
    z-index: 1000;

    background: #062b22;

    border-bottom: 1px solid rgba(198, 161, 91, 0.14);
}


/* =========================================================
   CONTAINER
========================================================= */

.header-container {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 34px;
}


/* =========================================================
   LOGO
========================================================= */

.header-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}


.header-logo img {
    width: 210px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   MENU
========================================================= */

.header-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}


.header-nav a {
    position: relative;

    height: 86px;

    display: flex;
    align-items: center;

    font-size: 13px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.92);

    white-space: nowrap;
}


/* LINHA DOURADA */

.header-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 19px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background: #c6a15b;

    transition: 0.25s ease;
}


.header-nav a:hover {
    color: #d8b66b;
}


.header-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   BOTÃO FALE CONOSCO
========================================================= */

.header-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-left: 15px;

    padding: 0 20px;

    border-radius: 6px;

    background: #c6a15b;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12);
}


.header-button svg {
    width: 17px;
    height: 17px;
}


.header-button:hover {
    background: #d1ad65;

    transform: translateY(-2px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.header-menu-button {
    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(198, 161, 91, 0.4);

    border-radius: 6px;

    color: #c6a15b;

    background: transparent;
}


/* =========================================================
   HEADER FIXO
========================================================= */

.header.is-scrolled {
    position: fixed;

    top: 0;
    left: 0;

    background: rgba(6, 43, 34, 0.97);

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1150px) {

    .header-nav {
        gap: 20px;
    }

    .header-logo img {
        width: 185px;
    }

}


@media (max-width: 1024px) {

    .header {
        height: 76px;
    }

    .header-logo img {
        width: 165px;
    }

    .header-nav {
        position: absolute;

        top: 86px;
        left: 24px;
        right: 24px;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        border-radius: 10px;

        background: #062b22;

        border: 1px solid rgba(198, 161, 91, 0.25);

        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.25);
    }

    .header-nav.is-open {
        display: flex;
    }

    .header-nav a {
        height: auto;

        padding: 14px;

        color: #ffffff;
    }

    .header-nav a::after {
        display: none;
    }

    .header-menu-button {
        display: flex;

        margin-left: auto;
    }

}


@media (max-width: 680px) {

    .header-button {
        display: none;
    }

}