/* =========================================================
   HERO
   ========================================================= */

.hero {
    width: 100%;

    padding-left: var(--page-padding);
    padding-right: var(--page-padding);

    overflow: hidden;

    background: var(--background);
}

.hero .carousel {
    overflow: hidden;

    border-radius: 8px;
}

.hero .carousel-item {
    width: 100%;
}

.hero .carousel-item img {
    display: block;

    width: 100%;
    height: auto;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}


/* =========================================================
   EMPREENDIMENTOS DA HOME
   ========================================================= */

.empreendimentos-home {
    padding: 75px 0 80px;

    background: var(--background);
}

.empreendimento-card {
    height: 100%;

    overflow: hidden;

    background: var(--white);

    border-radius: 10px;

    box-shadow: 0 5px 22px rgba(0, 0, 0, .08);

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.empreendimento-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}


/* IMAGEM */

.empreendimento-card-imagem {
    width: 100%;

    overflow: hidden;

    background: #fafafa;
}

.empreendimento-card-imagem img {
    display: block;

    width: 100%;
    height: auto;
}


/* CONTEÚDO */

.empreendimento-card-body {
    padding: 20px 22px;

    border-top: 1px solid #eeeeee;
}

.empreendimento-card-body h3 {
    min-height: 42px;

    margin: 0 0 8px;

    font-size: 17px;
    font-weight: 500;
}

.empreendimento-link {
    color: var(--moreschi);

    font-size: 13px;
    font-weight: 500;
}

.empreendimento-link i {
    margin-left: 5px;
}

.empreendimentos-home .text-center.mt-4 {
    margin-top: 20px !important;
}


/* =========================================================
   COMO COMPRAR
   ========================================================= */

.como-comprar {
    padding: 60px 0;

    background: var(--moreschi);
}


/* IMAGEM */

.como-comprar-imagem {
    overflow: hidden;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .16);
}

.como-comprar-imagem img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;
}


/* TEXTO */

.como-comprar-conteudo {
    padding-left: 40px;
}

.section-label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, .72);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 2px;
}

.como-comprar-conteudo h2 {
    margin-bottom: 24px;

    color: var(--white);

    font-size: 34px;
    font-weight: 400;
}

.como-comprar-conteudo p {
    color: rgba(255, 255, 255, .87);

    font-size: 16px;
    font-weight: 300;

    line-height: 1.8;
}

.como-comprar-botoes {
    margin-top: 28px;
}


/* BOTÃO BRANCO NO BLOCO ROXO */

.como-comprar .btn-moreschi {
    color: var(--moreschi);

    background: var(--white);

    border-color: var(--white);
}

.como-comprar .btn-moreschi:hover {
    color: var(--moreschi-dark);

    background: #f3f3f3;

    border-color: #f3f3f3;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .empreendimentos-home {
        padding-top: 65px;
        padding-bottom: 70px;
    }


    .como-comprar-conteudo {
        padding-left: 0;
    }


    .como-comprar-imagem img {
        height: 420px;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    /* HERO OCUPA TODA A LARGURA */

    .hero {
        padding-left: 0;
        padding-right: 0;
    }


    .hero .carousel {
        border-radius: 0;
    }


    .hero .carousel-item img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }


    /* EMPREENDIMENTOS */

    .empreendimentos-home {
        padding: 55px 0 60px;
    }


    .empreendimento-card-body h3 {
        min-height: auto;
    }


    /* COMO COMPRAR */

    .como-comprar {
        padding: 60px 0;
    }


    .como-comprar-imagem {
        margin-bottom: 32px;
    }


    .como-comprar-imagem img {
        height: 330px;
    }


    .como-comprar-conteudo {
        padding-left: 0;
    }


    .como-comprar-conteudo h2 {
        margin-bottom: 20px;

        font-size: 27px;
    }


    .como-comprar-conteudo p {
        font-size: 15px;
    }


    .como-comprar-botoes {
        margin-top: 24px;
    }


    .como-comprar-botoes .btn {
        width: 100%;

        margin: 5px 0;
    }

}