/* ==========================================================================
   COMPONENTE: MK-SECTION-FAQ-AGENCY
   Arquitectura: BEM
   ========================================================================== */

.mk-faq-agency {
    background-color: #ffffff;
    color: #111827;
    font-family: 'Inter', system-ui, sans-serif;
    padding-bottom: 90px;
}

.mk-faq-agency__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.mk-faq-agency__container--narrow {
    max-width: 980px;
}

/* 1. Barra superior: Título y Volver */
.mk-faq-agency__topbar {
    padding: 26px 0 18px;
}

.mk-faq-agency__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mk-faq-agency__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111827;
    text-transform: uppercase;
    margin: 0;
}

.mk-faq-agency__back-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d4ed8;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mk-faq-agency__back-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* 2. Banner Panorámico Adaptable */
.mk-faq-agency__banner-wrapper {
    margin-bottom: 40px;
}

.mk-faq-agency__banner {
    width: 100%;
    background-color: #0b0c0e;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.mk-faq-agency__banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: auto;
}

/* 3. Acordeón Minimalista */
.mk-faq-agency__list {
    display: flex;
    flex-direction: column;
}

.mk-faq-agency__item {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.mk-faq-agency__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 4px;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.mk-faq-agency__summary::-webkit-details-marker {
    display: none;
}

.mk-faq-agency__question {
    font-size: 0.98rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

/* Ícono Circular con Chevron (Mismo estilo que Ficha Técnica) */
.mk-faq-agency__icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, color 0.2s ease;
}

.mk-faq-agency__icon-circle i {
    line-height: 1;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotación suave al abrir */
.mk-faq-agency__item[open] .mk-faq-agency__icon-circle {
    background-color: #e2e8f0;
    color: #1e293b;
}

.mk-faq-agency__item[open] .mk-faq-agency__icon-circle i {
    transform: rotate(180deg);
}

/* Contenido de respuesta */
.mk-faq-agency__answer {
    padding: 0 4px 22px;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.65;
}

.mk-faq-agency__answer p {
    margin: 0;
}

/* 4. Responsive Mobile */
@media (max-width: 768px) {
    .mk-faq-agency__heading {
        font-size: 1rem;
    }
    .mk-faq-agency__summary {
        padding: 18px 0;
    }
    .mk-faq-agency__question {
        font-size: 0.92rem;
    }
    .mk-faq-agency__icon-circle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}