.elementor-374 .elementor-element.elementor-element-78358cc{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-92b60a0 *//* CONTENEDOR GENERAL */
.faq-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    font-family: inherit;
}

/* HEADER */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #030A11;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

/* FAQ */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.faq-item {
    background: #F2F5F8;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 22px 26px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* HOVER */
.faq-item:hover {
    border-color: #c9a96e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

/* TITULO */
.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    color: #030A11;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
}

/* COLOR HOVER TITULO */
.faq-item:hover summary {
    color: #c9a96e;
}

/* ICONO + */
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: #c9a96e;
    transition: transform 0.3s ease;
}

/* ICONO X */
.faq-item[open] summary::after {
    transform: rotate(45deg);
}

/* TEXTO */
.faq-item p {
    margin-top: 18px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* Quitar flecha default */
summary::-webkit-details-marker {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .faq-header h1 {
        font-size: 32px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item summary {
        font-size: 17px;
    }

}/* End custom CSS */