/* ==========================================================================
   SLZ7 - Painel da empresa (Minha conta)
   Perfil institucional, oportunidades, candidaturas recebidas e estatisticas.
   Usa as variaveis do tema; nenhuma cor fixa nova.
   ========================================================================== */

.slz7-company .slz7-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.slz7-company .slz7-field-full {
    grid-column: 1 / -1;
}

.slz7-company label > span,
.slz7-company .slz7-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.slz7-company input[type="text"],
.slz7-company input[type="url"],
.slz7-company input[type="email"],
.slz7-company input[type="tel"],
.slz7-company input[type="number"],
.slz7-company input[type="date"],
.slz7-company select,
.slz7-company textarea {
    width: 100%;
}

/* --- completude do perfil / barras -------------------------------------- */
.slz7-progress {
    display: inline-block;
    vertical-align: middle;
    width: 140px;
    height: 8px;
    border-radius: 99px;
    background: rgba(0, 0, 0, .08);
    overflow: hidden;
}

.slz7-progress > span {
    display: block;
    height: 100%;
    border-radius: 99px;
    background: var(--slz7-primary, #2563eb);
}

.slz7-profile-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.slz7-profile-meter .slz7-progress {
    width: 220px;
    height: 10px;
}

/* --- cartoes de estatisticas -------------------------------------------- */
.slz7-stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.slz7-stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #fff;
}

.slz7-stat-card .num {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}

.slz7-stat-card .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .7;
}

/* --- filtros e tabelas -------------------------------------------------- */
.slz7-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.slz7-company .slz7-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.slz7-company .slz7-table th,
.slz7-company .slz7-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    text-align: left;
    vertical-align: top;
}

.slz7-company .slz7-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .65;
}

.slz7-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    background: rgba(0, 0, 0, .06);
}

/* --- analise e decisao -------------------------------------------------- */
.slz7-decision summary {
    cursor: pointer;
}

.slz7-decision-body {
    padding: 8px 0;
    max-width: 420px;
}

.slz7-decision-form {
    display: grid;
    gap: 6px;
    margin-top: 8px;
    max-width: 320px;
}

.slz7-bulk-box {
    margin-top: 22px;
    padding: 16px;
    border: 1px dashed rgba(0, 0, 0, .18);
    border-radius: 14px;
}

.slz7-bulk-box h4 {
    margin: 0 0 10px;
    font-size: 15px;
}

.slz7-bulk-box textarea {
    width: 100%;
    margin-bottom: 10px;
}

@media (max-width: 782px) {
    .slz7-company .slz7-form-grid {
        grid-template-columns: 1fr;
    }

    .slz7-company .slz7-table thead {
        display: none;
    }

    .slz7-company .slz7-table tr {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .slz7-company .slz7-table td {
        display: block;
        border: 0;
        padding: 4px 0;
    }
}

/* --- grade de 2 colunas e medidor do perfil da empresa ------------------- */
.slz7-company .slz7-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.slz7-company-score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.slz7-company-score .slz7-progress {
    width: 220px;
    height: 10px;
}

.slz7-company-score .slz7-progress-num {
    font-weight: 700;
}

.slz7-company-score .hint {
    flex: 1 1 100%;
    margin: 0;
    font-size: 13px;
    opacity: .75;
}

@media (max-width: 782px) {
    .slz7-company .slz7-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Anexos da oportunidade -------------------------------------------- */
.slz7-opp-files { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.slz7-opp-files li { display: flex; align-items: center; gap: 10px; }
.slz7-opp-files a { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0;
  padding: 10px 14px; border: 1px solid var(--c-line, #e6e6ef); border-radius: 12px;
  background: var(--c-soft, #f7f7fb); text-decoration: none; color: inherit; font-weight: 600; }
.slz7-opp-files a:hover { border-color: var(--c-primary, #6b4df6); }
.slz7-opp-files a span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.slz7-opp-files a em { margin-left: auto; font-style: normal; font-size: 12px; opacity: .6; }
.slz7-opp-files .slz7-file-remove { display: flex; align-items: center; gap: 6px; font-size: 12px; opacity: .75; }
.slz7-company .field .req { color: #ff3d71; }
