/* =========================================================
   LABELLE IMÓVEIS
   CONTATO / CTA FINAL
========================================================= */


/* =========================================================
   SEÇÃO PRINCIPAL
========================================================= */

.contact {
    position: relative;

    width: 100%;

    padding:
        58px
        0
        62px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(196, 155, 79, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #032c22 0%,
            #052f25 48%,
            #07392d 100%
        );

    overflow: hidden;
}


/* =========================================================
   DECORAÇÃO LABELLE
========================================================= */

.contact::before {
    content: "LABELLE";

    position: absolute;

    top: -18px;
    right: -35px;

    font-family: var(--font-title);

    font-size: 150px;

    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
========================================================= */

.contact::after {
    content: "";

    position: absolute;

    left: -130px;
    bottom: -170px;

    width: 300px;
    height: 300px;

    border:
        1px solid
        rgba(196, 155, 79, 0.14);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-container {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(340px, 0.8fr);

    align-items: center;

    gap: 60px;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.contact-content {
    max-width: 700px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin: 0 0 14px;

    font-family: var(--font-primary);

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 2.8px;

    text-transform: uppercase;

    color: #d2ac61;
}


.contact-eyebrow::before {
    content: "";

    width: 34px;
    height: 1px;

    background-color: #d2ac61;
}


/* =========================================================
   TÍTULO
========================================================= */

.contact-content h2 {
    max-width: 680px;

    margin:
        0
        0
        16px;

    font-family: var(--font-title);

    font-size:
        clamp(
            36px,
            4vw,
            56px
        );

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -1px;

    color: #ffffff;
}


/* =========================================================
   TEXTO
========================================================= */

.contact-content p {
    max-width: 610px;

    margin: 0;

    font-family: var(--font-primary);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;

    color:
        rgba(
            255,
            255,
            255,
            0.76
        );
}


/* =========================================================
   AÇÕES
========================================================= */

.contact-actions {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   BOTÕES BASE
========================================================= */

.contact-button {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding: 0 22px;

    border-radius: 7px;

    font-family: var(--font-primary);

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.25px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-button svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.8;
}


/* =========================================================
   WHATSAPP
   DOURADO + TEXTO BRANCO
========================================================= */

.contact-button-primary {
    border:
        1px solid
        #c89c48;

    background:
        linear-gradient(
            135deg,
            #d4ad61 0%,
            #b88938 100%
        );

    color: #ffffff;

    box-shadow:
        0 8px 24px
        rgba(
            0,
            0,
            0,
            0.18
        );
}


.contact-button-primary svg {
    color: #ffffff;

    stroke: #ffffff;
}


/* =========================================================
   HOVER WHATSAPP
   SEM ALTERAÇÃO DE COR
========================================================= */

.contact-button-primary:hover {
    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(
            0,
            0,
            0,
            0.24
        );
}


.contact-button-primary:hover svg {
    color: #ffffff;

    stroke: #ffffff;
}


/* =========================================================
   E-MAIL
========================================================= */

.contact-button-secondary {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );
}


.contact-button-secondary svg {
    color: #ffffff;

    stroke: #ffffff;
}


/* =========================================================
   HOVER E-MAIL
   SEM ALTERAÇÃO DE COR
========================================================= */

.contact-button-secondary:hover {
    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(
            0,
            0,
            0,
            0.14
        );
}


.contact-button-secondary:hover svg {
    color: #ffffff;

    stroke: #ffffff;
}


/* =========================================================
   LINHA SUPERIOR
========================================================= */

.contact-container::before {
    content: "";

    position: absolute;

    top: -58px;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(210, 172, 97, 0.30) 50%,
            transparent 100%
        );
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1100px) {

    .contact {
        padding:
            52px
            0
            56px;
    }


    .contact-container {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(300px, 0.9fr);

        gap: 42px;
    }


    .contact-content h2 {
        font-size: 46px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .contact {
        padding:
            48px
            0
            52px;
    }


    .contact-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .contact-content {
        max-width: 650px;
    }


    .contact-actions {
        max-width: 520px;
    }


    .contact-content h2 {
        font-size: 40px;
    }


    .contact::before {
        font-size: 100px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .contact {
        padding:
            38px
            0
            42px;
    }


    .contact-container {
        gap: 26px;
    }


    .contact-eyebrow {
        font-size: 9px;

        letter-spacing: 2.2px;
    }


    .contact-content h2 {
        margin-bottom: 14px;

        font-size: 32px;
    }


    .contact-content p {
        font-size: 12px;

        line-height: 1.65;
    }


    .contact-button {
        min-height: 50px;

        font-size: 10px;
    }


    .contact::before {
        display: none;
    }


    .contact-container::before {
        top: -38px;
    }

}