/* =========================
   CTA SECTION
========================= */

.panel_contacto_cta{

    width: 100%;

    background-color: #050505;

    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 120px;

}

/* =========================
   OVERLAY
========================= */

.panel_contacto_cta_overlay{

    width: 100%;

    background: linear-gradient(
        135deg,
        #111111,
        #1a1a1a
    );

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 32px;

    padding: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;

    overflow: hidden;

    position: relative;

}

/* LIGHT EFFECT */

.panel_contacto_cta_overlay::before{

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(212,166,79,0.08);

    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(40px);

}

/* =========================
   CONTENT
========================= */

.panel_contacto_cta_contenido{

    max-width: 700px;

    position: relative;
    z-index: 2;

}

/* SUBTITLE */

.panel_contacto_cta_subtitulo{

    color: #d4a64f;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 18px;

    display: inline-block;

}

/* TITLE */

.panel_contacto_cta_titulo{

    color: white;

    font-size: 48px;
    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 18px;

}

/* DESCRIPTION */

.panel_contacto_cta_descripcion{

    color: #a0a0a0;

    font-size: 17px;

    line-height: 1.8;

}

/* =========================
   BUTTONS
========================= */

.panel_contacto_cta_botones{

    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    position: relative;
    z-index: 2;

}

/* =========================
   WHATSAPP BUTTON
========================= */

.panel_contacto_cta_whatsapp{

    padding: 18px 30px;

    background-color: #d4a64f;

    border-radius: 16px;

    color: #050505;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s;

    white-space: nowrap;

}

/* HOVER */

.panel_contacto_cta_whatsapp:hover{

    transform: translateY(-4px);

    background-color: #e7b95d;

    box-shadow: 0px 12px 30px rgba(212,166,79,0.25);

}

/* =========================
   SECOND BUTTON
========================= */

.panel_contacto_cta_propiedades{

    padding: 18px 30px;

    background-color: transparent;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 16px;

    color: white;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition: 0.3s;

    white-space: nowrap;

}

/* HOVER */

.panel_contacto_cta_propiedades:hover{

    background-color: white;

    color: #050505;

    transform: translateY(-4px);

}