/* =========================
   FAQ SECTION
========================= */

.panel_contacto_faq{

    width: 100%;

    background-color: #050505;

    padding-left: 7%;
    padding-right: 7%;
    padding-top: 20px;
    padding-bottom: 100px;

}

/* =========================
   HEADER
========================= */

.panel_contacto_faq_header{

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    margin-bottom: 60px;

}

/* SUBTITLE */

.panel_contacto_faq_subtitulo{

    color: #d4a64f;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 18px;

}

/* TITLE */

.panel_contacto_faq_titulo{

    color: white;

    font-size: 44px;
    font-weight: 700;

}

/* =========================
   GRID
========================= */

.panel_contacto_faq_grid{

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

/* =========================
   ITEM
========================= */

.panel_contacto_faq_item{

    background-color: #0d0d0d;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 30px;

    transition: 0.3s;

}

/* HOVER */

.panel_contacto_faq_item:hover{

    transform: translateY(-6px);

    border-color: rgba(212,166,79,0.3);

    box-shadow: 0px 12px 35px rgba(0,0,0,0.3);

}

/* =========================
   QUESTION
========================= */

.panel_contacto_faq_pregunta{

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 18px;

}

/* QUESTION TITLE */

.panel_contacto_faq_pregunta h3{

    color: white;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.5;

}

/* PLUS */

.panel_contacto_faq_pregunta span{

    color: #d4a64f;

    font-size: 28px;
    font-weight: 400;

    flex-shrink: 0;

}

/* =========================
   ANSWER
========================= */

.panel_contacto_faq_respuesta{

    color: #9e9e9e;

    font-size: 15px;

    line-height: 1.8;

}