/* =========================================================
   LABELLE IMÓVEIS
   LANÇAMENTOS
========================================================= */


/* =========================================================
   SEÇÃO
========================================================= */

.launches {
    position: relative;

    width: 100%;

    padding:
        42px
        0
        48px;

    background:
        radial-gradient(
            circle at top right,
            rgba(196, 155, 79, 0.08),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #032c22 0%,
            #052f25 45%,
            #07392d 100%
        );

    overflow: hidden;
}


/* =========================================================
   LABELLE NO FUNDO
========================================================= */

.launches::before {
    content: "LABELLE";

    position: absolute;

    top: -8px;
    right: -10px;

    font-family: var(--font-title);

    font-size: 170px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 8px;

    color:
        rgba(
            255,
            255,
            255,
            0.035
        );

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   CÍRCULO DECORATIVO
========================================================= */

.launches::after {
    content: "";

    position: absolute;

    left: -140px;
    bottom: -140px;

    width: 320px;
    height: 320px;

    border:
        1px solid
        rgba(196, 155, 79, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.launches .section-header {
    position: relative;

    z-index: 5;

    width: 100%;

    display: flex;

    align-items: flex-start;

    margin-bottom: 34px;
}


/* =========================================================
   EYEBROW
========================================================= */

.launches .section-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin: 0 0 12px;

    font-family: var(--font-primary);

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #d2ac61;
}


.launches .section-eyebrow::before {
    content: "";

    width: 38px;
    height: 1px;

    background-color: #c49b4f;
}


/* =========================================================
   TÍTULO
========================================================= */

.launches .section-title {
    max-width: 900px;

    margin: 0;

    font-family: var(--font-title);

    font-size:
        clamp(
            38px,
            4vw,
            62px
        );

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -1px;

    color: #f8f6f1;
}


/* =========================================================
   GRID
========================================================= */

.launches-grid {
    position: relative;

    z-index: 5;

    width: 100%;

    display: grid;

    grid-template-columns:
        1.55fr
        1fr;

    grid-template-rows:
        repeat(
            2,
            280px
        );

    gap: 24px;
}


/* =========================================================
   CARD
========================================================= */

.launch-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border-radius: 20px;

    background-color: #062f25;

    border:
        1px solid
        rgba(196, 155, 79, 0.18);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.22);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.launch-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(210, 172, 97, 0.42);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.28);
}


/* =========================================================
   CARD GRANDE
========================================================= */

.launch-card-large {
    grid-row:
        1 / 3;
}


/* =========================================================
   IMAGEM
========================================================= */

.launch-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-repeat:
        no-repeat;

    background-position:
        center;

    background-size:
        cover;

    transition:
        transform
        0.6s ease;
}


.launch-card:hover
.launch-image {
    transform:
        scale(1.05);
}


/* =========================================================
   IMAGENS TEMPORÁRIAS
========================================================= */

.launch-image-01 {
    background-image:
        url("../assets/images/hero/hero-labelle.png");

    background-position:
        52% center;
}


.launch-image-02 {
    background-image:
        url("../assets/images/hero/hero-labelle.png");

    background-position:
        70% center;
}


.launch-image-03 {
    background-image:
        url("../assets/images/hero/hero-labelle.png");

    background-position:
        38% center;
}


/* =========================================================
   SOMBRA DOS CARDS
========================================================= */

.launch-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(1, 17, 13, 0.06) 12%,
            rgba(2, 24, 18, 0.22) 38%,
            rgba(2, 24, 18, 0.92) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CONTEÚDO DOS CARDS
========================================================= */

.launch-overlay {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        34px
        38px;
}


/* =========================================================
   BAIRRO
========================================================= */

.launch-overlay > span {
    display:
        inline-flex;

    align-items:
        center;

    gap: 10px;

    margin-bottom: 12px;

    font-family:
        var(--font-primary);

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 3px;

    text-transform:
        uppercase;

    color: #d2ac61;
}


.launch-overlay > span::before {
    content: "";

    width: 24px;
    height: 1px;

    background-color:
        #d2ac61;
}


/* =========================================================
   TÍTULO DOS CARDS
========================================================= */

.launch-overlay h3 {
    max-width: 620px;

    margin:
        0
        0
        16px;

    font-family:
        var(--font-title);

    font-size: 30px;

    font-weight: 500;

    line-height: 1.08;

    letter-spacing:
        -0.5px;

    color: #ffffff;
}


.launch-card-large
.launch-overlay h3 {
    font-size: 34px;
}


/* =========================================================
   CARDS DA DIREITA
========================================================= */

.launch-card:not(.launch-card-large)
.launch-overlay {
    padding:
        28px
        30px;
}


.launch-card:not(.launch-card-large)
.launch-overlay h3 {
    max-width: 420px;

    margin-bottom: 12px;

    font-size: 25px;
}


/* =========================================================
   LINKS INTERNOS DOS CARDS
========================================================= */

.launch-overlay a {
    display:
        inline-flex;

    align-items:
        center;

    gap: 10px;

    font-family:
        var(--font-primary);

    font-size: 18px;

    font-weight: 600;

    color: #ffffff;

    transition:
        color 0.25s ease;
}


.launch-overlay a svg {
    width: 17px;
    height: 17px;

    stroke-width: 1.8;

    transition:
        transform
        0.25s ease;
}


.launch-overlay a:hover {
    color:
        #d2ac61;
}


.launch-overlay a:hover svg {
    transform:
        translateX(4px);
}


/* =========================================================
   ÁREA FINAL
========================================================= */

.launches-footer {
    position: relative;

    z-index: 5;

    width: 100%;

    display: grid;

    grid-template-columns:
        1.55fr
        1fr;

    gap: 24px;

    margin-top: 24px;
}


/* =========================================================
   LINK "CONHEÇA OS LANÇAMENTOS"
========================================================= */

.launches-all-button {
    grid-column: 2;

    justify-self: end;

    display: inline-flex;

    align-items: center;
    justify-content: flex-end;

    gap: 12px;

    width: auto;

    min-height: auto;

    padding: 0;

    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;

    color: #d2ac61;

    font-family:
        var(--font-primary);

    font-size: 16px;

    font-weight: 500;

    line-height: 1;

    letter-spacing: 0;

    text-transform: none;

    transition:
        color 0.25s ease;
}


/* =========================================================
   SETA DO LINK
========================================================= */

.launches-all-button svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.7;

    transition:
        transform 0.25s ease;
}


/* =========================================================
   HOVER DO LINK
========================================================= */

.launches-all-button:hover {
    background: transparent;

    border: 0;

    color: #ffffff;

    transform: none;

    box-shadow: none;
}


.launches-all-button:hover svg {
    transform:
        translateX(5px);
}


/* =========================================================
   LINHA DECORATIVA ANTES DO LINK
========================================================= */

.launches-all-button::before {
    content: "";

    width: 34px;
    height: 1px;

    margin-right: 3px;

    background-color:
        rgba(
            210,
            172,
            97,
            0.75
        );

    transition:
        width 0.25s ease;
}


.launches-all-button:hover::before {
    width: 46px;
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1200px) {

    .launches {
        padding:
            38px
            0
            46px;
    }


    .launches .section-title {
        font-size:
            52px;
    }


    .launches-grid {
        grid-template-rows:
            repeat(
                2,
                245px
            );

        gap: 18px;
    }


    .launches-footer {
        gap: 18px;
    }


    .launch-card-large
    .launch-overlay h3 {
        font-size: 30px;
    }


    .launch-card:not(.launch-card-large)
    .launch-overlay h3 {
        font-size: 22px;
    }


    .launches-all-button {
        font-size: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .launches {
        padding:
            34px
            0
            54px;
    }


    .launches .section-header {
        margin-bottom:
            26px;
    }


    .launches .section-title {
        font-size:
            42px;
    }


    .launches-grid {
        grid-template-columns:
            1fr;

        grid-template-rows:
            auto;

        gap: 16px;
    }


    .launch-card,
    .launch-card-large {
        grid-row:
            auto;

        min-height:
            320px;
    }


    .launch-card:not(.launch-card-large) {
        min-height:
            250px;
    }


    .launches-footer {
        display: flex;

        justify-content:
            flex-end;

        margin-top:
            22px;
    }


    .launches-all-button {
        font-size:
            15px;
    }


    .launches::before {
        font-size:
            100px;

        top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .launches {
        padding:
            30px
            0
            44px;
    }


    .launches .section-eyebrow {
        font-size:
            9px;

        letter-spacing:
            2.2px;
    }


    .launches .section-title {
        font-size:
            34px;

        line-height:
            1.02;
    }


    .launch-card,
    .launch-card-large {
        min-height:
            280px;

        border-radius:
            16px;
    }


    .launch-card:not(.launch-card-large) {
        min-height:
            220px;
    }


    .launch-overlay {
        padding:
            22px
            22px
            24px;
    }


    .launch-card:not(.launch-card-large)
    .launch-overlay {
        padding:
            22px;
    }


    .launch-overlay > span {
        font-size:
            10px;

        letter-spacing:
            2px;

        margin-bottom:
            10px;
    }


    .launch-overlay h3,
    .launch-card-large
    .launch-overlay h3 {
        font-size:
            24px;

        margin-bottom:
            12px;
    }


    .launch-card:not(.launch-card-large)
    .launch-overlay h3 {
        font-size:
            20px;
    }


    .launch-overlay a {
        font-size:
            15px;
    }


    .launches-footer {
        justify-content:
            center;

        margin-top:
            22px;
    }


    .launches-all-button {
        font-size:
            14px;
    }


    .launches-all-button::before {
        display: none;
    }


    .launches::before {
        display: none;
    }

}