/* =========================
   CONTACTO HERO
========================= */

.panel_contacto_hero{

    width: 100%;
    min-height: 90vh;

    background-color: #050505;

    padding-top: 120px;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

}

/* OVERLAY */

.panel_contacto_hero_overlay{

    width: 100%;
    max-width: 1500px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

}

/* =========================
   LEFT CONTENT
========================= */

.panel_contacto_hero_contenido{

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 28px;

}

/* SUBTITLE */

.panel_contacto_hero_subtitulo{

    color: #d4a64f;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;

}

/* TITLE */

.panel_contacto_hero_titulo{

    color: white;

    font-size: 64px;
    line-height: 1.1;

    font-weight: 700;

    max-width: 700px;

}

/* DESCRIPTION */

.panel_contacto_hero_descripcion{

    color: #b9b9b9;

    font-size: 18px;
    line-height: 1.8;

    max-width: 600px;

}

/* =========================
   BENEFICIOS
========================= */

.panel_contacto_hero_beneficios{

    display: flex;
    flex-direction: column;

    gap: 20px;

    margin-top: 10px;

}

/* ITEM */

.panel_contacto_beneficio_item{

    display: flex;
    align-items: center;

    color: #d4a64f;

    gap: 18px;

}

/* ICON */

.panel_contacto_beneficio_icono{

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background-color: rgba(212, 166, 79, 0.12);

    border: 1px solid rgba(212, 166, 79, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

}

/* TEXT */

.panel_contacto_beneficio_texto{

    display: flex;
    flex-direction: column;

    gap: 5px;

}

.panel_contacto_beneficio_texto h3{

    color: white;

    font-size: 18px;
    font-weight: 600;

}

.panel_contacto_beneficio_texto p{

    color: #a5a5a5;

    font-size: 15px;

}

/* =========================
   IMAGE
========================= */

.panel_contacto_hero_imagen_container{

    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

}

/* IMAGE */

.panel_contacto_hero_imagen{

    width: 100%;
    max-width: 720px;

    height: 750px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: 0px 20px 60px rgba(0,0,0,0.5);

    border: 1px solid rgba(255,255,255,0.08);

}