/* =============================================================
   SC Vagas PRO — style.css
   Cores: #00adbb (primária) | #d1f6fd (bg leve) | #b1b1b1 (texto suave)
   ============================================================= */

/* RESET BASICO */
.sc-vagas-grid *,
.sc-vaga-card * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* GRID DE CARDS */
.sc-vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* CARD */
.sc-vaga-card {
    background: #ffffff;
    border: 1.5px solid #e8f8fc;
    border-radius: 20px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 24px rgba(0, 173, 187, 0.08);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.sc-vaga-card:hover {
    box-shadow: 0 8px 32px rgba(0, 173, 187, 0.18);
    transform: translateY(-3px);
}

/* CABECALHO: icone + badge */
.sc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

/* ICONE DA MALETA */
.sc-vaga-icone {
    width: 60px;
    height: 60px;
    background: #d1f6fd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-vaga-icone svg {
    width: 30px;
    height: 30px;
    color: #00adbb;
    stroke: #00adbb;
}

/* BADGE TIPO CONTRATO (CLT, PJ, etc.) */
.sc-badge {
    background: #d1f6fd;
    color: #00adbb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* TITULO DA VAGA */
.sc-vaga-titulo {
    font-size: 28px;
    font-weight: 800;
    color: #0a1929;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* LINHA DECORATIVA */
.sc-divider {
    width: 40px;
    height: 3px;
    background: #00adbb;
    border-radius: 2px;
    margin-bottom: 16px;
}

/* GRUPO INFO: CIDADE + SALARIO */
.sc-info-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.sc-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a6070;
    font-size: 14px;
    font-weight: 500;
}

.sc-info svg {
    width: 18px;
    height: 18px;
    stroke: #00adbb;
    flex-shrink: 0;
}

.sc-info-sep {
    color: #b1b1b1;
    font-size: 16px;
}

/* DESCRICAO */
.sc-descricao {
    color: #6b7c8f;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* SEPARADOR HORIZONTAL */
.sc-hr {
    border: none;
    border-top: 1px solid #e8f0f4;
    margin: 0 0 18px;
}

/* BOTAO CANDIDATAR-SE */
.sc-btn-candidatar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00adbb;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    padding: 15px 20px;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.15s ease;
    text-transform: uppercase;
    margin-top: auto;
}

.sc-btn-candidatar:hover {
    background: #008fa0;
    transform: translateY(-1px);
    color: #ffffff !important;
    text-decoration: none !important;
}

.sc-btn-candidatar svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    flex-shrink: 0;
}

/* MENSAGEM SEM VAGAS */
.sc-sem-vagas {
    text-align: center;
    color: #b1b1b1;
    font-size: 16px;
    padding: 40px 0;
    grid-column: 1 / -1;
}

/* RESPONSIVO */
@media (max-width: 640px) {
    .sc-vagas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sc-vaga-titulo {
        font-size: 22px;
    }
}