/* =========================================================
   BOLSA DE TRABAJO - DISEÑO INSTITUCIONAL MEJORADO
   Color primario: #d5a448
   Color secundario: #050b29
   Instituto Pablo Casals
========================================================= */

:root {
    --pc-primary: #d5a448;
    --pc-primary-light: #f0c96a;
    --pc-primary-soft: rgba(213, 164, 72, 0.14);

    --pc-secondary: #050b29;
    --pc-secondary-2: #0a1238;
    --pc-secondary-3: #101a4b;

    --pc-white: #ffffff;
    --pc-bg: #f6f4ef;
    --pc-bg-soft: #fbfaf7;

    --pc-text: #172033;
    --pc-muted: #6b7280;
    --pc-line: rgba(5, 11, 41, 0.10);

    --pc-success: #15945f;
    --pc-danger: #c0392b;
    --pc-warning: #d5a448;
    --pc-gray: #6b7280;

    --pc-radius-sm: 10px;
    --pc-radius: 18px;
    --pc-radius-lg: 26px;

    --pc-shadow-sm: 0 8px 20px rgba(5, 11, 41, 0.08);
    --pc-shadow: 0 18px 45px rgba(5, 11, 41, 0.14);
    --pc-shadow-lg: 0 28px 70px rgba(5, 11, 41, 0.22);

    --pc-transition: all .25s ease;
}

/* =========================================================
   GENERAL
========================================================= */

* {
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at top left, rgba(213, 164, 72, .10), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #f6f4ef 100%);
    color: var(--pc-text);
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

a {
    transition: var(--pc-transition);
}

::selection {
    background: var(--pc-primary);
    color: var(--pc-secondary);
}

/* =========================================================
   NAVBAR
========================================================= */

.bt-navbar {
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .98), rgba(10, 18, 56, .98)),
        radial-gradient(circle at top right, rgba(213, 164, 72, .25), transparent 30%);
    box-shadow: 0 14px 36px rgba(5, 11, 41, .28);
    padding: 14px 0;
    border-bottom: 1px solid rgba(213, 164, 72, .22);
}

.bt-navbar .navbar-brand {
    color: var(--pc-white) !important;
    letter-spacing: -.3px;
}

.bt-navbar .navbar-brand i {
    color: var(--pc-primary);
}

.bt-navbar .nav-link {
    color: rgba(255, 255, 255, .82) !important;
    font-weight: 700;
    padding: 9px 13px !important;
    border-radius: 999px;
}

.bt-navbar .nav-link:hover,
.bt-navbar .nav-link.active {
    color: var(--pc-secondary) !important;
    background: var(--pc-primary);
}

.bt-login-btn {
    background: var(--pc-primary);
    color: var(--pc-secondary) !important;
    font-weight: 900;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    box-shadow: 0 10px 24px rgba(213, 164, 72, .28);
}

.bt-login-btn:hover {
    background: var(--pc-primary-light);
    transform: translateY(-2px);
}

.bt-user {
    font-weight: 800;
}

/* =========================================================
   HERO
========================================================= */

.bt-hero {
    position: relative;
    overflow: hidden;
    color: var(--pc-white);
    padding: 88px 0 105px;
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .98), rgba(10, 18, 56, .96)),
        radial-gradient(circle at top right, rgba(213, 164, 72, .38), transparent 34%),
        radial-gradient(circle at bottom left, rgba(213, 164, 72, .16), transparent 28%);
}

.bt-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -160px;
    top: -170px;
    border-radius: 50%;
    background: rgba(213, 164, 72, .18);
    filter: blur(2px);
}

.bt-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -80px;
    bottom: -90px;
    border-radius: 50%;
    border: 32px solid rgba(213, 164, 72, .10);
}

.bt-hero .container {
    position: relative;
    z-index: 2;
}

.bt-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 950;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: #fff7df;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.bt-hero p {
    color: rgba(255, 255, 255, .84);
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 680px;
}

/* =========================================================
   TARJETAS GENERALES
========================================================= */

.bt-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(5, 11, 41, .08);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow);
    backdrop-filter: blur(10px);
}

/* =========================================================
   FILTROS
========================================================= */

.bt-filter-box {
    margin-top: -46px;
    position: relative;
    z-index: 5;
    padding: 26px;
    border: 1px solid rgba(213, 164, 72, .26);
}

.bt-filter-box label {
    color: var(--pc-secondary);
    font-size: .88rem;
    font-weight: 900;
}

.form-control,
.form-select {
    border-radius: 14px;
    min-height: 50px;
    border: 1px solid rgba(5, 11, 41, .13);
    color: var(--pc-text);
    font-size: .95rem;
    background-color: #fff;
    transition: var(--pc-transition);
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(213, 164, 72, .55);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 4px rgba(213, 164, 72, .20);
}

/* =========================================================
   BOTONES
========================================================= */

.bt-btn-primary {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-light));
    border: none;
    color: var(--pc-secondary) !important;
    font-weight: 950;
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: 0 14px 28px rgba(213, 164, 72, .28);
    transition: var(--pc-transition);
}

.bt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(213, 164, 72, .38);
    filter: brightness(1.03);
}

.btn-secondary {
    border-radius: 14px;
    font-weight: 800;
}

.btn-primary {
    background: var(--pc-secondary);
    border-color: var(--pc-secondary);
    border-radius: 12px;
    font-weight: 800;
}

.btn-primary:hover {
    background: var(--pc-secondary-3);
    border-color: var(--pc-secondary-3);
}

.btn-warning {
    background: var(--pc-primary);
    border-color: var(--pc-primary);
    color: var(--pc-secondary);
    border-radius: 12px;
    font-weight: 800;
}

.btn-dark {
    border-radius: 12px;
    font-weight: 800;
}

/* =========================================================
   TÍTULOS
========================================================= */

.bt-panel-title {
    color: var(--pc-secondary);
    font-weight: 950;
    letter-spacing: -.7px;
}

.bt-panel-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: var(--pc-primary);
    margin-top: 10px;
}

/* =========================================================
   TARJETAS DE VACANTES
========================================================= */

.bt-job-card {
    position: relative;
    height: 100%;
    background: var(--pc-white);
    border-radius: 24px;
    border: 1px solid rgba(5, 11, 41, .08);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(5, 11, 41, .10);
    transition: var(--pc-transition);
}

.bt-job-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(213, 164, 72, .07), transparent 38%);
    opacity: 0;
    transition: var(--pc-transition);
    pointer-events: none;
}

.bt-job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(5, 11, 41, .18);
    border-color: rgba(213, 164, 72, .45);
}

.bt-job-card:hover::before {
    opacity: 1;
}

.bt-job-top {
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .96), rgba(10, 18, 56, .94)),
        radial-gradient(circle at top right, rgba(213, 164, 72, .32), transparent 45%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bt-job-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-light));
    color: var(--pc-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 24px rgba(213, 164, 72, .30);
}

.bt-job-body {
    padding: 22px;
}

.bt-job-body h3 {
    font-weight: 950;
    color: var(--pc-secondary);
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.bt-job-body p {
    line-height: 1.55;
}

.bt-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bt-list li {
    display: flex;
    gap: 9px;
    margin-bottom: 9px;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.4;
}

.bt-list i {
    color: var(--pc-primary);
    font-size: 17px;
    flex: 0 0 auto;
}

/* =========================================================
   BADGES
========================================================= */

.bt-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .2px;
}

.bt-badge.activo {
    background: rgba(21, 148, 95, .14);
    color: #0d7b4b;
    border: 1px solid rgba(21, 148, 95, .20);
}

.bt-badge.terminado {
    background: rgba(107, 114, 128, .14);
    color: #4b5563;
    border: 1px solid rgba(107, 114, 128, .20);
}

.badge {
    border-radius: 999px;
    padding: 7px 11px;
    font-weight: 800;
}

/* =========================================================
   DETALLE
========================================================= */

.bt-detail-section {
    padding: 58px 0;
}

.bt-detail-section .bt-card {
    border-top: 6px solid var(--pc-primary);
}

.bt-detail-section h4,
.bt-detail-section h5 {
    color: var(--pc-secondary) !important;
}

/* =========================================================
   TABLAS
========================================================= */

.table {
    vertical-align: middle;
    margin-bottom: 0;
}

.table thead th {
    background: #f3efe7;
    color: var(--pc-secondary);
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-bottom: 1px solid rgba(5, 11, 41, .10);
    padding: 14px;
}

.table tbody td {
    padding: 14px;
    color: #374151;
}

.table-hover tbody tr:hover {
    background: rgba(213, 164, 72, .08);
}

/* =========================================================
   PANEL ADMIN
========================================================= */

.bt-admin-sidebar {
    position: sticky;
    top: 0;
    background:
        linear-gradient(180deg, var(--pc-secondary), var(--pc-secondary-2)),
        radial-gradient(circle at top left, rgba(213, 164, 72, .25), transparent 34%);
    min-height: 100vh;
    padding: 24px 18px;
    color: var(--pc-white);
    border-right: 1px solid rgba(213, 164, 72, .20);
    box-shadow: 12px 0 32px rgba(5, 11, 41, .12);
}

.bt-admin-sidebar h4 {
    color: #fff7df;
    letter-spacing: -.4px;
    padding: 0 10px;
}

.bt-admin-sidebar h4::after {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    background: var(--pc-primary);
    border-radius: 999px;
    margin-top: 12px;
}

.bt-admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    padding: 13px 14px;
    border-radius: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    transition: var(--pc-transition);
}

.bt-admin-sidebar a:hover,
.bt-admin-sidebar a.active {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-primary-light));
    color: var(--pc-secondary);
    transform: translateX(4px);
}

.bt-admin-sidebar a i {
    font-size: 18px;
}

.bt-admin-content {
    padding: 32px;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(213, 164, 72, .10), transparent 28%),
        #f8f6f1;
}

/* =========================================================
   LOGIN
========================================================= */

.bt-login-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .98), rgba(10, 18, 56, .96)),
        radial-gradient(circle at top left, rgba(213, 164, 72, .34), transparent 34%),
        radial-gradient(circle at bottom right, rgba(213, 164, 72, .18), transparent 28%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.bt-login-page::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: -150px;
    right: -120px;
    border-radius: 50%;
    background: rgba(213, 164, 72, .20);
}

.bt-login-page::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -90px;
    left: -70px;
    border-radius: 50%;
    border: 30px solid rgba(213, 164, 72, .12);
}

.bt-login-card {
    position: relative;
    z-index: 2;
    width: min(470px, 100%);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(213, 164, 72, .28);
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .36);
    backdrop-filter: blur(14px);
}

.bt-login-card h1 {
    font-size: 1.8rem;
    font-weight: 950;
    color: var(--pc-secondary);
    letter-spacing: -.5px;
}

.bt-login-card .bi-briefcase-fill {
    color: var(--pc-primary) !important;
    filter: drop-shadow(0 10px 18px rgba(213, 164, 72, .28));
}

/* =========================================================
   ALERTAS
========================================================= */

.bt-alert,
.alert {
    border-radius: 16px;
    border: none;
    font-weight: 700;
}

.alert-success {
    background: rgba(21, 148, 95, .12);
    color: #0d7b4b;
}

.alert-danger {
    background: rgba(192, 57, 43, .12);
    color: #9c2f25;
}

.alert-info {
    background: rgba(5, 11, 41, .08);
    color: var(--pc-secondary);
}

/* =========================================================
   FOOTER
========================================================= */

.bt-footer {
    background:
        linear-gradient(135deg, var(--pc-secondary), var(--pc-secondary-2));
    color: rgba(255, 255, 255, .80);
    padding: 30px 0;
    margin-top: 60px;
    border-top: 4px solid var(--pc-primary);
}

.bt-footer .fw-bold {
    color: #fff7df;
}

/* =========================================================
   UTILIDADES VISUALES
========================================================= */

.text-primary {
    color: var(--pc-secondary) !important;
}

.text-warning {
    color: var(--pc-primary) !important;
}

.bg-success {
    background: var(--pc-success) !important;
}

.bg-secondary {
    background: var(--pc-gray) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* =========================================================
   ANIMACIONES SUAVES
========================================================= */

.bt-card,
.bt-job-card,
.bt-login-card {
    animation: btFadeUp .45s ease both;
}

@keyframes btFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .bt-hero {
        padding: 70px 0 90px;
    }

    .bt-filter-box {
        margin-top: -38px;
        padding: 22px;
    }

    .bt-admin-sidebar {
        position: relative;
        min-height: auto;
        border-right: none;
        border-bottom: 4px solid var(--pc-primary);
    }

    .bt-admin-content {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .bt-navbar {
        padding: 10px 0;
    }

    .bt-hero {
        padding: 58px 0 78px;
    }

    .bt-hero h1 {
        letter-spacing: -1px;
    }

    .bt-filter-box {
        margin-top: -30px;
        border-radius: 22px;
    }

    .bt-job-top {
        padding: 18px;
    }

    .bt-job-body {
        padding: 20px;
    }

    .bt-login-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .bt-admin-content {
        padding: 18px;
    }

    .table-responsive {
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .bt-hero h1 {
        font-size: 2.1rem;
    }

    .bt-hero p {
        font-size: 1rem;
    }

    .bt-btn-primary {
        width: 100%;
    }

    .bt-panel-title {
        font-size: 1.45rem;
    }
}

/* =========================================================
   TARJETA TIPO PUBLICACIÓN / ANUNCIO DE VACANTE
========================================================= */

.bt-job-poster-card {
    position: relative;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    border-radius: 28px;
    border: 1px solid rgba(213, 164, 72, .32);
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(5, 11, 41, .14);
    transition: all .30s ease;
}

.bt-job-poster-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(213, 164, 72, .22), transparent 32%),
        radial-gradient(circle at bottom left, rgba(5, 11, 41, .08), transparent 30%);
    pointer-events: none;
}

.bt-job-poster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 75px rgba(5, 11, 41, .22);
    border-color: rgba(213, 164, 72, .75);
}

.bt-poster-header {
    position: relative;
    z-index: 2;
    min-height: 150px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .98), rgba(10, 18, 56, .96)),
        radial-gradient(circle at top right, rgba(213, 164, 72, .38), transparent 40%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.bt-poster-header::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    background: rgba(213, 164, 72, .18);
    border-radius: 50%;
}

.bt-poster-small {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(213, 164, 72, .16);
    color: #f8df9a;
    border: 1px solid rgba(213, 164, 72, .34);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

.bt-poster-header h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.6px;
    text-shadow: 0 8px 20px rgba(0, 0, 0, .28);
}

.bt-poster-logo {
    position: relative;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d5a448, #f0c96a);
    color: #050b29;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 14px 30px rgba(213, 164, 72, .35);
    flex: 0 0 auto;
}

.bt-poster-company {
    position: relative;
    z-index: 3;
    margin: -32px 22px 0;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(5, 11, 41, .13);
    border: 1px solid rgba(213, 164, 72, .25);
}

.bt-poster-company span {
    display: block;
    color: #050b29;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.bt-poster-company strong {
    display: block;
    color: #d5a448;
    font-size: 1.25rem;
    font-weight: 950;
    line-height: 1.15;
}

.bt-poster-main {
    position: relative;
    z-index: 2;
    padding: 24px 24px 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bt-poster-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(5, 11, 41, .96), rgba(10, 18, 56, .92));
    color: #d5a448;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    box-shadow: 0 14px 30px rgba(5, 11, 41, .18);
    flex: 0 0 auto;
}

.bt-poster-info {
    flex: 1;
}

.bt-poster-title-job {
    color: #050b29;
    font-size: 1.05rem;
    font-weight: 950;
    margin-bottom: 12px;
    line-height: 1.25;
}

.bt-poster-description {
    position: relative;
    z-index: 2;
    margin: 0 24px 20px;
    padding: 16px 18px;
    background: rgba(5, 11, 41, .04);
    border-left: 4px solid #d5a448;
    border-radius: 16px;
    color: #4b5563;
    font-size: .93rem;
    line-height: 1.55;
    font-weight: 600;
}

.bt-poster-footer {
    position: relative;
    z-index: 2;
    padding: 18px 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(5, 11, 41, .08);
}

.bt-poster-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d5a448, #f0c96a);
    color: #050b29;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(213, 164, 72, .28);
}

.bt-poster-btn:hover {
    color: #050b29;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(213, 164, 72, .40);
}

.bt-poster-btn i {
    transition: all .25s ease;
}

.bt-poster-btn:hover i {
    transform: translateX(4px);
}

/* Ajuste de lista dentro de la tarjeta tipo anuncio */
.bt-job-poster-card .bt-list li {
    color: #4b5563;
    font-size: .88rem;
    font-weight: 700;
}

.bt-job-poster-card .bt-list i {
    color: #d5a448;
}

/* Responsive */
@media (max-width: 768px) {
    .bt-poster-header {
        min-height: 135px;
        padding: 22px;
    }

    .bt-poster-header h3 {
        font-size: 1.25rem;
    }

    .bt-poster-main {
        flex-direction: column;
    }

    .bt-poster-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .bt-poster-btn {
        width: 100%;
    }
}

/* =========================================================
   TARJETA CON BANNER DE FONDO
========================================================= */

.bt-job-banner-card {
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(213, 164, 72, .35);
    box-shadow: 0 24px 60px rgba(5, 11, 41, .16);
    transition: all .30s ease;
}

.bt-job-banner-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 34px 80px rgba(5, 11, 41, .24);
    border-color: rgba(213, 164, 72, .75);
}

.bt-banner-image {
    position: relative;
    min-height: 245px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.bt-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 41, .30), rgba(5, 11, 41, .92)),
        linear-gradient(135deg, rgba(5, 11, 41, .65), rgba(213, 164, 72, .16));
}

.bt-banner-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.bt-banner-label {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(213, 164, 72, .18);
    border: 1px solid rgba(213, 164, 72, .42);
    color: #f0c96a;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.bt-banner-content h3 {
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.12;
    font-weight: 950;
    margin: 0 0 9px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.bt-banner-company {
    display: inline-flex;
    background: #ffffff;
    color: #050b29;
    padding: 8px 13px;
    border-radius: 12px;
    font-weight: 950;
    font-size: .9rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
}

.bt-banner-status {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 950;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.bt-banner-status.activo {
    background: #15945f;
}

.bt-banner-status.terminado {
    background: #6b7280;
}

.bt-banner-body {
    padding: 22px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.bt-banner-body p {
    color: #4b5563;
    font-size: .93rem;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 18px;
}

.bt-banner-btn {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d5a448, #f0c96a);
    color: #050b29;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(213, 164, 72, .28);
}

.bt-banner-btn:hover {
    color: #050b29;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(213, 164, 72, .40);
}

.bt-banner-btn i {
    transition: all .25s ease;
}

.bt-banner-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MEJORA HOVER: DESTACAR Y AGRANDAR BANNER DE VACANTE
========================================================= */

.bt-banner-image {
    min-height: 285px !important;
    transition: all .35s ease !important;
    background-size: 105% !important;
    background-position: center !important;
}

.bt-job-banner-card:hover .bt-banner-image {
    min-height: 310px !important;
    background-size: 118% !important;
    background-position: center !important;
}

.bt-job-banner-card:hover .bt-banner-overlay {
    background:
        linear-gradient(180deg, rgba(5, 11, 41, .12), rgba(5, 11, 41, .78)),
        linear-gradient(135deg, rgba(5, 11, 41, .35), rgba(213, 164, 72, .10)) !important;
}

.bt-job-banner-card:hover .bt-banner-content h3 {
    transform: translateY(-4px);
    color: #fff7df !important;
}

.bt-job-banner-card:hover .bt-banner-company {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .28) !important;
}

.bt-banner-content h3,
.bt-banner-company {
    transition: all .30s ease !important;
}