/* Form fields 
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
	font-family: inherit;
	padding: 8px;
	padding: 0.5rem;
	font-family: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
}

.fade.show {
	opacity: 1
}

#emprega-exibicao-curriculo {
	list-style: none;
}

.emprega-curriculo-campo {}

.emprega-curriculo-label {
	font-size: 16px;
	font-weight: bold;
}

.emprega-curriculo-valor {}
*/

.hide {
	display:none!important;
}
/* ==========================================================================
   CRS Form — Barra de progresso, banner, dicas e tabs
   ========================================================================== */

/* Wrapper */
.crs-form-wrap {
    width: 100%;
}

/* ── Barra de etapas ─────────────────────────────────────────────────── */
.crs-steps {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dee2e6;
    margin-bottom: 1.25rem;
}

.crs-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: #f8f9fa;
    color: #6c757d;
    border-right: 1px solid #dee2e6;
    transition: background 0.25s, color 0.25s;
}

.crs-step:last-child {
    border-right: none;
}

.crs-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    background: #dee2e6;
    color: #6c757d;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

/* Etapa ativa */
.crs-step--active {
    background: #e7f1ff;
    color: #0d6efd;
}

.crs-step--active .crs-step__num {
    background: #0d6efd;
    color: #fff;
}

/* Etapa concluída */
.crs-step--done {
    background: #d1e7dd;
    color: #0a6640;
}

.crs-step--done .crs-step__num {
    background: #198754;
    color: #fff;
    font-size: 0.65rem;
}

/* ── Banner da vaga ──────────────────────────────────────────────────── */
.crs-vaga-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
    border-radius: 10px;
    padding: 13px 16px;
    margin-bottom: 1.25rem;
}

.crs-vaga-banner__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.9rem;
}

.crs-vaga-banner__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}

.crs-vaga-banner__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a3880;
    margin: 0;
}

/* ── Dicas recolhíveis ───────────────────────────────────────────────── */
.crs-dicas {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.crs-dicas__summary {
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    user-select: none;
}

.crs-dicas__summary::-webkit-details-marker { display: none; }

.crs-dicas__summary::after {
    content: "▼";
    margin-left: auto;
    font-size: 0.65rem;
    color: #adb5bd;
    transition: transform 0.2s;
}

.crs-dicas[open] .crs-dicas__summary::after {
    transform: rotate(180deg);
}

.crs-dicas__lista {
    margin: 0;
    padding: 10px 16px 14px 32px;
    border-top: 1px solid #dee2e6;
    background: #fff;
}

.crs-dicas__lista li {
    font-size: 0.85rem;
    color: #495057;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.5;
}

.crs-dicas__lista li:last-child { border-bottom: none; }

/* ── Tabs ────────────────────────────────────────────────────────────── */
.crs-tabs .nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
}

.crs-tabs .nav-link.active { color: #0d6efd; }

/* ── Tab content ─────────────────────────────────────────────────────── */
.crs-tab-content {
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    background: #fff;
    margin-bottom: 1.5rem;
}

/* ── Tab "direto ao recrutador" ──────────────────────────────────────── */
.crs-direto-box { padding: 4px 0; }

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 575px) {
    .crs-steps { font-size: 0.72rem; }
    .crs-step { flex-direction: column; gap: 3px; padding: 8px 4px; }
    .crs-tab-content { padding: 14px 12px; }
    .crs-vaga-banner { padding: 10px 12px; }
}