/* =====================================================
   Fun & Calm – Pour Qui Profils  |  fcpr-profils.css
   ===================================================== */

.fcpr-profils {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #7FA6B1;
    box-sizing: border-box;
}

/* ── En-tête ── */
.fcpr-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin: 0 0 12px;
}

.fcpr-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;
}

/* ── Ronds profils ── */
.fcpr-ronds {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.fcpr-rond {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fcpr-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 2px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: background .2s, border-color .2s;
    line-height: 1;
}

.fcpr-circle:hover {
    background: rgba(255, 255, 255, .3);
    border-color: rgba(255, 255, 255, .6);
}

.fcpr-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    letter-spacing: .3px;
    text-align: center;
    line-height: 1.3;
}

/* ── Encart texte ── */
.fcpr-texte {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    padding: 28px 32px;
    max-width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.fcpr-texte p:last-of-type { margin-bottom: 0; }

.fcpr-texte p strong { color: #fff; font-weight: 600; }

/* Tarif */
.fcpr-tarif {
    font-size: 13px !important;
    color: rgba(255, 255, 255, .7) !important;
    line-height: 1.75 !important;
    font-weight: 300 !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 4px;
    margin-bottom: 20px !important;
}

.fcpr-tarif strong { color: #fff !important; font-weight: 600 !important; }

/* CTA */
.fcpr-cta {
    display: inline-block;
    background: #fff;
    color: #527A87 !important;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s, color .2s;
    line-height: 1;
}

.fcpr-cta:hover {
    background: #2C2420;
    color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcpr-profils { padding: 56px 24px; }
    .fcpr-ronds   { gap: 16px; }
    .fcpr-circle  { width: 52px; height: 52px; font-size: 20px; }
    .fcpr-texte   { padding: 20px; }
}
