/* =========================================================
   LABELLE IMÓVEIS
   HERO PRINCIPAL
========================================================= */


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 500px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background-color: #062b22;
}


/* =========================================================
   IMAGEM DE FUNDO
========================================================= */

.hero-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    margin: 0;
    padding: 0;

    display: block;
}


/* REMOVE QUALQUER DECORAÇÃO ANTIGA */

.hero-image::before,
.hero-image::after {
    display: none !important;

    content: none !important;
}


/* =========================================================
   FOTO
========================================================= */

.hero-image img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    margin: 0;
    padding: 0;

    display: block;

    object-fit: cover;

    /*
       Ajusta qual parte da imagem aparece.
       58% ajuda a deixar sala + cidade visíveis.
    */
    object-position: center 58%;
}


/* =========================================================
   GRADIENTE ESCURO
========================================================= */

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,

            rgba(3, 31, 24, 0.98) 0%,

            rgba(3, 31, 24, 0.94) 15%,

            rgba(3, 31, 24, 0.82) 30%,

            rgba(3, 31, 24, 0.58) 45%,

            rgba(3, 31, 24, 0.28) 62%,

            rgba(3, 31, 24, 0.06) 82%,

            rgba(3, 31, 24, 0.00) 100%
        );
}


/* =========================================================
   REMOVE CÍRCULO ANTIGO
========================================================= */

.hero::before {
    display: none !important;

    content: none !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 5;

    width: 100%;
    height: 100%;
    min-height: 0;

    display: flex;

    align-items: flex-start;
    justify-content: flex-start;

    margin: 0 auto;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.hero-content {
    position: relative;

    z-index: 6;

    width: 100%;
    max-width: 620px;

    margin: 0;

    padding: 70px 0 0;
}


/* =========================================================
   TEXTO PEQUENO
========================================================= */

.hero-eyebrow {
    display: block;

    margin: 0 0 14px;

    padding: 0;

    font-family: var(--font-primary);

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #d0aa5b;
}


/* REMOVE BARRINHA DO MODELO ANTIGO */

.hero-eyebrow::before,
.hero-eyebrow::after {
    display: none !important;

    content: none !important;
}


/* =========================================================
   TÍTULO
========================================================= */

.hero-title {
    width: 100%;
    max-width: 620px;

    margin: 0;
    padding: 0;

    font-family: var(--font-title);

    font-size: 52px;

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: 0;

    text-transform: uppercase;
}


/* =========================================================
   LINHAS DO TÍTULO
========================================================= */

.hero-title span {
    display: block;

    margin: 0;
    padding: 0;
}


/* =========================================================
   PRIMEIRA LINHA
========================================================= */

.hero-title-white {
    color: #ffffff;
}


/* =========================================================
   LINHAS DOURADAS
========================================================= */

.hero-title-gold {
    color: #d0aa5b;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.hero-description {
    width: 100%;
    max-width: 490px;

    margin: 18px 0 0;

    padding: 0;

    font-family: var(--font-primary);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.95);
}


/* =========================================================
   REMOVE BOTÕES ANTIGOS
========================================================= */

.hero-actions {
    display: none !important;
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1200px) {

    .hero {
        height: 480px;
    }


    .hero-content {
        padding-top: 64px;
    }


    .hero-title {
        max-width: 560px;

        font-size: 48px;
    }


    .hero-description {
        max-width: 450px;
    }


    .hero-image img {
        object-position: 58% center;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero {
        height: 480px;
    }


    .hero-content {
        max-width: 520px;

        padding-top: 58px;
    }


    .hero-title {
        font-size: 43px;
    }


    .hero-image img {
        object-position: 62% center;
    }


    .hero::after {
        background:
            linear-gradient(
                90deg,

                rgba(3, 31, 24, 0.96) 0%,

                rgba(3, 31, 24, 0.88) 42%,

                rgba(3, 31, 24, 0.56) 70%,

                rgba(3, 31, 24, 0.20) 100%
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero {
        height: 500px;
    }


    .hero-content {
        max-width: 100%;

        padding-top: 48px;
    }


    .hero-eyebrow {
        margin-bottom: 12px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .hero-title {
        max-width: 390px;

        font-size: 36px;

        line-height: 1.04;
    }


    .hero-description {
        max-width: 350px;

        margin-top: 16px;

        font-size: 12px;
    }


    .hero-description br {
        display: none;
    }


    .hero-image img {
        object-position: 67% center;
    }


    .hero::after {
        background:
            linear-gradient(
                90deg,

                rgba(3, 31, 24, 0.97) 0%,

                rgba(3, 31, 24, 0.91) 45%,

                rgba(3, 31, 24, 0.58) 78%,

                rgba(3, 31, 24, 0.30) 100%
            );
    }

}