.empleos-hero {
    background: #0F1738;
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(15,23,56,.92) 0%, rgba(15,23,56,.72) 55%, rgba(15,23,56,.42) 100%),
        linear-gradient(180deg, rgba(15,23,56,.20) 0%, rgba(15,23,56,.55) 100%);
}

.job-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 56, .08);
    border-radius: 20px;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}
.job-card:hover {
    border-color: rgba(225, 29, 39, .35);
    box-shadow: 0 1px 0 rgba(225, 29, 39, .08), 0 18px 40px -18px rgba(15, 23, 56, .15);
    transform: translateY(-2px);
}
.job-card .code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #E11D27;
}
.job-card .code::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #E11D27;
    display: inline-block;
}
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}
.meta-row > div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.meta-row .meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #FFEDE9;
    color: #E11D27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.meta-row .meta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(15,23,56,.55);
}
.meta-row .meta-value {
    font-size: 15px;
    font-weight: 600;
    color: #0F1738;
    margin-top: 2px;
}

.pill-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
}
.pill-live::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.2);
    animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.05); }
}

.value-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 56, .08);
    border-radius: 18px;
    padding: 26px 24px;
    transition: border-color .25s, transform .25s;
}
.value-card:hover {
    border-color: rgba(225, 29, 39, .35);
    transform: translateY(-2px);
}
.value-card .ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFEDE9;
    color: #E11D27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.form-shell {
    background: #fff;
    border: 1px solid rgba(15,23,56,.08);
    border-radius: 24px;
}
.form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(15,23,56,.6);
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 56, .12);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    color: #0F1738;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #E11D27;
    box-shadow: 0 0 0 4px rgba(225, 29, 39, .10);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(15,23,56,.40); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-file {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px dashed rgba(15,23,56,.18);
    border-radius: 14px;
    background: #FAFBFD;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.form-file:hover {
    border-color: #E11D27;
    background: #FFF6F4;
}
.form-file input[type="file"] { display: none; }
.form-file .file-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #FFEDE9;
    color: #E11D27;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.form-file-name {
    font-size: 14px;
    font-weight: 600;
    color: #0F1738;
}
.form-file-hint {
    font-size: 12px;
    color: rgba(15,23,56,.55);
    margin-top: 1px;
}
