/* Contenedor general */
.neuro-faq-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.neuro-faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
    gap: 56px;
    align-items: stretch;
}

/* Columna izquierda */
.neuro-faq-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b8a7e;
    margin-bottom: 16px;
}

.neuro-faq-title {
    font-size: 40px;
    line-height: 1.05;
    color: #1c2b26;
    margin: 0 0 24px;
    font-weight: 700;
}

.neuro-faq-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4e5a53;
    max-width: 360px;
    margin-bottom: 28px;
}

.neuro-faq-link {
    display: inline-block;
    font-size: 13px;
    color: #1f412f;
    text-decoration: none;
    border-bottom: 2px solid #1f412f;
    padding-bottom: 4px;
    font-weight: 500;
}

.neuro-faq-link:hover {
    opacity: 0.8;
}

/* Columna derecha: carrusel */
.neuro-faq-right {
    position: relative;
}

.neuro-faq-controls {
    position: absolute;
    top: -32px;
    right: 0;
    display: flex;
    gap: 8px;
}

.neuro-faq-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 32, 22, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.neuro-faq-arrow span {
    font-size: 16px;
    line-height: 1;
    color: #1f412f;
}

.neuro-faq-arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 32, 22, 0.18);
}

.neuro-faq-arrow:focus {
    outline: none;
}

/* Slider */
.neuro-faq-slider-wrapper {
    overflow: hidden;
}

.neuro-faq-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}

/* Tarjetas */
.neuro-faq-card {
    flex: 0 0 320px;
    background-color: #F5F8F4;
    border-radius: 16px;
    padding: 28px 28px 32px;
    box-shadow: 0 12px 26px rgba(16, 24, 40, 0.06);
}

.neuro-faq-card-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #f0f4ff;
    color: #5b6b8a;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-weight: 600;
}

.neuro-faq-card-title {
    font-size: 18px;
    line-height: 1.4;
    color: #1f2933;
    margin: 0 0 10px;
    font-weight: 600;
}

.neuro-faq-card-separator {
    width: 40px;
    height: 2px;
    border-radius: 999px;
    background-color: #e2e7f0;
    margin-bottom: 16px;
}

.neuro-faq-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: #4b5763;
}

/* Responsive */
@media (max-width: 960px) {
    .neuro-faq-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .neuro-faq-text {
        max-width: none;
    }

    .neuro-faq-controls {
        top: -40px;
    }
}

@media (max-width: 640px) {
    .neuro-faq-section {
        padding: 48px 16px 56px;
    }

    .neuro-faq-inner {
        max-width: 100%;
    }

    .neuro-faq-card {
        flex: 0 0 260px;
    }

    .neuro-faq-title {
        font-size: 28px;
    }
}


/* === OVERRIDE: fondo blanco + tarjetas verde header === */
.neuro-home-faq-section,
.neuro-home-faq-wrapper {
    background-color: #ffffff !important;
}

.neuro-home-faq-card,
.neuro-home-faq-item {
    background-color: #F5F8F4 !important;
    border: none;
}
/* === END OVERRIDE === */

/* === OVERRIDE FINAL: fondo blanco + tarjetas verde header === */
.neuro-faq-section {
    background-color: #ffffff !important;
}

.neuro-faq-section article.neuro-faq-card {
    background-color: #F5F8F4 !important;
}
/* === END OVERRIDE FINAL === */
