/* ===== CONTENEDOR RAÍZ SEGURO ===== */
.ccf-faq-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%232d4f95' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    padding: 120px 0;
    font-family: 'Inter', -apple-system, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.ccf-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 400px 1fr;
    /* Estructura asimétrica premium */
    gap: 80px;
    align-items: flex-start;
}

/* ===== ENCABEZADO ASIMÉTRICO ===== */
.ccf-faq-header {
    position: sticky;
    top: 40px;
}

.ccf-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2d4f95;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.ccf-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #0b1c33;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.ccf-accent-line {
    width: 50px;
    height: 2px;
    background-color: #b4935a;
    /* Oro cepillado institucional */
}

/* ===== SISTEMA DE ACORDEONES MINIMALISTAS ===== */
.ccf-faq-wrapper {
    display: flex;
    flex-direction: column;
}

.ccf-faq-item {
    border-bottom: 1px solid rgba(11, 28, 51, 0.08);
}

.ccf-faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
    gap: 30px;
}

.ccf-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    color: #1c2e4a;
    line-height: 1.4;
    transition: color 0.35s ease;
}

/* Indicador minimalista interactivo (+ / -) mediante CSS puro */
.ccf-icon-status {
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
}

.ccf-icon-status::before,
.ccf-icon-status::after {
    content: '';
    position: absolute;
    background-color: #b4935a;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Línea Horizontal */
.ccf-icon-status::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 1.5px;
}

/* Línea Vertical */
.ccf-icon-status::after {
    top: 0;
    left: 6px;
    width: 1.5px;
    height: 14px;
}

/* HOVER: Reacción sofisticada */
.ccf-faq-trigger:hover .ccf-question-text {
    color: #b4935a;
}

/* ESTADO ABIERTO (Clases de activación vía JS) */
.ccf-faq-item.active .ccf-icon-status::after {
    transform: rotate(90deg);
    opacity: 0;
    /* Desaparece la línea vertical para volverse un símbolo de menos (-) */
}

.ccf-faq-item.active .ccf-icon-status::before {
    transform: rotate(180deg);
}

.ccf-faq-item.active .ccf-question-text {
    color: #b4935a;
    font-weight: 600;
}

/* PANEL DESPLEGABLE CON MÁSCARA FLUIDA */
.ccf-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ccf-faq-content {
    padding: 0 0 28px 0;
}

.ccf-faq-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #4a5d73;
    margin: 0;
    max-width: 90%;
}

/* ===== NOTA ACLARATORIA INTEGRADA INFERIOR ===== */
.ccf-special-note {
    margin-top: 40px;
    padding: 24px 0 0 0;
    border-top: 1px dashed rgba(180, 147, 90, 0.3);
}

.ccf-special-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6e85;
    margin: 0;
}

.ccf-note-link {
    color: #2d4f95;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(45, 79, 149, 0.2);
    transition: all 0.3s ease;
}

.ccf-note-link:hover {
    color: #b4935a;
    border-bottom-color: #b4935a;
}

/* ===== RESPONSIVO ADAPTABLE ===== */
@media (max-width: 1024px) {
    .ccf-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .ccf-faq-header {
        position: static;
    }

    .ccf-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .ccf-container {
        padding: 0 20px;
    }

    .ccf-question-text {
        font-size: 15px;
    }

    .ccf-faq-content p {
        font-size: 13.5px;
        max-width: 100%;
    }
}