/* =====================================================================
   Banner PJ Protegido — página Buscar Vagas (horizontal, com foto)
   Escopado em .bvpj para não colidir com o CSS global da busca.
   ===================================================================== */

.bvpj {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin: 36px 0 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 44px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
    float: none !important;
    width: 100%;
    font-family: Urbanist, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bvpj *,
.bvpj *::before,
.bvpj *::after { box-sizing: border-box; }

/* ── Media (foto) ── */
.bvpj__media {
    position: relative;
    display: block;
    min-height: 240px;
    min-width: 0;
    background: linear-gradient(135deg, #eaf1ff 0%, #e6faf5 100%);
    overflow: hidden;
    text-decoration: none;
    float: none !important;
}
.bvpj__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    float: none !important;
}
/* ── Corpo ── */
.bvpj__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
}

.bvpj__badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #0368ff;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    float: none !important;
    width: auto !important;
    height: auto !important;
}

.bvpj__title {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a !important;
    float: none !important;
    width: 100% !important;
    display: block;
    background: none !important;
    -webkit-text-fill-color: #0f172a !important;
}
.bvpj__title span {
    color: #0368ff !important;
    -webkit-text-fill-color: #0368ff !important;
}

.bvpj__lead {
    margin: 0 0 18px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 52ch;
    float: none !important;
    width: auto !important;
}
.bvpj__lead strong { color: #0f172a; font-weight: 800; }

.bvpj__list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 10px;
    width: 100%;
}
.bvpj__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
    float: none !important;
    width: auto !important;
}
.bvpj__list li svg {
    flex-shrink: 0;
    color: #00a88f;
}

.bvpj__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.bvpj__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    background: #0368ff;
    color: #fff !important;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(3, 104, 255, 0.28);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    float: none !important;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.bvpj__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(3, 104, 255, 0.36);
    color: #fff !important;
    text-decoration: none;
}
.bvpj__cta svg { flex-shrink: 0; }

.bvpj__cta--ghost {
    background: #fff;
    color: #0f172a !important;
    border: 1px solid #dbe4f0;
    box-shadow: none;
}
.bvpj__cta--ghost svg { color: #25d366; }
.bvpj__cta--ghost:hover {
    background: #f8fafc;
    border-color: #c3d2e6;
    color: #0f172a !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

/* ── Desktop: 50% foto / 50% conteúdo ── */
@media (min-width: 768px) {
    .bvpj {
        grid-template-columns: minmax(0, 50%) minmax(0, 50%);
        align-items: stretch;
    }
    .bvpj__media {
        min-height: 100%;
        height: 100%;
    }
    .bvpj__body {
        padding: 34px 40px;
        justify-content: center;
    }
    .bvpj__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
