/* --- Contenedor Principal Premium --- */
.section-premium { 
    border: 1px solid rgba(212, 175, 55, 0.3) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(15, 23, 42, 0.4); /* Efecto Glass */
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

/* --- Tarjeta de Trabajo Premium --- */
.section-premium .card-job {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.section-premium .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(212, 175, 55, 0.1);
}

/* --- Ribbon / Etiqueta Premium (Listón) --- */
.section-premium .ribbon-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; 
    height: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f1d27b 100%) !important;
    color: #000 !important;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Títulos y Ubicación --- */
.section-premium .job-title {
    font-weight: 700;
    color: #ffffff;
}

.section-premium .bi-geo-alt-fill {
    color: #d4af37 !important; /* Pin de ubicación dorado */
}

/* --- Contenedor de Información (Badges) --- */
.section-premium .info-badge-container {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px;
}

.section-premium .info-label {
    text-transform: uppercase;
    color: #94a3b8;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-premium .info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Botón de Acción Premium --- */
.section-premium .btn-ver-postulacion {
    background: linear-gradient(135deg, #d4af37 0%, #f1d27b 100%) !important;
    color: #000 !important;
    height: 50px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.4);
    cursor: pointer;
}

.section-premium .btn-ver-postulacion:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 15px 25px -5px rgba(212, 175, 55, 0.5);
}