/* Fun & Calm – Pour Qui Slider */
.fcpqs-wrap {
    padding: 64px 48px;
    font-family: 'Mulish', sans-serif;
    background: #7FA6B1;
    box-sizing: border-box;
}

.fcpqs-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0 0 12px;
    text-align: center;
}

.fcpqs-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 36px;
    text-align: center;
}

/* ── Carrousel ── */
.fcpqs-carousel {
    overflow: hidden;
    border-radius: 14px;
    margin: 0 0 28px;
}

.fcpqs-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: fcpqs-scroll linear infinite;
}

.fcpqs-track:hover { animation-play-state: paused; }

@keyframes fcpqs-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.fcpqs-slide {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.fcpqs-slide img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.fcpqs-track:hover .fcpqs-slide img { transform: scale(1.03); }

.fcpqs-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,36,32,.52);
    padding: 7px 12px;
}

.fcpqs-label p {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: .3px;
}

/* ── Encarts texte ── */
.fcpqs-encart {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    padding: 24px 30px;
    max-width: 780px;
    margin: 0 auto 24px;
    box-sizing: border-box;
}

.fcpqs-encart p {
    font-size: 15px;
    color: rgba(255,255,255,.9);
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
}

.fcpqs-encart p strong { color: #fff; font-weight: 600; }

.fcpqs-tarif p {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

/* ── Bouton CTA centré ── */
.fcpqs-cta-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 24px;
}

.fcpqs-cta {
    display: inline-block;
    background: #fff;
    color: #527A87;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s, color .2s;
    line-height: 1;
}

.fcpqs-cta:hover { background: #2C2420; color: #fff; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcpqs-wrap   { padding: 48px 20px; }
    .fcpqs-encart { padding: 18px 20px; }
}
