/* =========================
   CONTACTO PRINCIPAL
========================= */

.panel_contacto_principal{

    width: 100%;

    background-color: #050505;

    padding-left: 7%;
    padding-right: 7%;
    padding-top: 40px;
    padding-bottom: 100px;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 40px;

}

/* =========================
   FORM CONTAINER
========================= */

.panel_contacto_formulario_container{

    flex: 1.3;

    background-color: #0d0d0d;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    padding: 45px;

    box-shadow: 0px 10px 40px rgba(0,0,0,0.3);

}

/* HEADER */

.panel_contacto_formulario_header{

    margin-bottom: 40px;

}

/* TITLE */

.panel_contacto_formulario_titulo{

    color: white;

    font-size: 38px;
    font-weight: 700;

    margin-bottom: 14px;

}

/* DESCRIPTION */

.panel_contacto_formulario_descripcion{

    color: #9e9e9e;

    font-size: 16px;
    line-height: 1.7;

}

/* =========================
   FORM
========================= */

.panel_contacto_formulario{

    display: flex;
    flex-direction: column;

    gap: 28px;

}

/* ROW */

.panel_contacto_input_fila{

    display: flex;

    gap: 22px;

}

/* GROUP */

.panel_contacto_input_grupo{

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 12px;

}

/* LABEL */

.panel_contacto_label{

    color: white;

    font-size: 15px;
    font-weight: 500;

}

/* =========================
   INPUTS
========================= */

.panel_contacto_input,
.panel_contacto_select,
.panel_contacto_textarea{

    width: 100%;

    background-color: #121212;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 16px;

    padding: 18px 20px;

    color: white;

    font-size: 15px;

    font-family: 'Poppins', sans-serif;

    outline: none;

    transition: 0.3s;

}

/* TEXTAREA */

.panel_contacto_textarea{

    min-height: 180px;

    resize: none;

}

/* FOCUS */

.panel_contacto_input:focus,
.panel_contacto_select:focus,
.panel_contacto_textarea:focus{

    border-color: #d4a64f;

    box-shadow: 0px 0px 12px rgba(212,166,79,0.25);

}

/* PLACEHOLDER */

.panel_contacto_input::placeholder,
.panel_contacto_textarea::placeholder{

    color: #777;

}

/* SELECT */

.panel_contacto_select{

    cursor: pointer;

}

/* =========================
   BUTTON
========================= */

.panel_contacto_boton_enviar{

    width: fit-content;

    padding: 18px 34px;

    border: none;

    border-radius: 16px;

    background-color: #d4a64f;

    color: #050505;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 10px;

}

/* HOVER */

.panel_contacto_boton_enviar:hover{

    transform: translateY(-3px);

    background-color: #e5b75d;

    box-shadow: 0px 12px 30px rgba(212,166,79,0.25);

}