/* ============================================
   ONERA – Enterprise FAQ Section (COMPLETE)
============================================ */

.faqs-section {
    padding: 80px 0;
    background: #ffffff;
}

.faqs-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.faqs-title {
    font-size: 34px;
    font-weight: 700;
    color: #0B1F66; /* Navy Onera */
    margin-bottom: 15px;
}

.faqs-subtitle {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* ====== GRID (2 columnas elegante) ====== */
.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.faqs-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ====== FAQ ITEM ====== */
.faq-item {
    background: #F7F9FE;
    border: 1px solid #e6e9f3;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ====== PREGUNTA ====== */
.faq-question {
    width: 100%;
    text-align: left;
    background: #F7F9FE;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #0B1F66;
    border: none;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    font-weight: 900;
    font-size: 20px;
    color: #19E6D1;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-question::after {
    content: "–";
    font-size: 24px;
}

/* ====== RESPUESTA ====== */
.faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    color: #444;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .faqs-title { font-size: 30px; }
}

@media (max-width: 768px) {
    .faqs-grid {
        grid-template-columns: 1fr; /* 1 columna en móvil */
    }
    .faqs-title { font-size: 28px; }
    .faqs-subtitle { font-size: 16px; }
    .faq-question { font-size: 16px; }
    .faq-answer { font-size: 14px; }
}
