/* Banner PJ Protegido — isolado (meu-painel, buscar-vagas, etc.) */

.pf-pj-banner {
    position: relative;
    margin-top: 40px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 28px rgba(15, 23, 42, 0.05);
    float: none !important;
    width: 100%;
    box-sizing: border-box;
}

.pf-pj-banner *,
.pf-pj-banner *::before,
.pf-pj-banner *::after {
    box-sizing: border-box;
}

.pf-pj-banner__accent {
    height: 3px;
    background: linear-gradient(90deg, #0368ff 0%, #009e8a 100%);
}

.pf-pj-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 22px 24px;
}

.pf-pj-banner__head {
    min-width: 0;
}

.pf-pj-banner__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 10px;
    float: none !important;
    width: auto !important;
    height: auto !important;
}

.pf-pj-banner__title {
    margin: 0 0 6px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a !important;
    line-height: 1.25;
    float: none !important;
    width: 100% !important;
    display: block;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #0f172a !important;
}

.pf-pj-banner__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.pf-pj-banner__lead strong {
    color: #0f172a;
    font-weight: 700;
    float: none !important;
    background: none !important;
}

.pf-pj-banner__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pf-pj-banner__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pf-pj-banner__item:hover {
    border-color: rgba(3, 104, 255, 0.25);
    box-shadow: 0 4px 16px rgba(3, 104, 255, 0.08);
}

.pf-pj-banner__item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0368ff;
    float: none !important;
}

.pf-pj-banner__item-text {
    min-width: 0;
    flex: 1;
}

.pf-pj-banner__item-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
    line-height: 1.3;
    float: none !important;
    width: auto !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.pf-pj-banner__item-text span {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
    float: none !important;
    width: auto !important;
    height: auto !important;
}

.pf-pj-banner__action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 4px;
}

.pf-pj-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    background: #25d366;
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    float: none !important;
    border: none;
    cursor: pointer;
}

.pf-pj-banner__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
    text-decoration: none;
    color: #fff !important;
}

.pf-pj-banner__note {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    float: none !important;
    width: auto !important;
    height: auto !important;
    display: block;
}

@media (min-width: 540px) {
    .pf-pj-banner__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .pf-pj-banner__inner {
        padding: 24px 28px;
        gap: 22px;
    }

    .pf-pj-banner__benefits {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .pf-pj-banner__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 14px;
        min-height: 100%;
    }

    .pf-pj-banner__action {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border-top: 1px solid #f1f5f9;
        padding-top: 18px;
        margin-top: 2px;
    }

    .pf-pj-banner__cta {
        width: auto;
        min-width: 220px;
    }

    .pf-pj-banner__note {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .pf-pj-banner__inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
