/* =========================
   INFO CONTAINER
========================= */

.panel_contacto_info_container{

    flex: 0.8;

    display: flex;
    flex-direction: column;

    gap: 28px;

}

/* =========================
   INFO CARD
========================= */

.panel_contacto_info_card{

    background-color: #0d0d0d;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    padding: 40px 35px;

    box-shadow: 0px 10px 40px rgba(0,0,0,0.3);

}

/* TITLE */

.panel_contacto_info_titulo{

    color: white;

    font-size: 30px;
    font-weight: 700;

    margin-bottom: 35px;

}

/* =========================
   INFO ITEM
========================= */

.panel_contacto_info_item{

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding-bottom: 24px;
    margin-bottom: 24px;

    border-bottom: 1px solid rgba(255,255,255,0.06);

}

/* REMOVE LAST BORDER */

.panel_contacto_info_item:last-child{

    margin-bottom: 0;
    padding-bottom: 0;

    border-bottom: none;

}

/* ICON */

.panel_contacto_info_icono{

    width: 56px;
    height: 56px;

    color: #d4a64f;

    border-radius: 16px;

    background-color: rgba(212,166,79,0.12);

    border: 1px solid rgba(212,166,79,0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    flex-shrink: 0;

}

/* TEXT */

.panel_contacto_info_texto{

    display: flex;
    flex-direction: column;

    gap: 8px;

}

/* TITLE */

.panel_contacto_info_texto h3{

    color: white;

    font-size: 18px;
    font-weight: 600;

}

/* DESCRIPTION */

.panel_contacto_info_texto p{

    color: #9e9e9e;

    font-size: 15px;
    line-height: 1.7;

}

/* =========================
   REDES
========================= */

.panel_contacto_redes{

    display: flex;
    align-items: center;

    gap: 16px;

    flex-wrap: wrap;

}

/* BUTTON */

.panel_contacto_red_social{

    padding: 14px 22px;

    background-color: #121212;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 14px;

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;

}

/* HOVER */

.panel_contacto_red_social:hover{

    background-color: #d4a64f;

    color: #050505;

    transform: translateY(-3px);

    border-color: #d4a64f;

}